/* style/industry-news-market-trends.css */

:root {
    --primary-color: #007BFF;
    --secondary-color: #FFC107;
    --text-dark: #333;
    --text-light: #fff;
    --background-light: #f8f9fa;
    --background-dark: #212529;
    --gray-medium: #6c757d;
}

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

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

.page-industry-news-market-trends__hero-section {
    background: linear-gradient(135deg, var(--primary-color), #0056b3);
    color: var(--text-light);
    padding: 100px 0;
    text-align: center;
    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,blue_gradient]') no-repeat center center/cover;
    opacity: 0.1;
    z-index: 0;
}

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

.page-industry-news-market-trends__hero-subtitle {
    font-size: 1.4em;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.9);
    position: relative;
    z-index: 1;
}

.page-industry-news-market-trends__cta-button {
    display: inline-block;
    background-color: var(--secondary-color);
    color: var(--background-dark);
    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: none;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.page-industry-news-market-trends__cta-button:hover {
    background-color: #e6a800; /* Darker secondary for hover */
    transform: translateY(-2px);
}

.page-industry-news-market-trends__cta-button--secondary {
    background-color: var(--primary-color);
    color: var(--text-light);
    border: 2px solid var(--secondary-color);
}

.page-industry-news-market-trends__cta-button--secondary:hover {
    background-color: #0056b3; /* Darker primary for hover */
    border-color: #e6a800;
}

.page-industry-news-market-trends__cta-button--download {
    background-color: var(--primary-color);
    color: var(--text-light);
    border: 2px solid var(--text-light);
}

.page-industry-news-market-trends__cta-button--download:hover {
    background-color: #0056b3;
    border-color: var(--secondary-color);
}

.page-industry-news-market-trends__section {
    padding: 60px 0;
    background-color: var(--background-light);
}

.page-industry-news-market-trends__section:nth-of-type(even) {
    background-color: #f0f2f5;
}

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

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

.page-industry-news-market-trends__section p {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.page-industry-news-market-trends__section h3 {
    font-size: 1.8em;
    color: var(--primary-color);
    margin-top: 40px;
    margin-bottom: 15px;
}

.page-industry-news-market-trends__image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 30px 0;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

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

.page-industry-news-market-trends__feature-item {
    background-color: var(--text-light);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-industry-news-market-trends__feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.page-industry-news-market-trends__feature-item h3 {
    font-size: 1.5em;
    color: var(--primary-color);
    margin-top: 20px;
    margin-bottom: 15px;
}

.page-industry-news-market-trends__feature-image {
    max-width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
}

.page-industry-news-market-trends__content-row {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
    margin-top: 40px;
}

.page-industry-news-market-trends__text-content {
    flex: 1;
    min-width: 300px;
}

.page-industry-news-market-trends__image-content {
    flex: 1;
    min-width: 300px;
    text-align: center;
}

.page-industry-news-market-trends__image--large {
    max-height: 400px;
    object-fit: contain;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .page-industry-news-market-trends__hero-title {
        font-size: 2.8em;
    }
    .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__content-row {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .page-industry-news-market-trends__hero-section {
        padding: 80px 0;
    }
    .page-industry-news-market-trends__hero-title {
        font-size: 2.2em;
    }
    .page-industry-news-market-trends__hero-subtitle {
        font-size: 1em;
    }
    .page-industry-news-market-trends__section {
        padding: 40px 0;
    }
    .page-industry-news-market-trends__section-title {
        font-size: 1.8em;
    }
    .page-industry-news-market-trends__feature-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .page-industry-news-market-trends__hero-title {
        font-size: 1.8em;
    }
    .page-industry-news-market-trends__hero-subtitle {
        font-size: 0.9em;
    }
    .page-industry-news-market-trends__cta-button {
        padding: 12px 20px;
        font-size: 1em;
    }
    .page-industry-news-market-trends__section-title {
        font-size: 1.5em;
    }
    .page-industry-news-market-trends__section p {
        font-size: 0.95em;
    }
    .page-industry-news-market-trends__section h3 {
        font-size: 1.4em;
    }
}

/* Ensure contrast for text on primary color background */
.page-industry-news-market-trends__hero-title,
.page-industry-news-market-trends__hero-subtitle,
.page-industry-news-market-trends__cta-button--secondary,
.page-industry-news-market-trends__cta-button--download {
    color: var(--text-light); /* White text on blue background */
}

/* Ensure contrast for text on secondary color background */
.page-industry-news-market-trends__cta-button {
    color: var(--background-dark); /* Dark text on yellow background */
}

/* Ensure general text contrast */
.page-industry-news-market-trends p,
.page-industry-news-market-trends h3 {
    color: var(--text-dark); /* Dark text on light background */
}

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

.page-industry-news-market-trends__feature-item p {
    color: var(--gray-medium);
}

.page-industry-news-market-trends__cta-button--primary {
    background-color: var(--primary-color);
    color: var(--text-light);
}
.page-industry-news-market-trends__cta-button--primary:hover {
    background-color: #0056b3;
}