/* ================================================
   news-detail.css — ニュース詳細ページ
   ================================================ */

.news-detail-hero {
    padding: 86px 0 64px;
    text-align: center;
    background: linear-gradient(145deg, #e9f4ed 0%, #e8f2fb 100%);
}

.news-detail-hero__title {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    margin-bottom: 12px;
}

.news-detail-hero__sub {
    color: var(--text-sub);
}

.news-article {
    background: var(--bg-white);
}

.news-article__state {
    max-width: 860px;
    margin: 0 auto;
    padding: 28px 20px;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    text-align: center;
    color: var(--text-sub);
    background: #fbfdff;
}

.news-article__state--error {
    border-color: rgba(191, 83, 83, 0.25);
    color: #8a3f3f;
    background: #fff8f8;
}

.news-article__inner {
    max-width: 860px;
    margin: 0 auto;
    border: 1px solid rgba(33, 89, 130, 0.12);
    border-radius: var(--radius-lg);
    background: #ffffff;
    box-shadow: var(--shadow-sm);
    padding: clamp(22px, 3.8vw, 42px);
}

.news-article__meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
}

.news-article__date {
    color: var(--text-sub);
    font-size: 0.9rem;
    font-weight: 700;
}

.news-article__tag {
    display: inline-block;
    padding: 2px 10px;
    border-radius: var(--radius-pill);
    background: var(--bg-light-blue);
    color: var(--river-blue-dark);
    font-size: 0.7rem;
    font-weight: 700;
}

.news-article__tag--event {
    background: var(--bg-light-green);
    color: var(--forest-green-dark);
}

.news-article__title {
    font-size: clamp(1.45rem, 2.8vw, 2rem);
    line-height: 1.55;
    margin-bottom: 18px;
}

.news-article__lead,
.news-article__text {
    color: var(--text-sub);
    line-height: 2;
}

.news-article__lead {
    margin-bottom: 16px;
    font-weight: 500;
}

.news-article__content {
    color: var(--text-sub);
    line-height: 2;
}

.news-article__content p + p {
    margin-top: 12px;
}

.news-article__content h2,
.news-article__content h3,
.news-article__content h4 {
    margin-top: 22px;
    margin-bottom: 10px;
    font-size: 1.2rem;
    color: var(--text-dark);
}

.news-article__content ul,
.news-article__content ol {
    margin-top: 10px;
    margin-left: 1.3rem;
    list-style: initial;
}

.news-article__content a {
    text-decoration: underline;
}

.news-article__text + .news-article__text {
    margin-top: 12px;
}

.news-article__actions {
    margin-top: 28px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

@media (max-width: 768px) {
    .news-detail-hero {
        padding: 68px 0 50px;
    }

    .news-article__actions .btn {
        width: 100%;
    }
}
