.cms-home {
    overflow: hidden;
}

.cms-home .container,
.home .post-disclosure .container {
    box-sizing: border-box !important;
    width: min(100%, 1320px) !important;
    max-width: 1320px !important;
    margin-inline: auto !important;
    padding-inline: 24px !important;
}

.cms-home *,
.cms-home *::before,
.cms-home *::after {
    min-width: 0;
}

.cms-home h1,
.cms-home h2,
.cms-home h3,
.home .post-disclosure__text {
    max-width: 100%;
    white-space: normal !important;
    overflow-wrap: break-word;
}

.cms-mobile-break {
    display: none;
}

.cms-hero__visual {
    display: none;
}

.cms-hero__visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 64% center;
}

.cms-hero__grid {
    min-height: 660px;
    grid-template-columns: minmax(0, 760px);
    align-content: center;
}

.cms-hero {
    min-height: 660px;
    padding: 0;
    background-image:
        linear-gradient(90deg, rgba(249, 243, 235, .99) 0%, rgba(249, 243, 235, .96) 34%, rgba(249, 243, 235, .48) 58%, rgba(249, 243, 235, .04) 78%),
        url("../images/editorial/hero-coffee-station.webp");
    background-repeat: no-repeat;
    background-position: center, center 46%;
    background-size: cover, cover;
}

.cms-hero::before {
    opacity: .45;
    mask-image: linear-gradient(to right, #000, transparent 52%);
}

.cms-fresh__grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
}

.cms-story--lead {
    display: grid;
    grid-template-columns: 1.08fr .92fr;
}

.cms-story--lead .cms-story__image {
    height: 100%;
    min-height: 520px;
    aspect-ratio: auto;
}

.cms-story--lead .cms-story__body {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: clamp(1.4rem, 3vw, 2.5rem);
}

.cms-story--lead .cms-story__meta {
    margin-top: auto;
}

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

.cms-story--row {
    display: block;
}

.cms-story--row .cms-story__image {
    height: auto;
    aspect-ratio: 4 / 3;
}

.cms-story--row .cms-story__body {
    padding: 1rem;
}

.cms-story--row h3 {
    font-size: 1.12rem;
    line-height: 1.18;
}

.cms-story--row .cms-story__meta {
    display: flex;
}

.cms-story-grid {
    grid-template-columns: 1.35fr repeat(3, minmax(0, 1fr));
}

.cms-story-grid .cms-story:first-child .cms-story__image {
    aspect-ratio: 4 / 3.15;
}

.cms-team__avatar img {
    width: 100%;
    height: 100%;
    min-height: 230px;
    border-radius: .8rem !important;
    object-fit: cover;
    object-position: center 22%;
}

.cms-newsletter__inner {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) auto minmax(240px, .55fr);
    padding: 0 0 0 clamp(2rem, 5vw, 4.5rem);
    overflow: hidden;
}

.cms-newsletter__media {
    align-self: stretch;
    min-height: 310px;
}

.cms-newsletter__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 68% center;
}

@media (max-width: 1100px) {
    .cms-hero__grid {
        grid-template-columns: minmax(0, 640px);
    }

    .cms-story--lead {
        grid-template-columns: 1fr;
    }

    .cms-story--lead .cms-story__image {
        min-height: 340px;
        aspect-ratio: 16 / 10;
    }

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

    .cms-newsletter__inner {
        grid-template-columns: 1fr auto;
        padding: clamp(2rem, 5vw, 4.5rem);
    }

    .cms-newsletter__media {
        display: none;
    }
}

.cms-category-banner {
    position: relative;
    display: block;
    overflow: hidden;
    min-height: 330px;
    margin-bottom: 1rem;
    border-radius: 1.25rem;
    color: #fff;
}

.cms-category-banner::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(27, 19, 14, .82), rgba(27, 19, 14, .12) 70%);
}

.cms-category-banner img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cms-category-banner > span {
    position: relative;
    z-index: 1;
    display: flex;
    width: min(520px, 82%);
    min-height: 330px;
    flex-direction: column;
    justify-content: flex-end;
    padding: clamp(1.5rem, 4vw, 3.5rem);
}

.cms-category-banner small {
    margin-bottom: .6rem;
    font-size: .7rem;
    font-style: normal;
    font-weight: 800;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.cms-category-banner strong {
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2rem, 4vw, 3.6rem);
    line-height: 1;
}

.cms-category-banner em {
    margin-top: 1rem;
    font-size: .82rem;
    font-style: normal;
    font-weight: 750;
}

@media (max-width: 560px) {
    body.home {
        max-width: 100%;
        overflow-x: hidden;
    }

    .cms-mobile-break {
        display: inline;
    }

    .cms-category-banner,
    .cms-category-banner > span {
        min-height: 250px;
    }

    .cms-category-banner > span {
        width: 100%;
    }

    .home .post-disclosure__main {
        align-items: flex-start;
    }

    .home .post-disclosure__text {
        width: 100%;
        margin: 0;
        font-size: .76rem;
        line-height: 1.45;
    }

    .cms-home .container,
    .home .post-disclosure .container {
        width: 100% !important;
        max-width: 100% !important;
        padding-inline: 16px !important;
    }

    .cms-hero h1 {
        font-size: 2.65rem;
        line-height: .96;
    }

    .cms-hero,
    .cms-hero__grid {
        min-height: 680px;
    }

    .cms-hero {
        background-image:
            linear-gradient(180deg, rgba(249, 243, 235, .98) 0%, rgba(249, 243, 235, .94) 58%, rgba(249, 243, 235, .52) 100%),
            url("../images/editorial/hero-coffee-station.webp");
        background-position: center, 68% center;
    }

    .cms-hero__copy,
    .cms-section-head > div {
        width: calc(100vw - 32px) !important;
        max-width: calc(100vw - 32px) !important;
    }

    .cms-section-head h2 {
        font-size: clamp(1.85rem, 10vw, 2.5rem);
        line-height: 1.02;
    }

    .cms-hero__actions {
        align-items: flex-start;
        flex-direction: column;
    }

    .cms-fresh__grid,
    .cms-fresh__rail,
    .cms-story-grid,
    .cms-story--lead {
        grid-template-columns: 1fr;
    }

    .cms-story--lead .cms-story__image {
        min-height: 250px;
    }

    .cms-newsletter__inner {
        grid-template-columns: 1fr;
    }
}
