.page-news {
    background-color: #B71C1C; /* Background */
    color: #FFF5E1; /* Text Main */
    font-family: Arial, sans-serif;
    line-height: 1.6;
    padding-bottom: 40px;
}

.page-news__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Hero Section */
.page-news__hero-section {
    position: relative;
    overflow: hidden;
    padding-bottom: 20px; /* Small top padding, body handles header offset */
}

.page-news__hero-image {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 16/5; /* 1920x600 */
    object-fit: cover;
    object-position: center;
    filter: brightness(0.7); /* Slightly darken image for text readability */
}

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

.page-news__main-title {
    font-size: clamp(1.8rem, 4.5vw, 2.8rem); /* Adjusted for news page, slightly smaller than homepage */
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 15px;
    color: #FFF5E1; /* Text Main */
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
}

.page-news__intro-text {
    font-size: clamp(1rem, 2.5vw, 1.15rem);
    margin-bottom: 25px;
    color: #FFF5E1; /* Text Main */
}

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

.page-news__cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Section Titles */
.page-news__section-title {
    font-size: clamp(1.5rem, 4vw, 2.2rem);
    font-weight: 700;
    text-align: center;
    margin-top: 40px;
    margin-bottom: 30px;
    color: #FFF5E1; /* Text Main */
    position: relative;
    padding-bottom: 10px;
}

.page-news__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #F4D34D; /* Gold */
    border-radius: 2px;
}


/* News List */
.page-news__latest-news-section {
    padding: 40px 0;
}

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

.page-news__news-card {
    background-color: #D32F2F; /* Card BG */
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    border: 1px solid #7A0E0E; /* Deep Red for border */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-news__news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.page-news__card-image {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 16/9; /* For blog images */
    object-fit: cover;
    object-position: center;
    min-height: 200px; /* Enforce min size */
    min-width: 200px; /* Enforce min size */
}

.page-news__card-content {
    padding: 20px;
}

.page-news__card-title {
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 10px;
    line-height: 1.4;
}

.page-news__card-title a {
    color: #FFF5E1; /* Text Main */
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-news__card-title a:hover {
    color: #F4D34D; /* Gold */
}

.page-news__card-meta {
    font-size: 0.9rem;
    color: rgba(255, 245, 225, 0.7); /* Lighter Text Main */
    margin-bottom: 15px;
}

.page-news__card-excerpt {
    font-size: 1rem;
    color: #FFF5E1; /* Text Main */
    margin-bottom: 20px;
}

.page-news__read-more {
    display: inline-block;
    color: #FFCC66; /* Glow */
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.page-news__read-more:hover {
    color: #F4D34D; /* Gold */
    text-decoration: underline;
}

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

.page-news__view-all-button {
    display: inline-block;
    background: linear-gradient(180deg, #FFD86A 0%, #E6B800 100%); /* Button color */
    color: #7A0E0E; /* Deep Red for text on button */
    padding: 12px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid #F2B544; /* Border color */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-news__view-all-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* About Us Brief Section */
.page-news__about-us-brief {
    padding: 40px 0;
    text-align: center;
}

.page-news__paragraph {
    font-size: 1rem;
    color: #FFF5E1; /* Text Main */
    margin-bottom: 20px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-news__about-button {
    display: inline-block;
    background-color: #C91F17; /* Main color */
    color: #FFF5E1; /* Text Main */
    padding: 12px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: 2px solid #E53935; /* Auxiliary color */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-news__about-button:hover {
    background-color: #E53935; /* Auxiliary color */
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Responsive adjustments */
@media (max-width: 849px) {
    .page-news__news-list {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 20px;
    }
    .page-news__main-title {
        font-size: clamp(1.6rem, 5vw, 2.5rem);
    }
    .page-news__intro-text {
        font-size: clamp(0.9rem, 2.8vw, 1.1rem);
    }
    .page-news__section-title {
        font-size: clamp(1.3rem, 4.5vw, 2rem);
    }
}

@media (max-width: 549px) {
    .page-news__news-list {
        grid-template-columns: 1fr; /* Single column on very small screens */
        gap: 25px;
    }
    .page-news__hero-content {
        padding: 15px 10px;
    }
    .page-news__main-title {
        font-size: clamp(1.4rem, 6vw, 2rem);
    }
    .page-news__intro-text {
        font-size: clamp(0.85rem, 3.5vw, 1rem);
    }
    .page-news__cta-button,
    .page-news__view-all-button,
    .page-news__about-button {
        padding: 10px 20px;
        font-size: 1rem;
    }
}

/* Apply max-width: 100%; height: auto; for all images in .page-news context */
@media (max-width: 768px) {
    .page-news img {
        max-width: 100% !important;
        height: auto !important;
    }
}