/* style/news-latest-industry-trends.css */
.page-news-latest-industry-trends {
    font-family: 'Arial', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f8f9fa;
}

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

.page-news-latest-industry-trends__hero-section {
    background: linear-gradient(135deg, #007bff, #28a745);
    color: #ffffff;
    padding: 100px 0;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.page-news-latest-industry-trends__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    font-weight: bold;
    line-height: 1.2;
    color: #ffffff;
}

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

.page-news-latest-industry-trends__cta-button {
    display: inline-block;
    background-color: #ff8400; /* Complementary color for emphasis */
    color: #ffffff;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.2em;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: none;
    cursor: pointer;
}

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

.page-news-latest-industry-trends__content-section {
    padding: 60px 0;
    background-color: #ffffff;
}

.page-news-latest-industry-trends__article {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-news-latest-industry-trends__section-title {
    font-size: 2.5em;
    color: #007bff;
    margin-top: 40px;
    margin-bottom: 25px;
    border-bottom: 3px solid #28a745;
    padding-bottom: 10px;
    font-weight: bold;
}

.page-news-latest-industry-trends__subsection-title {
    font-size: 1.8em;
    color: #28a745;
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: 600;
}

.page-news-latest-industry-trends__article p {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: #555;
    line-height: 1.8;
}

.page-news-latest-industry-trends__article img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 30px 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.page-news-latest-industry-trends__feature-list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
}

.page-news-latest-industry-trends__feature-list li {
    background-color: #e9f7ef;
    border-left: 5px solid #28a745;
    padding: 15px 20px;
    margin-bottom: 15px;
    border-radius: 5px;
    font-size: 1.1em;
    color: #333;
    display: flex;
    align-items: center;
}

.page-news-latest-industry-trends__feature-icon {
    color: #28a745;
    font-size: 1.5em;
    margin-right: 15px;
}

.page-news-latest-industry-trends__cta-block {
    background-color: #e0f7fa; /* Light blue background for CTA */
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    margin-top: 60px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.page-news-latest-industry-trends__cta-title {
    font-size: 2.2em;
    color: #007bff;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-news-latest-industry-trends__cta-text {
    font-size: 1.2em;
    color: #555;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.page-news-latest-industry-trends__button-group {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.page-news-latest-industry-trends__cta-button--primary {
    background-color: #007bff;
    color: #ffffff;
}

.page-news-latest-industry-trends__cta-button--primary:hover {
    background-color: #0056b3;
    transform: translateY(-3px);
}

.page-news-latest-industry-trends__cta-button--secondary {
    background-color: #28a745;
    color: #ffffff;
}

.page-news-latest-industry-trends__cta-button--secondary:hover {
    background-color: #1e7e34;
    transform: translateY(-3px);
}

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

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

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

    .page-news-latest-industry-trends__subsection-title {
        font-size: 1.6em;
    }

    .page-news-latest-industry-trends__article p {
        font-size: 1em;
    }

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

    .page-news-latest-industry-trends__cta-text {
        font-size: 1.1em;
    }

    .page-news-latest-industry-trends__cta-button {
        padding: 12px 25px;
        font-size: 1.1em;
    }
}

@media (max-width: 768px) {
    .page-news-latest-industry-trends__hero-section {
        padding: 80px 0;
    }

    .page-news-latest-industry-trends__hero-title {
        font-size: 2.2em;
    }

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

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

    .page-news-latest-industry-trends__article {
        padding: 20px;
    }

    .page-news-latest-industry-trends__section-title {
        font-size: 1.8em;
        margin-top: 30px;
        margin-bottom: 20px;
    }

    .page-news-latest-industry-trends__subsection-title {
        font-size: 1.4em;
        margin-top: 25px;
        margin-bottom: 10px;
    }

    .page-news-latest-industry-trends__feature-list li {
        font-size: 1em;
        padding: 10px 15px;
    }

    .page-news-latest-industry-trends__cta-block {
        padding: 30px;
        margin-top: 40px;
    }

    .page-news-latest-industry-trends__cta-title {
        font-size: 1.6em;
    }

    .page-news-latest-industry-trends__cta-text {
        font-size: 1em;
    }

    .page-news-latest-industry-trends__button-group {
        flex-direction: column;
        gap: 15px;
    }

    .page-news-latest-industry-trends__cta-button {
        width: 100%;
        max-width: 280px;
    }
}

@media (max-width: 576px) {
    .page-news-latest-industry-trends__hero-section {
        padding: 60px 0;
    }

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

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

    .page-news-latest-industry-trends__cta-button {
        font-size: 1em;
        padding: 10px 20px;
    }

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

    .page-news-latest-industry-trends__subsection-title {
        font-size: 1.2em;
    }

    .page-news-latest-industry-trends__article p {
        font-size: 0.95em;
    }

    .page-news-latest-industry-trends__cta-title {
        font-size: 1.4em;
    }

    .page-news-latest-industry-trends__cta-text {
        font-size: 0.9em;
    }
}