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

/* Base styles for the page content */
.page-industry-news-market-trends {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
}

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

/* Hero Section */
.page-industry-news-market-trends__hero-section {
    background: linear-gradient(135deg, #007bff 0%, #28a745 100%);
    color: #fff;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-industry-news-market-trends__hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 70%);
    animation: page-industry-news-market-trends__hero-animate-light 10s infinite alternate;
    pointer-events: none;
}

@keyframes page-industry-news-market-trends__hero-animate-light {
    0% { transform: scale(0.8) rotate(0deg); opacity: 0.5; }
    100% { transform: scale(1.2) rotate(10deg); opacity: 0.7; }
}

.page-industry-news-market-trends__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-industry-news-market-trends__hero-subtitle {
    font-size: 1.5em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Content Sections */
.page-industry-news-market-trends__content-section {
    padding: 60px 0;
}

.page-industry-news-market-trends__bg-light {
    background-color: #f8f9fa; /* Light background for contrast */
    color: #333;
}

.page-industry-news-market-trends__bg-dark {
    background-color: #002b5c; /* Darker blue for contrast, derived from primary */
    color: #fff;
}

.page-industry-news-market-trends__section-title {
    font-size: 2.5em;
    color: #007bff;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.page-industry-news-market-trends__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #28a745;
    border-radius: 2px;
}

.page-industry-news-market-trends__section-title--white {
    color: #fff;
}

.page-industry-news-market-trends__section-title--white::after {
    background-color: #fff;
}

.page-industry-news-market-trends__sub-section-title {
    font-size: 1.8em;
    color: #007bff;
    margin-top: 30px;
    margin-bottom: 20px;
    border-left: 5px solid #28a745;
    padding-left: 15px;
}

.page-industry-news-market-trends__sub-section-title--white {
    color: #fff;
    border-left-color: #fff;
}

.page-industry-news-market-trends__paragraph {
    font-size: 1.1em;
    margin-bottom: 20px;
    line-height: 1.8;
}

.page-industry-news-market-trends__paragraph--white {
    color: #e0e0e0;
}

.page-industry-news-market-trends__keyword {
    color: #0056b3; /* Darker shade of primary for emphasis on light background */
    font-weight: bold;
}

.page-industry-news-market-trends__bg-dark .page-industry-news-market-trends__keyword {
    color: #4da3ff; /* Lighter shade of primary for emphasis on dark background */
}

/* Image Styling */
.page-industry-news-market-trends__image-wrapper {
    margin-bottom: 30px;
    text-align: center;
}

.page-industry-news-market-trends__image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* List Styling */
.page-industry-news-market-trends__list {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.page-industry-news-market-trends__list-item {
    background-color: #fff;
    border-left: 5px solid #28a745;
    margin-bottom: 10px;
    padding: 15px 20px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    font-size: 1.05em;
    color: #333;
}

.page-industry-news-market-trends__bg-dark .page-industry-news-market-trends__list-item {
    background-color: #003d80; /* Darker background for list item on dark section */
    color: #fff;
    border-left-color: #4da3ff;
}

/* CTA Button */
.page-industry-news-market-trends__cta-button {
    display: inline-block;
    background-color: #007bff;
    color: #fff;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    margin-top: 20px;
    box-shadow: 0 5px 15px rgba(0, 123, 255, 0.4);
}

.page-industry-news-market-trends__cta-button:hover {
    background-color: #0056b3;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 123, 255, 0.6);
}

.page-industry-news-market-trends__cta-button--secondary {
    background-color: #28a745;
    box-shadow: 0 5px 15px rgba(40, 167, 69, 0.4);
}

.page-industry-news-market-trends__cta-button--secondary:hover {
    background-color: #1e7e34;
    box-shadow: 0 8px 20px rgba(40, 167, 69, 0.6);
}

.page-industry-news-market-trends__cta-button--large {
    padding: 18px 40px;
    font-size: 1.3em;
}

/* Final CTA Section */
.page-industry-news-market-trends__cta-section {
    background-color: #28a745; /* Using secondary color for strong CTA */
    color: #fff;
    text-align: center;
    padding: 80px 0;
    margin-top: 40px;
}

.page-industry-news-market-trends__cta-title {
    font-size: 3em;
    margin-bottom: 20px;
    font-weight: bold;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}

.page-industry-news-market-trends__cta-description {
    font-size: 1.3em;
    max-width: 900px;
    margin: 0 auto 40px auto;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-industry-news-market-trends__hero-title {
        font-size: 2.8em;
    }
    .page-industry-news-market-trends__hero-subtitle {
        font-size: 1.3em;
    }
    .page-industry-news-market-trends__section-title {
        font-size: 2em;
    }
    .page-industry-news-market-trends__sub-section-title {
        font-size: 1.6em;
    }
    .page-industry-news-market-trends__cta-title {
        font-size: 2.5em;
    }
}

@media (max-width: 768px) {
    .page-industry-news-market-trends__hero-title {
        font-size: 2.2em;
    }
    .page-industry-news-market-trends__hero-subtitle {
        font-size: 1.1em;
    }
    .page-industry-news-market-trends__content-section {
        padding: 40px 0;
    }
    .page-industry-news-market-trends__section-title {
        font-size: 1.8em;
    }
    .page-industry-news-market-trends__sub-section-title {
        font-size: 1.4em;
    }
    .page-industry-news-market-trends__cta-title {
        font-size: 2em;
    }
    .page-industry-news-market-trends__cta-description {
        font-size: 1.1em;
    }
    .page-industry-news-market-trends__cta-button {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-industry-news-market-trends__cta-button--large {
        padding: 15px 30px;
        font-size: 1.1em;
    }
}

@media (max-width: 576px) {
    .page-industry-news-market-trends__hero-title {
        font-size: 1.8em;
    }
    .page-industry-news-market-trends__hero-subtitle {
        font-size: 1em;
    }
    .page-industry-news-market-trends__section-title {
        font-size: 1.5em;
    }
    .page-industry-news-market-trends__sub-section-title {
        font-size: 1.2em;
    }
    .page-industry-news-market-trends__cta-title {
        font-size: 1.8em;
    }
    .page-industry-news-market-trends__cta-description {
        font-size: 1em;
    }
    .page-industry-news-market-trends__container {
        padding: 0 15px;
    }
}