.news-story {
    padding: calc(var(--nav-height) + var(--space-lg)) 0 var(--space-2xl);
}

.news-story__header,
.news-story__media,
.news-story__layout,
.news-story__footer {
    width: min(calc(100% - 2rem), 1180px);
    margin-inline: auto;
}

.news-story__header {
    display: grid;
    gap: var(--space-sm);
    max-width: 980px;
    padding-block: var(--space-xl) var(--space-lg);
}

.news-story__back {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    width: fit-content;
    color: var(--color-accent-deep);
    font-weight: 700;
    text-decoration: none;
}

.news-story__back:hover {
    color: var(--color-accent);
}

.news-story__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem 1.25rem;
    color: var(--color-text-tertiary);
    font-family: var(--font-mono);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.news-story__title {
    max-width: 18ch;
    font-size: clamp(2.65rem, 7vw, 5.8rem);
    line-height: 0.94;
    text-wrap: balance;
}

.news-story__standfirst {
    max-width: 760px;
    color: var(--color-text-secondary);
    font-size: clamp(1.15rem, 2.2vw, 1.5rem);
    line-height: 1.5;
}

.news-story__media {
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.75fr);
    gap: var(--space-md);
    align-items: stretch;
    margin-bottom: var(--space-xl);
}

.news-story__figure {
    display: grid;
    gap: var(--space-xs);
    margin: 0;
}

.news-story__figure picture {
    display: block;
    height: 100%;
    min-height: 320px;
    overflow: hidden;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    background: var(--color-bg-card);
}

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

.news-story__figure--lead img {
    object-position: center center;
}

.news-story__figure--group img {
    object-position: center center;
}

.news-story__caption {
    color: var(--color-text-tertiary);
    font-size: 0.8rem;
    line-height: 1.45;
}

.news-story__layout {
    display: grid;
    grid-template-columns: minmax(220px, 0.7fr) minmax(0, 2fr);
    gap: clamp(var(--space-lg), 6vw, var(--space-2xl));
    align-items: start;
}

.news-story__summary {
    position: sticky;
    top: calc(var(--nav-height) + var(--space-md));
    padding: var(--space-md);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    background: var(--color-bg-card);
}

.news-story__summary h2 {
    margin-bottom: var(--space-sm);
    font-size: 1.35rem;
}

.news-story__summary ul {
    display: grid;
    gap: 0.8rem;
    margin: 0;
    padding-left: 1.1rem;
    color: var(--color-text-secondary);
}

.news-story__body {
    max-width: 760px;
}

.news-story__body > * + * {
    margin-top: var(--space-md);
}

.news-story__body h2 {
    margin-top: var(--space-xl);
    font-size: clamp(1.8rem, 4vw, 2.65rem);
    line-height: 1.08;
    text-wrap: balance;
}

.news-story__body p {
    color: var(--color-text-secondary);
    font-size: clamp(1rem, 1.4vw, 1.12rem);
    line-height: 1.78;
}

.news-story__body .news-story__lead {
    color: var(--color-text);
    font-size: clamp(1.15rem, 1.8vw, 1.35rem);
    line-height: 1.65;
}

.news-story__callout {
    margin-block: var(--space-xl);
    padding: var(--space-lg);
    border-left: 5px solid var(--color-accent);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    background: var(--color-accent-light);
    color: var(--color-accent-deep);
    font-family: var(--font-display);
    font-size: clamp(1.45rem, 3vw, 2.05rem);
    line-height: 1.22;
}

[data-theme="dark"] .news-story__callout {
    color: var(--color-text);
}

.news-story__footer {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    justify-content: space-between;
    align-items: center;
    margin-top: var(--space-2xl);
    padding-top: var(--space-lg);
    border-top: 1px solid var(--color-border);
}

.news-story__footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
}

@media (max-width: 820px) {
    .news-story__media,
    .news-story__layout {
        grid-template-columns: 1fr;
    }

    .news-story__media {
        grid-template-rows: auto auto;
    }

    .news-story__figure picture {
        min-height: 0;
        aspect-ratio: 4 / 3;
    }

    .news-story__figure--group picture {
        aspect-ratio: 16 / 9;
    }

    .news-story__summary {
        position: static;
    }
}

@media (max-width: 520px) {
    .news-story {
        padding-top: var(--nav-height);
    }

    .news-story__header {
        padding-top: var(--space-lg);
    }

    .news-story__title {
        font-size: clamp(2.45rem, 12vw, 3.6rem);
    }

    .news-story__callout {
        padding: var(--space-md);
    }

    .news-story__footer,
    .news-story__footer-links {
        align-items: stretch;
        flex-direction: column;
    }

    .news-story__footer .btn {
        justify-content: center;
        width: 100%;
    }
}
