:root {
    --ed-black: #050505;
    --ed-white: #fff;
    --ed-blue: #075eff;
    --ed-border: #dedede;
    --ed-header-height: 52px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body.ed-home {
    margin: 0;
    overflow-x: hidden;
    background: var(--ed-white);
    color: var(--ed-black);
    font-family: Arial, Helvetica, sans-serif;
    -webkit-font-smoothing: antialiased;
}

.ed-home a {
    color: inherit;
    text-decoration: none;
}

.ed-home img {
    display: block;
    max-width: 100%;
}

.ed-home button,
.ed-home input {
    border-radius: 0;
    font: inherit;
}

.ed-visually-hidden {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

.ed-skip {
    position: fixed;
    z-index: 1000;
    top: 8px;
    left: 8px;
    padding: 10px 14px;
    background: #fff;
    border: 2px solid #000;
    font-size: 12px;
    font-weight: 700;
    transform: translateY(-160%);
}

.ed-skip:focus {
    transform: none;
}

.ed-announcement {
    min-height: 30px;
    padding: 8px 18px;
    background: #000;
    color: #fff;
    text-align: center;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
    overflow: hidden;
    white-space: nowrap;
}

.ed-announcement span {
    display: inline-block;
    min-width: max-content;
    padding-left: 100%;
    animation: ed-announcement-ticker 22s linear infinite;
}

@keyframes ed-announcement-ticker {
    from { transform: translateX(0); }
    to { transform: translateX(-100%); }
}

.ed-header {
    position: sticky;
    z-index: 100;
    top: 0;
    display: grid;
    grid-template-columns: minmax(130px, .8fr) minmax(420px, 2.5fr) minmax(290px, 1.25fr);
    align-items: center;
    height: var(--ed-header-height);
    padding: 0 17px;
    background: rgba(255, 255, 255, .96);
    border-bottom: 1px solid #e5e5e5;
    backdrop-filter: blur(10px);
}

.ed-header.is-scrolled {
    box-shadow: 0 3px 18px rgba(0, 0, 0, .06);
}

.ed-logo {
    display: inline-flex;
    align-items: center;
    justify-self: start;
    min-width: 112px;
}

.ed-logo img {
    width: auto;
    max-width: 142px;
    height: 29px;
    object-fit: contain;
}

.ed-logo > span {
    font-size: 22px;
    font-weight: 900;
    letter-spacing: -.07em;
}

.ed-desktop-nav {
    display: flex;
    align-items: center;
    height: 100%;
    gap: clamp(16px, 2vw, 37px);
    overflow: hidden;
}

.ed-desktop-nav a,
.ed-header-actions a,
.ed-search-trigger {
    white-space: nowrap;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .025em;
    text-transform: uppercase;
}

.ed-desktop-nav a {
    position: relative;
    display: inline-flex;
    align-items: center;
    height: 100%;
}

.ed-desktop-nav a::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 10px;
    left: 0;
    height: 1px;
    background: #000;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .22s ease;
}

.ed-desktop-nav a:hover::after,
.ed-desktop-nav a:focus-visible::after {
    transform: scaleX(1);
}

.ed-header-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: clamp(11px, 1.5vw, 24px);
}

.ed-action-link,
.ed-search-trigger {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.ed-search-trigger,
.ed-icon-button {
    padding: 0;
    background: transparent;
    border: 0;
    color: #000;
    cursor: pointer;
}

.ed-header-actions svg {
    width: 15px;
    height: 15px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.7;
}

.ed-cart-link {
    position: relative;
}

.ed-cart-link b {
    display: grid;
    place-items: center;
    min-width: 15px;
    height: 15px;
    margin-left: -2px;
    padding: 0 3px;
    background: #0058ff;
    color: #fff;
    font-size: 8px;
}

.ed-mobile-only,
.ed-mobile-menu {
    display: none;
}

.ed-mobile-menu,
.ed-search-panel {
    position: fixed;
    z-index: 500;
    inset: 0;
    visibility: hidden;
    background: #fff;
    opacity: 0;
    pointer-events: none;
    transition: opacity .2s ease, visibility .2s ease;
}

.ed-mobile-menu.is-open,
.ed-search-panel.is-open {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
}

.ed-mobile-menu-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 58px;
    padding: 0 20px;
    border-bottom: 1px solid #ddd;
}

.ed-mobile-menu-head strong {
    font-size: 22px;
    font-weight: 900;
    letter-spacing: -.05em;
}

.ed-mobile-menu-head button,
.ed-search-panel > button {
    width: 44px;
    height: 44px;
    padding: 0;
    background: transparent;
    border: 0;
    cursor: pointer;
    font-size: 31px;
    font-weight: 200;
}

.ed-mobile-menu nav {
    display: flex;
    flex-direction: column;
    padding: 10px 20px 40px;
}

.ed-mobile-menu nav a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 0;
    border-bottom: 1px solid #e3e3e3;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
}

.ed-search-panel {
    display: grid;
    place-items: center;
    padding: 30px;
}

.ed-search-panel > button {
    position: absolute;
    top: 15px;
    right: 18px;
}

.ed-search-panel form {
    width: min(760px, 100%);
}

.ed-search-panel label {
    display: block;
    margin-bottom: 22px;
    font-size: clamp(25px, 4vw, 58px);
    font-weight: 900;
    letter-spacing: -.05em;
}

.ed-search-panel form > div {
    display: flex;
    border-bottom: 2px solid #000;
}

.ed-search-panel input {
    flex: 1;
    min-width: 0;
    padding: 17px 2px;
    border: 0;
    outline: 0;
    font-size: 18px;
}

.ed-search-panel form button {
    padding: 0 4px;
    background: #fff;
    border: 0;
    font-size: 11px;
    font-weight: 800;
    cursor: pointer;
}

body.ed-panel-open {
    overflow: hidden;
}

.ed-hero {
    overflow: hidden;
    background: #9c100b;
}

.ed-hero > a,
.ed-hero picture {
    position: relative;
    display: block;
}

.ed-hero img {
    width: 100%;
    aspect-ratio: 16 / 5;
    object-fit: cover;
    object-position: center;
}

.ed-hero-copy {
    position: absolute;
    z-index: 1;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px;
    color: #fff;
    text-align: center;
    text-transform: uppercase;
    text-shadow: 0 1px 15px rgba(0, 0, 0, .25);
}

.ed-hero-copy strong {
    font-size: clamp(29px, 4.5vw, 72px);
    font-weight: 500;
    letter-spacing: -.04em;
}

.ed-hero-copy small {
    margin-top: 8px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .08em;
}

.ed-category-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 2px;
    background: #111;
}

.ed-category-card {
    position: relative;
    display: block;
    min-height: min(39vw, 630px);
    overflow: hidden;
}

.ed-category-card img {
    width: 100%;
    height: 100%;
    padding: 0;
    object-fit: cover;
    object-position: center top;
    transition: transform .55s cubic-bezier(.2, .75, .3, 1);
}

.ed-category-card:hover img {
    transform: scale(1.035);
}

.ed-category-card span {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 13px 15px;
    background: rgba(255,255,255,.94);
    color: #000;
    font-size: 14px;
    font-weight: 900;
    line-height: 1.25;
    overflow-wrap: anywhere;
    letter-spacing: -.01em;
    text-transform: uppercase;
}

.ed-tone-1,
.ed-tone-3 {
    background: #f2f2f2;
}

.ed-tone-2,
.ed-tone-4 {
    background: #111;
    color: #fff;
}

.ed-feature {
    display: grid;
    grid-template-columns: clamp(430px, 24vw, 620px) minmax(0, 1fr);
    height: clamp(650px, 78vh, 920px);
    min-height: min(78vh, 920px);
    background: #000;
}

.ed-feature-media {
    position: relative;
    height: 100%;
    min-height: 0;
    overflow: hidden;
    background: #f2f2f2;
}

.ed-feature-media img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: right center;
    transition: transform .7s ease;
}

.ed-feature-media:hover img {
    transform: scale(1.018);
}

.ed-feature-copy {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: clamp(38px, 7vw, 130px);
    background: #050505;
    color: #fff;
    min-width: 0;
    overflow: visible;
}

.ed-feature-copy > span,
.ed-feature-copy > strong {
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

.ed-feature-copy h2 {
    max-width: 920px;
    margin: 10px 0 17px;
    font-size: clamp(34px, 3.8vw, 62px);
    font-weight: 800;
    line-height: .94;
    letter-spacing: -.045em;
    overflow-wrap: anywhere;
    padding-bottom: .08em;
    text-transform: uppercase;
}

.ed-feature-copy p {
    display: -webkit-box;
    max-width: 650px;
    margin: 0 0 18px;
    overflow: hidden;
    font-size: 15px;
    line-height: 1.5;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.ed-feature-copy > a,
.ed-club-copy > a {
    margin-top: 19px;
    padding: 12px 17px;
    background: #fff;
    color: #000;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
}

.ed-home.es-page .ed-feature-copy > a,
.ed-home.es-page .ed-club-copy > a {
    color: #000;
}

.ed-look-section {
    padding-bottom: 23px;
    background: #000;
    color: #fff;
}

.ed-section-title {
    display: flex;
    align-items: end;
    justify-content: space-between;
    min-height: 62px;
    padding: 18px 20px 13px;
}

.ed-section-title h2 {
    margin: 0;
    font-size: clamp(21px, 2.1vw, 34px);
    font-weight: 900;
    letter-spacing: -.04em;
    text-transform: uppercase;
}

.ed-section-title span {
    font-size: 8px;
    font-weight: 700;
}

.ed-section-title-dark {
    color: #fff;
}

.ed-look-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 2px;
}

.ed-look-card {
    position: relative;
    display: block;
    overflow: hidden;
    background: #f1f1f1;
}

.ed-look-card img {
    width: 100%;
    aspect-ratio: 3 / 4;
    padding: 0;
    object-fit: cover;
    object-position: center top;
    transition: transform .55s ease;
}

.ed-look-card:hover img {
    transform: scale(1.03);
}

.ed-look-card span {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 34px 12px 12px;
    background: linear-gradient(to top, rgba(0,0,0,.78), rgba(0,0,0,0));
    color: #fff;
    font-size: 12px;
    font-weight: 800;
    line-height: 1.25;
    overflow-wrap: anywhere;
    text-shadow: 0 2px 8px #000;
    text-transform: uppercase;
}

.ed-outline-button {
    display: table;
    margin: 20px auto 0;
    padding: 9px 13px;
    border: 1px solid #fff;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    transition: background .2s ease, color .2s ease;
}

.ed-outline-button:hover {
    background: #fff;
    color: #000;
}

.ed-club-section {
    display: grid;
    grid-template-columns: minmax(360px, 31.8%) minmax(0, 1fr);
    height: clamp(440px, 34.1vw, 820px);
    min-height: 0;
    overflow: hidden;
    background: #050505;
    color: #fff;
}

.ed-club-copy {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: clamp(30px, 3vw, 64px);
    min-width: 0;
    overflow: visible;
}

.ed-club-copy h2 {
    max-width: 100%;
    margin: 0 0 14px;
    font-size: clamp(40px, 4.4vw, 78px);
    font-weight: 900;
    line-height: .86;
    letter-spacing: -.065em;
    overflow-wrap: normal;
    word-break: keep-all;
    padding-bottom: .08em;
    text-transform: uppercase;
}

.ed-club-copy p {
    max-width: 360px;
    margin: 0;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.3;
    text-transform: uppercase;
}

.ed-club-copy > a {
    background: #fff;
    color: #000;
}

.ed-club-images {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: stretch;
    min-width: 0;
}

.ed-club-images a {
    height: 100%;
    overflow: hidden;
    background: #eee;
}

.ed-club-images a:nth-child(2) {
    transform: none;
}

.ed-club-images img {
    width: 100%;
    height: 100%;
    padding: 0;
    object-fit: cover;
    object-position: center top;
    mix-blend-mode: normal;
    transition: transform .6s ease;
}

.ed-club-images a:hover img {
    transform: scale(1.025);
}

.ed-products-section {
    padding-bottom: 20px;
    background: #fff;
}

.ed-product-rail {
    display: grid;
    grid-auto-columns: minmax(230px, 20vw);
    grid-auto-flow: column;
    gap: 1px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scrollbar-width: thin;
    scroll-snap-type: x proximity;
}

.ed-product-card {
    min-width: 0;
    scroll-snap-align: start;
    border-right: 1px solid #e5e5e5;
}

.ed-product-card > a {
    position: relative;
    display: block;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    background: #f4f4f4;
}

.ed-product-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    padding: 0;
    object-fit: contain;
    object-position: center;
    transition: opacity .28s ease, transform .45s ease;
}

.ed-product-card-secondary {
    opacity: 0;
}

.ed-product-card.has-secondary:hover .ed-product-card-primary,
.ed-product-card.has-secondary:focus-within .ed-product-card-primary {
    opacity: 0;
}

.ed-product-card.has-secondary:hover .ed-product-card-secondary,
.ed-product-card.has-secondary:focus-within .ed-product-card-secondary {
    opacity: 1;
    transform: none;
}

.ed-product-card > div {
    padding: 12px 12px 18px;
    font-size: 13px;
    text-transform: uppercase;
    min-width: 0;
}

.ed-product-card > div > a {
    display: -webkit-box;
    min-height: 31px;
    overflow: hidden;
    font-weight: 700;
    line-height: 1.3;
    overflow-wrap: anywhere;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.ed-product-card p {
    display: flex;
    gap: 8px;
    margin: 5px 0 0;
}

.ed-product-card del {
    color: #777;
}

.ed-brand-band {
    display: grid;
    grid-template-columns: minmax(270px, .9fr) minmax(380px, 1.4fr) minmax(190px, .7fr);
    align-items: center;
    min-height: 230px;
    padding: 30px 22px;
    overflow: hidden;
    background: #000;
    color: #fff;
}

.ed-brand-word {
    max-width: 500px;
    font-size: clamp(50px, 7vw, 114px);
    font-weight: 600;
    line-height: .72;
    letter-spacing: -.1em;
    text-transform: uppercase;
    word-break: break-all;
}

.ed-brand-circles {
    display: flex;
    align-items: center;
    justify-content: center;
}

.ed-brand-circles a {
    width: clamp(78px, 8.5vw, 145px);
    aspect-ratio: 1;
    margin-left: clamp(-16px, -1.2vw, -8px);
    overflow: hidden;
    border: 2px solid #000;
    border-radius: 50%;
    background: #ddd;
}

.ed-brand-circles img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    transition: transform .4s ease;
}

.ed-brand-circles a:hover img {
    transform: scale(1.08);
}

.ed-brand-copy {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    text-align: right;
    text-transform: uppercase;
}

.ed-brand-copy strong {
    font-size: clamp(26px, 3.5vw, 60px);
    font-weight: 900;
    line-height: .86;
}

.ed-brand-copy span {
    max-width: 230px;
    margin-top: 11px;
    font-size: 12px;
    font-weight: 700;
}

.ed-newsletter {
    padding: clamp(55px, 7vw, 100px) 20px;
    text-align: center;
}

.ed-newsletter h2 {
    margin: 0;
    font-size: clamp(27px, 4.2vw, 62px);
    font-weight: 900;
    letter-spacing: -.055em;
    text-transform: uppercase;
}

.ed-newsletter p {
    max-width: 700px;
    margin: 11px auto 26px;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.5;
    text-transform: uppercase;
}

.ed-newsletter form {
    display: flex;
    width: min(500px, 100%);
    margin: auto;
    border: 1px solid #000;
}

.ed-newsletter input {
    flex: 1;
    min-width: 0;
    padding: 14px;
    border: 0;
    outline: 0;
    font-size: 12px;
}

.ed-newsletter button {
    min-width: 112px;
    padding: 14px 17px;
    background: #000;
    border: 0;
    color: #fff;
    cursor: pointer;
    font-size: 11px;
    font-weight: 800;
}

.ed-footer {
    display: grid;
    grid-template-columns: 1.2fr repeat(3, 1fr) .8fr;
    gap: clamp(30px, 4.5vw, 85px);
    padding: 72px clamp(24px, 4vw, 72px) 24px;
    background: #050505;
    color: #fff;
    border-top: 0;
}

.ed-footer h2,
.ed-footer h3 {
    margin: 0 0 22px;
    font-size: 14px;
    font-weight: 900;
    text-transform: uppercase;
}

.ed-footer-help,
.ed-footer-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.ed-footer-help a,
.ed-footer-column a {
    margin-bottom: 12px;
    color: #d8d8d8;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.45;
    text-transform: uppercase;
}

.ed-footer-column a:hover,
.ed-footer-help a:hover {
    text-decoration: underline;
}

.ed-footer-social > div {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}

.ed-footer-social a {
    display: grid;
    place-items: center;
    width: 32px;
    height: 32px;
    border: 1px solid #fff;
    border-radius: 50%;
    font-size: 10px;
    font-weight: 800;
}

.ed-footer-bottom {
    grid-column: 1 / -1;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 42px;
    padding-top: 20px;
    border-top: 1px solid #333;
    color: #aaa;
    font-size: 10px;
    text-transform: uppercase;
}

.ed-category-card,
.ed-feature-media,
.ed-look-card,
.ed-product-card,
.ed-brand-circles a {
    contain: layout paint;
}

@supports (content-visibility: auto) {
    .ed-look-section,
    .ed-club-section,
    .ed-products-section,
    .ed-brand-band,
    .ed-newsletter,
    .ed-footer {
        content-visibility: auto;
    }

    .ed-look-section,
    .ed-products-section {
        contain-intrinsic-size: 1px 620px;
    }

    .ed-club-section,
    .ed-brand-band {
        contain-intrinsic-size: 1px 760px;
    }

    .ed-newsletter,
    .ed-footer {
        contain-intrinsic-size: 1px 360px;
    }
}

@media (max-width: 1080px) {
    .ed-header {
        grid-template-columns: 130px minmax(350px, 1fr) 230px;
    }

    .ed-header-actions span {
        display: none;
    }

    .ed-feature {
        grid-template-columns: clamp(390px, 43vw, 465px) minmax(0, 1fr);
    }

    .ed-feature-copy {
        padding: clamp(30px, 4vw, 52px);
    }

    .ed-club-section {
        grid-template-columns: minmax(300px, 32%) minmax(0, 1fr);
    }

    .ed-brand-band {
        grid-template-columns: .8fr 1.3fr;
    }

    .ed-brand-copy {
        display: none;
    }

    .ed-footer {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 760px) {
    :root {
        --ed-header-height: 48px;
    }

    .ed-announcement {
        min-height: 23px;
        padding: 6px 10px;
        font-size: 10px;
    }

    .ed-header {
        grid-template-columns: 38px 1fr auto;
        height: var(--ed-header-height);
        padding: 0 12px;
    }

    .ed-mobile-only {
        display: inline-flex;
    }

    .ed-icon-button {
        flex-direction: column;
        justify-content: center;
        width: 30px;
        height: 30px;
        gap: 4px;
    }

    .ed-icon-button span {
        width: 17px;
        height: 1px;
        background: #000;
    }

    .ed-logo {
        justify-self: center;
        min-width: 0;
    }

    .ed-logo img {
        max-width: 118px;
        height: 27px;
    }

    .ed-logo > span {
        font-size: 19px;
    }

    .ed-desktop-nav {
        display: none;
    }

    .ed-header-actions {
        gap: 13px;
    }

    .ed-header-actions .ed-action-link:not(.ed-cart-link) {
        display: none;
    }

    .ed-header-actions svg {
        width: 18px;
        height: 18px;
    }

    .ed-mobile-menu {
        display: block;
    }

    .ed-hero img {
        min-height: 62vh;
        aspect-ratio: auto;
        object-fit: cover;
    }

    .ed-hero-copy strong {
        font-size: 34px;
    }

    .ed-category-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .ed-category-card {
        min-height: 66vw;
    }

    .ed-category-card span {
        font-size: 10px;
    }

    .ed-feature {
        display: block;
        height: auto;
        min-height: 0;
    }

    .ed-feature-media {
        min-height: 0;
    }

    .ed-feature-media img {
        position: static;
        width: 100%;
        height: auto;
        max-height: 76vh;
        aspect-ratio: auto;
        object-position: center;
    }

    .ed-feature-copy {
        min-height: 350px;
        padding: 32px 20px 42px;
    }

    .ed-feature-copy h2 {
        font-size: 46px;
    }

    .ed-section-title {
        min-height: 55px;
        padding: 15px 12px 11px;
    }

    .ed-section-title h2 {
        font-size: 21px;
    }

    .ed-look-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .ed-look-card span {
        font-size: 10px;
    }

    .ed-club-section {
        display: block;
        height: auto;
        min-height: 0;
    }

    .ed-club-copy {
        min-height: 320px;
        padding: 48px 20px;
    }

    .ed-club-copy h2 {
        font-size: clamp(38px, 18vw, 94px);
    }

    .ed-club-images {
        height: auto;
        min-height: 0;
        aspect-ratio: 2 / 1;
    }

    .ed-club-images a:nth-child(2) {
        transform: none;
    }

    .ed-product-rail {
        grid-auto-columns: minmax(215px, 68vw);
    }

    .ed-brand-band {
        display: block;
        min-height: 250px;
        padding: 35px 14px;
    }

    .ed-brand-word {
        max-width: none;
        margin-bottom: 28px;
        font-size: clamp(54px, 21vw, 95px);
        line-height: .8;
        word-break: normal;
    }

    .ed-brand-circles {
        justify-content: flex-start;
    }

    .ed-brand-circles a {
        width: 24vw;
        max-width: 105px;
        min-width: 72px;
        margin-left: -8px;
    }

    .ed-brand-circles a:first-child {
        margin-left: 0;
    }

    .ed-newsletter {
        padding: 64px 16px;
    }

    .ed-newsletter form {
        display: block;
        border: 0;
    }

    .ed-newsletter input {
        width: 100%;
        border: 1px solid #000;
    }

    .ed-newsletter button {
        width: 100%;
        margin-top: 7px;
    }

    .ed-footer {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 36px 24px;
        padding-top: 34px;
    }

    .ed-footer-help,
    .ed-footer-social {
        grid-column: 1 / -1;
    }

    .ed-footer-bottom {
        flex-direction: column;
        margin-top: 10px;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    .ed-home *,
    .ed-home *::before,
    .ed-home *::after {
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
    }

    .ed-announcement span {
        padding-left: 0;
        animation: none !important;
    }
}
