﻿/* Page background + centered card */
.news-detail {
    background: linear-gradient(180deg, rgba(0,0,0,.02), rgba(0,0,0,0));
    padding: 24px 16px 70px;
}

.news-detail__card {
    max-width: 1100px;
    margin: 0 auto;
    background: #fff;
    border-radius: 28px;
    box-shadow: 0 16px 40px rgba(0,0,0,.10);
    padding: 34px 38px 44px;
}

/* Back link */
.news-detail__back {
    display: inline-block;
    text-decoration: none;
    font-weight: 800;
    opacity: .85;
    margin: 2px 0 18px;
}

/* Title + date row */
.news-detail__head {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 18px;
}

.news-detail__title {
    margin: 0;
    font-size: 28px;
    font-weight: 800;
    letter-spacing: -0.01em;
    line-height: 1.2;
    max-width: 820px;
}

.news-detail__date {
    white-space: nowrap;
    font-style: italic;
    opacity: .75;
    margin-top: 2px;
}

/* Centered hero image like the reference page */
.news-detail__hero {
    display: flex;
    justify-content: center;
    margin: 10px 0 18px;
}

.news-detail__figure {
    position: relative;
    width: min(420px, 92vw);
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 14px 34px rgba(0,0,0,.14);
    background: #f3f3f3;
}

.news-detail__image {
    width: 100%;
    height: auto;
    display: block;
}

/* Decorative red quotes overlay */
.news-detail__figure::after {
    content: "””";
    position: absolute;
    right: 14px;
    bottom: 6px;
    font-size: 110px;
    line-height: 1;
    font-weight: 900;
    color: #e60000;
    pointer-events: none;
}

/* Lead/intro */
.news-detail__lead {
    margin: 18px auto 22px;
    max-width: 920px;
    font-size: 18px;
    line-height: 1.65;
    opacity: .92;
}

    .news-detail__lead p {
        margin: 0 0 12px;
    }

/* Body typography */
.news-detail__body {
    max-width: 920px;
    margin: 0 auto;
    font-size: 18px;
    line-height: 1.75;
}

    .news-detail__body p {
        margin: 0 0 14px;
    }

    .news-detail__body h2 {
        margin: 26px 0 10px;
        font-size: 22px;
        font-weight: 900;
        line-height: 1.25;
    }

    .news-detail__body h3 {
        margin: 22px 0 10px;
        font-size: 20px;
        font-weight: 900;
        line-height: 1.25;
    }

    .news-detail__body strong {
        font-weight: 900;
    }

    .news-detail__body ul,
    .news-detail__body ol {
        padding-left: 22px;
        margin: 0 0 16px;
    }

/* Responsive */
@media (max-width: 900px) {
    .news-detail__card {
        padding: 22px 18px 28px;
    }

    .news-detail__head {
        flex-direction: column;
    }

    .news-detail__date {
        font-style: normal;
    }

    .news-detail__title {
        font-size: 24px;
    }
}
