.page-news {
    background-color: #B71C1C;
    color: #FFF5E1;
    font-family: Arial, sans-serif;
}

.page-news__hero-section {
    position: relative;
    padding-top: 10px; /* Small padding, body handles --header-offset */
    padding-bottom: 40px;
    text-align: center;
    overflow: hidden;
}

.page-news__hero-image-wrapper {
    width: 100%;
    max-height: 675px; /* Max height for the hero image */
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.page-news__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover; /* Ensures the image covers the area without distortion */
}

.page-news__hero-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative; /* Ensure content is in normal flow */
    z-index: 1;
    text-align: center;
}

.page-news__main-title {
    font-weight: bold;
    color: #FFF5E1;
    margin-top: 30px;
    margin-bottom: 15px;
    line-height: 1.2;
    letter-spacing: -0.02em;
    /* Using clamp for responsive font size, avoids fixed large values */
    font-size: clamp(2.2rem, 4vw, 3.5rem);
}

.page-news__description {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.page-news__cta-button {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    background: linear-gradient(180deg, #FFD86A 0%, #E6B800 100%);
    color: #7A0E0E; /* Deep Red for text on gold button */
    font-weight: bold;
    text-decoration: none;
    font-size: 1.1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 204, 102, 0.4);
}

.page-news__cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 204, 102, 0.6);
}

.page-news__articles-section {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.page-news__section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    color: #FFF5E1;
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
    line-height: 1.2;
}

.page-news__articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.page-news__article-card {
    background-color: #D32F2F; /* Card BG */
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.page-news__article-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.5);
}

.page-news__article-image {
    width: 100%;
    height: 225px; /* Fixed height for consistency */
    object-fit: cover;
    display: block;
    border-bottom: 2px solid #F2B544; /* Border color */
}

.page-news__article-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.page-news__article-date {
    font-size: 0.9rem;
    color: rgba(255, 245, 225, 0.7); /* Lighter version of Text Main for subtle date */
    margin-bottom: 10px;
    display: block;
}

.page-news__article-title {
    font-size: 1.4rem;
    font-weight: bold;
    margin-bottom: 15px;
    line-height: 1.4;
}

.page-news__article-title a {
    color: #FFF5E1;
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-news__article-title a:hover {
    color: #FFD86A; /* Gold color on hover */
}

.page-news__article-summary {
    font-size: 1rem;
    line-height: 1.6;
    color: #FFF5E1;
    margin-bottom: 20px;
    flex-grow: 1;
}

.page-news__read-more-button {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 30px;
    background: #7A0E0E; /* Deep Red */
    color: #FFF5E1;
    font-weight: bold;
    text-decoration: none;
    font-size: 0.95rem;
    transition: background-color 0.3s ease, transform 0.3s ease;
    align-self: flex-start;
}

.page-news__read-more-button:hover {
    background-color: #C91F17; /* Primary color */
    transform: translateY(-2px);
}

.page-news__view-all {
    text-align: center;
    margin-top: 50px;
}

.page-news__view-all-button {
    display: inline-block;
    padding: 15px 40px;
    border-radius: 50px;
    background: linear-gradient(180deg, #FFD86A 0%, #E6B800 100%);
    color: #7A0E0E; /* Deep Red for text on gold button */
    font-weight: bold;
    text-decoration: none;
    font-size: 1.1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 204, 102, 0.4);
}

.page-news__view-all-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 204, 102, 0.6);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-news__hero-content {
        padding: 0 15px;
    }

    .page-news__main-title {
        margin-top: 20px;
        font-size: clamp(1.8rem, 6vw, 2.8rem);
    }

    .page-news__description {
        font-size: 1rem;
        margin-bottom: 25px;
    }

    .page-news__cta-button {
        padding: 10px 25px;
        font-size: 1rem;
    }

    .page-news__articles-section {
        padding: 40px 15px;
    }

    .page-news__section-title {
        font-size: clamp(1.5rem, 5vw, 2.2rem);
        margin-bottom: 30px;
    }

    .page-news__articles-grid {
        grid-template-columns: 1fr;
    }

    .page-news__article-image {
        height: 200px;
    }

    .page-news__article-title {
        font-size: 1.2rem;
    }

    .page-news__article-summary {
        font-size: 0.95rem;
    }

    .page-news__read-more-button {
        padding: 8px 18px;
        font-size: 0.9rem;
    }

    .page-news__view-all-button {
        padding: 12px 30px;
        font-size: 1rem;
    }

    /* Enforce image responsiveness for content area */
    .page-news img {
        max-width: 100%;
        height: auto;
    }
}

@media (max-width: 480px) {
    .page-news__hero-image-wrapper {
        max-height: 400px;
    }
    .page-news__hero-image {
        object-position: center top; /* Adjust for smaller screens */
    }
    .page-news__article-image {
        height: 180px;
    }
}