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

:root {
    --page-latest-news-industry-trends-primary-color: #0A1931;
    --page-latest-news-industry-trends-accent-color: #FFD700;
    --page-latest-news-industry-trends-text-light: #f8f8f8;
    --page-latest-news-industry-trends-text-dark: #333;
    --page-latest-news-industry-trends-background-light: #ffffff;
    --page-latest-news-industry-trends-background-dark: #1a2a47;
    --page-latest-news-industry-trends-border-color: #e0e0e0;
}

.page-latest-news-industry-trends {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--page-latest-news-industry-trends-text-dark);
    background-color: var(--page-latest-news-industry-trends-background-light);
}

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

/* Hero Section */
.page-latest-news-industry-trends__hero {
    background: linear-gradient(135deg, var(--page-latest-news-industry-trends-primary-color) 0%, #1c3a64 100%);
    color: var(--page-latest-news-industry-trends-text-light);
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-latest-news-industry-trends__hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('[GALLERY:bg:abstract,geometric,dark_pattern]') no-repeat center center/cover;
    opacity: 0.1;
    z-index: 0;
}

.page-latest-news-industry-trends__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    line-height: 1.2;
    position: relative;
    z-index: 1;
    color: var(--page-latest-news-industry-trends-text-light);
}

.page-latest-news-industry-trends__hero-subtitle {
    font-size: 1.5em;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
    color: #cccccc;
}

.page-latest-news-industry-trends .highlight {
    color: var(--page-latest-news-industry-trends-accent-color);
    font-weight: bold;
}

.page-latest-news-industry-trends__hero-cta {
    display: inline-block;
    padding: 15px 30px;
    font-size: 1.2em;
    font-weight: bold;
    text-decoration: none;
    background-color: var(--page-latest-news-industry-trends-accent-color);
    color: var(--page-latest-news-industry-trends-primary-color);
    border-radius: 5px;
    transition: background-color 0.3s ease, transform 0.3s ease;
    position: relative;
    z-index: 1;
    border: none;
    cursor: pointer;
}

.page-latest-news-industry-trends__hero-cta:hover {
    background-color: #e6c200;
    transform: translateY(-3px);
}

/* General Section Styling */
.page-latest-news-industry-trends__section {
    padding: 60px 0;
    border-bottom: 1px solid var(--page-latest-news-industry-trends-border-color);
}

.page-latest-news-industry-trends__section:last-of-type {
    border-bottom: none;
}

.page-latest-news-industry-trends__section-title {
    font-size: 2.5em;
    color: var(--page-latest-news-industry-trends-primary-color);
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.page-latest-news-industry-trends__section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: var(--page-latest-news-industry-trends-accent-color);
    margin: 15px auto 0 auto;
    border-radius: 2px;
}

.page-latest-news-industry-trends__sub-section-title {
    font-size: 1.8em;
    color: var(--page-latest-news-industry-trends-primary-color);
    margin-top: 40px;
    margin-bottom: 20px;
    border-left: 5px solid var(--page-latest-news-industry-trends-accent-color);
    padding-left: 15px;
}

.page-latest-news-industry-trends p {
    font-size: 1.1em;
    margin-bottom: 20px;
    line-height: 1.8;
    color: var(--page-latest-news-industry-trends-text-dark);
}

.page-latest-news-industry-trends ul {
    list-style: disc;
    margin-left: 20px;
    margin-bottom: 20px;
    font-size: 1.1em;
    color: var(--page-latest-news-industry-trends-text-dark);
}

.page-latest-news-industry-trends li {
    margin-bottom: 10px;
}

.page-latest-news-industry-trends__content-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
    margin-top: 30px;
}

@media (min-width: 768px) {
    .page-latest-news-industry-trends__content-grid {
        grid-template-columns: 1fr 1fr;
    }
    .page-latest-news-industry-trends__content-grid:nth-child(even) .page-latest-news-industry-trends__image-wrapper {
        order: 1;
    }
    .page-latest-news-industry-trends__content-grid:nth-child(even) .page-latest-news-industry-trends__text-content {
        order: 2;
    }
}

.page-latest-news-industry-trends__image-wrapper {
    text-align: center;
}

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

.page-latest-news-industry-trends__cta {
    display: block;
    width: fit-content;
    margin: 40px auto 0 auto;
    padding: 12px 25px;
    font-size: 1.1em;
    font-weight: bold;
    text-decoration: none;
    background-color: var(--page-latest-news-industry-trends-accent-color);
    color: var(--page-latest-news-industry-trends-primary-color);
    border-radius: 5px;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: none;
    cursor: pointer;
}

.page-latest-news-industry-trends__cta:hover {
    background-color: #e6c200;
    transform: translateY(-2px);
}

/* Final CTA Section */
.page-latest-news-industry-trends__cta-final {
    background-color: var(--page-latest-news-industry-trends-primary-color);
    color: var(--page-latest-news-industry-trends-text-light);
    text-align: center;
    padding: 80px 0;
}

.page-latest-news-industry-trends__cta-final .page-latest-news-industry-trends__section-title {
    color: var(--page-latest-news-industry-trends-text-light);
}

.page-latest-news-industry-trends__cta-final .page-latest-news-industry-trends__section-title::after {
    background-color: var(--page-latest-news-industry-trends-accent-color);
}

.page-latest-news-industry-trends__cta-final p {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: #cccccc;
}

.page-latest-news-industry-trends__cta-final .page-latest-news-industry-trends__cta {
    background-color: var(--page-latest-news-industry-trends-accent-color);
    color: var(--page-latest-news-industry-trends-primary-color);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .page-latest-news-industry-trends__hero-title {
        font-size: 2.5em;
    }

    .page-latest-news-industry-trends__hero-subtitle {
        font-size: 1.2em;
    }

    .page-latest-news-industry-trends__section-title {
        font-size: 2em;
    }

    .page-latest-news-industry-trends__sub-section-title {
        font-size: 1.5em;
    }

    .page-latest-news-industry-trends p,
    .page-latest-news-industry-trends ul {
        font-size: 1em;
    }

    .page-latest-news-industry-trends__hero-cta,
    .page-latest-news-industry-trends__cta {
        padding: 12px 20px;
        font-size: 1em;
    }

    .page-latest-news-industry-trends__section {
        padding: 40px 0;
    }

    .page-latest-news-industry-trends__cta-final {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    .page-latest-news-industry-trends__hero-title {
        font-size: 2em;
    }

    .page-latest-news-industry-trends__hero-subtitle {
        font-size: 1em;
    }

    .page-latest-news-industry-trends__section-title {
        font-size: 1.8em;
    }
}