/* style/news-industry-updates.css */
:root {
    --primary-color: #11A84E;
    --secondary-color: #22C768;
    --button-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
    --card-bg-color: #11271B;
    --background-color: #08160F;
    --text-main-color: #F2FFF6;
    --text-secondary-color: #A7D9B8;
    --border-color: #2E7A4E;
    --glow-color: #57E38D;
    --gold-color: #F2C14E;
    --divider-color: #1E3A2A;
    --deep-green-color: #0A4B2C;
}

.page-news-industry-updates {
    color: var(--text-main-color);
    background-color: var(--background-color);
    font-family: 'Arial', sans-serif;
}

.page-news-industry-updates__hero-section {
    position: relative;
    width: 100%;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 10px; /* Small top padding */
    padding-bottom: 0;
    background-color: var(--background-color);
}

.page-news-industry-updates__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    max-height: 600px; /* Limit height for aesthetic */
    filter: brightness(0.7); /* Slightly dim the image for text readability */
}

.page-news-industry-updates__hero-content {
    padding: 40px 20px;
    max-width: 900px;
    margin: 0 auto;
    position: relative; /* Ensure content is above the dimmed image */
    z-index: 1;
    color: var(--text-main-color);
}

.page-news-industry-updates__main-title {
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    font-weight: 700;
    line-height: 1.2;
    color: var(--gold-color);
    margin-bottom: 15px;
    text-shadow: 0 0 10px rgba(242, 193, 78, 0.5);
}

.page-news-industry-updates__intro-description {
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    line-height: 1.6;
    color: var(--text-secondary-color);
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-news-industry-updates__content-area {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
    background-color: var(--background-color);
    color: var(--text-main-color);
}

.page-news-industry-updates__container {
    max-width: 1000px;
    margin: 0 auto;
}

.page-news-industry-updates__section-title {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    color: var(--gold-color);
    text-align: center;
    margin-bottom: 40px;
    font-weight: 700;
    text-shadow: 0 0 8px rgba(242, 193, 78, 0.4);
}

.page-news-industry-updates__paragraph {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-secondary-color);
    margin-bottom: 25px;
    text-align: justify;
}

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

.page-news-industry-updates__feature-item {
    background-color: var(--card-bg-color);
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--border-color);
}

.page-news-industry-updates__feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

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

.page-news-industry-updates__feature-heading {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 10px;
    font-weight: 600;
}

.page-news-industry-updates__feature-text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-secondary-color);
}

.page-news-industry-updates__list {
    list-style: none;
    padding: 0;
    margin-bottom: 60px;
}

.page-news-industry-updates__list-item {
    background-color: var(--card-bg-color);
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 20px;
    border-left: 5px solid var(--primary-color);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.page-news-industry-updates__list-heading {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 10px;
    font-weight: 600;
}

.page-news-industry-updates__list-text {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-secondary-color);
    text-align: justify;
}

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

.page-news-industry-updates__impact-item {
    background-color: var(--card-bg-color);
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    text-align: center;
    border: 1px solid var(--border-color);
}

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

.page-news-industry-updates__impact-heading {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 10px;
    font-weight: 600;
}

.page-news-industry-updates__impact-text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-secondary-color);
}

.page-news-industry-updates__developer-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.page-news-industry-updates__developer-card {
    background-color: var(--card-bg-color);
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    text-align: center;
    border: 1px solid var(--border-color);
}

.page-news-industry-updates__developer-logo {
    width: 100%;
    height: 150px;
    object-fit: contain; /* Use contain for logos */
    margin-bottom: 15px;
    border-radius: 5px;
    display: block;
}

.page-news-industry-updates__developer-name {
    font-size: 1.5rem;
    color: var(--gold-color);
    margin-bottom: 10px;
    font-weight: 700;
}

.page-news-industry-updates__developer-description {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--text-secondary-color);
}

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

.page-news-industry-updates__outlook-item {
    background-color: var(--card-bg-color);
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border-color);
}

.page-news-industry-updates__outlook-heading {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 600;
}

.page-news-industry-updates__outlook-text {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-secondary-color);
    text-align: justify;
}

.page-news-industry-updates__cta-section {
    background: var(--deep-green-color);
    border-radius: 15px;
    padding: 50px 30px;
    text-align: center;
    margin-top: 40px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
    border: 2px solid var(--gold-color);
}

.page-news-industry-updates__cta-title {
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    color: var(--gold-color);
    margin-bottom: 20px;
    font-weight: 700;
    text-shadow: 0 0 12px rgba(242, 193, 78, 0.6);
}

.page-news-industry-updates__cta-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary-color);
    margin-bottom: 35px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-news-industry-updates__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.page-news-industry-updates__btn-primary,
.page-news-industry-updates__btn-secondary {
    display: inline-block;
    padding: 14px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    max-width: 100%;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
}

.page-news-industry-updates__btn-primary {
    background: var(--button-gradient);
    color: var(--text-main-color);
    border: none;
    box-shadow: 0 4px 15px rgba(42, 209, 111, 0.4);
}

.page-news-industry-updates__btn-primary:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(42, 209, 111, 0.6);
}

.page-news-industry-updates__btn-secondary {
    background-color: transparent;
    color: var(--gold-color);
    border: 2px solid var(--gold-color);
    box-shadow: 0 4px 15px rgba(242, 193, 78, 0.2);
}

.page-news-industry-updates__btn-secondary:hover {
    background-color: var(--gold-color);
    color: var(--background-color);
    box-shadow: 0 6px 20px rgba(242, 193, 78, 0.4);
}

.highlight-keyword {
    color: var(--gold-color);
    font-weight: bold;
}

/* General image styling for content area */
.page-news-industry-updates img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Mobile responsive styles */
@media (max-width: 1024px) {
    .page-news-industry-updates__hero-image {
        max-height: 500px;
    }
    .page-news-industry-updates__hero-content {
        padding: 30px 15px;
    }
    .page-news-industry-updates__content-area {
        padding: 40px 15px;
    }
    .page-news-industry-updates__feature-grid,
    .page-news-industry-updates__impact-section,
    .page-news-industry-updates__developer-showcase,
    .page-news-industry-updates__future-outlook {
        gap: 20px;
    }
    .page-news-industry-updates__cta-section {
        padding: 40px 20px;
    }
    .page-news-industry-updates__cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    .page-news-industry-updates__btn-primary,
    .page-news-industry-updates__btn-secondary {
        width: 100%;
        max-width: 300px; /* Limit button width on tablets */
    }
}

@media (max-width: 768px) {
    /* HERO 主图区域 */
    .page-news-industry-updates__hero-section {
        padding-top: 10px !important;
        padding-bottom: 0;
    }
    .page-news-industry-updates__hero-image {
        max-height: 350px !important;
        width: 100% !important;
    }
    .page-news-industry-updates__hero-content {
        padding: 20px 15px;
    }
    .page-news-industry-updates__main-title {
        font-size: clamp(1.8rem, 8vw, 2.5rem);
    }
    .page-news-industry-updates__intro-description {
        font-size: 0.9rem;
    }

    /* 通用图片与容器 */
    .page-news-industry-updates img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        object-fit: cover;
    }
    .page-news-industry-updates__content-area,
    .page-news-industry-updates__container,
    .page-news-industry-updates__feature-item,
    .page-news-industry-updates__list-item,
    .page-news-industry-updates__impact-item,
    .page-news-industry-updates__developer-card,
    .page-news-industry-updates__outlook-item,
    .page-news-industry-updates__cta-section {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
    }

    /* 产品展示图区域 (if present, here for general images) */
    /* All image containers (feature-grid, impact-section, etc.) should ensure images fit */
    .page-news-industry-updates__feature-grid,
    .page-news-industry-updates__impact-section,
    .page-news-industry-updates__developer-showcase,
    .page-news-industry-updates__future-outlook {
        grid-template-columns: 1fr; /* Single column layout */
        gap: 25px;
    }
    .page-news-industry-updates__feature-image,
    .page-news-industry-updates__impact-image,
    .page-news-industry-updates__developer-logo {
        height: 180px; /* Adjust height for smaller screens */
    }

    /* 按钮与按钮容器 */
    .page-news-industry-updates__btn-primary,
    .page-news-industry-updates__btn-secondary,
    .page-news-industry-updates a[class*="button"],
    .page-news-industry-updates a[class*="btn"] {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        padding-left: 15px;
        padding-right: 15px;
    }

    .page-news-industry-updates__cta-buttons {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        flex-direction: column !important; /* Stack buttons vertically */
        gap: 15px;
    }

    /* 其他内容模块 */
    .page-news-industry-updates__section-title {
        font-size: clamp(1.5rem, 7vw, 2rem);
        margin-bottom: 30px;
    }
    .page-news-industry-updates__paragraph,
    .page-news-industry-updates__list-text,
    .page-news-industry-updates__feature-text,
    .page-news-industry-updates__impact-text,
    .page-news-industry-updates__developer-description,
    .page-news-industry-updates__outlook-text {
        font-size: 0.9rem;
    }
    .page-news-industry-updates__list-heading,
    .page-news-industry-updates__feature-heading,
    .page-news-industry-updates__impact-heading,
    .page-news-industry-updates__outlook-heading {
        font-size: 1.2rem;
    }
    .page-news-industry-updates__cta-title {
        font-size: clamp(1.5rem, 7vw, 2rem);
    }
    .page-news-industry-updates__cta-text {
        font-size: 1rem;
    }
}