.page-news {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-main); /* #FFF6D6 */
    background-color: var(--background); /* #0A0A0A */
}

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

/* Hero Section */
.page-news__hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column; /* Image on top, text below */
    align-items: center;
    padding-top: 10px; /* Small top padding, header offset handled by body */
    padding-bottom: 60px;
    text-align: center;
}

.page-news__hero-image-wrapper {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    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-wrapper {
    max-width: 800px;
    padding: 0 20px;
}

.page-news__hero-title {
    font-size: clamp(2.5rem, 4vw, 3.5rem); /* Responsive H1 font size */
    font-weight: 700;
    color: var(--text-main); /* #FFF6D6 */
    margin-bottom: 20px;
    line-height: 1.2;
}

.page-news__hero-description {
    font-size: 1.1rem;
    color: var(--text-main); /* #FFF6D6 */
    margin-bottom: 30px;
}

/* Section Titles */
.page-news__section-title {
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    color: var(--text-main); /* #FFF6D6 */
    text-align: center;
    margin-bottom: 40px;
    font-weight: 700;
}

.page-news__section-intro {
    font-size: 1.05rem;
    color: var(--text-main); /* #FFF6D6 */
    text-align: center;
    max-width: 900px;
    margin: -20px auto 60px auto;
}

/* Latest News Section */
.page-news__latest-news-section,
.page-news__categories-section,
.page-news__industry-insights-section,
.page-news__featured-news-section,
.page-news__faq-section,
.page-news__cta-download-section,
.page-news__contact-cta-section {
    padding: 60px 0;
}

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

.page-news__news-card,
.page-news__category-card,
.page-news__insight-card {
    background: var(--card-bg); /* #111111 */
    border: 1px solid var(--border); /* #3A2A12 */
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-news__news-card:hover,
.page-news__category-card:hover,
.page-news__insight-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.page-news__news-card-image,
.page-news__insight-card-image {
    width: 100%;
    height: 225px; /* Fixed height for consistency */
    object-fit: cover;
    display: block;
}

.page-news__news-card-content,
.page-news__insight-card-content {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

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

.page-news__news-card-title a,
.page-news__insight-card-title a {
    color: var(--text-main); /* #FFF6D6 */
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-news__news-card-title a:hover,
.page-news__insight-card-title a:hover {
    color: var(--glow); /* #FFD36B */
}

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

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

.page-news__news-card-link,
.page-news__insight-card-link {
    display: inline-block;
    color: var(--glow); /* #FFD36B */
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
    align-self: flex-start;
}

.page-news__news-card-link:hover,
.page-news__insight-card-link:hover {
    text-decoration: underline;
}

/* Category Cards */
.page-news__category-card {
    text-align: center;
    padding: 30px;
    text-decoration: none;
    color: var(--text-main); /* #FFF6D6 */
}

.page-news__category-title {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--glow); /* #FFD36B */
}

.page-news__category-description {
    font-size: 1rem;
    color: #ccc;
}

/* Featured News Section (Dark Background) */
.page-news__dark-section {
    background-color: var(--main-color); /* #F2C14E */
    color: #ffffff; /* Forced white text for contrast */
}

.page-news__dark-section .page-news__section-title,
.page-news__dark-section .page-news__section-intro {
    color: #ffffff; /* Ensure titles are white on this section */
}

.page-news__featured-article {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}