/* style/industry-news-market-trends.css */
.page-industry-news-market-trends {
    font-family: 'Arial', sans-serif;
    color: #E0E0E0; /* Light gray for general text on dark background */
    background-color: #0d123d; /* Dark blue background, slightly lighter than main color for contrast */
}

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

.page-industry-news-market-trends__hero-section {
    background: linear-gradient(135deg, #1A237E, #0d123d);
    padding: 100px 0;
    text-align: center;
    color: #FFD700; /* Gold for hero titles */
    position: relative;
    overflow: hidden;
}

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

.page-industry-news-market-trends__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #FFD700; /* Gold for main title */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    position: relative; /* Ensure text is above pseudo-element */
    z-index: 1;
}

.page-industry-news-market-trends__hero-subtitle {
    font-size: 1.5em;
    margin-bottom: 40px;
    color: #C5CAE9; /* Lighter blue for subtitle */
    position: relative;
    z-index: 1;
}

.page-industry-news-market-trends__cta-button {
    display: inline-block;
    background-color: #FFD700; /* Gold for CTA button */
    color: #1A237E; /* Dark blue for button text */
    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;
    position: relative;
    z-index: 1;
}

.page-industry-news-market-trends__cta-button:hover {
    background-color: #e5c100; /* Darker gold on hover */
    transform: translateY(-3px);
}

.page-industry-news-market-trends__cta-button--secondary {
    background-color: #1A237E;
    color: #FFD700;
    border: 2px solid #FFD700;
}

.page-industry-news-market-trends__cta-button--secondary:hover {
    background-color: #0d123d;
    border-color: #e5c100;
}

.page-industry-news-market-trends__section-title {
    font-size: 2.5em;
    color: #FFD700; /* Gold for section titles */
    text-align: center;
    margin-bottom: 40px;
    padding-top: 60px;
    position: relative;
}

.page-industry-news-market-trends__section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: #FFD700;
    margin: 15px auto 0;
    border-radius: 2px;
}

.page-industry-news-market-trends__introduction-section,
.page-industry-news-market-trends__trends-section,
.page-industry-news-market-trends__km3888b-position-section,
.page-industry-news-market-trends__challenges-opportunities-section,
.page-industry-news-market-trends__future-outlook-section,
.page-industry-news-market-trends__advice-section,
.page-industry-news-market-trends__contact-section {
    padding: 60px 0;
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.page-industry-news-market-trends__introduction-section p,
.page-industry-news-market-trends__trends-section p,
.page-industry-news-market-trends__km3888b-position-section p,
.page-industry-news-market-trends__challenges-opportunities-section p,
.page-industry-news-market-trends__future-outlook-section p,
.page-industry-news-market-trends__advice-section p,
.page-industry-news-market-trends__contact-section p {
    font-size: 1.1em;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #E0E0E0;
}

.page-industry-news-market-trends__trend-article {
    background-color: #1A237E; /* Dark blue background for articles */
    padding: 30px;
    margin-bottom: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.page-industry-news-market-trends__trend-article:hover {
    transform: translateY(-5px);
}

.page-industry-news-market-trends__article-title {
    font-size: 1.8em;
    color: #FFD700; /* Gold for article titles */
    margin-bottom: 20px;
    border-bottom: 2px solid rgba(255, 215, 0, 0.3);
    padding-bottom: 10px;
}

.page-industry-news-market-trends__image-wrapper {
    text-align: center;
    margin: 30px 0;
}

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

.page-industry-news-market-trends__inline-link {
    color: #FFD700; /* Gold for inline links */
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.page-industry-news-market-trends__inline-link:hover {
    color: #e5c100; /* Darker gold on hover */
    text-decoration: underline;
}

.page-industry-news-market-trends__highlight {
    color: #FFD700;
    font-weight: bold;
}

.page-industry-news-market-trends__advice-list {
    list-style-type: disc;
    margin-left: 25px;
    margin-bottom: 20px;
    color: #E0E0E0;
}

.page-industry-news-market-trends__advice-list li {
    margin-bottom: 10px;
    font-size: 1.1em;
    line-height: 1.6;
}

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

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

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

    .page-industry-news-market-trends__article-title {
        font-size: 1.5em;
    }

    .page-industry-news-market-trends__trend-article {
        padding: 20px;
    }
}

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

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

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

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

    .page-industry-news-market-trends__article-title {
        font-size: 1.3em;
    }

    .page-industry-news-market-trends__introduction-section p,
    .page-industry-news-market-trends__trends-section p,
    .page-industry-news-market-trends__km3888b-position-section p,
    .page-industry-news-market-trends__challenges-opportunities-section p,
    .page-industry-news-market-trends__future-outlook-section p,
    .page-industry-news-market-trends__advice-section p,
    .page-industry-news-market-trends__contact-section p {
        font-size: 1em;
    }
}