/* HERO SECTION */
.news-hero {
    background: url('../images/about_page.jpg') center/cover no-repeat;
    height: 90vh;
    position: relative;
}
.news-hero .overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.55);
}
.news-hero .content {
    position: relative;
    z-index: 2;
}
.news-hero h1 {
    font-size: 3rem;
    font-weight: 700;
}
.news-hero p {
    font-size: 1.2rem;
}

/* ARTICLE STYLING */
.news-article {
    padding: 0 10px;
}
.news-title {
    font-family: 'Merriweather', serif;
    font-size: 2rem;
    font-weight: 700;
    color: #b29a67;
}

@media (max-width: 576px) {
    .news-title {
        font-size: 1.4rem !important;
    }
}

.news-subtitle {
    font-family: 'Merriweather', serif;
    font-size: 1.2rem;
}
.news-meta {
    font-size: 0.95rem;
    color: #555;
}
.news-img img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    border-radius: 10px;
}
.news-desc {
    font-size: 1.05rem;
    line-height: 1.8;
    font-family: 'Georgia', serif;
    text-align: justify;
}
.news-divider {
    margin-top: 2rem;
    border-top: 3px solid #b29a67;  /* Bold + gold tone */
    opacity: 1;
}

/* ANIMATIONS */
.fade-in, .fade-up {
    opacity: 0;
    transform: translateY(25px);
    animation: fadeUp .9s ease forwards;
}
.fade-in.visible, .fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}
.fade-delay-1 {
    animation-delay: .3s !important;
}
.fade-delay-2 {
    animation-delay: .6s !important;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(25px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* RESPONSIVE */
@media (max-width: 768px) {
    .news-hero h1 {
        font-size: 2.2rem;
    }
    .news-img img {
        height: 200px;
    }
}
