/* style/industry-news-asia-market-report.css */

:root {
    --page-primary-color: #FFD700; /* Gold */
    --page-secondary-color: #000000; /* Black */
    --page-text-light: #f5f5f5; /* Off-white for dark backgrounds */
    --page-text-dark: #1a1a1a; /* Dark gray for light backgrounds */
    --page-accent-color: #0028ff; /* Complementary blue for highlights */
    --page-background-gradient: linear-gradient(135deg, #000000, #333333);
}

.page-industry-news-asia-market-report {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--page-text-light);
    background: var(--page-secondary-color);
}

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

/* Hero Section */
.page-industry-news-asia-market-report__hero-section {
    background: linear-gradient(135deg, var(--page-secondary-color) 0%, #333333 70%, var(--page-primary-color) 100%);
    padding: 100px 0;
    text-align: center;
    color: var(--page-text-light);
    position: relative;
    overflow: hidden;
}

.page-industry-news-asia-market-report__hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('[GALLERY:bg:abstract,geometric,dark_pattern]');
    background-size: cover;
    opacity: 0.1;
    z-index: 0;
}

.page-industry-news-asia-market-report__hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    color: var(--page-primary-color);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 1;
}

.page-industry-news-asia-market-report__hero-subtitle {
    font-size: 1.3em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.page-industry-news-asia-market-report__cta-button {
    display: inline-block;
    background-color: var(--page-primary-color);
    color: var(--page-secondary-color);
    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;
    border: 2px solid transparent;
}

.page-industry-news-asia-market-report__cta-button:hover {
    background-color: darken(var(--page-primary-color), 10%); /* This won't work in pure CSS, use a slightly darker gold */
    background-color: #e6c200;
    transform: translateY(-3px);
}

.page-industry-news-asia-market-report__cta-button--secondary {
    background-color: var(--page-accent-color);
    color: var(--page-text-light);
}

.page-industry-news-asia-market-report__cta-button--secondary:hover {
    background-color: darken(var(--page-accent-color), 10%); /* This won't work in pure CSS */
    background-color: #001fcc;
}

.page-industry-news-asia-market-report__cta-button--outline {
    background-color: transparent;
    color: var(--page-primary-color);
    border: 2px solid var(--page-primary-color);
}

.page-industry-news-asia-market-report__cta-button--outline:hover {
    background-color: var(--page-primary-color);
    color: var(--page-secondary-color);
}

/* Content Sections */
.page-industry-news-asia-market-report__content-section {
    padding: 60px 0;
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.page-industry-news-asia-market-report__content-section:last-of-type {
    border-bottom: none;
}

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

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

.page-industry-news-asia-market-report__sub-section-title {
    font-size: 1.8em;
    color: var(--page-text-light);
    margin-top: 40px;
    margin-bottom: 20px;
    border-left: 5px solid var(--page-primary-color);
    padding-left: 15px;
}

.page-industry-news-asia-market-report__content-section p {
    font-size: 1.1em;
    margin-bottom: 15px;
    color: #cccccc;
}

.page-industry-news-asia-market-report__list {
    list-style-type: disc;
    margin-left: 20px;
    padding-left: 10px;
    color: #cccccc;
}

.page-industry-news-asia-market-report__list li {
    margin-bottom: 10px;
    font-size: 1.05em;
}

.page-industry-news-asia-market-report__list li strong {
    color: var(--page-primary-color);
}

.page-industry-news-asia-market-report__image-wrapper {
    margin: 40px 0;
    text-align: center;
}

.page-industry-news-asia-market-report__image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.page-industry-news-asia-market-report__image:hover {
    transform: scale(1.02);
}

/* CTA Footer */
.page-industry-news-asia-market-report__cta-footer {
    background-color: #1a1a1a;
    padding: 80px 0;
    text-align: center;
    color: var(--page-text-light);
}

.page-industry-news-asia-market-report__cta-title {
    font-size: 2.8em;
    color: var(--page-primary-color);
    margin-bottom: 20px;
}

.page-industry-news-asia-market-report__cta-description {
    font-size: 1.2em;
    max-width: 700px;
    margin: 0 auto 40px auto;
    color: #b0b0b0;
}

.page-industry-news-asia-market-report__button-group {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Responsibility Section */
.page-industry-news-asia-market-report__responsibility {
    background-color: #0d0d0d;
    padding: 50px 0;
    text-align: center;
    color: #999999;
    font-size: 0.95em;
}

.page-industry-news-asia-market-report__responsibility-title {
    font-size: 1.6em;
    color: var(--page-primary-color);
    margin-bottom: 15px;
}

.page-industry-news-asia-market-report__responsibility-icon {
    width: 60px;
    height: auto;
    margin-top: 20px;
    opacity: 0.7;
}

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

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

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

    .page-industry-news-asia-market-report__sub-section-title {
        font-size: 1.5em;
    }

    .page-industry-news-asia-market-report__cta-title {
        font-size: 2.2em;
    }

    .page-industry-news-asia-market-report__cta-description {
        font-size: 1em;
    }

    .page-industry-news-asia-market-report__button-group {
        flex-direction: column;
        align-items: center;
    }

    .page-industry-news-asia-market-report__cta-button {
        width: 80%;
    }
}

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

    .page-industry-news-asia-market-report__hero-subtitle {
        font-size: 0.9em;
    }

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

    .page-industry-news-asia-market-report__sub-section-title {
        font-size: 1.3em;
    }

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

    .page-industry-news-asia-market-report__cta-button {
        padding: 12px 20px;
        font-size: 1em;
    }
}