.page-news {
    color: var(--text-main); /* Assuming body background is dark, using Text Main color */
    background-color: var(--background); /* Use global background variable */
}

/* Custom color variables from prompt */
:root {
  --button: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  --card-bg: #11271B;
  --background: #08160F;
  --text-main: #F2FFF6;
  --text-secondary: #A7D9B8;
  --border: #2E7A4E;
  --glow: #57E38D;
  --gold: #F2C14E;
  --divider: #1E3A2A;
  --deep-green: #0A4B2C;
  --gold-rgb: 242, 193, 78; /* RGB for F2C14E for rgba usage */
}

/* Hero Section */
.page-news__hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 60px 20px;
    padding-top: 10px; /* Small decorative top padding, body handles header offset */
    background-color: var(--background);
    overflow: hidden;
}

.page-news__hero-image-wrapper {
    width: 100%;
    max-width: 1920px; /* Max width for large screens */
    margin-bottom: 30px; /* Space between image and content */
}

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

.page-news__hero-content {
    text-align: center;
    max-width: 900px;
    padding: 0 20px;
    z-index: 1; /* Ensure content is above any potential background elements */
}

.page-news__main-title {
    font-size: clamp(2.2rem, 4vw, 3.5rem); /* Responsive font size */
    color: var(--text-main);
    margin-bottom: 20px;
    line-height: 1.2;
    font-weight: bold;
}

.page-news__description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 30px;
    line-height: 1.6;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* General Sections */
.page-news__section {
    padding: 60px 0;
    background-color: var(--background);
}

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

.page-news__section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    color: var(--text-main);
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
}

/* Grid Layout for Cards */
.page-news__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.page-news__card {
    background-color: var(--card-bg); /* Custom Card BG */
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
    border: 1px solid var(--border);
}

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

.page-news__card-image {
    width: 100%;
    height: 250px; /* Fixed height for consistency */
    object-fit: cover;
    display: block;
}

.page-news__card-title {
    font-size: 1.4rem;
    font-weight: bold;
    color: var(--text-main);
    padding: 20px 20px 10px;
    line-height: 1.3;
}

.page-news__card-title a {
    color: var(--text-main);
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-news__card-title a:hover {
    color: var(--gold); /* Highlight on hover */
}

.page-news__card-text {
    font-size: 1rem;
    color: var(--text-secondary);
    padding: 0 20px 20px;
    line-height: 1.6;
}

/* Content Block (Analysis Section) */
.page-news__content-block {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
    margin-bottom: 40px;
}

.page-news__content-image {
    width: 100%;
    max-width: 800px;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
    display: block;
}

.page-news__content-subtitle {
    font-size: 1.6rem;
    font-weight: bold;
    color: var(--text-main);
    text-align: center;
    margin-top: 20px;
}

.page-news__text-block {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    text-align: justify;
    max-width: 800px;
}

/* Call to Action Buttons */
.page-news__cta-button {
    display: inline-block;
    padding: 14px 30px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: bold;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    white-space: normal; /* Allow text wrapping */
    word-wrap: break-word; /* Allow long words to break */
    box-sizing: border-box;
}

.page-news__btn-primary {
    background: var(--button); /* Custom Button Gradient */
    color: var(--text-main); /* White text on dark gradient */
    border: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.page-news__btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
    opacity: 0.9;
}

.page-news__btn-secondary {
    background-color: transparent;
    color: var(--gold);
    border: 2px solid var(--gold);
}

.page-news__btn-secondary:hover {
    background-color: var(--gold);
    color: var(--background); /* Dark background text on gold hover */
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-news__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap; /* Allow wrapping for multiple buttons */
}

/* Follow Us Section */
.page-news__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.page-news__list-item {
    background-color: var(--card-bg);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    border: 1px solid var(--border);
}

.page-news__list-title {
    font-size: 1.5rem;
    color: var(--text-main);
    margin-bottom: 15px;
    font-weight: bold;
}

.page-news__list-text {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 20px;
}

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

.page-news__faq-item {
    background-color: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 12px;
    margin-bottom: 15px;
    overflow: hidden;
}

.page-news__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--text-main);
    cursor: pointer;
    background-color: var(--card-bg);
    transition: background-color 0.3s ease;
    list-style: none; /* For details/summary */
}

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

.page-news__faq-question:hover {
    background-color: rgba(var(--gold-rgb), 0.1); /* Slight hover effect */
}

.page-news__faq-qtext {
    flex-grow: 1;
}

.page-news__faq-toggle {
    font-size: 1.8rem;
    line-height: 1;
    margin-left: 15px;
    color: var(--gold);
}

.page-news__faq-answer {
    padding: 0 25px 20px;
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Call to Action at Bottom */
.page-news__call-to-action {
    text-align: center;
    padding: 80px 20px;
}

.page-news__cta-content {
    background-color: var(--deep-green); /* Use Deep Green for a distinct CTA block */
    padding: 50px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    border: 1px solid var(--border);
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .page-news__hero-section {
        padding: 40px 15px;
        padding-top: 10px;
    }
    .page-news__main-title {
        font-size: clamp(2rem, 5vw, 3rem);
    }
    .page-news__section-title {
        font-size: clamp(1.6rem, 4vw, 2.5rem);
    }
    .page-news__grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
    .page-news__cta-content {
        padding: 40px;
    }
}

@media (max-width: 768px) {
    .page-news__hero-section {
        padding: 30px 15px;
        padding-top: 10px !important; /* Ensure small top padding */
    }
    .page-news__hero-image-wrapper {
        margin-bottom: 20px;
    }
    .page-news__hero-content {
        padding: 0 15px;
    }
    .page-news__main-title {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
        margin-bottom: 15px;
    }
    .page-news__description {
        font-size: 1rem;
        margin-bottom: 25px;
    }

    .page-news__section {
        padding: 40px 0;
    }
    .page-news__container {
        padding: 0 15px !important; /* Mobile padding for containers */
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
    }

    .page-news__section-title {
        font-size: clamp(1.5rem, 5vw, 2.2rem);
        margin-bottom: 30px;
    }

    .page-news__grid {
        grid-template-columns: 1fr; /* Single column layout for cards */
        gap: 20px;
    }

    .page-news__card-image {
        height: 200px;
    }

    .page-news__card-title {
        font-size: 1.2rem;
        padding: 15px 15px 8px;
    }

    .page-news__card-text {
        font-size: 0.95rem;
        padding: 0 15px 15px;
    }

    .page-news__content-block {
        gap: 20px;
    }

    .page-news__content-subtitle {
        font-size: 1.4rem;
    }

    .page-news__text-block {
        font-size: 1rem;
    }

    .page-news__cta-button {
        max-width: 100% !important;
        width: 100% !important;
        padding: 12px 20px;
        font-size: 1rem;
        white-space: normal !important;
        word-wrap: break-word !important;
    }
    .page-news__cta-buttons {
        flex-direction: column; /* Stack buttons vertically */
        gap: 15px;
        margin-top: 30px;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
    }

    .page-news__list {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .page-news__list-item {
        padding: 25px;
    }

    .page-news__list-title {
        font-size: 1.3rem;
    }

    .page-news__list-text {
        font-size: 0.95rem;
    }

    .page-news__faq-question {
        font-size: 1.1rem;
        padding: 18px 20px;
    }

    .page-news__faq-toggle {
        font-size: 1.5rem;
    }

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

    .page-news__call-to-action {
        padding: 60px 15px;
    }
    .page-news__cta-content {
        padding: 30px;
    }

    /* Image responsive enforcement */
    .page-news img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }

    /* Video responsive enforcement (if any) */
    .page-news video,
    .page-news__video {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }

    .page-news__video-section,
    .page-news__video-container,
    .page-news__video-wrapper {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        overflow: hidden !important;
    }
}