.page-news {
    background-color: #140C0C;
    color: #FFF1E8;
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

.page-news__hero-section {
    position: relative;
    padding-top: 10px; /* Small top padding, body handles header offset */
    margin-bottom: 40px;
    background-color: #140C0C;
    overflow: hidden; /* Ensure no image overflow */
}

.page-news__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    object-position: center;
    max-height: 600px; /* Limit height for desktop */
    min-width: 200px; /* Enforce min size */
    min-height: 200px; /* Enforce min size */
}

.page-news__hero-content {
    max-width: 960px;
    margin: 0 auto;
    padding: 20px;
    text-align: center;
}

.page-news__hero-title {
    font-size: clamp(2rem, 4vw, 3rem); /* Responsive font size */
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 15px;
    color: #FFF1E8;
    background: linear-gradient(90deg, #F3C54D, #FFB04A); /* Gold to Orange gradient */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

.page-news__hero-description {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: #FFF1E8;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-news__hero-button {
    display: inline-block;
    padding: 12px 25px;
    background: linear-gradient(180deg, #FFB04A 0%, #D86A14 100%);
    color: #FFF1E8;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: transform 0.3s ease;
    min-width: 150px;
    text-align: center;
    border: none;
    cursor: pointer;
}

.page-news__hero-button:hover {
    transform: translateY(-2px);
}

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

.page-news__section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
    color: #FFF1E8;
    background: linear-gradient(90deg, #F3C54D, #FFB04A);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

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

.page-news__article-card {
    background-color: #2A1212; /* Card BG */
    border: 1px solid #6A1E1E; /* Border */
    border-radius: 10px;
    overflow: hidden;
    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 8px 16px rgba(0, 0, 0, 0.3);
}

.page-news__article-image {
    width: 100%;
    height: 225px; /* Fixed height for consistency, min 200px. HTML width/height 400x225*/
    object-fit: cover;
    display: block;
    min-width: 200px;
    min-height: 200px;
}

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

.page-news__article-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 10px;
    line-height: 1.3;
    color: #FFF1E8;
}

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

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

.page-news__article-date {
    font-size: 0.9rem;
    color: #E53030; /* Auxiliary color */
    margin-bottom: 15px;
}

.page-news__article-excerpt {
    font-size: 1rem;
    color: #FFF1E8;
    margin-bottom: 20px;
    flex-grow: 1;
}

.page-news__article-link {
    display: inline-block;
    padding: 8px 15px;
    background-color: #7E0D0D; /* Deep Red */
    color: #FFF1E8;
    text-decoration: none;
    border-radius: 5px;
    font-size: 0.9rem;
    transition: background-color 0.3s ease;
    align-self: flex-start;
}

.page-news__article-link:hover {
    background-color: #C61F1F; /* Main color on hover */
}

.page-news__view-all-button-container {
    text-align: center;
    margin-top: 40px;
}

.page-news__view-all-button {
    display: inline-block;
    padding: 12px 30px;
    background: linear-gradient(180deg, #FFB04A 0%, #D86A14 100%);
    color: #FFF1E8;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: transform 0.3s ease;
    border: none;
    cursor: pointer;
}

.page-news__view-all-button:hover {
    transform: translateY(-2px);
}

.page-news__cta-section {
    background-color: #2A1212; /* Card BG */
    text-align: center;
    padding: 60px 20px;
    margin-top: 60px;
    border-top: 1px solid #6A1E1E;
}

.page-news__cta-title {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 20px;
    color: #FFF1E8;
    background: linear-gradient(90deg, #F3C54D, #FFB04A);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

.page-news__cta-description {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: #FFF1E8;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-news__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.page-news__cta-button {
    display: inline-block;
    padding: 12px 30px;
    background: linear-gradient(180deg, #FFB04A 0%, #D86A14 100%);
    color: #FFF1E8;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: transform 0.3s ease;
    min-width: 150px;
    text-align: center;
    border: none;
    cursor: pointer;
}

.page-news__cta-button:hover {
    transform: translateY(-2px);
}

.page-news__cta-button--secondary {
    background: #7E0D0D; /* Deep Red for secondary */
}

.page-news__cta-button--secondary:hover {
    background: #C61F1F; /* Main color on hover */
}

/* Responsive adjustments */
@media (max-width: 849px) {
    .page-news__hero-image {
        max-height: 400px; /* Adjust hero image height for smaller screens */
    }

    .page-news__hero-title {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
    }

    .page-news__section-title,
    .page-news__cta-title {
        font-size: clamp(1.6rem, 5vw, 2.2rem);
    }

    .page-news__articles-grid {
        grid-template-columns: 1fr; /* Stack articles on small screens */
    }

    .page-news__article-image {
        height: auto; /* Allow auto height for mobile to maintain aspect ratio */
        aspect-ratio: 16/9; /* Maintain aspect ratio */
        min-height: 200px; /* Ensure minimum height */
    }
}

@media (max-width: 768px) {
    .page-news__hero-section img,
    .page-news__articles-section img,
    .page-news__article-card img {
        max-width: 100%;
        height: auto;
    }
    /* Ensure content area images do not cause horizontal scroll */
    .page-news__articles-section img {
        width: 100%; /* Ensure content area images are full width */
        min-width: 200px; /* Enforce min size */
        min-height: 200px; /* Enforce min size */
    }
}

@media (max-width: 549px) {
    .page-news__hero-content {
        padding: 15px;
    }

    .page-news__hero-title {
        font-size: clamp(1.6rem, 7vw, 2.2rem);
    }

    .page-news__hero-description {
        font-size: 1rem;
    }

    .page-news__hero-button {
        padding: 10px 20px;
        min-width: unset;
        width: 100%;
    }

    .page-news__cta-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .page-news__cta-button {
        width: 100%;
        min-width: unset;
    }
}

/* Ensure no filter on images */
.page-news img {
    filter: none !important;
}