.page-news {
    padding-top: 10px; /* Small top padding, main body padding handled by shared.css */
    background-color: #140C0C; /* Background color */
    color: #FFF1E8; /* Main text color */
}

.page-news__hero-section {
    position: relative;
    overflow: hidden;
    margin-bottom: 40px;
}

.page-news__hero-image-wrapper {
    width: 100%;
    height: auto;
}

.page-news__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    min-width: 200px; /* Minimum image size */
    min-height: 200px; /* Minimum image size */
}

.page-news__hero-content {
    padding: 20px;
    text-align: center;
    max-width: 900px;
    margin: 20px auto 0 auto; /* Placed below the image */
}

.page-news__main-title {
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: #FFF1E8; /* Text Main */
    margin-bottom: 15px;
    /* No hardcoded font-size, relying on other properties */
}

.page-news__description {
    font-size: 1.1em;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #FFF1E8; /* Text Main */
}

.page-news__cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 25px;
    border-radius: 8px;
    background: linear-gradient(180deg, #FFB04A 0%, #D86A14 100%); /* Button color */
    color: #FFF1E8;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.2s ease-in-out;
    min-width: 200px; /* Ensure button is not too small */
    min-height: 48px; /* Ensure button is not too small */
    margin: 0 auto;
}

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

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

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

.page-news__section-title {
    font-size: 2.2em;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
    color: #FFF1E8;
    background: linear-gradient(90deg, #F3C54D, #FFB04A); /* Gold to orange gradient for title */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

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

.page-news__article-card {
    background-color: #2A1212; /* Card BG */
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease-in-out;
    border: 1px solid #6A1E1E; /* Border color */
}

.page-news__article-card:hover {
    transform: translateY(-5px);
}

.page-news__article-image-wrapper {
    width: 100%;
    height: 225px; /* Fixed height for consistency, adjust as needed */
    overflow: hidden;
}

.page-news__article-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    min-width: 200px; /* Minimum image size */
    min-height: 200px; /* Minimum image size */
}

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

.page-news__article-date {
    font-size: 0.9em;
    color: #F3C54D; /* Gold */
    margin-bottom: 10px;
}

.page-news__article-title {
    font-size: 1.4em;
    font-weight: 600;
    margin-bottom: 10px;
    line-height: 1.3;
}

.page-news__article-link {
    color: #FFF1E8; /* Text Main */
    text-decoration: none;
    transition: color 0.2s ease-in-out;
}

.page-news__article-link:hover {
    color: #FFB04A; /* Lighter gold/orange */
}

.page-news__article-excerpt {
    font-size: 1em;
    line-height: 1.5;
    color: #FFF1E8; /* Text Main */
    margin-bottom: 20px;
}

.page-news__read-more-button {
    display: inline-block;
    padding: 8px 18px;
    border-radius: 6px;
    background: #E53030; /* Auxiliary color */
    color: #FFF1E8;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.2s ease-in-out;
}

.page-news__read-more-button:hover {
    background-color: #C61F1F; /* Main color */
}

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

.page-news__pagination-link {
    display: inline-block;
    padding: 10px 15px;
    margin: 0 5px;
    border-radius: 6px;
    background-color: #2A1212; /* Card BG */
    color: #FFF1E8;
    text-decoration: none;
    transition: background-color 0.2s ease-in-out;
    border: 1px solid #6A1E1E; /* Border color */
}

.page-news__pagination-link:hover {
    background-color: #E53030; /* Auxiliary color */
}

.page-news__pagination-link--active {
    background: linear-gradient(180deg, #FFB04A 0%, #D86A14 100%); /* Button color */
    color: #140C0C; /* Darker text for active button */
    border-color: #FFB04A;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .page-news__hero-content {
        padding: 15px;
        margin-top: 15px;
    }

    .page-news__main-title {
        font-size: 2em; /* Adjusted for mobile */
    }

    .page-news__description {
        font-size: 1em;
    }

    .page-news__cta-button {
        width: 100%;
        max-width: 300px;
    }

    .page-news__section-title {
        font-size: 1.8em;
    }

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

    /* Ensure images in content area are responsive and don't overflow */
    .page-news__article-image,
    .page-news__hero-image {
        max-width: 100%;
        height: auto;
        min-width: 200px; /* Maintain minimum size */
        min-height: 200px; /* Maintain minimum size */
    }

    .page-news__article-image-wrapper {
        height: auto; /* Allow height to adjust with aspect ratio */
    }

    .page-news__article-image {
        width: 100%;
        height: auto; /* Ensure height scales with width */
    }

    /* Ensure content section itself doesn't cause overflow */
    .page-news__container {
        padding: 0 15px;
        overflow-x: hidden; /* Prevent horizontal scroll */
    }
}

@media (max-width: 480px) {
    .page-news__main-title {
        font-size: 1.8em;
    }
    .page-news__section-title {
        font-size: 1.6em;
    }
    .page-news__article-title {
        font-size: 1.2em;
    }
    .page-news__cta-button {
        padding: 10px 20px;
    }
}