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

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

.page-latest-news-industry-trends__hero {
    background-color: #1A2E44; /* Main color */
    color: #FFFFFF; /* White text for dark background */
    padding: 80px 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.page-latest-news-industry-trends__hero-content {
    max-width: 800px;
    z-index: 1;
    position: relative;
}

.page-latest-news-industry-trends__hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    line-height: 1.2;
    color: #E7C200; /* Auxiliary color for emphasis */
}

.page-latest-news-industry-trends__hero-description {
    font-size: 1.3em;
    margin-bottom: 30px;
    color: #e0e0e0;
}

.page-latest-news-industry-trends__hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    opacity: 0.15;
}

.page-latest-news-industry-trends__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transform: scale(1.1);
}

.page-latest-news-industry-trends__section {
    padding: 60px 0;
    border-bottom: 1px solid #eee;
}

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

.page-latest-news-industry-trends__section-title {
    font-size: 2.5em;
    color: #1A2E44; /* Main 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: #E7C200; /* Auxiliary color */
    margin: 15px auto 0;
    border-radius: 2px;
}

.page-latest-news-industry-trends__section-intro {
    font-size: 1.1em;
    text-align: center;
    max-width: 800px;
    margin: -20px auto 60px;
    color: #555;
}

.page-latest-news-industry-trends__article {
    background-color: #fff;
    padding: 30px;
    margin-bottom: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
}

.page-latest-news-industry-trends__article-title {
    font-size: 1.8em;
    color: #1A2E44; /* Main color */
    margin-bottom: 20px;
    text-align: left;
}

.page-latest-news-industry-trends__article-content {
    display: flex;
    gap: 25px;
    align-items: flex-start;
    flex-wrap: wrap;
}

.page-latest-news-industry-trends__article-content p,
.page-latest-news-industry-trends__article-content ul {
    flex: 1;
    min-width: 300px;
}

.page-latest-news-industry-trends__article-content ul {
    padding-left: 20px;
    list-style-type: disc;
}

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

.page-latest-news-industry-trends__article-image {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
}

.page-latest-news-industry-trends__cta-button {
    display: inline-block;
    background-color: #E7C200; /* Auxiliary color */
    color: #1A2E44; /* Dark text for light background */
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    margin-top: 20px;
}

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

.page-latest-news-industry-trends__small-cta {
    display: inline-block;
    background-color: #1A2E44; /* Main color */
    color: #E7C200; /* Auxiliary color for text */
    padding: 10px 20px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.9em;
    transition: background-color 0.3s ease, color 0.3s ease;
    margin-top: 15px;
}

.page-latest-news-industry-trends__small-cta:hover {
    background-color: #2e4a64;
    color: #FFD700; /* Brighter gold on hover */
}

.page-latest-news-industry-trends__advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-latest-news-industry-trends__advantage-item {
    background-color: #FFFFFF;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.page-latest-news-industry-trends__advantage-title {
    font-size: 1.5em;
    color: #1A2E44; /* Main color */
    margin-bottom: 15px;
}

.page-latest-news-industry-trends__advantage-item p {
    color: #666;
    margin-bottom: 20px;
    flex-grow: 1;
}

.page-latest-news-industry-trends__cta-final {
    background-color: #1A2E44; /* Main color */
    color: #FFFFFF;
    text-align: center;
    padding: 80px 0;
}

.page-latest-news-industry-trends__cta-final-content {
    max-width: 900px;
}

.page-latest-news-industry-trends__cta-final-title {
    font-size: 2.8em;
    color: #E7C200; /* Auxiliary color */
    margin-bottom: 25px;
}

.page-latest-news-industry-trends__cta-final-description {
    font-size: 1.2em;
    color: #e0e0e0;
    margin-bottom: 40px;
}

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

.page-latest-news-industry-trends__cta-button--secondary {
    background-color: transparent;
    border: 2px solid #E7C200; /* Auxiliary color */
    color: #E7C200; /* Auxiliary color */
}

.page-latest-news-industry-trends__cta-button--secondary:hover {
    background-color: #E7C200;
    color: #1A2E44; /* Dark text for light background */
}

.page-latest-news-industry-trends__article a,
.page-latest-news-industry-trends__section-intro a {
    color: #1A2E44; /* Main color for links */
    font-weight: bold;
    text-decoration: underline;
}

.page-latest-news-industry-trends__article a:hover,
.page-latest-news-industry-trends__section-intro a:hover {
    color: #E7C200; /* Auxiliary color on hover */
    text-decoration: none;
}

.page-latest-news-industry-trends .highlight {
    color: #E7C200;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-latest-news-industry-trends__hero-title {
        font-size: 2.5em;
    }
    .page-latest-news-industry-trends__hero-description {
        font-size: 1.1em;
    }
    .page-latest-news-industry-trends__section-title {
        font-size: 2em;
    }
    .page-latest-news-industry-trends__article-title {
        font-size: 1.6em;
    }
    .page-latest-news-industry-trends__article-content {
        flex-direction: column;
        align-items: center;
    }
    .page-latest-news-industry-trends__article-image {
        max-width: 100%;
        margin-bottom: 20px;
    }
    .page-latest-news-industry-trends__cta-final-title {
        font-size: 2.2em;
    }
}

@media (max-width: 768px) {
    .page-latest-news-industry-trends__hero {
        padding: 60px 0;
    }
    .page-latest-news-industry-trends__hero-title {
        font-size: 2em;
    }
    .page-latest-news-industry-trends__hero-description {
        font-size: 1em;
    }
    .page-latest-news-industry-trends__section {
        padding: 40px 0;
    }
    .page-latest-news-industry-trends__section-title {
        font-size: 1.8em;
    }
    .page-latest-news-industry-trends__section-intro {
        font-size: 0.95em;
        margin-bottom: 40px;
    }
    .page-latest-news-industry-trends__article {
        padding: 20px;
    }
    .page-latest-news-industry-trends__article-title {
        font-size: 1.4em;
    }
    .page-latest-news-industry-trends__cta-final {
        padding: 60px 0;
    }
    .page-latest-news-industry-trends__cta-final-title {
        font-size: 1.8em;
    }
    .page-latest-news-industry-trends__cta-final-description {
        font-size: 1em;
    }
    .page-latest-news-industry-trends__cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    .page-latest-news-industry-trends__cta-button {
        width: 100%;
        max-width: 300px;
    }
    .page-latest-news-industry-trends__advantages-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .page-latest-news-industry-trends__hero-title {
        font-size: 1.6em;
    }
    .page-latest-news-industry-trends__hero-description {
        font-size: 0.9em;
    }
    .page-latest-news-industry-trends__section-title {
        font-size: 1.5em;
    }
    .page-latest-news-industry-trends__article-title {
        font-size: 1.2em;
    }
    .page-latest-news-industry-trends__cta-final-title {
        font-size: 1.6em;
    }
    .page-latest-news-industry-trends__cta-final-description {
        font-size: 0.9em;
    }
}