.page-news {
    background-color: #0A0A0A;
    color: #FFF6D6;
    font-family: Arial, sans-serif;
    line-height: 1.6;
    padding-top: 10px; /* Small top padding, body handles header offset */
}

.page-news__hero-section {
    position: relative;
    width: 100%;
    margin-bottom: 40px;
    display: flex;
    flex-direction: column; /* Ensure image is above content */
    align-items: center;
    text-align: center;
    overflow: hidden; /* Contains children */
}

.page-news__hero-image {
    width: 100%;
    height: auto;
    aspect-ratio: 16/9; /* For 1920x1080 */
    object-fit: cover;
    object-position: center;
    display: block;
    margin-bottom: 20px;
    min-width: 200px;
    min-height: 200px;
}

.page-news__hero-content {
    max-width: 900px;
    padding: 0 20px;
    box-sizing: border-box;
}

.page-news__main-title {
    font-size: clamp(1.8rem, 4.5vw, 2.8rem); /* Adjusted for news page, slightly larger than default h1 */
    color: #F2C14E;
    margin-bottom: 15px;
    font-weight: bold;
    line-height: 1.2;
}

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

.page-news__section-title {
    font-size: clamp(1.6rem, 4vw, 2.5rem);
    color: #F2C14E;
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
    padding: 0 15px;
}

.page-news__articles-section {
    max-width: 1200px;
    margin: 0 auto 60px auto;
    padding: 0 15px;
    box-sizing: border-box;
}

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

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

.page-news__article-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4), 0 0 15px #FFD36B; /* Added glow on hover */
}

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

.page-news__article-image {
    width: 100%;
    height: 200px; /* Fixed height for consistency in cards */
    object-fit: cover;
    display: block;
    min-width: 200px;
    min-height: 200px;
}

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

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

.page-news__card-date {
    font-size: 0.9rem;
    color: rgba(255, 246, 214, 0.7);
    margin-bottom: 10px;
}

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

.page-news__button-container {
    text-align: center;
}

.page-news__button {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
    cursor: pointer;
    font-size: 1rem;
}

.page-news__button--primary {
    background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
    color: #111111; /* Text color for buttons should contrast well with gradient */
    border: none;
}

.page-news__button--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 211, 107, 0.4);
}

.page-news__cta-section {
    background-color: #111111;
    padding: 60px 20px;
    text-align: center;
    margin-bottom: 60px;
    border-top: 1px solid #3A2A12;
    border-bottom: 1px solid #3A2A12;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.page-news__cta-content {
    max-width: 800px;
    text-align: center;
}

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

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

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

.page-news__button--secondary {
    background: transparent;
    border: 2px solid #FFD36B;
    color: #FFD36B;
}

.page-news__button--secondary:hover {
    background-color: #FFD36B;
    color: #111111;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 211, 107, 0.4);
}

.page-news__cta-image {
    width: 100%;
    max-width: 800px; /* Adjust based on design */
    height: auto;
    object-fit: cover;
    border-radius: 10px;
    display: block;
    min-width: 200px;
    min-height: 200px;
}

.page-news__faq-section {
    max-width: 900px;
    margin: 0 auto 60px auto;
    padding: 0 15px;
    box-sizing: border-box;
}

.page-news__faq-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.page-news__faq-item {
    background-color: #111111;
    border: 1px solid #3A2A12;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.page-news__faq-question {
    font-size: 1.2rem;
    color: #F2C14E;
    margin-bottom: 10px;
    font-weight: bold;
}

.page-news__faq-answer {
    font-size: 1rem;
    color: #FFF6D6;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-news {
        padding-top: 8px;
    }
    .page-news__hero-image {
        margin-bottom: 15px;
    }
    .page-news__hero-content {
        padding: 0 15px;
    }
    .page-news__main-title {
        font-size: clamp(1.5rem, 6vw, 2.2rem);
        margin-bottom: 10px;
    }
    .page-news__description {
        font-size: 1rem;
        margin-bottom: 20px;
    }
    .page-news__section-title {
        font-size: clamp(1.4rem, 5vw, 2rem);
        margin-bottom: 30px;
    }
    .page-news__articles-grid {
        grid-template-columns: 1fr; /* Single column on small screens */
        gap: 20px;
    }
    .page-news__article-image {
        height: 180px;
    }
    .page-news__card-title {
        font-size: 1.2rem;
    }
    .page-news__button {
        padding: 10px 20px;
        font-size: 0.95rem;
    }
    .page-news__cta-section {
        padding: 40px 15px;
        gap: 20px;
    }
    .page-news__cta-title {
        font-size: clamp(1.5rem, 5.5vw, 2.2rem);
    }
    .page-news__cta-description {
        font-size: 1rem;
        margin-bottom: 20px;
    }
    .page-news__cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    .page-news__cta-image {
        max-width: 100%;
    }
    .page-news__faq-question {
        font-size: 1.1rem;
    }
    .page-news__faq-answer {
        font-size: 0.95rem;
    }

    /* Important: Mobile content area images must not overflow */
    .page-news img {
        max-width: 100%;
        height: auto;
    }
}

@media (max-width: 549px) {
    .page-news__main-title {
        font-size: clamp(1.3rem, 7vw, 2rem);
    }
    .page-news__section-title {
        font-size: clamp(1.2rem, 6vw, 1.8rem);
    }
    .page-news__cta-title {
        font-size: clamp(1.3rem, 6.5vw, 2rem);
    }
}