:root {
    --primary-color: #1A2A44;
    --secondary-color: #FFCC00;
    --text-dark: #333333;
    --text-light: #ffffff;
    --background-light: #f1f3f5;
    --background-white: #ffffff;
    --border-light: #e0e0e0;
}

.page-news-industry-highlights {
    font-family: 'Arial', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--background-light);
    padding-top: 120px; /* Desktop fixed header padding */
}

@media (max-width: 768px) {
    .page-news-industry-highlights {
        padding-top: 100px !important; /* Mobile fixed header padding */
        font-size: 15px;
    }
}

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

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

.page-news-industry-highlights__intro-section {
    padding: 60px 0 40px;
    background-color: var(--background-white);
    color: var(--text-dark);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

@media (max-width: 768px) {
    .page-news-industry-highlights__intro-section {
        padding: 40px 0 30px;
    }
}

.page-news-industry-highlights__main-title {
    font-size: 38px;
    font-weight: bold;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 25px;
    line-height: 1.2;
}

@media (max-width: 768px) {
    .page-news-industry-highlights__main-title {
        font-size: 28px;
        margin-bottom: 20px;
    }
}

.page-news-industry-highlights__lead-paragraph {
    font-size: 18px;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 20px;
    color: var(--text-dark);
}

@media (max-width: 768px) {
    .page-news-industry-highlights__lead-paragraph {
        font-size: 16px;
        margin-bottom: 15px;
    }
}

.page-news-industry-highlights__lead-paragraph strong {
    color: var(--primary-color);
}

.page-news-industry-highlights__lead-paragraph em {
    color: var(--secondary-color);
    font-style: normal;
}

.page-news-industry-highlights__content-section {
    padding: 60px 0;
    background-color: var(--background-light);
    color: var(--text-dark);
}

@media (max-width: 768px) {
    .page-news-industry-highlights__content-section {
        padding: 40px 0;
    }
}

.page-news-industry-highlights__section-title {
    font-size: 32px;
    font-weight: bold;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.page-news-industry-highlights__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -10px;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--secondary-color);
    border-radius: 2px;
}

@media (max-width: 768px) {
    .page-news-industry-highlights__section-title {
        font-size: 24px;
        margin-bottom: 30px;
    }
}

.page-news-industry-highlights__article-block {
    background-color: var(--background-white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    margin-bottom: 40px;
    color: var(--text-dark);
}

@media (max-width: 768px) {
    .page-news-industry-highlights__article-block {
        padding: 20px;
        margin-bottom: 30px;
    }
}

.page-news-industry-highlights__article-image {
    width: 100%;
    height: auto;
    max-width: 100%;
    display: block;
    border-radius: 6px;
    margin-bottom: 25px;
    object-fit: cover;
}

@media (max-width: 768px) {
    .page-news-industry-highlights__article-image {
        margin-bottom: 20px;
    }
}

.page-news-industry-highlights__article-subtitle {
    font-size: 24px;
    font-weight: bold;
    color: var(--primary-color);
    margin-top: 30px;
    margin-bottom: 15px;
}

@media (max-width: 768px) {
    .page-news-industry-highlights__article-subtitle {
        font-size: 20px;
        margin-top: 25px;
        margin-bottom: 10px;
    }
}

.page-news-industry-highlights__article-block p {
    margin-bottom: 15px;
    font-size: 16px;
    color: var(--text-dark);
}

.page-news-industry-highlights__article-block p strong {
    color: var(--primary-color);
}

.page-news-industry-highlights__article-block p a {
    color: var(--primary-color);
    text-decoration: underline;
    font-weight: bold;
    transition: color 0.3s ease;
}

.page-news-industry-highlights__article-block p a:hover {
    color: var(--secondary-color);
}

/* News List Specific Styles */
.page-news-industry-highlights__news-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

@media (max-width: 768px) {
    .page-news-industry-highlights__news-list {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 30px;
    }
}

.page-news-industry-highlights__news-item {
    background-color: var(--background-white);
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-news-industry-highlights__news-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

.page-news-industry-highlights__news-image {
    width: 100%;
    height: 200px; /* Fixed height for consistency */
    object-fit: cover;
    display: block;
}

@media (max-width: 768px) {
    .page-news-industry-highlights__news-image {
        height: 180px;
    }
}

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

.page-news-industry-highlights__news-title {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
    line-height: 1.3;
}

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

.page-news-industry-highlights__news-title a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

.page-news-industry-highlights__news-excerpt {
    font-size: 15px;
    color: #666666;
    margin-bottom: 15px;
}

.page-news-industry-highlights__read-more-link {
    display: inline-block;
    color: var(--secondary-color);
    font-weight: bold;
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-news-industry-highlights__read-more-link:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

/* CTA Section */
.page-news-industry-highlights__cta-section {
    background-color: var(--primary-color);
    color: var(--text-light);
    padding: 60px 20px;
    text-align: center;
    border-radius: 8px;
    margin: 40px auto;
    max-width: 1000px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
    .page-news-industry-highlights__cta-section {
        padding: 40px 15px;
        margin: 30px auto;
    }
}

.page-news-industry-highlights__cta-title {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 20px;
    line-height: 1.2;
}

@media (max-width: 768px) {
    .page-news-industry-highlights__cta-title {
        font-size: 24px;
        margin-bottom: 15px;
    }
}

.page-news-industry-highlights__cta-description {
    font-size: 18px;
    margin-bottom: 30px;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .page-news-industry-highlights__cta-description {
        font-size: 16px;
        margin-bottom: 25px;
    }
}

.page-news-industry-highlights__cta-description a {
    display: inline-block;
    background-color: var(--secondary-color);
    color: var(--primary-color);
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 18px;
    transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    margin-top: 15px;
}

.page-news-industry-highlights__cta-description a:hover {
    background-color: #e6b800; /* Darker secondary color */
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.25);
}

/* FAQ Section */
.page-news-industry-highlights__faq-list {
    margin-top: 40px;
    margin-bottom: 60px;
}

@media (max-width: 768px) {
    .page-news-industry-highlights__faq-list {
        margin-top: 30px;
        margin-bottom: 40px;
    }
}

.page-news-industry-highlights__faq-item {
  margin-bottom: 15px;
  border-radius: 5px;
  overflow: hidden;
}