/* style/news-market-analysis-reports.css */
.page-news-market-analysis-reports {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #f8f8f8;
    background-color: #1A202C;
}

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

.page-news-market-analysis-reports__hero {
    background: linear-gradient(135deg, #1A202C, #3d4a5c);
    padding: 100px 0 60px;
    text-align: center;
    color: #f8f8f8;
    border-bottom: 3px solid #FFD700;
}

.page-news-market-analysis-reports__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    line-height: 1.2;
    color: #FFD700;
}

.page-news-market-analysis-reports__hero-subtitle {
    font-size: 1.4em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #e0e0e0;
}

.page-news-market-analysis-reports__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease;
    font-size: 1.1em;
    border: none;
    cursor: pointer;
}

.page-news-market-analysis-reports__btn--primary {
    background-color: #FFD700;
    color: #1A202C;
}

.page-news-market-analysis-reports__btn--primary:hover {
    background-color: #e0b800;
    color: #000;
}

.page-news-market-analysis-reports__btn--secondary {
    background-color: #2c3e50;
    color: #FFD700;
    border: 1px solid #FFD700;
}

.page-news-market-analysis-reports__btn--secondary:hover {
    background-color: #FFD700;
    color: #1A202C;
}

.page-news-market-analysis-reports__section {
    padding: 60px 0;
    border-bottom: 1px dashed rgba(255, 215, 0, 0.2);
}

.page-news-market-analysis-reports__section:last-of-type {
    border-bottom: none;
}

.page-news-market-analysis-reports__section-title {
    font-size: 2.5em;
    color: #FFD700;
    margin-bottom: 30px;
    text-align: center;
    position: relative;
    padding-bottom: 10px;
}

.page-news-market-analysis-reports__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    width: 80px;
    height: 3px;
    background-color: #FFD700;
}

.page-news-market-analysis-reports h3 {
    font-size: 1.8em;
    color: #FFD700;
    margin-top: 40px;
    margin-bottom: 20px;
    border-left: 5px solid #FFD700;
    padding-left: 15px;
}

.page-news-market-analysis-reports h4 {
    font-size: 1.4em;
    color: #FFD700;
    margin-top: 30px;
    margin-bottom: 15px;
}

.page-news-market-analysis-reports p {
    margin-bottom: 20px;
    font-size: 1.1em;
    color: #e0e0e0;
}

.page-news-market-analysis-reports ul {
    list-style: disc;
    margin-left: 25px;
    margin-bottom: 20px;
    color: #e0e0e0;
}

.page-news-market-analysis-reports ul li {
    margin-bottom: 10px;
    font-size: 1.1em;
}

.page-news-market-analysis-reports .highlight {
    color: #FFD700;
    font-weight: bold;
}

.page-news-market-analysis-reports__image-wrapper {
    text-align: center;
    margin: 40px 0;
}

.page-news-market-analysis-reports__img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border: 2px solid #FFD700;
}

.page-news-market-analysis-reports__image-caption {
    margin-top: 15px;
    font-style: italic;
    color: #b0b0b0;
    font-size: 0.95em;
}

.page-news-market-analysis-reports__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    margin-top: 40px;
}

.page-news-market-analysis-reports__grid-item {
    padding: 20px;
    background-color: #2c3e50;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.page-news-market-analysis-reports__grid-item p {
    color: #e0e0e0;
}

.page-news-market-analysis-reports__feature-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-news-market-analysis-reports__feature-item {
    background-color: #2c3e50;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    border-top: 5px solid #FFD700;
}

.page-news-market-analysis-reports__feature-item h4 {
    color: #FFD700;
    margin-top: 0;
}

.page-news-market-analysis-reports__conclusion p {
    text-align: center;
    font-size: 1.2em;
}

.page-news-market-analysis-reports__conclusion .page-news-market-analysis-reports__btn {
    margin-top: 30px;
}

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

    .page-news-market-analysis-reports__hero-subtitle {
        font-size: 1.2em;
    }

    .page-news-market-analysis-reports__section-title {
        font-size: 2em;
    }

    .page-news-market-analysis-reports h3 {
        font-size: 1.5em;
    }

    .page-news-market-analysis-reports p,
    .page-news-market-analysis-reports ul li {
        font-size: 1em;
    }

    .page-news-market-analysis-reports__grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .page-news-market-analysis-reports__hero {
        padding: 80px 0 40px;
    }

    .page-news-market-analysis-reports__hero-title {
        font-size: 2.2em;
    }

    .page-news-market-analysis-reports__hero-subtitle {
        font-size: 1em;
    }

    .page-news-market-analysis-reports__section {
        padding: 40px 0;
    }

    .page-news-market-analysis-reports__section-title {
        font-size: 1.8em;
    }

    .page-news-market-analysis-reports h3 {
        font-size: 1.3em;
    }

    .page-news-market-analysis-reports__feature-list {
        grid-template-columns: 1fr;
    }

    .page-news-market-analysis-reports__btn {
        padding: 12px 25px;
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    .page-news-market-analysis-reports__hero-title {
        font-size: 1.8em;
    }

    .page-news-market-analysis-reports__hero-subtitle {
        font-size: 0.9em;
    }

    .page-news-market-analysis-reports__section-title {
        font-size: 1.5em;
    }

    .page-news-market-analysis-reports h3 {
        font-size: 1.2em;
    }

    .page-news-market-analysis-reports p,
    .page-news-market-analysis-reports ul li {
        font-size: 0.95em;
    }

    .page-news-market-analysis-reports__btn {
        padding: 10px 20px;
        font-size: 0.9em;
    }
}