.page-news {
    background-color: #0A0A0A;
    color: #FFF6D6;
    padding: 10px 0 60px; /* Small top padding, larger bottom */
    overflow-x: hidden;
    box-sizing: border-box;
}

.page-news__hero-section {
    display: flex;
    flex-direction: column; /* Default to column for mobile */
    align-items: center;
    text-align: center;
    padding: 20px 15px 40px;
    max-width: 1390px;
    margin: 0 auto;
    gap: 30px;
}

.page-news__hero-image-wrapper {
    width: 100%;
    max-width: 1200px; /* Max width for image wrapper */
}

.page-news__hero-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    object-fit: cover;
    aspect-ratio: 16/9; /* Default aspect ratio */
}

.page-news__main-title {
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: #F2C14E;
    margin-bottom: 15px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    /* Using clamp for responsive font size */
    font-size: clamp(1.8rem, 4.5vw, 2.8rem);
}

.page-news__description {
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 900px;
    margin: 0 auto 20px;
}

.page-news__section-title {
    font-size: clamp(1.5rem, 4vw, 2.2rem);
    color: #F2C14E;
    text-align: center;
    margin: 60px 15px 40px;
    font-weight: 600;
    position: relative;
}

.page-news__section-title::before,
.page-news__section-title::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 50px;
    height: 2px;
    background-color: #3A2A12;
    transform: translateY(-50%);
}

.page-news__section-title::before {
    left: 0;
    right: auto;
    margin-left: calc(50% - 150px); /* Adjust position for shorter lines on mobile */
}

.page-news__section-title::after {
    right: 0;
    left: auto;
    margin-right: calc(50% - 150px);
}

.page-news__articles-section {
    max-width: 1390px;
    margin: 0 auto;
    padding: 0 15px;
}

.page-news__articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 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.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

.page-news__article-thumbnail {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    aspect-ratio: 16/9; /* Standard for blog thumbnails */
}

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

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

.page-news__article-title {
    font-size: 1.3rem;
    font-weight: 600;
    line-height: 1.4;
    color: #FFF6D6;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.page-news__article-card:hover .page-news__article-title {
    color: #F2C14E;
}

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

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

.page-news__view-all-button {
    display: inline-block;
    padding: 12px 30px;
    background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
    color: #111111; /* Text color for buttons should be dark for contrast */
    text-decoration: none;
    border-radius: 5px;
    font-weight: 700;
    transition: opacity 0.3s ease;
    border: none;
    cursor: pointer;
}

.page-news__view-all-button:hover {
    opacity: 0.9;
}

.page-news__faq-section {
    max-width: 1000px;
    margin: 80px auto 0;
    padding: 0 15px;
}

.page-news__faq-list {
    margin-top: 30px;
}

.page-news__faq-item {
    background-color: #111111;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 15px;
    border: 1px solid #3A2A12;
}

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

.page-news__faq-answer {
    font-size: 1rem;
    line-height: 1.6;
    color: #FFF6D6;
    opacity: 0.9;
}

.page-news__call-to-action {
    background-color: #111111;
    padding: 60px 15px;
    text-align: center;
    margin-top: 80px;
    border-top: 1px solid #3A2A12;
    border-bottom: 1px solid #3A2A12;
}

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

.page-news__cta-description {
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto 30px;
}

.page-news__cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
    color: #111111; /* Text color for buttons should be dark for contrast */
    text-decoration: none;
    border-radius: 5px;
    font-weight: 700;
    transition: opacity 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
}

.page-news__cta-button:hover {
    opacity: 0.9;
}

/* Responsive adjustments */
@media (min-width: 769px) {
    .page-news__hero-section {
        flex-direction: row-reverse; /* Image on right, text on left */
        text-align: left;
        padding: 40px 30px 60px;
        gap: 50px;
    }

    .page-news__hero-content {
        flex: 1;
        max-width: 50%;
    }

    .page-news__hero-image-wrapper {
        flex: 1;
        max-width: 50%;
    }

    .page-news__section-title::before {
        margin-left: calc(50% - 250px); /* Adjust for wider lines on desktop */
        width: 150px;
    }

    .page-news__section-title::after {
        margin-right: calc(50% - 250px);
        width: 150px;
    }
}

@media (max-width: 849px) {
    .page-news__main-title {
        font-size: clamp(1.6rem, 6vw, 2.5rem);
    }
    .page-news__description {
        font-size: 1rem;
    }
    .page-news__articles-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    .page-news__hero-image {
        aspect-ratio: 16/9; /* Keep aspect ratio consistent */
    }
    .page-news__article-thumbnail {
        max-width: 100%;
        height: auto;
    }
    .page-news__section-title::before,
    .page-news__section-title::after {
        width: 30px; /* Shorter lines for smaller screens */
        margin-left: calc(50% - 100px);
        margin-right: calc(50% - 100px);
    }
}

@media (max-width: 549px) {
    .page-news {
        padding: 10px 0 40px;
    }
    .page-news__hero-section {
        padding: 20px 10px 30px;
    }
    .page-news__main-title {
        font-size: clamp(1.4rem, 7vw, 2.2rem);
    }
    .page-news__description {
        font-size: 0.95rem;
    }
    .page-news__articles-grid {
        grid-template-columns: 1fr; /* Single column on very small screens */
    }
    .page-news__article-title {
        font-size: 1.1rem;
    }
    .page-news__article-excerpt {
        font-size: 0.9rem;
    }
    .page-news__section-title {
        margin: 40px 10px 30px;
    }
    .page-news__faq-question {
        font-size: 1.1rem;
    }
    .page-news__faq-answer {
        font-size: 0.95rem;
    }
    .page-news__cta-title {
        font-size: clamp(1.3rem, 6vw, 2.2rem);
    }
    .page-news__cta-description {
        font-size: 0.95rem;
    }
    .page-news__cta-button {
        padding: 12px 25px;
        font-size: 1rem;
    }
    /* Ensure content area images are responsive and don't overflow */
    .page-news__articles-section img,
    .page-news__article-card img,
    .page-news__hero-section img {
        max-width: 100%;
        height: auto;
    }
}
/* Ensure content area images are always >= 200px where not explicitly smaller by responsive design */
.page-news__articles-section img,
.page-news__article-card img {
    min-width: 200px;
    min- /* For 16:9 aspect ratio */
}
/* Mobile content area images anti-overflow */
@media (max-width: 768px) {
    .page-news__articles-section img,
    .page-news__article-card img,
    .page-news__hero-section img {
        max-width: 100%;
        height: auto;
    }
}