/* style/news-industry-trends.css */

/* Variables for consistent styling */
:root {
    --primary-color: #0A2463; /* Deep Tech Blue */
    --secondary-color: #E3B505; /* Vibrant Gold */
    --text-light: #ffffff;
    --text-dark: #333333;
    --bg-dark-1: #0d0d0d; /* Assuming from shared.css body background */
    --bg-dark-2: #1a1a1a;
    --bg-light-1: #f8f8f8;
    --border-color: #333; /* For dark theme */
}

/* Base styles for the page content, ensuring contrast with dark body background */
.page-news-industry-trends {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--text-light); /* Light text for dark body background */
    background-color: var(--bg-dark-1); /* Inherit or explicitly set dark background */
    min-height: 100vh;
}

/* Fixed header padding for desktop */
.page-news-industry-trends__hero-section {
    padding-top: 120px; /* Adjust based on actual fixed header height */
    padding-bottom: 60px;
}

/* General section styling */
.page-news-industry-trends__section-title {
    font-size: 3em;
    color: var(--secondary-color);
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
    line-height: 1.2;
}

.page-news-industry-trends__sub-title {
    font-size: 1.8em;
    color: var(--secondary-color);
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: 600;
}

.page-news-industry-trends__text-block {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: var(--text-light);
}

.page-news-industry-trends strong.highlight {
    color: var(--secondary-color);
}

.page-news-industry-trends .highlight {
    color: var(--secondary-color);
}

.page-news-industry-trends__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.page-news-industry-trends__hero-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, #05143A 100%);
    text-align: center;
    color: var(--text-light);
    padding: 100px 20px; /* Adjusted padding for content */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.page-news-industry-trends__main-title {
    font-size: 3.8em;
    margin-bottom: 20px;
    line-height: 1.1;
    font-weight: 800;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-news-industry-trends__subtitle {
    font-size: 1.5em;
    margin-bottom: 40px;
    font-weight: 300;
}

/* CTA Buttons */
.page-news-industry-trends__cta-group {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap; /* Allow wrapping on smaller screens */
}