.page-news {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #ffffff; /* Default text color for dark body background */
    background-color: #1a2b47; /* Inherited from shared.css body, but for safety */
}

/* Hero Section */
.page-news__hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
    padding-top: var(--header-offset, 120px); /* Fixed header offset */
    background: linear-gradient(135deg, #0A192F, #1a2b47); /* Use brand colors */
    overflow: hidden; /* Ensure content doesn't spill */
}

.page-news__hero-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    z-index: 1;
}

.page-news__hero-image {
    width: 100%;
    margin-bottom: 30px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.page-news__hero-image img {
    width: 100%;
    height: auto;
    max-width: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.5s ease-in-out;
}

.page-news__hero-image img:hover {
    transform: scale(1.03);
}

.page-news__hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
    max-width: 800px;
}

.page-news__hero-title {
    font-size: 3.5em;
    color: #FFD700; /* Gold for highlight */
    margin-bottom: 20px;
    line-height: 1.2;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-news__hero-description {
    font-size: 1.25em;
    color: #f0f0f0;
    margin-bottom: 40px;
    padding: 0 15px;
}

.page-news__cta-button {
    display: inline-block;
    padding: 18px 45px;
    background: #FFD700; /* Gold button */
    color: #0A192F; /* Dark blue text for contrast */
    text-decoration: none;
    border-radius: 8px;
    font-size: 1.3em;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
    border: none;
    cursor: pointer;
}

.page-news__cta-button:hover {
    background: #e0b800; /* Slightly darker gold on hover */
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

/* General Section Styles */
.page-news__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    box-sizing: border-box;
}

.page-news__section-title {
    font-size: 2.5em;
    text-align: center;
    margin-bottom: 40px;
    color: #FFD700; /* Gold for titles */
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    font-weight: bold;
}

.page-news__sub-title {
    font-size: 1.8em;
    color: #f0f0f0;
    margin-top: 30px;
    margin-bottom: 20px;
    font-weight: 600;
}

.page-news__paragraph {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: #e0e0e0;
    line-height: 1.7;
}

/* Dark Background Sections */
.page-news__dark-section {
    background-color: #0A192F;
    color: #ffffff;
    padding: 60px 0;
}

.page-news__dark-section .page-news__section-title {
    color: #FFD700;
}

.page-news__dark-section .page-news__sub-title {
    color: #ffffff;
}

.page-news__dark-section .page-news__paragraph {
    color: #e0e0e0;
}

.page-news__dark-section a {
    color: #FFD700;
    text-decoration: underline;
}

.page-news__dark-section a:hover {
    color: #e0b800;
}


/* Light Background Sections */
.page-news__light-bg {
    background-color: #1a2b47; /* Slightly lighter dark blue for contrast */
    color: #ffffff;
    padding: 60px 0;
}

.page-news__light-bg .page-news__section-title {
    color: #FFD700;
}

.page-news__light-bg .page-news__paragraph {
    color: #e0e0e0;
}

.page-news__light-bg a {
    color: #FFD700;
    text-decoration: underline;
}

.page-news__light-bg a:hover {
    color: #e0b800;
}

/* Article Grid */
.page-news__article-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.page-news__article-card {
    background: #0A192F; /* Dark background for cards */
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.page-news__article-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.page-news__article-card img {
    width: 100%;
    height: 220px; /* Fixed height for consistency */
    object-fit: cover;
    display: block;
}

.page-news__card-content {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.page-news__card-title {
    font-size: 1.4em;
    margin-bottom: 10px;
    color: #FFD700; /* Gold for card titles */
    line-height: 1.4;
    font-weight: bold;
}

.page-news__card-title a {
    color: #FFD700;
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-news__card-title a:hover {
    color: #e0b800;
}

.page-news__card-date {
    font-size: 0.9em;
    color: #a0a0a0;
    margin-bottom: 15px;
}

.page-news__card-excerpt {
    font-size: 1em;
    color: #e0e0e0;
    margin-bottom: 20px;
    flex-grow: 1;
}

.page-news__read-more {
    display: inline-flex;
    align-items: center;
    color: #FFD700;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.page-news__read-more:hover {
    color: #e0b800;
}

.page-news__arrow {
    margin-left: 8px;
    font-size: 1.2em;
    transition: transform 0.3s ease;
}

.page-news__read-more:hover .page-news__arrow {
    transform: translateX(5px);
}

/* Featured Articles */
.page-news__featured-item {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 50px;
    background: #1a2b47; /* Slightly lighter dark blue for featured items */
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    padding: 25px;
}

.page-news__featured-item:hover {
    transform: translateY(-7px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5);
}

.page-news__featured-item img {
    width: 50%;
    height: auto;
    max-width: 100%;
    border-radius: 8px;
    object-fit: cover;
    flex-shrink: 0;
}

.page-news__featured-content {
    flex-grow: 1;
}

.page-news__featured-title {
    font-size: 1.8em;
    color: #FFD700;
    margin-bottom: 15px;
    line-height: 1.3;
    font-weight: bold;
}

.page-news__featured-title a {
    color: #FFD700;
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-news__featured-title a:hover {
    color: #e0b800;
}

.page-news__featured-excerpt {
    font-size: 1.1em;
    color: #e0e0e0;
    margin-bottom: 25px;
    line-height: 1.6;
}

/* In-depth Analysis Section */
.page-news__analysis-image {
    width: 100%;
    height: auto;
    max-width: 100%;
    display: block;
    margin: 30px auto 40px auto;
    border-radius: 10px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
    object-fit: cover;
}


/* Call to Action Section */
.page-news__cta-content {
    text-align: center;
    padding: 60px 20px;
}

.page-news__cta-content .page-news__section-title {
    margin-bottom: 25px;
}

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

.page-news__btn-primary,
.page-news__btn-secondary {
    display: inline-block;
    padding: 18px 40px;
    text-decoration: none;
    border-radius: 8px;
    font-size: 1.2em;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    border: none;
    cursor: pointer;
    max-width: 100%; /* Ensure responsiveness */
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
}

.page-news__btn-primary {
    background: #FFD700;
    color: #0A192F;
}

.page-news__btn-primary:hover {
    background: #e0b800;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

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

.page-news__btn-secondary:hover {
    background: rgba(255, 215, 0, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
    color: #e0b800;
    border-color: #e0b800;
}

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

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

.page-news__faq-item {
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    background-color: #1a2b47; /* Card background for FAQ */
}

.page-news__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    background: #0A192F; /* Dark blue for question header */
    border: 1px solid #1a2b47;
    border-radius: 8px;
    cursor: pointer;
    user-select: none;
    transition: background-color 0.3s ease, border-color 0.3s ease;
    position: relative;
}

.page-news__faq-question:hover {
    background: #1a2b47;
    border-color: #334a6d;
}

.page-news__faq-question h3 {
    margin: 0;
    padding: 0;
    flex: 1;
    font-size: 1.2em;
    font-weight: 600;
    line-height: 1.5;
    color: #FFD700; /* Gold for question text */
    pointer-events: none;
}