.page-news {
    background-color: #0A0A0A;
    color: #FFF6D6;
    font-family: Arial, sans-serif;
}

.page-news__hero-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 40px;
    background-color: #100224;
}

.page-news__hero-visual {
    width: 100%;
    margin: 0;
    padding: 0;
}

.page-news__hero-visual img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    aspect-ratio: 16/5; /* For 1920x600, 16/5 ratio */
}

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

.page-news__main-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 15px;
    color: #F2C14E;
}

.page-news__description {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
}

.page-news__cta-button {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 8px;
    background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
    color: #100224;
    text-decoration: none;
    font-weight: bold;
    font-size: 1rem;
    transition: transform 0.2s ease;
    border: none;
    cursor: pointer;
}

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

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

.page-news__section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    color: #F2C14E;
    text-align: center;
    margin-bottom: 40px;
    font-weight: 700;
}

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

.page-news__article-card {
    background-color: #111111;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    border: 1px solid #3A2A12;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.page-news__article-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5), 0 0 15px #FFD36B80;
}

.page-news__article-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.page-news__article-card img {
    width: 100%;
    height: 225px; /* Fixed height for consistency, maintain aspect ratio with object-fit */
    object-fit: cover;
    display: block;
}

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

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

.page-news__article-date {
    font-size: 0.9rem;
    color: #FFD36B;
    margin-bottom: 15px;
    display: block;
}

.page-news__card-excerpt {
    font-size: 1rem;
    line-height: 1.5;
    color: #FFF6D6;
}

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

.page-news__view-all-button {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 8px;
    background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
    color: #100224;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: transform 0.2s ease;
    border: none;
    cursor: pointer;
}

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

.page-news__cta-section {
    background-color: #111111;
    padding: 60px 20px;
    text-align: center;
    margin-top: 60px;
    border-top: 1px solid #3A2A12;
}

.page-news__cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.page-news__cta-title {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    color: #F2C14E;
    margin-bottom: 20px;
    font-weight: 700;
}

.page-news__cta-description {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
}

.page-news__cta-button--large {
    padding: 15px 35px;
    font-size: 1.2rem;
}

/* Responsive adjustments */
@media (max-width: 849px) {
    .page-news__hero-visual img {
        aspect-ratio: 4/3;
    }
    .page-news__articles-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .page-news__hero-content {
        padding: 15px;
    }
    .page-news__main-title {
        font-size: 2rem;
    }
    .page-news__description {
        font-size: 1rem;
    }
    .page-news__articles-section {
        margin: 20px auto;
        padding: 15px;
    }
    .page-news__section-title,
    .page-news__cta-title {
        font-size: 2rem;
    }
    .page-news__article-card img,
    .page-news__articles-grid img {
        max-width: 100%;
        height: auto;
    }
    .page-news__article-card {
      width: 100%; /* Ensure cards take full width */
    }
    .page-news__card-title {
        font-size: 1.2rem;
    }
    .page-news__card-excerpt {
        font-size: 0.95rem;
    }
    .page-news__cta-section {
        padding: 40px 15px;
    }
    .page-news__cta-button--large {
        font-size: 1.1rem;
        padding: 12px 30px;
    }
}

@media (max-width: 480px) {
    .page-news__main-title {
        font-size: 1.8rem;
    }
    .page-news__section-title,
    .page-news__cta-title {
        font-size: 1.8rem;
    }
    .page-news__articles-grid {
        grid-template-columns: 1fr;
    }
    .page-news__article-card img {
      min-height: 200px;
    }
    .page-news__hero-visual img {
        min-height: 200px;
    }
    .page-news__article-card img,
    .page-news__articles-grid img {
      width: 100%;
      height: auto; /* Override fixed height for very small screens if necessary */
      object-fit: cover;
    }
    .page-news__article-card img[width][height] {
        max-width: 100%;
        height: auto; /* Ensures images are responsive and don't overflow */
    }
}

/* Ensure all images within .page-news adhere to minimum size requirements */
.page-news img:not(.shared-header img):not(.shared-footer img) {
    min-width: 200px;
    min-height: 200px;
}

.page-news__articles-grid img {
    min-width: unset; /* Reset for grid items, as card itself handles width */
    min-height: 200px;
}

.page-news__hero-visual img {
    min-width: 200px;
    min-height: 200px;
}