/**
 * Shop Archive + Editorial — Luxury Styles (Module 7).
 * Depends on design-tokens.css.
 */

body.jw-shop-page {
    background: #fff;
    --jw-burgundy: #7C2D2A;
    --jw-burgundy-d: #5E1E1B;
}

/* =====================================================================
 * HERO
 * =================================================================== */

.jw-shop-hero {
    position: relative;
    padding: 72px clamp(16px, 4vw, 40px) 56px;
    background: linear-gradient(180deg, var(--jw-ivory) 0%, #fff 100%);
    overflow: hidden;
}
.jw-shop-hero--image { padding: 120px clamp(16px, 4vw, 40px) 96px; }
.jw-shop-hero__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.04);
}
.jw-shop-hero__scrim {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(26,26,26,0.55) 0%, rgba(26,26,26,0.72) 100%);
}
.jw-shop-hero__inner {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}
.jw-shop-hero__crumbs { margin-bottom: 20px; }
.jw-crumbs {
    font-size: 12px;
    letter-spacing: 0.06em;
    color: var(--jw-charcoal-50);
}
.jw-crumbs a { color: var(--jw-charcoal-70); text-decoration: none; }
.jw-crumbs a:hover { color: var(--jw-champagne-d); }
.jw-crumb-sep { margin: 0 8px; color: var(--jw-charcoal-30); }

.jw-shop-hero__eyebrow {
    font-size: 11px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--jw-champagne-d);
    font-weight: 700;
    margin: 0 0 12px;
}
.jw-shop-hero__title {
    font-family: var(--jw-font-serif);
    font-size: clamp(34px, 4.4vw, 56px);
    font-weight: 500;
    color: var(--jw-charcoal);
    letter-spacing: -0.015em;
    line-height: 1.08;
    margin: 0 0 16px;
}
.jw-shop-hero__intro {
    font-size: 16px;
    line-height: 1.7;
    color: var(--jw-charcoal-50);
    max-width: 620px;
    margin: 0 auto;
}

/* Image variant → light text on scrim */
.jw-shop-hero--image .jw-shop-hero__title,
.jw-shop-hero--image .jw-crumbs a { color: #fff; }
.jw-shop-hero--image .jw-shop-hero__intro,
.jw-shop-hero--image .jw-crumbs { color: rgba(255,255,255,0.78); }
.jw-shop-hero--image .jw-shop-hero__eyebrow { color: #E8C476; }
.jw-shop-hero--image .jw-crumb-sep { color: rgba(255,255,255,0.4); }

/* =====================================================================
 * LAYOUT
 * =================================================================== */

.jw-shop { position: relative; padding-bottom: 80px; }
.jw-shop__container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 clamp(16px, 4vw, 40px);
    display: grid;
    grid-template-columns: 264px minmax(0, 1fr);
    gap: 48px;
    align-items: start;
}
.jw-shop__sidebar { position: sticky; top: 24px; }
.jw-shop__main { min-width: 0; }

/* =====================================================================
 * FILTERS
 * =================================================================== */

.jw-filters {
    background: #fff;
    border: 1px solid var(--jw-charcoal-10);
    border-radius: 14px;
    padding: 22px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.jw-filters__head {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 16px;
    margin-bottom: 6px;
    border-bottom: 1px solid var(--jw-charcoal-10);
}
.jw-filters__title {
    font-family: var(--jw-font-serif);
    font-size: 20px;
    font-weight: 500;
    color: var(--jw-charcoal);
    margin: 0;
    flex: 1;
}
.jw-filters__clear {
    background: none;
    border: 0;
    color: var(--jw-champagne-d);
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 700;
    cursor: pointer;
    padding: 4px;
    transition: color 200ms var(--jw-ease);
}
.jw-filters__clear:hover { color: var(--jw-burgundy); }
.jw-filters__close {
    display: none;
    background: none;
    border: 0;
    font-size: 26px;
    line-height: 1;
    color: var(--jw-charcoal-50);
    cursor: pointer;
    padding: 0 4px;
}

/* Facet accordion */
.jw-facet {
    border-bottom: 1px solid var(--jw-charcoal-10);
    padding: 4px 0;
}
.jw-facet:last-of-type { border-bottom: 0; }
.jw-facet__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
    cursor: pointer;
    list-style: none;
    user-select: none;
}
.jw-facet__head::-webkit-details-marker { display: none; }
.jw-facet__label {
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--jw-charcoal);
}
.jw-facet__chev {
    color: var(--jw-charcoal-50);
    font-size: 12px;
    transition: transform 250ms var(--jw-ease);
}
.jw-facet[open] .jw-facet__chev {
    transform: rotate(180deg);
    color: var(--jw-champagne-d);
}
.jw-facet__body {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding: 2px 0 16px;
    animation: jwFacetIn 250ms var(--jw-ease);
}
.jw-facet__body--pills {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px;
}
@keyframes jwFacetIn {
    from { opacity: 0; transform: translateY(-4px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* Checkbox row */
.jw-check {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 6px;
    border-radius: 8px;
    cursor: pointer;
    transition: background 180ms var(--jw-ease);
}
.jw-check:hover:not(.is-disabled) { background: var(--jw-ivory); }
.jw-check.is-disabled { opacity: 0.38; cursor: not-allowed; }
.jw-check input { position: absolute; opacity: 0; pointer-events: none; }
.jw-check__box {
    width: 17px;
    height: 17px;
    flex-shrink: 0;
    border: 1.5px solid var(--jw-charcoal-20);
    border-radius: 4px;
    background: #fff;
    position: relative;
    transition: all 200ms var(--jw-ease);
}
.jw-check input:checked + .jw-check__box {
    background: var(--jw-charcoal);
    border-color: var(--jw-charcoal);
}
.jw-check input:checked + .jw-check__box::after {
    content: '';
    position: absolute;
    left: 5px;
    top: 1px;
    width: 4px;
    height: 9px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}
.jw-check input:focus-visible + .jw-check__box {
    outline: 2px solid var(--jw-champagne);
    outline-offset: 2px;
}
.jw-check__label {
    flex: 1;
    font-size: 14px;
    color: var(--jw-charcoal-70);
}
.jw-check__count {
    font-family: var(--jw-font-mono);
    font-size: 11px;
    color: var(--jw-charcoal-30);
}

/* Purity pills */
.jw-pill { cursor: pointer; }
.jw-pill.is-disabled { opacity: 0.35; cursor: not-allowed; }
.jw-pill input { position: absolute; opacity: 0; pointer-events: none; }
.jw-pill__face {
    display: inline-flex;
    align-items: baseline;
    gap: 5px;
    padding: 8px 12px;
    border: 1px solid var(--jw-charcoal-20);
    border-radius: 100px;
    background: #fff;
    font-family: var(--jw-font-mono);
    font-size: 12px;
    font-weight: 600;
    color: var(--jw-charcoal-70);
    transition: all 200ms var(--jw-ease);
}
.jw-pill__face em {
    font-style: normal;
    font-size: 10px;
    color: var(--jw-charcoal-30);
}
.jw-pill:hover:not(.is-disabled) .jw-pill__face {
    border-color: var(--jw-champagne);
    color: var(--jw-champagne-d);
}
.jw-pill input:checked + .jw-pill__face {
    background: var(--jw-charcoal);
    border-color: var(--jw-charcoal);
    color: #fff;
}
.jw-pill input:checked + .jw-pill__face em { color: rgba(255,255,255,0.55); }

/* Price range */
.jw-price-range { display: flex; flex-direction: column; gap: 12px; }
.jw-price-range__inputs {
    display: flex;
    align-items: flex-end;
    gap: 8px;
}
.jw-price-range__field {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 5px;
    min-width: 0;
}
.jw-price-range__field span {
    font-size: 10px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--jw-charcoal-50);
    font-weight: 600;
}
.jw-price-range__field input {
    width: 100%;
    padding: 10px 10px !important;
    background: var(--jw-ivory) !important;
    border: 1px solid var(--jw-charcoal-20) !important;
    border-radius: 8px !important;
    font-family: var(--jw-font-mono);
    font-size: 13px;
    color: var(--jw-charcoal);
    box-shadow: none !important;
    min-height: auto !important;
    transition: border-color 200ms var(--jw-ease);
}
.jw-price-range__field input:focus {
    outline: none;
    border-color: var(--jw-champagne) !important;
    background: #fff !important;
}
.jw-price-range__dash { color: var(--jw-charcoal-30); padding-bottom: 11px; }
.jw-price-range__apply {
    padding: 10px 16px;
    background: var(--jw-charcoal);
    color: var(--jw-ivory);
    border: 0;
    border-radius: 8px;
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 700;
    cursor: pointer;
    transition: all 200ms var(--jw-ease);
}
.jw-price-range__apply:hover {
    background: #000;
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(26,26,26,0.18);
}
.jw-price-range__note {
    font-size: 11px;
    color: var(--jw-charcoal-50);
    line-height: 1.5;
    margin: 0;
}

/* =====================================================================
 * TOOLBAR
 * =================================================================== */

.jw-toolbar {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 28px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--jw-charcoal-10);
}
.jw-toolbar__row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}
.jw-toolbar__count {
    font-size: 13px;
    color: var(--jw-charcoal-50);
    margin: 0;
    font-family: var(--jw-font-mono);
}

.jw-sort { display: inline-flex; align-items: center; gap: 10px; }
.jw-sort__label {
    font-size: 10px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--jw-charcoal-50);
    font-weight: 700;
}
.jw-sort__wrap { position: relative; display: inline-flex; }
.jw-sort__select {
    appearance: none;
    padding: 10px 34px 10px 14px !important;
    background: #fff !important;
    border: 1px solid var(--jw-charcoal-20) !important;
    border-radius: 8px !important;
    font-family: var(--jw-font-sans);
    font-size: 13px;
    color: var(--jw-charcoal);
    cursor: pointer;
    box-shadow: none !important;
    min-height: auto !important;
    transition: border-color 200ms var(--jw-ease);
}
.jw-sort__select:focus {
    outline: none;
    border-color: var(--jw-champagne) !important;
}
.jw-sort__arrow {
    position: absolute;
    right: 13px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: var(--jw-charcoal-70);
}

/* Chips */
.jw-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.jw-chip {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 7px 12px;
    background: var(--jw-ivory);
    border: 1px solid var(--jw-charcoal-10);
    border-radius: 100px;
    font-size: 12px;
    color: var(--jw-charcoal-70);
    cursor: pointer;
    transition: all 200ms var(--jw-ease);
}
.jw-chip:hover {
    background: var(--jw-burgundy);
    border-color: var(--jw-burgundy);
    color: #fff;
}
.jw-chip__x { font-size: 15px; line-height: 1; opacity: 0.6; }
.jw-chip:hover .jw-chip__x { opacity: 1; }

/* =====================================================================
 * GRID
 * =================================================================== */

.jw-shop__grid-wrap { position: relative; min-height: 240px; }

ul.jw-card-grid--shop {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 28px !important;
    justify-content: initial !important;
}
ul.jw-card-grid--shop > li.jw-card {
    flex: none !important;
    max-width: none !important;
    min-width: 0 !important;
    width: 100% !important;
}
ul.jw-card-grid.is-loading { opacity: 0.35; pointer-events: none; transition: opacity 200ms var(--jw-ease); }

.jw-shop__loader {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 80px;
    pointer-events: none;
}
.jw-spinner {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid var(--jw-charcoal-10);
    border-top-color: var(--jw-champagne);
    animation: jwSpin 700ms linear infinite;
}
@keyframes jwSpin { to { transform: rotate(360deg); } }

.jw-shop__empty {
    padding: 80px 24px;
    text-align: center;
    border: 1px dashed var(--jw-charcoal-20);
    border-radius: 14px;
    background: var(--jw-ivory);
}
.jw-shop__empty-title {
    font-family: var(--jw-font-serif);
    font-size: 24px;
    color: var(--jw-charcoal);
    margin: 0 0 8px;
}
.jw-shop__empty-sub {
    font-size: 14px;
    color: var(--jw-charcoal-50);
    margin: 0 0 20px;
}

.jw-shop__more {
    display: flex;
    justify-content: center;
    margin-top: 48px;
}
.jw-shop__more-btn { min-width: 200px; }
.jw-shop__more-btn:disabled { opacity: 0.6; cursor: wait; }

/* Mobile filter FAB */
.jw-shop__filter-fab {
    display: none;
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 60;
    align-items: center;
    gap: 8px;
    padding: 13px 24px;
    background: var(--jw-charcoal);
    color: var(--jw-ivory);
    border: 0;
    border-radius: 100px;
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 12px 32px rgba(26,26,26,0.28);
}

/* =====================================================================
 * EDITORIAL PAGES
 * =================================================================== */

.jw-editorial__hero {
    position: relative;
    padding: 96px clamp(16px, 4vw, 40px) 72px;
    background: linear-gradient(180deg, var(--jw-ivory) 0%, #fff 100%);
    overflow: hidden;
    text-align: center;
}
.jw-editorial__hero--image { padding: 160px clamp(16px, 4vw, 40px) 120px; }
.jw-editorial__hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.04);
}
.jw-editorial__hero-scrim {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(26,26,26,0.5) 0%, rgba(26,26,26,0.7) 100%);
}
.jw-editorial__hero-inner {
    position: relative;
    max-width: 820px;
    margin: 0 auto;
}
.jw-editorial__eyebrow {
    font-size: 11px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--jw-champagne-d);
    font-weight: 700;
    margin: 0 0 14px;
}
.jw-editorial__title {
    font-family: var(--jw-font-serif);
    font-size: clamp(36px, 5vw, 62px);
    font-weight: 500;
    color: var(--jw-charcoal);
    letter-spacing: -0.02em;
    line-height: 1.06;
    margin: 0 0 18px;
}
.jw-editorial__standfirst {
    font-size: 18px;
    line-height: 1.65;
    color: var(--jw-charcoal-50);
    max-width: 640px;
    margin: 0 auto;
}
.jw-editorial__hero--image .jw-editorial__title { color: #fff; }
.jw-editorial__hero--image .jw-editorial__standfirst { color: rgba(255,255,255,0.8); }
.jw-editorial__hero--image .jw-editorial__eyebrow { color: #E8C476; }

.jw-editorial__body {
    padding: 72px clamp(16px, 4vw, 40px) 88px;
}
.jw-editorial__prose {
    max-width: 720px;
    margin: 0 auto;
    font-size: 17px;
    line-height: 1.85;
    color: var(--jw-charcoal-70);
}
.jw-editorial__prose > * + * { margin-top: 1.4em; }
.jw-editorial__prose h2 {
    font-family: var(--jw-font-serif);
    font-size: clamp(26px, 3vw, 34px);
    font-weight: 500;
    color: var(--jw-charcoal);
    letter-spacing: -0.01em;
    line-height: 1.2;
    margin-top: 2.2em;
}
.jw-editorial__prose h3 {
    font-family: var(--jw-font-serif);
    font-size: 22px;
    font-weight: 500;
    color: var(--jw-charcoal);
    margin-top: 1.8em;
}
.jw-editorial__prose p:first-of-type::first-letter {
    float: left;
    font-family: var(--jw-font-serif);
    font-size: 62px;
    line-height: 0.82;
    padding: 6px 12px 0 0;
    color: var(--jw-champagne-d);
}
.jw-editorial__prose blockquote {
    margin: 2em 0;
    padding: 4px 0 4px 26px;
    border-left: 2px solid var(--jw-champagne);
    font-family: var(--jw-font-serif);
    font-size: 22px;
    line-height: 1.5;
    color: var(--jw-charcoal);
    font-style: italic;
}
.jw-editorial__prose img { border-radius: 12px; }
.jw-editorial__prose a { color: var(--jw-champagne-d); text-underline-offset: 3px; }

/* Assurance strip */
.jw-assurance-strip {
    background: var(--jw-charcoal);
    padding: 72px clamp(16px, 4vw, 40px);
}
.jw-assurance-strip__inner {
    max-width: 1240px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 40px;
}
.jw-assurance-strip__num {
    display: block;
    font-family: var(--jw-font-mono);
    font-size: 11px;
    letter-spacing: 0.2em;
    color: #E8C476;
    margin-bottom: 14px;
}
.jw-assurance-strip__title {
    font-family: var(--jw-font-serif);
    font-size: 20px;
    font-weight: 500;
    color: #fff;
    margin: 0 0 8px;
}
.jw-assurance-strip__sub {
    font-size: 14px;
    line-height: 1.65;
    color: rgba(255,255,255,0.6);
    margin: 0;
}

/* =====================================================================
 * CONTACT PAGE
 * =================================================================== */

.jw-contact__hero {
    padding: 88px clamp(16px, 4vw, 40px) 48px;
    text-align: center;
    background: linear-gradient(180deg, var(--jw-ivory) 0%, #fff 100%);
}
.jw-contact__eyebrow {
    font-size: 11px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--jw-champagne-d);
    font-weight: 700;
    margin: 0 0 12px;
}
.jw-contact__title {
    font-family: var(--jw-font-serif);
    font-size: clamp(34px, 4.4vw, 54px);
    font-weight: 500;
    color: var(--jw-charcoal);
    letter-spacing: -0.015em;
    margin: 0 0 14px;
}
.jw-contact__standfirst {
    font-size: 16px;
    line-height: 1.7;
    color: var(--jw-charcoal-50);
    max-width: 560px;
    margin: 0 auto;
}
.jw-contact__layout {
    max-width: 1100px;
    margin: 0 auto;
    padding: 48px clamp(16px, 4vw, 40px) 96px;
    display: grid;
    grid-template-columns: 300px minmax(0, 1fr);
    gap: 56px;
    align-items: start;
}
.jw-contact__aside {
    display: flex;
    flex-direction: column;
    gap: 26px;
    padding: 28px;
    background: var(--jw-ivory);
    border-radius: 14px;
    border: 1px solid var(--jw-charcoal-10);
    position: sticky;
    top: 24px;
}
.jw-contact__label {
    font-size: 10px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--jw-champagne-d);
    font-weight: 700;
    margin: 0 0 6px;
}
.jw-contact__value {
    font-size: 15px;
    line-height: 1.6;
    color: var(--jw-charcoal);
    margin: 0;
}
.jw-contact__value a { color: inherit; text-decoration: none; }
.jw-contact__value a:hover { color: var(--jw-champagne-d); }

/* Style whatever form plugin the client drops in */
.jw-contact__main input[type="text"],
.jw-contact__main input[type="email"],
.jw-contact__main input[type="tel"],
.jw-contact__main textarea,
.jw-contact__main select {
    width: 100%;
    padding: 13px 15px !important;
    background: #fff !important;
    border: 1px solid var(--jw-charcoal-20) !important;
    border-radius: 8px !important;
    font-family: var(--jw-font-sans) !important;
    font-size: 14px !important;
    color: var(--jw-charcoal) !important;
    box-shadow: none !important;
    transition: border-color 200ms var(--jw-ease);
}
.jw-contact__main input:focus,
.jw-contact__main textarea:focus,
.jw-contact__main select:focus {
    outline: none;
    border-color: var(--jw-champagne) !important;
}
.jw-contact__main input[type="submit"],
.jw-contact__main button[type="submit"] {
    width: auto;
    padding: 15px 34px !important;
    background: var(--jw-charcoal) !important;
    color: var(--jw-ivory) !important;
    border: 0 !important;
    border-radius: 8px !important;
    font-size: 12px !important;
    letter-spacing: 0.12em !important;
    text-transform: uppercase !important;
    font-weight: 700 !important;
    cursor: pointer;
    transition: all 200ms var(--jw-ease);
}
.jw-contact__main input[type="submit"]:hover,
.jw-contact__main button[type="submit"]:hover {
    background: #000 !important;
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(26,26,26,0.2);
}

/* =====================================================================
 * RESPONSIVE
 * =================================================================== */

@media (max-width: 1200px) {
    .jw-shop__container { grid-template-columns: 240px minmax(0, 1fr); gap: 32px; }
    ul.jw-card-grid--shop { gap: 20px !important; }
}

@media (max-width: 1024px) {
    ul.jw-card-grid--shop { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; }
    .jw-contact__layout { grid-template-columns: 1fr; gap: 32px; }
    .jw-contact__aside { position: static; }
}

@media (max-width: 900px) {
    .jw-shop__container { grid-template-columns: 1fr; }
    .jw-shop__filter-fab { display: inline-flex; }

    /* Sidebar becomes a drawer */
    .jw-shop__sidebar {
        position: fixed;
        inset: 0 auto 0 0;
        z-index: 70;
        width: min(340px, 88vw);
        transform: translateX(-102%);
        transition: transform 320ms var(--jw-ease);
        overflow-y: auto;
        background: #fff;
        box-shadow: 0 0 48px rgba(26,26,26,0.2);
        padding: 20px;
    }
    .jw-shop.is-filters-open .jw-shop__sidebar { transform: translateX(0); }
    .jw-shop.is-filters-open::before {
        content: '';
        position: fixed;
        inset: 0;
        z-index: 69;
        background: rgba(26,26,26,0.45);
        backdrop-filter: blur(2px);
    }
    .jw-filters { border: 0; padding: 0; }
    .jw-filters__close { display: block; }
}

@media (max-width: 640px) {
    .jw-shop-hero { padding: 48px 16px 36px; }
    .jw-shop-hero--image { padding: 88px 16px 64px; }
    ul.jw-card-grid--shop { gap: 14px !important; }
    .jw-toolbar__row { gap: 10px; }
    .jw-editorial__prose { font-size: 16px; }
    .jw-editorial__prose p:first-of-type::first-letter { font-size: 48px; }
    .jw-assurance-strip { padding: 48px 16px; }
    .jw-assurance-strip__inner { gap: 28px; }
}
