:root {
    --mv67-primary-color: #11A84E;
    --mv67-secondary-color: #22C768;
    --mv67-button-gradient-start: #2AD16F;
    --mv67-button-gradient-end: #13994A;
    --mv67-card-bg: #11271B;
    --mv67-background-color: #08160F;
    --mv67-text-main: #F2FFF6;
    --mv67-text-secondary: #A7D9B8;
    --mv67-border-color: #2E7A4E;
    --mv67-glow-color: #57E38D;
    --mv67-gold-color: #F2C14E;
    --mv67-divider-color: #1E3A2A;
    --mv67-deep-green: #0A4B2C;
}

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

.page-news-industry-updates__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.page-news-industry-updates__hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 10px;
    padding-bottom: 40px;
    text-align: center;
    overflow: hidden;
}

.page-news-industry-updates__hero-image {
    width: 100%;
    height: auto;
    max-height: 675px;
    object-fit: cover;
    display: block;
    margin-bottom: 20px;
}

.page-news-industry-updates__hero-content {
    max-width: 800px;
    padding: 0 20px;
}

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

.page-news-industry-updates__hero-description {
    font-size: 1.1rem;
    color: var(--mv67-text-secondary);
    margin-bottom: 30px;
}

.page-news-industry-updates__section {
    padding: 60px 0;
    border-bottom: 1px solid var(--mv67-divider-color);
}

.page-news-industry-updates__section:last-of-type {
    border-bottom: none;
}

.page-news-industry-updates__section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    color: var(--mv67-gold-color);
    text-align: center;
    margin-bottom: 20px;
    font-weight: 600;
}

.page-news-industry-updates__section-description {
    font-size: 1rem;
    color: var(--mv67-text-secondary);
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px auto;
}

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

.page-news-industry-updates__article-card {
    background-color: var(--mv67-card-bg);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.page-news-industry-updates__article-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

.page-news-industry-updates__article-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.page-news-industry-updates__article-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.page-news-industry-updates__article-title {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 10px;
    line-height: 1.3;
}

.page-news-industry-updates__article-title a {
    color: var(--mv67-text-main);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.page-news-industry-updates__article-meta {
    font-size: 0.9rem;
    color: var(--mv67-text-secondary);
    margin-bottom: 15px;
}

.page-news-industry-updates__article-excerpt {
    font-size: 1rem;
    color: var(--mv67-text-secondary);
    margin-bottom: 20px;
    flex-grow: 1;
}

.page-news-industry-updates__read-more {
    display: inline-block;
    color: var(--mv67-gold-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease, transform 0.3s ease;
}

.page-news-industry-updates__read-more:hover {
    color: var(--mv67-primary-color);
    transform: translateX(5px);
}

.page-news-industry-updates__cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
    cursor: pointer;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.page-news-industry-updates__cta-button--primary {
    background: linear-gradient(180deg, var(--mv67-button-gradient-start) 0%, var(--mv67-button-gradient-end) 100%);
    color: #ffffff;
    border: none;
    box-shadow: 0 4px 15px rgba(17, 168, 78, 0.4);
}

.page-news-industry-updates__cta-button--primary:hover {
    background: linear-gradient(180deg, var(--mv67-button-gradient-end) 0%, var(--mv67-button-gradient-start) 100%);
    box-shadow: 0 6px 20px rgba(17, 168, 78, 0.6);
    transform: translateY(-2px);
}

.page-news-industry-updates__cta-button--secondary {
    background-color: transparent;
    color: var(--mv67-gold-color);
    border: 2px solid var(--mv67-gold-color);
    margin-top: 30px;
}

.page-news-industry-updates__cta-button--secondary:hover {
    background-color: var(--mv67-gold-color);
    color: var(--mv67-background-color);
    transform: translateY(-2px);
}

.page-news-industry-updates__dark-section {
    background-color: var(--mv67-deep-green);
    color: var(--mv67-text-main);
}
.page-news-industry-updates__dark-section .page-news-industry-updates__section-description,
.page-news-industry-updates__dark-section .page-news-industry-updates__article-excerpt,
.page-news-industry-updates__dark-section .page-news-industry-updates__article-meta {
    color: var(--mv67-text-secondary);
}
.page-news-industry-updates__dark-section .page-news-industry-updates__article-card {
    background-color: rgba(17, 39, 27, 0.7);
}
.page-news-industry-updates__dark-section .page-news-industry-updates__article-title a {
    color: var(--mv67-text-main);
}
.page-news-industry-updates__dark-section .page-news-industry-updates__article-title a:hover {
    color: var(--mv67-gold-color);
}
.page-news-industry-updates__dark-section .page-news-industry-updates__read-more {
    color: var(--mv67-gold-color);
}
.page-news-industry-updates__dark-section .page-news-industry-updates__read-more:hover {
    color: var(--mv67-primary-color);
}

.page-news-industry-updates__cta-section {
    background-color: var(--mv67-deep-green);
    padding: 80px 0;
    text-align: center;
}

.page-news-industry-updates__cta-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.page-news-industry-updates__cta-content {
    max-width: 700px;
    text-align: center;
}

.page-news-industry-updates__cta-title {
    font-size: clamp(2rem, 3.5vw, 3rem);
    color: var(--mv67-gold-color);
    margin-bottom: 20px;
    font-weight: 700;
}

.page-news-industry-updates__cta-description {
    font-size: 1.1rem;
    color: var(--mv67-text-secondary);
    margin-bottom: 30px;
}

.page-news-industry-updates__cta-image-wrapper {
    width: 100%;
    max-width: 600px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.page-news-industry-updates__cta-image {
    width: 100%;
    height: auto;
    display: block;
}

@media (max-width: 1024px) {
    .page-news-industry-updates__hero-image {
        max-height: 500px;
    }
    .page-news-industry-updates__article-image {
        height: 200px;
    }
}

@media (max-width: 768px) {
    .page-news-industry-updates__container {
        padding: 0 15px !important;
    }

    .page-news-industry-updates__hero-section {
        padding-bottom: 30px;
    }

    .page-news-industry-updates__hero-image {
        max-height: 350px;
    }

    .page-news-industry-updates__main-title {
        font-size: 2.2rem;
    }

    .page-news-industry-updates__hero-description {
        font-size: 1rem;
    }

    .page-news-industry-updates__section {
        padding: 40px 0;
    }

    .page-news-industry-updates__section-title {
        font-size: 1.8rem;
    }

    .page-news-industry-updates__section-description {
        font-size: 0.95rem;
        margin-bottom: 30px;
    }

    .page-news-industry-updates__article-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .page-news-industry-updates__article-card {
        margin: 0 auto;
        max-width: 400px;
    }

    .page-news-industry-updates__article-image {
        height: 180px;
    }

    .page-news-industry-updates__article-title {
        font-size: 1.2rem;
    }

    .page-news-industry-updates__article-excerpt {
        font-size: 0.9rem;
    }

    .page-news-industry-updates__cta-button {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        padding: 12px 20px;
    }
    .page-news-industry-updates__cta-button--secondary {
        margin-top: 20px;
    }

    .page-news-industry-updates__cta-section {
        padding: 60px 0;
    }

    .page-news-industry-updates__cta-title {
        font-size: 2rem;
    }

    .page-news-industry-updates__cta-description {
        font-size: 1rem;
    }

    .page-news-industry-updates img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }

    .page-news-industry-updates__section,
    .page-news-industry-updates__card,
    .page-news-industry-updates__container,
    .page-news-industry-updates__cta-buttons,
    .page-news-industry-updates__button-group,
    .page-news-industry-updates__btn-container,
    .page-news-industry-updates__cta-image-wrapper {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        overflow: hidden !important;
    }
    
    .page-news-industry-updates__hero-section {
        padding-top: 10px !important;
    }
}