/* Editorial layout scoped to product announcements; uses the site theme. */
.update-article {
    --update-muted: color-mix(in oklab, var(--color-base-content) 65%, transparent);
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px 112px;
}

.update-header {
    max-width: 920px;
    margin: 0 auto;
    padding: 100px 0 72px;
    text-align: center;
}

.update-meta {
    display: flex;
    justify-content: center;
    gap: 12px;
    color: var(--update-muted);
    font-size: 13px;
}

.update-header h1 {
    margin: 28px 0 24px;
    font-size: clamp(40px, 5.4vw, 72px);
    font-weight: 500;
    line-height: 1.08;
    letter-spacing: -0.055em;
    text-wrap: balance;
}

.update-header h1 span {
    display: block;
    color: var(--color-primary);
}

.update-deck {
    color: var(--update-muted);
    font-size: 20px;
    line-height: 1.6;
    text-wrap: balance;
}

.update-cta {
    margin-top: 28px;
    border-radius: 999px;
    padding-inline: 22px;
    gap: 16px;
    font-weight: 500;
}

.update-photo-pair {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    overflow: hidden;
    border-radius: 4px;
}

.update-photo-pair img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 1;
    object-fit: cover;
}

.update-showcase figcaption {
    display: flex;
    justify-content: space-between;
    gap: 8px 24px;
    margin-top: 16px;
    color: var(--update-muted);
    font-size: 12px;
    line-height: 1.5;
}

.update-reading-layout {
    display: grid;
    grid-template-columns: 200px minmax(0, 680px);
    gap: 64px;
    margin-top: 88px;
}

.update-contents {
    position: sticky;
    top: 40px;
    align-self: start;
    font-size: 13px;
    line-height: 1.5;
}

.update-contents p {
    margin: 0 0 18px;
    font-weight: 600;
}

.update-contents a {
    display: block;
    width: fit-content;
    margin: 12px 0;
    color: var(--update-muted);
}

.update-contents a:hover,
.update-byline a:hover {
    color: var(--color-primary);
    text-decoration: underline;
    text-underline-offset: 4px;
}

.update-body {
    font-size: 17px;
    line-height: 1.85;
}

.update-body .update-intro {
    font-size: 21px;
    line-height: 1.65;
    letter-spacing: -0.02em;
}

.update-body section {
    margin-top: 52px;
    scroll-margin-top: 32px;
}

.update-body h2 {
    margin-bottom: 20px;
    font-size: 28px;
    font-weight: 500;
    line-height: 1.25;
    letter-spacing: -0.035em;
    text-wrap: balance;
}

.update-body section p {
    margin: 0 0 20px;
    color: color-mix(in oklab, var(--color-base-content) 85%, transparent);
}

.update-body section a {
    text-decoration: underline;
    text-underline-offset: 4px;
    text-decoration-color: var(--color-base-300);
}

.update-body section a:hover {
    text-decoration-color: var(--color-primary);
}

.update-body .update-text-cta {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    color: var(--color-primary);
    font-weight: 500;
    text-decoration: none;
}

.update-byline {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 56px;
    padding-top: 24px;
    border-top: 1px solid var(--color-base-300);
    color: var(--update-muted);
    font-size: 12px;
}

.update-byline strong {
    color: var(--color-base-content);
    font-weight: 500;
}

@media (max-width: 900px) {
    .update-reading-layout {
        grid-template-columns: minmax(0, 680px);
        justify-content: center;
        gap: 36px;
        margin-top: 56px;
    }

    .update-contents {
        position: static;
        display: flex;
        flex-wrap: wrap;
        gap: 12px 24px;
        padding-bottom: 24px;
        border-bottom: 1px solid var(--color-base-300);
    }

    .update-contents p {
        flex-basis: 100%;
        margin: 0;
    }

    .update-contents a {
        margin: 0;
    }
}

@media (max-width: 600px) {
    .update-article {
        padding: 0 20px 64px;
    }

    .update-header {
        padding: 60px 0 44px;
    }

    .update-header h1 {
        margin-top: 24px;
        font-size: clamp(36px, 9.5vw, 54px);
    }

    .update-deck {
        font-size: 17px;
    }

    .update-desktop-break {
        display: none;
    }

    .update-photo-pair {
        gap: 6px;
    }

    .update-showcase figcaption {
        flex-direction: column;
        gap: 2px;
        margin-top: 12px;
    }

    .update-body {
        font-size: 16px;
        line-height: 1.8;
    }

    .update-body .update-intro {
        font-size: 19px;
    }

    .update-body h2 {
        font-size: 25px;
    }

    .update-body section {
        margin-top: 40px;
    }
}
