/* style/industry-news-trends-tech-innovations.css */
:root {
    --clb88-primary-color: #1A237E;
    --clb88-secondary-color: #FFD700;
    --clb88-text-light: #F8F8F8;
    --clb88-text-dark: #1A237E;
    --clb88-background-dark: #1A237E;
    --clb88-background-light: #F8F8F8;
    --clb88-accent-color: #E5DC81; /* Complementary to primary */
}

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

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

.page-industry-news-trends-tech-innovations__hero {
    background: linear-gradient(135deg, var(--clb88-primary-color) 0%, #3F51B5 100%); /* Adjusted primary for gradient */
    color: var(--clb88-text-light);
    padding: 80px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.page-industry-news-trends-tech-innovations__hero-content {
    flex: 1;
    min-width: 300px;
    padding-left: 20px;
}

.page-industry-news-trends-tech-innovations__hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    font-weight: bold;
    line-height: 1.2;
    color: var(--clb88-secondary-color);
}

.page-industry-news-trends-tech-innovations__hero-subtitle {
    font-size: 1.3em;
    margin-bottom: 30px;
    color: var(--clb88-text-light);
}

.page-industry-news-trends-tech-innovations__hero-image-wrapper {
    flex: 1;
    min-width: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-right: 20px;
}

.page-industry-news-trends-tech-innovations__hero-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.page-industry-news-trends-tech-innovations__section {
    padding: 60px 0;
    border-bottom: 1px solid #eee;
}

.page-industry-news-trends-tech-innovations__section--dark {
    background-color: #F0F2F5; /* Slightly lighter than pure white for contrast */
    color: var(--clb88-text-dark);
}

.page-industry-news-trends-tech-innovations__section-title {
    font-size: 2.5em;
    color: var(--clb88-primary-color);
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
}

.page-industry-news-trends-tech-innovations__sub-title {
    font-size: 1.8em;
    color: var(--clb88-secondary-color);
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-industry-news-trends-tech-innovations__paragraph {
    font-size: 1.1em;
    margin-bottom: 20px;
    line-height: 1.7;
    color: #333;
}

.page-industry-news-trends-tech-innovations__paragraph strong.keyword {
    color: var(--clb88-primary-color);
    font-weight: bold;
}

.page-industry-news-trends-tech-innovations__cta-button {
    display: inline-block;
    background-color: var(--clb88-secondary-color);
    color: var(--clb88-primary-color);
    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;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-industry-news-trends-tech-innovations__cta-button:hover {
    background-color: #FFC107; /* Slightly darker gold on hover */
    transform: translateY(-3px);
}

.page-industry-news-trends-tech-innovations__content-grid {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.page-industry-news-trends-tech-innovations__content-grid--reverse {
    flex-direction: row-reverse;
}

.page-industry-news-trends-tech-innovations__text-content {
    flex: 2;
    min-width: 300px;
}

.page-industry-news-trends-tech-innovations__image-wrapper {
    flex: 1;
    min-width: 250px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.page-industry-news-trends-tech-innovations__image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.page-industry-news-trends-tech-innovations__cta-section {
    background: linear-gradient(135deg, var(--clb88-primary-color) 0%, #3F51B5 100%);
    color: var(--clb88-text-light);
    padding: 80px 20px;
    text-align: center;
}

.page-industry-news-trends-tech-innovations__cta-title {
    font-size: 2.8em;
    margin-bottom: 25px;
    font-weight: bold;
    color: var(--clb88-secondary-color);
}

.page-industry-news-trends-tech-innovations__cta-description {
    font-size: 1.3em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: var(--clb88-text-light);
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .page-industry-news-trends-tech-innovations__hero {
        padding: 60px 0;
        flex-direction: column;
        text-align: center;
    }

    .page-industry-news-trends-tech-innovations__hero-content,
    .page-industry-news-trends-tech-innovations__hero-image-wrapper {
        padding: 0 20px;
    }

    .page-industry-news-trends-tech-innovations__hero-title {
        font-size: 2.5em;
    }

    .page-industry-news-trends-tech-innovations__hero-subtitle,
    .page-industry-news-trends-tech-innovations__cta-description {
        font-size: 1.1em;
    }

    .page-industry-news-trends-tech-innovations__section {
        padding: 40px 0;
    }

    .page-industry-news-trends-tech-innovations__section-title {
        font-size: 2em;
    }

    .page-industry-news-trends-tech-innovations__sub-title {
        font-size: 1.5em;
    }

    .page-industry-news-trends-tech-innovations__paragraph {
        font-size: 1em;
    }

    .page-industry-news-trends-tech-innovations__content-grid {
        flex-direction: column;
        gap: 30px;
    }

    .page-industry-news-trends-tech-innovations__content-grid--reverse {
        flex-direction: column;
    }

    .page-industry-news-trends-tech-innovations__cta-section {
        padding: 60px 20px;
    }

    .page-industry-news-trends-tech-innovations__cta-title {
        font-size: 2.2em;
    }
}

@media (max-width: 768px) {
    .page-industry-news-trends-tech-innovations__hero-title {
        font-size: 2em;
    }

    .page-industry-news-trends-tech-innovations__section-title {
        font-size: 1.8em;
    }

    .page-industry-news-trends-tech-innovations__sub-title {
        font-size: 1.3em;
    }

    .page-industry-news-trends-tech-innovations__cta-title {
        font-size: 1.8em;
    }

    .page-industry-news-trends-tech-innovations__cta-button {
        padding: 12px 25px;
        font-size: 1em;
    }
}