/* ==================================================
   NEWS HERO
================================================== */
.news-hero {
    position: relative;
    overflow: hidden;
    background-image: var(--news-hero-image);
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
}

.news-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
        90deg,
        rgba(255, 248, 238, 0.95) 0%,
        rgba(255, 248, 238, 0.88) 38%,
        rgba(255, 248, 238, 0.42) 68%,
        rgba(255, 248, 238, 0.08) 100%
    );
}

.news-hero::after {
    content: "";
    position: absolute;
    left: -120px;
    bottom: -140px;
    z-index: 1;
    width: 360px;
    height: 360px;
    background: rgba(124, 198, 68, 0.18);
    border-radius: 50%;
}

.news-hero-title {
    color: #8c5a3c;
    text-shadow: 0 2px 0 rgba(255, 255, 255, 0.75);
}

.news-hero-text {
    color: #4a2e1e;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.8);
}


/* ==================================================
   NEWS DETAIL BODY
================================================== */
.news-body {
    color: #1c1d0b;
    line-height: 2;
}

.news-body h2 {
    margin: 2.5rem 0 1rem;
    padding-left: 1rem;
    border-left: 4px solid #f7b52c;
    font-size: 1.5rem;
    font-weight: 700;
}

.news-body h3 {
    margin: 2rem 0 1rem;
    font-size: 1.25rem;
    font-weight: 700;
}

.news-body p {
    margin: 1rem 0;
}

.news-body ul,
.news-body ol {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.news-body ul {
    list-style: disc;
}

.news-body ol {
    list-style: decimal;
}

.news-body li {
    margin: 0.5rem 0;
}

.news-body a {
    color: #7d5800;
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.news-body img {
    max-width: 100%;
    height: auto;
    margin: 1.5rem 0;
    border: 1px solid #f0f0d2;
    border-radius: 16px;
}

.news-body blockquote {
    margin: 1.5rem 0;
    padding: 1rem 1.5rem;
    background: #f6f5d8;
    border-left: 4px solid #f7b52c;
    border-radius: 0 12px 12px 0;
}

.news-body .file-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 14px;
    background: #fdf8f0;
    border: 1px solid #d5c4ad;
    border-radius: 12px;
    text-decoration: none;
}


/* ==================================================
   RESPONSIVE
================================================== */
@media (max-width: 767px) {
    .news-hero::before {
        background: linear-gradient(
            90deg,
            rgba(255, 248, 238, 0.96) 0%,
            rgba(255, 248, 238, 0.9) 62%,
            rgba(255, 248, 238, 0.55) 100%
        );
    }

    .news-body h2 {
        font-size: 1.3rem;
    }

    .news-body h3 {
        font-size: 1.15rem;
    }
}