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

/* Variables */
:root {
    --okfun-gold: #FFD700;
    --okfun-black: #000000;
    --okfun-dark-gray: #333333;
    --okfun-light-text: #FFFFFF;
    --okfun-dark-text: #1a1a1a;
    --okfun-hover-gold: #e6c200;
}

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

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

/* Hero Section */
.page-industry-news-trends__hero {
    position: relative;
    background: url('[GALLERY:hero:industry_news_trends,okfun,dynamic_charts,global_map]') center/cover no-repeat;
    color: var(--okfun-light-text);
    padding: 100px 0;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 450px;
}

.page-industry-news-trends__hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

.page-industry-news-trends__hero > div {
    position: relative;
    z-index: 2;
}

.page-industry-news-trends__hero-title {
    font-size: 2.8em;
    margin-bottom: 15px;
    color: var(--okfun-gold);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-industry-news-trends__hero-subtitle {
    font-size: 1.2em;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-industry-news-trends__hero-btn {
    display: inline-block;
    background-color: var(--okfun-gold);
    color: var(--okfun-black);
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-industry-news-trends__hero-btn:hover {
    background-color: var(--okfun-hover-gold);
    transform: translateY(-2px);
}

/* Section Titles */
.page-industry-news-trends__section-title {
    font-size: 2.2em;
    color: var(--okfun-gold);
    text-align: center;
    margin-bottom: 40px;
    padding-top: 60px;
}

/* Latest News Section */
.page-industry-news-trends__latest-news {
    background-color: var(--okfun-dark-gray);
    padding-bottom: 60px;
}

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

.page-industry-news-trends__news-card {
    background-color: var(--okfun-black);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
    color: var(--okfun-light-text);
}

.page-industry-news-trends__news-card:hover {
    transform: translateY(-5px);
}

.page-industry-news-trends__news-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.page-industry-news-trends__news-content {
    padding: 20px;
}

.page-industry-news-trends__news-title {
    font-size: 1.4em;
    margin-bottom: 10px;
    line-height: 1.3;
}

.page-industry-news-trends__news-title a {
    color: var(--okfun-gold);
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-industry-news-trends__news-title a:hover {
    color: var(--okfun-hover-gold);
}

.page-industry-news-trends__news-date {
    font-size: 0.9em;
    color: #aaaaaa;
    margin-bottom: 15px;
}

.page-industry-news-trends__news-excerpt {
    font-size: 1em;
    margin-bottom: 20px;
}

.page-industry-news-trends__read-more {
    color: var(--okfun-gold);
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.page-industry-news-trends__read-more:hover {
    color: var(--okfun-hover-gold);
}

/* Market Analysis Section */
.page-industry-news-trends__market-analysis {
    padding-bottom: 60px;
}

.page-industry-news-trends__analysis-item {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 50px;
    background-color: #f8f8f8;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.page-industry-news-trends__analysis-item:nth-child(even) {
    flex-direction: row-reverse;
    background-color: #eeeeee;
}

.page-industry-news-trends__analysis-image {
    width: 100%;
    max-width: 400px;
    height: 280px;
    object-fit: cover;
    flex-shrink: 0;
}

.page-industry-news-trends__analysis-content {
    flex-grow: 1;
    padding: 30px;
}

.page-industry-news-trends__analysis-content h3 {
    font-size: 1.8em;
    color: var(--okfun-black);
    margin-bottom: 15px;
}

.page-industry-news-trends__analysis-content p {
    font-size: 1em;
    color: var(--okfun-dark-text);
}

/* Call to Action Section */
.page-industry-news-trends__cta {
    background-color: var(--okfun-gold);
    color: var(--okfun-black);
    padding: 60px 20px;
    text-align: center;
}

.page-industry-news-trends__cta-title {
    font-size: 2.5em;
    margin-bottom: 15px;
    color: var(--okfun-black);
}

.page-industry-news-trends__cta-description {
    font-size: 1.2em;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-industry-news-trends__cta-btn {
    display: inline-block;
    background-color: var(--okfun-black);
    color: var(--okfun-gold);
    padding: 15px 40px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-industry-news-trends__cta-btn:hover {
    background-color: var(--okfun-dark-gray);
    transform: translateY(-2px);
}

/* Explore More Section */
.page-industry-news-trends__explore-more {
    padding-bottom: 60px;
}

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

.page-industry-news-trends__explore-card {
    background-color: #f0f0f0;
    border-radius: 8px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.page-industry-news-trends__explore-card:hover {
    transform: translateY(-5px);
}

.page-industry-news-trends__explore-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 5px;
    margin-bottom: 20px;
}

.page-industry-news-trends__explore-card h3 {
    font-size: 1.5em;
    margin-bottom: 10px;
    color: var(--okfun-black);
}

.page-industry-news-trends__explore-card h3 a {
    color: var(--okfun-black);
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-industry-news-trends__explore-card h3 a:hover {
    color: var(--okfun-gold);
}

.page-industry-news-trends__explore-card p {
    font-size: 1em;
    color: var(--okfun-dark-text);
    margin-bottom: 20px;
}

.page-industry-news-trends__explore-link {
    color: var(--okfun-gold);
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.page-industry-news-trends__explore-link:hover {
    color: var(--okfun-hover-gold);
}

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

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

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

    .page-industry-news-trends__news-grid {
        grid-template-columns: 1fr;
    }

    .page-industry-news-trends__analysis-item {
        flex-direction: column;
    }

    .page-industry-news-trends__analysis-item:nth-child(even) {
        flex-direction: column;
    }

    .page-industry-news-trends__analysis-image {
        max-width: 100%;
    }

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

    .page-industry-news-trends__cta-description {
        font-size: 1em;
    }

    .page-industry-news-trends__explore-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .page-industry-news-trends__hero {
        padding: 80px 0;
    }

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

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

    .page-industry-news-trends__hero-btn,
    .page-industry-news-trends__cta-btn {
        padding: 10px 25px;
        font-size: 0.9em;
    }

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

    .page-industry-news-trends__news-title {
        font-size: 1.2em;
    }

    .page-industry-news-trends__analysis-content h3 {
        font-size: 1.4em;
    }

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