.page-news {
    color: #ffffff; /* Body background is #0a0a0a (dark), so text should be light */
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: transparent; /* Main content background transparent, body handles its own background */
}

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

/* Hero Section */
.page-news__hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 10px; /* Small top padding, body handles --header-offset */
    padding-bottom: 60px;
    background-color: #0a0a0a; /* Ensure hero background is dark */
    color: #ffffff;
}

.page-news__hero-image-wrapper {
    width: 100%;
    overflow: hidden;
}

.page-news__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.page-news__hero-content {
    text-align: center;
    padding-top: 40px;
    padding-bottom: 20px;
}

.page-news__main-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem); /* Responsive H1 font size */
    font-weight: 700;
    margin-bottom: 15px;
    color: #26A9E0; /* Brand color for main title */
    line-height: 1.2;
}

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

.page-news__btn-primary,
.page-news__btn-secondary {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
    text-align: center;
}

.page-news__btn-primary {
    background-color: #26A9E0; /* Primary brand color */
    color: #ffffff;
    border: 2px solid #26A9E0;
}

.page-news__btn-primary:hover {
    background-color: #1e87c0;
    border-color: #1e87c0;
}

.page-news__btn-secondary {
    background-color: transparent;
    color: #26A9E0;
    border: 2px solid #26A9E0;
}

.page-news__btn-secondary:hover {
    background-color: #26A9E0;
    color: #ffffff;
}

/* Section Titles */
.page-news__section-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
    color: #26A9E0;
    padding-top: 40px;
}

.page-news__section-description {
    font-size: 1.1rem;
    text-align: center;
    margin-bottom: 40px;
    color: #f0f0f0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* News Grid */
.page-news__latest-news,
.page-news__industry-insights {
    padding: 60px 0;
}

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

.page-news__news-card,
.page-news__insight-card {
    background-color: rgba(255, 255, 255, 0.1); /* Semi-transparent light background for cards */
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
    color: #ffffff;
}

.page-news__news-card:hover,
.page-news__insight-card:hover {
    transform: translateY(-5px);
}

.page-news__news-card-image,
.page-news__insight-card-image {
    width: 100%;
    height: 220px; /* Fixed height for consistent card image display */
    object-fit: cover;
    display: block;
    min-width: 200px; /* Enforce minimum size */
    min-height: 200px; /* Enforce minimum size */
}

.page-news__news-card-content,
.page-news__insight-card-content {
    padding: 20px;
}

.page-news__news-card-title,
.page-news__insight-card-title {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 10px;
    line-height: 1.3;
}

.page-news__news-card-title a,
.page-news__insight-card-title a {
    color: #26A9E0; /* Brand color for card titles */
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-news__news-card-title a:hover,
.page-news__insight-card-title a:hover {
    color: #ffffff;
}

.page-news__news-card-meta,
.page-news__insight-card-meta {
    font-size: 0.9rem;
    color: #cccccc;
    margin-bottom: 15px;
}

.page-news__news-card-excerpt,
.page-news__insight-card-excerpt {
    font-size: 1rem;
    margin-bottom: 20px;
    color: #f0f0f0;
}

.page-news__news-card-link,
.page-news__insight-card-link {
    display: inline-block;
    color: #26A9E0;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.page-news__news-card-link:hover,
.page-news__insight-card-link:hover {
    color: #ffffff;
}

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

/* CTA Section */
.page-news__cta-section {
    background-color: #1a1a1a; /* Darker background for CTA */
    padding: 80px 0;
    text-align: center;
    color: #ffffff;
}

.page-news__cta-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 20px;
    color: #26A9E0;
}

.page-news__cta-description {
    font-size: 1.1rem;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #f0f0f0;
}

.page-news__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap; /* Allow buttons to wrap on smaller screens */
}

/* FAQ Section */
.page-news__faq-section {
    padding: 60px 0;
    color: #ffffff;
}

.page-news__faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.page-news__faq-item {
    background-color: rgba(255, 255, 255, 0.08); /* Slightly lighter background for FAQ items */
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    color: #ffffff;
}

.page-news__faq-item summary {
    list-style: none;
}

.page-news__faq-item summary::-webkit-details-marker {
    display: none;
}

.page-news__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    color: #26A9E0;
    transition: background-color 0.3s ease;
}

.page-news__faq-question:hover {
    background-color: rgba(255, 255, 255, 0.15);
}

.page-news__faq-toggle {
    font-size: 1.5rem;
    line-height: 1;
    margin-left: 15px;
    color: #ffffff;
}

.page-news__faq-answer {
    padding: 0 20px 20px;
    font-size: 1rem;
    color: #f0f0f0;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .page-news__news-grid,
    .page-news__insights-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .page-news__container {
        padding: 0 15px;
    }

    .page-news__hero-section {
        padding-bottom: 40px;
    }

    .page-news__main-title {
        font-size: clamp(2rem, 8vw, 2.8rem);
    }

    .page-news__description {
        font-size: 1rem;
        padding: 0 10px;
    }

    .page-news__btn-primary,
    .page-news__btn-secondary {
        padding: 10px 20px;
        font-size: 0.95rem;
    }

    .page-news__section-title {
        font-size: clamp(1.8rem, 7vw, 2.5rem);
        padding-top: 30px;
    }

    .page-news__section-description {
        font-size: 0.95rem;
        margin-bottom: 30px;
        padding: 0 10px;
    }

    .page-news__news-grid,
    .page-news__insights-grid {
        grid-template-columns: 1fr; /* Stack cards vertically */
        gap: 20px;
    }

    .page-news__news-card-image,
    .page-news__insight-card-image {
        height: 180px; /* Adjust height for mobile */
    }

    .page-news__news-card-title,
    .page-news__insight-card-title {
        font-size: 1.2rem;
    }

    .page-news__news-card-excerpt,
    .page-news__insight-card-excerpt {
        font-size: 0.95rem;
    }

    .page-news__cta-section {
        padding: 60px 0;
    }

    .page-news__cta-title {
        font-size: clamp(1.8rem, 7vw, 2.5rem);
    }

    .page-news__cta-description {
        font-size: 1rem;
        padding: 0 10px;
    }

    .page-news__cta-buttons {
        flex-direction: column; /* Stack buttons vertically */
        gap: 15px;
        align-items: center;
    }
    
    .page-news__cta-buttons .page-news__btn-primary,
    .page-news__cta-buttons .page-news__btn-secondary {
        width: calc(100% - 30px); /* Adjust for padding on container */
        max-width: 300px; /* Optional: limit max width even when stacked */
    }

    .page-news__faq-question {
        font-size: 1rem;
        padding: 15px;
    }

    .page-news__faq-answer {
        padding: 0 15px 15px;
        font-size: 0.95rem;
    }

    /* Mobile specific image, video, button responsiveness (forced) */
    .page-news img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    
    .page-news video,
    .page-news__video {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    
    .page-news__section,
    .page-news__card,
    .page-news__container,
    .page-news__video-section,
    .page-news__video-container,
    .page-news__video-wrapper,
    .page-news__cta-buttons,
    .page-news__button-group,
    .page-news__btn-container {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        overflow: hidden !important; /* Ensure no overflow */
    }

    .page-news__video-section {
        padding-top: 10px !important; /* body already handles --header-offset */
    }

    .page-news__cta-button,
    .page-news__btn-primary,
    .page-news__btn-secondary,
    .page-news a[class*="button"],
    .page-news a[class*="btn"] {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
    }
    .page-news__cta-buttons {
      flex-wrap: wrap !important;
      gap: 10px;
    }
}

/* Ensure content area images are not too small by CSS */
.page-news__news-card-image,
.page-news__insight-card-image {
    min-width: 200px;
    min-height: 200px;
}
.page-news__content-area img,
.page-news__text-block img {
    min-width: 200px;
    min-height: 200px;
}