/* News page */
.news-page {
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background: var(--theme-page-background);
}

/* News Hero */
.news-hero {
    position: relative;
    overflow: hidden;
    background: var(--color-yellow);
}

.news-hero__inner {
    width: min(100% - 72px, var(--page-width));
    min-height: 520px;
    margin: 0 auto;
    padding: 72px 0;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.75fr);
    align-items: center;
    gap: 64px;
}

.news-hero__content {
    max-width: 680px;
}

.news-hero__eyebrow {
    width: fit-content;
    margin: 0 0 30px;
    padding: 9px 22px;
    border-radius: 999px;
    color: var(--color-white);
    background: var(--color-red);
    font-size: 11px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.news-hero__title {
    margin: 0;
    color: var(--color-primary);
    font-size: clamp(46px, 5vw, 68px);
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.035em;
}

.news-hero__title span,
.news-hero__title strong {
    font: inherit;
}

.news-hero__title strong {
    color: var(--color-red);
}

.news-hero__description {
    max-width: 610px;
    margin: 24px 0 0;
    color: var(--color-primary-deep);
    font-size: 15px;
    font-weight: 500;
    line-height: 1.65;
}

.news-hero__section-actions {
    width: fit-content;
    max-width: 100%;
    margin-top: 42px;
    display: grid;
    grid-template-columns: repeat(3, 190px);
    gap: 14px;
}

.news-hero__button {
    width: 100%;
    border: 2px solid transparent;
    transition:
        transform 180ms ease,
        box-shadow 180ms ease;
}

.news-hero__button--latest {
    color: var(--color-white);
    background: var(--color-red);
}

.news-hero__button--featured {
    color: var(--color-white);
    background: var(--color-primary);
}

.news-hero__button--previous {
    color: var(--color-white);
    background: var(--color-pink-deep);
}

.news-hero__button--follow {
    width: 190px;
    margin-top: 16px;
    color: var(--color-primary);
    border-color: var(--color-primary);
    background: var(--color-white);
}

.news-hero__button:hover,
.news-hero__button:focus-visible {
    transform: translateY(-2px);
    box-shadow: 0 10px 22px color-mix(in srgb, var(--color-text) 12%, transparent);
}

.news-hero__button:focus-visible {
    outline: 3px solid var(--color-white);
    outline-offset: 3px;
}

.news-hero__button:active {
    transform: translateY(1px) scale(0.98);
    box-shadow:
        0 3px 8px
        color-mix(
            in srgb,
            var(--color-text) 10%,
            transparent
        );
}

.news-hero__visual {
    position: relative;
    min-height: 410px;
}

.news-hero__stage {
    position: relative;
    width: 500px;
    height: 400px;
    margin: 0 auto;
}

.news-hero__asset {
    position: absolute;
    display: block;
    max-width: none;
    height: auto;
}

.news-hero__asset--blue-circle {
    top: -6px;
    left: -26px;
    width: 360px;
    z-index: 1;
}

.news-hero__asset--pink-circle {
    top: 38px;
    right: -22px;
    width: 315px;
    z-index: 1;
}

.news-hero__asset--monitor {
    bottom: 8px;
    left: calc(50% - 10px);
    width: 402px;
    z-index: 2;
    transform: translateX(-50%);
}

.news-hero__page-frame {
    position: absolute;
    top: 29px;
    left: calc(50% - 10px);
    width: 248px;
    height: 262px;
    overflow: hidden;
    border-radius: 18px 18px 0 0;
    z-index: 3;
    transform: translateX(-50%);
}

.news-hero__asset--page {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}

/* Desktop News Hero entrance */
@media (min-width: 1101px) {
    @keyframes news-hero-content-enter {
        from {
            opacity: 0;
            transform: translateY(10px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    @keyframes news-hero-visual-enter {
        from {
            opacity: 0;
            transform: translateX(14px);
        }

        to {
            opacity: 1;
            transform: translateX(0);
        }
    }

    .news-hero__eyebrow {
        animation:
            news-hero-content-enter
            400ms ease backwards;
    }

    .news-hero__title {
        animation:
            news-hero-content-enter
            440ms ease 50ms backwards;
    }

    .news-hero__description {
        animation:
            news-hero-content-enter
            440ms ease 120ms backwards;
    }

    .news-hero__section-actions {
        animation:
            news-hero-content-enter
            440ms ease 190ms backwards;
    }

    .news-hero__button--follow {
        animation:
            news-hero-content-enter
            420ms ease 250ms backwards;
    }

    .news-hero__visual {
        animation:
            news-hero-visual-enter
            560ms ease 100ms backwards;
    }
}

@media (min-width: 1101px) and (prefers-reduced-motion: reduce) {
    .news-hero__eyebrow,
    .news-hero__title,
    .news-hero__description,
    .news-hero__section-actions,
    .news-hero__button--follow,
    .news-hero__visual {
        animation: none;
    }
}

/* Desktop News Hero artwork interaction */
@media (min-width: 1101px) and (hover: hover) and (pointer: fine) {
    .news-hero__asset--blue-circle,
    .news-hero__asset--pink-circle,
    .news-hero__asset--monitor,
    .news-hero__asset--page {
        transition: transform 280ms ease;
    }

    .news-hero__page-frame {
        transition:
            transform 300ms ease,
            height 300ms ease;
    }

    .news-hero__stage:hover .news-hero__asset--blue-circle {
        transform: translate(-4px, -3px) scale(1.01);
    }

    .news-hero__stage:hover .news-hero__asset--pink-circle {
        transform: translate(4px, 2px) scale(1.01);
    }

    .news-hero__stage:hover .news-hero__asset--monitor {
        transform:
            translateX(-50%)
            translateY(-4px);
    }

    .news-hero__stage:hover .news-hero__page-frame {
        height: 287px;
        transform:
            translateX(-50%)
            translateY(-28px);
    }

    .news-hero__stage:hover .news-hero__asset--page {
        transform: none;
    }
}

@media (min-width: 1101px) and (prefers-reduced-motion: reduce) {
    .news-hero__asset--blue-circle,
    .news-hero__asset--pink-circle,
    .news-hero__asset--monitor,
    .news-hero__page-frame,
    .news-hero__asset--page {
        transition: none;
    }

    .news-hero__stage:hover .news-hero__asset--blue-circle,
    .news-hero__stage:hover .news-hero__asset--pink-circle,
    .news-hero__stage:hover .news-hero__asset--page {
        transform: none;
    }

    .news-hero__stage:hover .news-hero__asset--monitor,
    .news-hero__stage:hover .news-hero__page-frame {
        transform: translateX(-50%);
    }
}

@media (max-width: 1100px) {
    .news-hero__section-actions {
        width: 100%;
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

/* Tablet */
@media (max-width: 900px) {
    .news-hero__inner {
        width: min(100% - 48px, var(--page-width));
        min-height: auto;
        padding: 62px 0 56px;
        display: block;
    }

    .news-hero__content {
        max-width: none;
    }

    .news-hero__visual {
        width: 100%;
        max-width: 390px;
        min-height: 310px;
        margin: 42px auto 0;
    }

    .news-hero__stage {
        position: absolute;
        top: 0;
        left: 50%;
        width: 500px;
        height: 400px;
        transform: translateX(-50%) scale(0.74);
        transform-origin: top center;
    }
}

/*
 * Medium-width News Hero
 *
 * Tablets retain the side-by-side composition while using proportions
 * appropriate to their available width.
 */
@media (min-width: 821px) and (max-width: 1100px) {
    .news-hero__inner {
        width: min(100% - 48px, var(--page-width));
        min-height: 520px;
        padding: 56px 0;
        display: grid;
        grid-template-columns: minmax(0, 1fr) 400px;
        align-items: center;
        gap: 20px;
    }

    .news-hero__content {
        max-width: none;
    }

    .news-hero__eyebrow {
        margin-bottom: 26px;
    }

    .news-hero__title {
        font-size: clamp(44px, 5.2vw, 60px);
    }

    .news-hero__description {
        max-width: 470px;
        font-size: 14px;
    }

    .news-hero__section-actions {
        width: 100%;
        margin-top: 34px;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 10px;
    }

    .news-hero__button {
        min-width: 0;
        min-height: 40px;
        padding-right: 10px;
        padding-left: 10px;
        font-size: 10px;
    }

    .news-hero__button--follow {
        width: calc((100% - 20px) / 3);
        margin-top: 12px;
    }

    .news-hero__visual {
        width: 100%;
        max-width: none;
        min-height: 340px;
        margin: 0;
    }

    .news-hero__stage {
        position: absolute;
        top: 50%;
        left: 50%;
        width: 500px;
        height: 400px;
        transform: translate(-50%, -50%) scale(0.80);
        transform-origin: center;
    }
}

/* Compact tablets such as iPad Mini and iPad Air */
@media (min-width: 681px) and (max-width: 820px) {
    .news-hero__inner {
        width: min(100% - 32px, var(--page-width));
        min-height: 430px;
        padding: 44px 0;
        display: grid;
        grid-template-columns: minmax(0, 1fr) 300px;
        align-items: center;
        gap: 12px;
    }

    .news-hero__content {
        max-width: none;
    }

    .news-hero__eyebrow {
        margin-bottom: 22px;
        font-size: 10px;
    }

    .news-hero__title {
        font-size: clamp(38px, 5.7vw, 46px);
    }

    .news-hero__description {
        max-width: 390px;
        margin-top: 18px;
        font-size: 13px;
        line-height: 1.55;
    }

    .news-hero__section-actions {
        width: 100%;
        margin-top: 30px;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 8px;
    }

    .news-hero__button {
        min-width: 0;
        min-height: 38px;
        padding-right: 8px;
        padding-left: 8px;
        font-size: 9px;
    }

    .news-hero__button--follow {
        width: calc((100% - 16px) / 3);
        margin-top: 10px;
    }

    .news-hero__visual {
        width: 100%;
        max-width: none;
        min-height: 270px;
        margin: 0;
    }

    .news-hero__stage {
        position: absolute;
        top: 50%;
        left: 50%;
        width: 500px;
        height: 400px;
        transform: translate(-50%, -50%) scale(0.60);
        transform-origin: center;
    }
}

/* Mobile */
@media (max-width: 680px) {
    .news-hero__inner {
        width: min(100% - 32px, var(--page-width));
        min-height: auto;
        padding: 52px 0 58px;
        display: block;
    }

    .news-hero__content {
        max-width: none;
    }

    .news-hero__eyebrow {
        margin-bottom: 24px;
    }

    .news-hero__title {
        font-size: clamp(42px, 14vw, 56px);
    }

    .news-hero__description {
        margin-top: 20px;
        font-size: 15px;
    }

    .news-hero__section-actions {
        width: 100%;
        margin-top: 34px;
        grid-template-columns: minmax(0, 1fr);
        gap: 12px;
    }

    .news-hero__button {
        width: 100%;
    }

    .news-hero__button--follow {
        margin-top: 12px;
    }

    .news-hero__visual {
        width: 100%;
        max-width: 300px;
        min-height: 248px;
        margin: 36px auto 0;
    }

    .news-hero__stage {
        position: absolute;
        top: 0;
        left: 50%;
        width: 500px;
        height: 400px;
        transform: translateX(-50%) scale(0.56);
        transform-origin: top center;
    }
}

@media (prefers-reduced-motion: reduce) {
    .news-hero__button {
        transition: none;
    }

    .news-hero__button:hover,
    .news-hero__button:focus-visible {
        transform: none;
    }
}

/* News overview and lead article */
.news-overview {
    padding: 76px 0 84px;
    background: var(--theme-page-background);
}

.news-overview__inner {
    width: min(100% - 72px, var(--page-width));
    margin: 0 auto;
}

.news-overview__heading {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}

.news-overview__eyebrow {
    width: fit-content;
    margin: 0 auto 18px;
    padding: 9px 22px;
    border-radius: 999px;
    color: var(--color-white);
    background: var(--color-red);
    font-size: 11px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.news-overview__heading h2 {
    margin: 0;
    color: var(--color-primary);
    font-size: clamp(36px, 4.2vw, 52px);
    font-weight: 600;
    line-height: 1.05;
    letter-spacing: -0.025em;
}

.news-overview__description {
    max-width: 620px;
    margin: 18px auto 0;
    color: var(--color-primary);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.65;
}

.news-lead {
    max-width: 1080px;
    margin: 46px auto 0;
    padding: 10px;
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
    align-items: stretch;
    overflow: hidden;
    border: 2px solid var(--color-red);
    border-radius: 28px;
    background: var(--theme-surface-raised);
    transition:
        transform 220ms ease,
        box-shadow 220ms ease;
}

@media (min-width: 1101px) and (hover: hover) and (pointer: fine) {
    .news-lead:hover {
        transform: translateY(-5px);
        box-shadow:
            0 18px 34px
            color-mix(
                in srgb,
                var(--color-primary) 18%,
                transparent
            );
    }
}

.news-lead__media {
    min-height: 360px;
    overflow: hidden;
    border-radius: 20px;
    background: var(--theme-surface-subtle);
}

.news-lead__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-lead__placeholder {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 360px;
    display: grid;
    place-items: center;
    overflow: hidden;
    color: var(--color-white);
    background: var(--color-primary);
}

.news-lead__placeholder::before,
.news-lead__placeholder::after {
    content: "";
    position: absolute;
    border-radius: 50%;
}

.news-lead__placeholder::before {
    width: 290px;
    height: 290px;
    top: -72px;
    right: -62px;
    background: var(--color-yellow);
}

.news-lead__placeholder::after {
    width: 220px;
    height: 220px;
    bottom: -82px;
    left: -52px;
    background: var(--color-pink);
}

.news-lead__placeholder span {
    position: relative;
    z-index: 1;
    padding: 13px 22px;
    border-radius: 999px;
    color: var(--color-primary);
    background: var(--color-white);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.news-lead__content {
    padding: 42px 36px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.news-lead__badge {
    width: fit-content;
    margin: 0 0 24px;
    padding: 8px 18px;
    border-radius: 999px;
    color: var(--color-white);
    background: var(--color-red);
    font-size: 10px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.news-lead__content h3 {
    margin: 0;
    color: var(--color-primary);
    font-size: clamp(28px, 3vw, 40px);
    font-weight: 600;
    line-height: 1.08;
    letter-spacing: -0.025em;
}

.news-lead__excerpt {
    margin: 22px 0 0;
    color: var(--color-primary);
    font-size: 14px;
    line-height: 1.65;
}

.news-lead__button {
    min-width: 138px;
    margin-top: 32px;
    border: 0;
    color: var(--color-white);
    background: var(--color-primary);
    cursor: pointer;
    transition:
        transform 180ms ease,
        box-shadow 180ms ease;
}

.news-lead__button:hover,
.news-lead__button:focus-visible {
    transform: translateY(-2px);
    box-shadow: 0 8px 0 var(--color-yellow);
}

.news-lead__button:active {
    transform: translateY(1px) scale(0.98);
    box-shadow: 0 3px 0 var(--color-yellow);
}

.news-lead__button:focus-visible {
    outline: 3px solid var(--color-yellow);
    outline-offset: 3px;
}

@media (max-width: 960px) {
    .news-lead {
        grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
    }

    .news-lead__media,
    .news-lead__placeholder {
        min-height: 320px;
    }

    .news-lead__content {
        padding: 32px 28px;
    }
}

@media (max-width: 760px) {
    .news-overview__inner {
        width: min(100% - 40px, var(--page-width));
    }

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

    .news-lead__media,
    .news-lead__placeholder {
        min-height: 290px;
    }
}

@media (max-width: 600px) {
    .news-overview {
        padding: 52px 0 58px;
    }

    .news-overview__inner {
        width: min(100% - 32px, var(--page-width));
    }

    .news-overview__heading h2 {
        font-size: 36px;
    }

    .news-overview__description {
        font-size: 13px;
    }

    .news-lead {
        margin-top: 34px;
        padding: 8px;
        border-radius: 24px;
    }

    .news-lead__media,
    .news-lead__placeholder {
        min-height: 230px;
        border-radius: 17px;
    }

    .news-lead__content {
        padding: 28px 20px 24px;
    }

    .news-lead__badge {
        margin-bottom: 18px;
    }

    .news-lead__content h3 {
        font-size: 29px;
    }

    .news-lead__excerpt {
        margin-top: 18px;
        font-size: 13px;
    }

    .news-lead__button {
        width: 100%;
        margin-top: 24px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .news-lead__button {
        transition: none;
    }

    .news-lead__button:hover,
    .news-lead__button:focus-visible,
    .news-lead__button:active {
        transform: none;
    }
}

/* Desktop News overview entrance */
@media (min-width: 1101px) {
    .news-overview.is-reveal-ready
    .news-overview__heading {
        opacity: 0;
        transform: translateY(10px);
    }

    .news-overview.is-reveal-ready
    .news-lead {
        opacity: 0;
        transform: translateY(10px);
    }

    .news-overview.is-revealed
    .news-overview__heading {
        opacity: 1;
        transform: translateY(0);
        transition:
            opacity 420ms ease,
            transform 420ms ease;
    }

    .news-overview.is-revealed
    .news-lead {
        opacity: 1;
        transform: translateY(0);
        transition:
            opacity 440ms ease 90ms,
            transform 220ms ease,
            box-shadow 220ms ease;
    }

    .news-overview.is-revealed
    .news-lead:hover {
        transform: translateY(-5px);
    }
}

@media (min-width: 1101px) and (prefers-reduced-motion: reduce) {
    .news-overview.is-reveal-ready
    .news-overview__heading,
    .news-overview.is-revealed
    .news-overview__heading,
    .news-overview.is-reveal-ready
    .news-lead,
    .news-overview.is-revealed
    .news-lead {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .news-overview.is-revealed
    .news-lead:hover {
        transform: none;
        box-shadow: none;
    }
}

/* News collection sections */
.news-collection--latest {
    --news-section-accent-left: var(--color-red);
    --news-section-accent-right: var(--color-primary);
}

.news-collection--featured {
    --news-section-accent-left: var(--color-primary);
    --news-section-accent-right: var(--color-pink);
}

.news-collection--previous {
    --news-section-accent-left: var(--color-pink);
    --news-section-accent-right: var(--color-yellow);
}

.news-collection {
    position: relative;
    padding: 82px 0 90px;
    overflow: hidden;
    background: var(--theme-page-background);
}

.news-collection::before,
.news-collection::after {
    content: "";
    position: absolute;
    top: 24px;
    bottom: 24px;
    width: 6px;
    border-radius: 999px;
    pointer-events: none;
}

.news-collection::before {
    left: 8px;
    background: var(--news-section-accent-left);
}

.news-collection::after {
    right: 8px;
    background: var(--news-section-accent-right);
}

.news-collection__inner {
    width: min(100% - 72px, var(--page-width));
    margin: 0 auto;
}

.news-collection__heading {
    max-width: 680px;
    margin: 0 auto;
    text-align: center;
}

.news-collection__heading h2 {
    margin: 0;
    color: var(--color-primary);
    font-size: clamp(38px, 4vw, 52px);
    font-weight: 600;
    line-height: 1.05;
    letter-spacing: -0.025em;
}

.news-collection__heading p {
    margin: 16px 0 0;
    color: var(--color-primary);
    font-size: 14px;
    line-height: 1.6;
}

.news-collection__heading > span {
    width: 78px;
    height: 4px;
    margin: 20px auto 0;
    display: block;
    border-radius: 999px;
    background: var(--color-red);
}

.news-collection--featured .news-collection__heading > span {
    background: var(--color-primary);
}

.news-collection--previous .news-collection__heading > span {
    background: var(--color-pink);
}

.news-collection__grid {
    margin-top: 46px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
}

.news-page-card {
    min-height: 500px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border: 2px solid var(--color-red);
    border-radius: 24px;
    background: var(--theme-surface-raised);
    transition:
        transform 180ms ease,
        box-shadow 180ms ease;
}

.news-page-card--blue {
    border-color: var(--color-primary);
}

.news-page-card--pink {
    border-color: var(--color-pink);
}

.news-page-card--yellow {
    border-color: var(--color-yellow);
}

.news-page-card:hover {
    transform: translateY(-5px);
    box-shadow:
        0 18px 34px
        color-mix(in srgb, var(--color-primary) 18%, transparent);
}

.news-page-card__media {
    position: relative;
    height: 220px;
    margin: 12px 12px 0;
    flex-shrink: 0;
    overflow: hidden;
    border-radius: 17px;
    background: var(--color-red);
}

.news-page-card--blue .news-page-card__media {
    background: var(--color-primary);
}

.news-page-card--pink .news-page-card__media {
    background: var(--color-pink);
}

.news-page-card--yellow .news-page-card__media {
    background: var(--color-yellow);
}

.news-page-card__media img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

@media (min-width: 1101px) and (hover: hover) and (pointer: fine) {
    .news-page-card__media img,
    .news-page-card__placeholder::before,
    .news-page-card__placeholder::after {
        transition: transform 280ms ease;
    }

    .news-page-card:hover .news-page-card__media img {
        transform: scale(1.025);
    }

    .news-page-card:hover .news-page-card__placeholder::before {
        transform: translate(-3px, 3px) scale(1.02);
    }

    .news-page-card:hover .news-page-card__placeholder::after {
        transform: translate(3px, -2px) scale(1.02);
    }
}

@media (min-width: 1101px) and (prefers-reduced-motion: reduce) {
    .news-page-card__media img,
    .news-page-card__placeholder::before,
    .news-page-card__placeholder::after {
        transition: none;
        transform: none;
    }
}

.news-page-card__placeholder {
    position: relative;
    width: 100%;
    height: 100%;
    display: grid;
    place-items: center;
    overflow: hidden;
}

.news-page-card__placeholder::before,
.news-page-card__placeholder::after {
    content: "";
    position: absolute;
    border-radius: 50%;
}

.news-page-card__placeholder::before {
    width: 190px;
    height: 190px;
    top: -72px;
    right: -42px;
    background: var(--color-yellow);
}

.news-page-card__placeholder::after {
    width: 140px;
    height: 140px;
    bottom: -58px;
    left: -32px;
    background: var(--color-white);
    opacity: 0.32;
}

.news-page-card__placeholder span {
    position: relative;
    z-index: 1;
    padding: 10px 16px;
    border-radius: 999px;
    color: var(--color-primary);
    background: var(--color-white);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.025em;
    text-transform: uppercase;
}

.news-page-card__content {
    padding: 22px 22px 24px;
    display: flex;
    flex: 1;
    flex-direction: column;
    align-items: flex-start;
}

.news-page-card__meta {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.news-page-card__meta > span {
    padding: 7px 13px;
    border-radius: 999px;
    color: var(--color-white);
    background: var(--color-red);
    font-size: 9px;
    font-weight: 700;
    line-height: 1;
    text-transform: uppercase;
}

.news-page-card--blue .news-page-card__meta > span {
    background: var(--color-primary);
}

.news-page-card--pink .news-page-card__meta > span {
    background: var(--color-pink);
}

.news-page-card--yellow .news-page-card__meta > span {
    color: var(--color-white);
    background: var(--color-yellow);
}

.news-page-card__meta time {
    color: var(--color-primary);
    font-size: 9px;
    font-weight: 600;
    white-space: nowrap;
}

.news-page-card__content h3 {
    margin: 22px 0 0;
    color: var(--color-primary);
    font-size: 24px;
    font-weight: 600;
    line-height: 1.18;
    letter-spacing: -0.02em;
}

.news-page-card__content > p {
    margin: 16px 0 0;
    color: var(--color-primary);
    font-size: 13px;
    line-height: 1.6;
}

.news-page-card__button {
    min-width: 126px;
    min-height: 40px;
    margin-top: auto;
    padding: 0 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 0;
    border-radius: 999px;
    color: var(--color-white);
    background: var(--color-primary);
    font: inherit;
    font-size: 10px;
    font-weight: 700;
    line-height: 1;
    text-transform: uppercase;
    cursor: pointer;
    transition:
        transform 180ms ease,
        box-shadow 180ms ease;
}

.news-page-card__button:hover,
.news-page-card__button:focus-visible {
    transform: translateY(-2px);
    box-shadow: 0 8px 0 var(--color-yellow);
}

.news-page-card__button:active {
    transform: translateY(1px) scale(0.98);
    box-shadow: 0 3px 0 var(--color-yellow);
}

.news-page-card__button:focus-visible {
    outline: 3px solid var(--color-yellow);
    outline-offset: 3px;
}

.news-page-card__button span {
    font-size: 15px;
    line-height: 1;
}

@media (max-width: 960px) {
    .news-collection__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 680px) {
    .news-collection {
        padding: 58px 0 64px;
    }

    .news-collection__inner {
        width: min(100% - 32px, var(--page-width));
    }

    .news-collection__heading h2 {
        font-size: 38px;
    }

    .news-collection__heading p {
        font-size: 13px;
    }

    .news-collection__grid {
        margin-top: 36px;
        grid-template-columns: minmax(0, 1fr);
        gap: 24px;
    }

    .news-page-card {
        min-height: 480px;
    }

    .news-page-card__media {
        height: 215px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .news-page-card,
    .news-page-card__button {
        transition: none;
    }

    .news-page-card:hover,
    .news-page-card__button:hover,
    .news-page-card__button:focus-visible,
    .news-page-card__button:active {
        transform: none;
    }
}

/* Desktop Latest News entrance */
@media (min-width: 1101px) {
    .news-collection--latest.is-reveal-ready
    .news-collection__heading {
        opacity: 0;
        transform: translateY(10px);
    }

    .news-collection--latest.is-reveal-ready
    .news-page-card {
        opacity: 0;
    }

    .news-collection--latest.is-reveal-ready::before,
    .news-collection--latest.is-reveal-ready::after {
        opacity: 0;
    }

    .news-collection--latest.is-revealed
    .news-collection__heading {
        opacity: 1;
        transform: translateY(0);
        transition:
            opacity 420ms ease,
            transform 420ms ease;
    }

    .news-collection--latest.is-revealed
    .news-page-card {
        opacity: 1;
        transition:
            opacity 400ms ease 90ms,
            transform 180ms ease,
            box-shadow 180ms ease;
    }

    .news-collection--latest.is-revealed
    .news-page-card:nth-child(2) {
        transition-delay: 150ms, 0ms, 0ms;
    }

    .news-collection--latest.is-revealed
    .news-page-card:nth-child(3) {
        transition-delay: 210ms, 0ms, 0ms;
    }

    .news-collection--latest.is-revealed::before,
    .news-collection--latest.is-revealed::after {
        opacity: 1;
        transition: opacity 360ms ease 60ms;
    }
}

@media (min-width: 1101px) and (prefers-reduced-motion: reduce) {
    .news-collection--latest.is-reveal-ready
    .news-collection__heading,
    .news-collection--latest.is-revealed
    .news-collection__heading,
    .news-collection--latest.is-reveal-ready
    .news-page-card,
    .news-collection--latest.is-revealed
    .news-page-card,
    .news-collection--latest.is-reveal-ready::before,
    .news-collection--latest.is-reveal-ready::after,
    .news-collection--latest.is-revealed::before,
    .news-collection--latest.is-revealed::after {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

/* Desktop Featured News entrance */
@media (min-width: 1101px) {
    .news-collection--featured.is-reveal-ready
    .news-collection__heading {
        opacity: 0;
        transform: translateY(10px);
    }

    .news-collection--featured.is-reveal-ready
    .news-page-card {
        opacity: 0;
    }

    .news-collection--featured.is-reveal-ready::before,
    .news-collection--featured.is-reveal-ready::after {
        opacity: 0;
    }

    .news-collection--featured.is-revealed
    .news-collection__heading {
        opacity: 1;
        transform: translateY(0);
        transition:
            opacity 420ms ease,
            transform 420ms ease;
    }

    .news-collection--featured.is-revealed
    .news-page-card {
        opacity: 1;
        transition:
            opacity 400ms ease 90ms,
            transform 180ms ease,
            box-shadow 180ms ease;
    }

    .news-collection--featured.is-revealed
    .news-page-card:nth-child(2) {
        transition-delay: 150ms, 0ms, 0ms;
    }

    .news-collection--featured.is-revealed
    .news-page-card:nth-child(3) {
        transition-delay: 210ms, 0ms, 0ms;
    }

    .news-collection--featured.is-revealed::before,
    .news-collection--featured.is-revealed::after {
        opacity: 1;
        transition: opacity 360ms ease 60ms;
    }
}

@media (min-width: 1101px) and (prefers-reduced-motion: reduce) {
    .news-collection--featured.is-reveal-ready
    .news-collection__heading,
    .news-collection--featured.is-revealed
    .news-collection__heading,
    .news-collection--featured.is-reveal-ready
    .news-page-card,
    .news-collection--featured.is-revealed
    .news-page-card,
    .news-collection--featured.is-reveal-ready::before,
    .news-collection--featured.is-reveal-ready::after,
    .news-collection--featured.is-revealed::before,
    .news-collection--featured.is-revealed::after {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

/* Desktop Previous News carousel */
.news-previous-carousel__control {
    display: none;
}

@media (min-width: 1101px) {
    .news-previous-carousel {
        position: relative;
        margin-top: 46px;
    }

    .news-previous-carousel__viewport {
        margin: -22px 0 -40px;
        padding: 22px 0 40px;
        overflow: hidden;
    }

    .news-previous-carousel__track {
        margin-top: 0;
        display: flex;
        gap: 28px;
        transition: transform 360ms ease;
        will-change: transform;
    }

    .news-previous-carousel__track .news-page-card {
        min-width: 0;
        flex: 0 0 calc((100% - 56px) / 3);
    }

    .news-previous-carousel__control {
        position: absolute;
        top: 50%;
        z-index: 4;
        width: 46px;
        height: 46px;
        padding: 0;
        display: grid;
        place-items: center;
        border: 2px solid var(--color-primary);
        border-radius: 50%;
        color: var(--color-primary);
        background: var(--theme-surface);
        font: inherit;
        cursor: pointer;
        transform: translateY(-50%);
        transition:
            transform 180ms ease,
            box-shadow 180ms ease,
            background-color 180ms ease,
            color 180ms ease;
    }

    .news-previous-carousel__control--previous {
        left: -30px;
    }

    .news-previous-carousel__control--next {
        right: -30px;
    }

    .news-previous-carousel__control span {
        width: 9px;
        height: 9px;
        display: block;
        border-top: 2px solid currentColor;
        border-right: 2px solid currentColor;
        font-size: 0;
        line-height: 0;
    }

    .news-previous-carousel__control--previous span {
        position: relative;
        left: 1px;
        transform: rotate(-135deg);
    }

    .news-previous-carousel__control--next span {
        position: relative;
        left: -1px;
        transform: rotate(45deg);
    }

    .news-previous-carousel__control:hover,
    .news-previous-carousel__control:focus-visible {
        color: var(--color-white);
        background: var(--color-primary);
        transform:
            translateY(-50%)
            translateY(-2px);
        box-shadow:
            0 8px 18px
            color-mix(
                in srgb,
                var(--color-text) 12%,
                transparent
            );
    }

    .news-previous-carousel__control:active {
        transform:
            translateY(-50%)
            translateY(1px)
            scale(0.96);
        box-shadow: none;
    }

    .news-previous-carousel__control:focus-visible {
        outline: 3px solid var(--color-yellow);
        outline-offset: 3px;
    }
}

@media (min-width: 1101px) and (prefers-reduced-motion: reduce) {
    .news-previous-carousel__track,
    .news-previous-carousel__control {
        transition: none;
    }

    .news-previous-carousel__control:hover,
    .news-previous-carousel__control:focus-visible,
    .news-previous-carousel__control:active {
        transform: translateY(-50%);
    }
}

/* Responsive Previous News carousel */
@media (max-width: 1100px) {
    .news-previous-carousel {
        padding-top: 58px;
    }

    .news-previous-carousel__control {
        top: 0;
        transform: none;
    }

    .news-previous-carousel__control--previous {
        left: calc(50% - 48px);
    }

    .news-previous-carousel__control--next {
        right: calc(50% - 48px);
    }
    .news-previous-carousel {
        position: relative;
        margin-top: 46px;
    }

    .news-previous-carousel__viewport {
        margin: -18px 0 -32px;
        padding: 18px 0 32px;
        overflow: hidden;
    }

    .news-previous-carousel__track {
        margin-top: 0;
        display: flex;
        gap: 24px;
        transition: transform 360ms ease;
        will-change: transform;
    }

    .news-previous-carousel__control {
        position: absolute;
        top: 50%;
        z-index: 4;
        width: 42px;
        height: 42px;
        padding: 0;
        display: grid;
        place-items: center;
        border: 2px solid var(--color-primary);
        border-radius: 50%;
        color: var(--color-primary);
        background: var(--theme-surface);
        font: inherit;
        cursor: pointer;
        transform: translateY(-50%);
        transition:
            transform 180ms ease,
            box-shadow 180ms ease,
            background-color 180ms ease,
            color 180ms ease;
    }

    .news-previous-carousel__control span {
        width: 8px;
        height: 8px;
        display: block;
        border-top: 2px solid currentColor;
        border-right: 2px solid currentColor;
        font-size: 0;
        line-height: 0;
    }

    .news-previous-carousel__control--previous span {
        position: relative;
        left: 1px;
        transform: rotate(-135deg);
    }

    .news-previous-carousel__control--next span {
        position: relative;
        left: -1px;
        transform: rotate(45deg);
    }

    .news-previous-carousel__control:focus-visible {
        outline: 3px solid var(--color-yellow);
        outline-offset: 3px;
    }

    .news-previous-carousel__control:active {
        transform:
            translateY(1px)
            scale(0.96);
    }
}

/* Keep responsive carousel controls above the cards */
@media (max-width: 1100px) {
    .news-previous-carousel__control {
        top: 0;
        transform: none;
    }

    .news-previous-carousel__control--previous {
        left: calc(50% - 46px);
        right: auto;
    }

    .news-previous-carousel__control--next {
        left: calc(50% + 4px);
        right: auto;
    }

    .news-previous-carousel__control:active {
        transform:
            translateY(1px)
            scale(0.96);
    }
}

/* Large tablets: three Previous News cards */
@media (min-width: 901px) and (max-width: 1100px) {
    .news-previous-carousel__track .news-page-card {
        min-width: 0;
        flex: 0 0 calc((100% - 48px) / 3);
    }
}

/* Compact tablets: two Previous News cards */
@media (min-width: 681px) and (max-width: 900px) {
    .news-previous-carousel__track .news-page-card {
        min-width: 0;
        flex: 0 0 calc((100% - 24px) / 2);
    }
}

/* Mobile: one Previous News card */
@media (max-width: 680px) {
    .news-previous-carousel {
        margin-top: 36px;
    }

    .news-previous-carousel__track {
        gap: 20px;
    }

    .news-previous-carousel__track .news-page-card {
        min-width: 0;
        flex: 0 0 100%;
    }

    .news-previous-carousel__control {
        width: 40px;
        height: 40px;
    }

}

@media (max-width: 1100px) and (prefers-reduced-motion: reduce) {
    .news-previous-carousel__track,
    .news-previous-carousel__control {
        transition: none;
    }
}

/* Desktop Previous News entrance */
@media (min-width: 1101px) {
    .news-collection--previous.is-reveal-ready
    .news-collection__heading {
        opacity: 0;
        transform: translateY(10px);
    }

    .news-collection--previous.is-reveal-ready
    .news-previous-carousel {
        opacity: 0;
    }

    .news-collection--previous.is-reveal-ready::before,
    .news-collection--previous.is-reveal-ready::after {
        opacity: 0;
    }

    .news-collection--previous.is-revealed
    .news-collection__heading {
        opacity: 1;
        transform: translateY(0);
        transition:
            opacity 420ms ease,
            transform 420ms ease;
    }

    .news-collection--previous.is-revealed
    .news-previous-carousel {
        opacity: 1;
        transition: opacity 440ms ease 90ms;
    }

    .news-collection--previous.is-revealed::before,
    .news-collection--previous.is-revealed::after {
        opacity: 1;
        transition: opacity 360ms ease 60ms;
    }
}

@media (min-width: 1101px) and (prefers-reduced-motion: reduce) {
    .news-collection--previous.is-reveal-ready
    .news-collection__heading,
    .news-collection--previous.is-revealed
    .news-collection__heading,
    .news-collection--previous.is-reveal-ready
    .news-previous-carousel,
    .news-collection--previous.is-revealed
    .news-previous-carousel,
    .news-collection--previous.is-reveal-ready::before,
    .news-collection--previous.is-reveal-ready::after,
    .news-collection--previous.is-revealed::before,
    .news-collection--previous.is-revealed::after {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

/* Follow Us section */
.news-follow {
    padding: 82px 0 90px;
    background: var(--theme-page-background);
}

.news-follow__inner {
    width: min(100% - 72px, var(--page-width));
    margin: 0 auto;
}

.news-follow__heading {
    max-width: 680px;
    margin: 0 auto;
    text-align: center;
}

.news-follow__eyebrow {
    width: fit-content;
    margin: 0 auto 18px;
    padding: 9px 22px;
    border-radius: 999px;
    color: var(--color-white);
    background: var(--color-red);
    font-size: 11px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.news-follow__heading h2 {
    margin: 0;
    color: var(--color-primary);
    font-size: clamp(38px, 4vw, 52px);
    font-weight: 600;
    line-height: 1.05;
    letter-spacing: -0.025em;
}

.news-follow__heading > p:not(.news-follow__eyebrow) {
    max-width: 620px;
    margin: 16px auto 0;
    color: var(--color-primary-deep);
    font-size: 14px;
    line-height: 1.6;
}

.news-follow__heading > span {
    width: 78px;
    height: 4px;
    margin: 20px auto 0;
    display: block;
    border-radius: 999px;
    background: var(--color-yellow);
}

.news-follow__grid {
    margin-top: 46px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
}

.news-social-card {
    min-height: 210px;
    padding: 28px 22px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    border: 2px solid var(--color-primary);
    border-radius: 24px;
    color: var(--color-primary);
    background: var(--theme-surface-raised);
    text-align: center;
    text-decoration: none;
    transition:
        transform 180ms ease,
        box-shadow 180ms ease;
}

.news-social-card--red {
    border-color: var(--color-red);
}

.news-social-card--blue {
    border-color: var(--color-primary);
}

.news-social-card--pink {
    border-color: var(--color-pink);
}

.news-social-card--yellow {
    border-color: var(--color-yellow);
}

.news-social-card:hover,
.news-social-card:focus-visible {
    transform: translateY(-5px);
    box-shadow:
        0 16px 30px
        color-mix(in srgb, var(--color-primary) 16%, transparent);
}

.news-social-card:focus-visible {
    outline: 3px solid var(--color-yellow);
    outline-offset: 4px;
}

.news-social-card__icon {
    width: 86px;
    height: 86px;
    display: grid;
    place-items: center;
    border-radius: 50%;
}

.news-social-card--red .news-social-card__icon {
    background: var(--color-red);
}

.news-social-card--blue .news-social-card__icon {
    background: var(--color-primary);
}

.news-social-card--pink .news-social-card__icon {
    background: var(--color-pink);
}

.news-social-card--yellow .news-social-card__icon {
    background: var(--color-yellow);
}

.news-social-card__icon img {
    width: 48px;
    height: 48px;
    display: block;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

@media (min-width: 1101px) and (hover: hover) and (pointer: fine) {
    .news-social-card__icon img {
        transition: transform 220ms ease;
    }

    .news-social-card:hover .news-social-card__icon img,
    .news-social-card:focus-visible .news-social-card__icon img {
        transform: scale(1.06);
    }

    a.news-social-card:active {
        transform: translateY(1px) scale(0.985);
        box-shadow:
            0 4px 10px
            color-mix(
                in srgb,
                var(--color-primary) 12%,
                transparent
            );
    }

    a.news-social-card:active .news-social-card__icon img {
        transform: scale(0.98);
    }
}

@media (min-width: 1101px) and (prefers-reduced-motion: reduce) {
    .news-social-card__icon img {
        transition: none;
    }

    .news-social-card:hover .news-social-card__icon img,
    .news-social-card:focus-visible .news-social-card__icon img,
    a.news-social-card:active,
    a.news-social-card:active .news-social-card__icon img {
        transform: none;
    }
}


.news-social-card__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.news-social-card__content strong {
    font-size: 21px;
    font-weight: 600;
    line-height: 1.1;
}

.news-social-card__content span {
    font-size: 12px;
    line-height: 1.4;
}

.news-social-card--red .news-social-card__content strong,
.news-social-card--red .news-social-card__content span {
    color: var(--color-red);
}

.news-social-card--blue .news-social-card__content strong,
.news-social-card--blue .news-social-card__content span {
    color: var(--color-primary);
}

.news-social-card--pink .news-social-card__content strong,
.news-social-card--pink .news-social-card__content span {
    color: var(--color-pink-deep);
}

.news-social-card--yellow .news-social-card__content strong,
.news-social-card--yellow .news-social-card__content span {
    color: var(--color-yellow-deep);
}

@media (max-width: 900px) {
    .news-follow__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 600px) {
    .news-follow {
        padding: 58px 0 64px;
    }

    .news-follow__inner {
        width: min(100% - 32px, var(--page-width));
    }

    .news-follow__heading h2 {
        font-size: 38px;
    }

    .news-follow__heading > p:not(.news-follow__eyebrow) {
        font-size: 13px;
    }

    .news-follow__grid {
        margin-top: 36px;
        grid-template-columns: minmax(0, 1fr);
        gap: 20px;
    }

    .news-social-card {
        min-height: 180px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .news-social-card {
        transition: none;
    }

    .news-social-card:hover,
    .news-social-card:focus-visible {
        transform: none;
    }
}

/* Desktop Follow the Fun entrance */
@media (min-width: 1101px) {
    .news-follow.is-reveal-ready
    .news-follow__heading {
        opacity: 0;
        transform: translateY(10px);
    }

    .news-follow.is-reveal-ready
    .news-social-card {
        opacity: 0;
    }

    .news-follow.is-revealed
    .news-follow__heading {
        opacity: 1;
        transform: translateY(0);
        transition:
            opacity 420ms ease,
            transform 420ms ease;
    }

    .news-follow.is-revealed
    .news-social-card {
        opacity: 1;
        transition:
            opacity 400ms ease 90ms,
            transform 180ms ease,
            box-shadow 180ms ease;
    }

    .news-follow.is-revealed
    .news-social-card:nth-child(2) {
        transition-delay: 140ms, 0ms, 0ms;
    }

    .news-follow.is-revealed
    .news-social-card:nth-child(3) {
        transition-delay: 190ms, 0ms, 0ms;
    }

    .news-follow.is-revealed
    .news-social-card:nth-child(4) {
        transition-delay: 240ms, 0ms, 0ms;
    }
}

@media (min-width: 1101px) and (prefers-reduced-motion: reduce) {
    .news-follow.is-reveal-ready
    .news-follow__heading,
    .news-follow.is-revealed
    .news-follow__heading,
    .news-follow.is-reveal-ready
    .news-social-card,
    .news-follow.is-revealed
    .news-social-card {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

/* Newsletter section */
.news-newsletter {
    padding: 12px 0 90px;
    background: var(--theme-page-background);
}

.news-newsletter__inner {
    width: min(100% - 72px, var(--page-width));
    margin: 0 auto;
}

.news-newsletter__panel {
    min-height: 350px;
    padding: 34px;
    display: grid;
    grid-template-columns: 270px minmax(0, 1fr);
    gap: 54px;
    align-items: center;
    border-radius: 34px;
    background: var(--color-yellow);
}

.news-newsletter__visual {
    position: relative;
    width: 100%;
    min-height: 260px;
    overflow: hidden;
    border-radius: 26px;
    background: var(--color-white);
}

.news-newsletter__star {
    position: absolute;
    top: 28px;
    left: 28px;
    width: 30px;
    height: 30px;
    background: var(--color-red);
    clip-path: polygon(
        50% 0%,
        61% 35%,
        98% 35%,
        68% 57%,
        79% 92%,
        50% 71%,
        21% 92%,
        32% 57%,
        2% 35%,
        39% 35%
    );
}

.news-newsletter__envelope {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 164px;
    height: 104px;
    overflow: hidden;
    border-radius: 18px;
    background: var(--color-primary);
    transform: translate(-50%, -38%);
}

.news-newsletter__envelope::before,
.news-newsletter__envelope::after {
    content: "";
    position: absolute;
    top: 2px;
    width: 58%;
    height: 4px;
    border-radius: 1px;
    background: var(--color-white);
}

.news-newsletter__envelope::before {
    left: 2px;
    transform: rotate(30deg);
    transform-origin: left center;
}

.news-newsletter__envelope::after {
    right: 2px;
    transform: rotate(-30deg);
    transform-origin: right center;
}

.news-newsletter__dot {
    position: absolute;
    right: 22px;
    bottom: 25px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--color-pink);
}

/* Desktop Newsletter artwork interaction */
@media (min-width: 1101px) and (hover: hover) and (pointer: fine) {
    .news-newsletter__visual {
        transition:
            transform 240ms ease,
            box-shadow 240ms ease;
    }

    .news-newsletter__star,
    .news-newsletter__dot {
        transition: transform 220ms ease;
    }

    .news-newsletter__envelope {
        transition: transform 260ms ease;
    }

    .news-newsletter__visual:hover {
        transform: translateY(-2px);
        box-shadow:
            0 10px 22px
            color-mix(
                in srgb,
                var(--color-text) 10%,
                transparent
            );
    }

    .news-newsletter__visual:hover
    .news-newsletter__star {
        transform: rotate(6deg) scale(1.06);
    }

    .news-newsletter__visual:hover
    .news-newsletter__envelope {
        transform:
            translate(-50%, -44%)
            rotate(-1deg);
    }

    .news-newsletter__visual:hover
    .news-newsletter__dot {
        transform: translateY(-2px) scale(1.06);
    }
}

@media (min-width: 1101px) and (prefers-reduced-motion: reduce) {
    .news-newsletter__visual,
    .news-newsletter__star,
    .news-newsletter__dot,
    .news-newsletter__envelope {
        transition: none;
    }

    .news-newsletter__visual:hover,
    .news-newsletter__visual:hover
    .news-newsletter__star,
    .news-newsletter__visual:hover
    .news-newsletter__dot {
        transform: none;
        box-shadow: none;
    }

    .news-newsletter__visual:hover
    .news-newsletter__envelope {
        transform: translate(-50%, -38%);
    }
}

.news-newsletter__content {
    min-width: 0;
}

.news-newsletter__eyebrow {
    width: fit-content;
    margin: 0 0 22px;
    padding: 9px 24px;
    border-radius: 999px;
    color: var(--color-white);
    background: var(--color-red);
    font-size: 11px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.news-newsletter__content h2 {
    margin: 0;
    color: var(--color-primary);
    font-size: clamp(36px, 4vw, 50px);
    font-weight: 600;
    line-height: 1.05;
    letter-spacing: -0.025em;
}

.news-newsletter__content > p:not(.news-newsletter__eyebrow) {
    max-width: 660px;
    margin: 18px 0 0;
    color: var(--color-primary-deep);
    font-size: 14px;
    line-height: 1.65;
}

.news-newsletter__form {
    margin-top: 30px;
}

.news-newsletter__label {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    overflow: hidden;
    clip-path: inset(50%);
    white-space: nowrap;
    border: 0;
}

.news-newsletter__controls {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 156px;
    gap: 14px;
}

.news-newsletter__controls input {
    width: 100%;
    min-width: 0;
    height: 52px;
    padding: 0 24px;
    border: 2px solid var(--color-primary);
    border-radius: 999px;
    color: var(--color-primary);
    background: var(--color-white);
    font: inherit;
    font-size: 13px;
    outline: none;
    transition:
        transform 180ms ease,
        box-shadow 180ms ease,
        border-color 180ms ease;
}

.news-newsletter__controls input::placeholder {
    color: var(--color-primary);
    opacity: 0.72;
}

.news-newsletter__controls input:focus {
    transform: translateY(-1px);
    box-shadow:
        0 7px 16px
        color-mix(
            in srgb,
            var(--color-text) 10%,
            transparent
        );
}

.news-newsletter__controls button {
    height: 52px;
    padding: 0 26px;
    border: 0;
    border-radius: 999px;
    color: var(--color-white);
    background: var(--color-red);
    font: inherit;
    font-size: 11px;
    font-weight: 700;
    line-height: 1;
    text-transform: uppercase;
    cursor: pointer;
    transition:
        transform 180ms ease,
        box-shadow 180ms ease;
}

@media (min-width: 1101px) {
    .news-newsletter__controls button:hover,
    .news-newsletter__controls button:focus-visible {
        transform: translateY(-2px);
        box-shadow: 0 8px 0 var(--color-primary);
    }

    .news-newsletter__controls button:active {
        transform: translateY(1px) scale(0.98);
        box-shadow: 0 3px 0 var(--color-primary);
    }
}

.news-newsletter__controls button:focus-visible {
    outline: 3px solid var(--color-primary);
    outline-offset: 3px;
}

.news-newsletter__status {
    min-height: 20px;
    margin: 12px 4px 0;
    color: var(--color-primary);
    font-size: 12px;
    font-weight: 600;
    line-height: 1.45;
}

@media (max-width: 900px) {
    .news-newsletter__panel {
        grid-template-columns: 230px minmax(0, 1fr);
        gap: 34px;
    }

    .news-newsletter__visual {
        min-height: 230px;
    }

    .news-newsletter__controls {
        grid-template-columns: minmax(0, 1fr) 138px;
    }
}

@media (max-width: 700px) {
    .news-newsletter__panel {
        grid-template-columns: minmax(0, 1fr);
    }

    .news-newsletter__visual {
        width: min(100%, 330px);
        min-height: 230px;
        margin: 0 auto;
    }

    .news-newsletter__content {
        text-align: center;
    }

    .news-newsletter__eyebrow {
        margin-right: auto;
        margin-left: auto;
    }

    .news-newsletter__content > p:not(.news-newsletter__eyebrow) {
        margin-right: auto;
        margin-left: auto;
    }
}

@media (max-width: 600px) {
    .news-newsletter {
        padding: 0 0 64px;
    }

    .news-newsletter__inner {
        width: min(100% - 32px, var(--page-width));
    }

    .news-newsletter__panel {
        padding: 24px 18px 26px;
        gap: 30px;
        border-radius: 28px;
    }

    .news-newsletter__visual {
        min-height: 205px;
        border-radius: 22px;
    }

    .news-newsletter__envelope {
        width: 142px;
        height: 92px;
    }

    .news-newsletter__content h2 {
        font-size: 36px;
    }

    .news-newsletter__content > p:not(.news-newsletter__eyebrow) {
        font-size: 13px;
    }

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

    .news-newsletter__controls button {
        width: 100%;
    }

    .news-newsletter__status {
        text-align: center;
    }
}

@media (prefers-reduced-motion: reduce) {
    .news-newsletter__controls button {
        transition: none;
    }

    .news-newsletter__controls button:hover,
    .news-newsletter__controls button:focus-visible,
    .news-newsletter__controls button:active {
        transform: none;
    }
}

/* Desktop Newsletter entrance */
@media (min-width: 1101px) {
    .news-newsletter.is-reveal-ready
    .news-newsletter__panel {
        opacity: 0;
        transform: translateY(10px);
    }

    .news-newsletter.is-revealed
    .news-newsletter__panel {
        opacity: 1;
        transform: translateY(0);
        transition:
            opacity 440ms ease,
            transform 440ms ease;
    }
}

@media (min-width: 1101px) and (prefers-reduced-motion: reduce) {
    .news-newsletter.is-reveal-ready
    .news-newsletter__panel,
    .news-newsletter.is-revealed
    .news-newsletter__panel {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

/* Mobile News section reveals */
@media (max-width: 600px) {
    .news-overview.is-reveal-ready,
    .news-collection--latest.is-reveal-ready,
    .news-collection--featured.is-reveal-ready,
    .news-collection--previous.is-reveal-ready,
    .news-follow.is-reveal-ready,
    .news-newsletter.is-reveal-ready {
        opacity: 0;
    }

    .news-overview.is-revealed,
    .news-collection--latest.is-revealed,
    .news-collection--featured.is-revealed,
    .news-collection--previous.is-revealed,
    .news-follow.is-revealed,
    .news-newsletter.is-revealed {
        opacity: 1;
        transition: opacity 360ms ease;
    }
}

@media (max-width: 600px) and (prefers-reduced-motion: reduce) {
    .news-overview.is-reveal-ready,
    .news-overview.is-revealed,
    .news-collection--latest.is-reveal-ready,
    .news-collection--latest.is-revealed,
    .news-collection--featured.is-reveal-ready,
    .news-collection--featured.is-revealed,
    .news-collection--previous.is-reveal-ready,
    .news-collection--previous.is-revealed,
    .news-follow.is-reveal-ready,
    .news-follow.is-revealed,
    .news-newsletter.is-reveal-ready,
    .news-newsletter.is-revealed {
        opacity: 1;
        transition: none;
    }
}

/* Tablet News section reveals */
@media (min-width: 601px) and (max-width: 1100px) {
    .news-overview.is-reveal-ready,
    .news-collection--latest.is-reveal-ready,
    .news-collection--featured.is-reveal-ready,
    .news-collection--previous.is-reveal-ready,
    .news-follow.is-reveal-ready,
    .news-newsletter.is-reveal-ready {
        opacity: 0;
    }

    .news-overview.is-revealed,
    .news-collection--latest.is-revealed,
    .news-collection--featured.is-revealed,
    .news-collection--previous.is-revealed,
    .news-follow.is-revealed,
    .news-newsletter.is-revealed {
        opacity: 1;
        transition: opacity 420ms ease;
    }
}

@media (
    min-width: 601px
) and (
    max-width: 1100px
) and (
    prefers-reduced-motion: reduce
) {
    .news-overview.is-reveal-ready,
    .news-overview.is-revealed,
    .news-collection--latest.is-reveal-ready,
    .news-collection--latest.is-revealed,
    .news-collection--featured.is-reveal-ready,
    .news-collection--featured.is-revealed,
    .news-collection--previous.is-reveal-ready,
    .news-collection--previous.is-revealed,
    .news-follow.is-reveal-ready,
    .news-follow.is-revealed,
    .news-newsletter.is-reveal-ready,
    .news-newsletter.is-revealed {
        opacity: 1;
        transition: none;
    }
}

/* Center incomplete tablet News rows */
@media (min-width: 681px) and (max-width: 960px) {
    .news-collection__grid
        > .news-page-card:last-child:nth-child(odd) {
        grid-column: 1 / -1;
        width: calc((100% - 28px) / 2);
        justify-self: center;
    }
}

/* Stage 14 shared Arabic News readability */
html[dir="rtl"] .news-hero__eyebrow,
html[dir="rtl"] .news-overview__eyebrow,
html[dir="rtl"] .news-follow__eyebrow,
html[dir="rtl"] .news-newsletter__eyebrow {
    font-size: var(--arabic-text-eyebrow);
    font-weight: var(--arabic-weight-label);
    line-height: 1.5;
    letter-spacing: 0;
    text-transform: none;
}

html[dir="rtl"] .news-hero__description,
html[dir="rtl"] .news-overview__description,
html[dir="rtl"] .news-collection__heading > p,
html[dir="rtl"] .news-lead__excerpt,
html[dir="rtl"] .news-follow__heading > p:last-of-type,
html[dir="rtl"] .news-newsletter__content > p {
    font-size: var(--arabic-text-body);
    font-weight: var(--arabic-weight-body);
    line-height: var(--arabic-line-body);
    letter-spacing: 0;
    text-transform: none;
}

/*
 * Apply the Arabic card baseline directly to leaf text so
 * smaller English component rules cannot override it.
 */
html[dir="rtl"] .news-page-card h3,
html[dir="rtl"] .news-lead h3 {
    font-size: var(--arabic-text-card-heading);
    font-weight: var(--arabic-weight-label);
    line-height: 1.45;
    letter-spacing: 0;
    text-transform: none;
}

html[dir="rtl"] .news-page-card > p,
html[dir="rtl"] .news-page-card__content > p,
html[dir="rtl"] .news-page-card p:not([class]),
html[dir="rtl"] .news-lead__excerpt {
    font-size: var(--arabic-text-body);
    font-weight: var(--arabic-weight-body);
    line-height: var(--arabic-line-body);
}

html[dir="rtl"] .news-lead__badge,
html[dir="rtl"] .news-page-card time,
html[dir="rtl"] .news-page-card__meta,
html[dir="rtl"] .news-page-card__meta > span,
html[dir="rtl"] .news-page-card__category {
    font-size: var(--arabic-text-meta);
    font-weight: var(--arabic-weight-label);
    line-height: 1.5;
    letter-spacing: 0;
    text-transform: none;
}

html[dir="rtl"] .news-hero__button,
html[dir="rtl"] .news-lead a,
html[dir="rtl"] .news-page-card a,
html[dir="rtl"] .news-newsletter__form button {
    font-size: var(--arabic-text-button);
    font-weight: var(--arabic-weight-label);
    line-height: 1.35;
    letter-spacing: 0;
    text-transform: none;
}

html[dir="rtl"] .news-newsletter__label,
html[dir="rtl"] .news-newsletter__form input,
html[dir="rtl"] .news-newsletter__status {
    font-size: var(--arabic-text-supporting);
    font-weight: var(--arabic-weight-body);
    line-height: var(--arabic-line-supporting);
    letter-spacing: 0;
}

html[dir="rtl"] .news-newsletter__label {
    font-weight: var(--arabic-weight-label);
}

html[dir="rtl"] .news-follow .social-link-card strong,
html[dir="rtl"] .news-follow .social-link-card span,
html[dir="rtl"] .news-follow .social-link-card p {
    font-size: var(--arabic-text-supporting);
    line-height: var(--arabic-line-supporting);
    letter-spacing: 0;
    text-transform: none;
}

html[dir="rtl"] .news-follow .social-link-card strong {
    font-weight: var(--arabic-weight-label);
}

html[dir="rtl"] .news-follow .social-link-card span,
html[dir="rtl"] .news-follow .social-link-card p {
    font-weight: var(--arabic-weight-body);
}

/* Stage 14 Arabic News focused visual corrections */
@media (min-width: 1101px) {
    html[dir="rtl"] .news-hero__visual {
        translate: 36px 0;
    }
}

html[dir="rtl"] .news-page-card__placeholder span,
html[dir="rtl"] .news-lead [role="img"] > span {
    font-size: var(--arabic-text-button);
    font-weight: var(--arabic-weight-label);
    line-height: 1.5;
    letter-spacing: 0;
}

html[dir="rtl"] .news-page-card__button,
html[dir="rtl"] .news-lead__button {
    font-size: calc(var(--arabic-text-button) + 2px);
    font-weight: var(--arabic-weight-label);
    letter-spacing: 0;
    text-transform: none;
}

/* Stage 14 Arabic News social-card supporting text */
html[dir="rtl"] .news-social-card__content > span {
    font-size: calc(var(--arabic-text-meta) + 2px);
    font-weight: 600;
    line-height: 1.5;
}

/* Stage 14 Arabic News tablet Hero clearance */
@media (min-width: 681px) and (max-width: 1100px) {
    html[dir="rtl"] .news-hero__visual {
        translate: 16px 0;
    }
}
