/* style/news-latest-industry-news.css */
:root {
    --primary-color: #0A2463; /* Deep Blue */
    --secondary-color: #FFD700; /* Gold */
    --text-dark: #333333;
    --text-light: #ffffff;
    --background-light: #f4f7f6;
    --background-dark: #1a1a2e;
    --accent-color-green: #28a745; /* For positive highlights */
    --accent-color-red: #dc3545; /* For warnings/important */
}

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

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

.page-news-latest-industry-news__section {
    padding: 60px 0;
}

.page-news-latest-industry-news__section:nth-of-type(even) {
    background-color: #e9ecef;
}

.page-news-latest-industry-news__hero-banner {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 20px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #3a5a9d 100%); /* Gradient background for visual appeal */
    color: var(--text-light);
    overflow: hidden;
}

.page-news-latest-industry-news__hero-container {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.page-news-latest-industry-news__hero-image {
    width: 100%;
    height: 450px; /* Increased height for impact */
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 40px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-news-latest-industry-news__hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
    padding: 0 20px;
}

.page-news-latest-industry-news__title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: var(--secondary-color);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
    line-height: 1.2;
}

.page-news-latest-industry-news__subtitle {
    font-size: 1.5em;
    margin-bottom: 30px;
    color: var(--text-light);
    opacity: 0.9;
}

.page-news-latest-industry-news__cta-button {
    display: inline-block;
    padding: 18px 45px;
    background: var(--secondary-color);
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 8px;
    font-size: 1.2em;
    font-weight: bold;
    margin-top: 30px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
    text-transform: uppercase;
}

.page-news-latest-industry-news__cta-button:hover {
    background: #e6c200;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-news-latest-industry-news__section-title {
    font-size: 2.5em;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

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

.page-news-latest-industry-news__intro p {
    font-size: 1.1em;
    margin-bottom: 20px;
    text-align: justify;
}

.page-news-latest-industry-news__link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.page-news-latest-industry-news__link:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

.page-news-latest-industry-news__grid-2-col {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.page-news-latest-industry-news__grid-item {
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 30px;
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-news-latest-industry-news__grid-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

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

.page-news-latest-industry-news__image-content {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
}

.page-news-latest-industry-news__faq-list {
    margin-top: 40px;
}

.faq-item {
    margin-bottom: 15px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    background: #ffffff;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background: #f5f5f5;
}

.faq-question h3 {
    margin: 0;
    font-size: 1.3em;
    color: var(--primary-color);
}

.faq-toggle {
    font-size: 24px;
    font-weight: bold;
    color: var(--secondary-color);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
    color: var(--accent-color-red);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
    padding: 0 25px;
    background: #f9f9f9;
    color: var(--text-dark);
}

.faq-item.active .faq-answer {
    max-height: 500px; /* Sufficient height for content */
    padding: 25px;
    border-top: 1px solid #e0e0e0;
}

.faq-answer p {
    margin: 0;
    font-size: 1.05em;
    line-height: 1.7;
    text-align: justify;
}

.page-news-latest-industry-news__cta-final {
    background: linear-gradient(90deg, var(--primary-color) 0%, #3a5a9d 100%);
    color: var(--text-light);
    text-align: center;
    padding: 80px 20px;
    border-radius: 10px;
    margin: 40px auto;
    max-width: 1200px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.page-news-latest-industry-news__cta-content h2 {
    color: var(--secondary-color);
    font-size: 2.8em;
    margin-bottom: 25px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.page-news-latest-industry-news__cta-content p {
    font-size: 1.3em;
    margin-bottom: 40px;
    opacity: 0.95;
}

.page-news-latest-industry-news__cta-button--large {
    padding: 20px 60px;
    font-size: 1.4em;
    border-radius: 50px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-news-latest-industry-news__title {
        font-size: 3em;
    }
    .page-news-latest-industry-news__subtitle {
        font-size: 1.3em;
    }
    .page-news-latest-industry-news__section-title {
        font-size: 2em;
    }
    .page-news-latest-industry-news__grid-2-col {
        grid-template-columns: 1fr;
    }
    .page-news-latest-industry-news__hero-image {
        height: 350px;
    }
}

@media (max-width: 768px) {
    .page-news-latest-industry-news__section {
        padding: 40px 0;
    }
    .page-news-latest-industry-news__hero-banner {
        padding: 60px 15px;
    }
    .page-news-latest-industry-news__hero-image {
        height: 280px;
        margin-bottom: 30px;
    }
    .page-news-latest-industry-news__title {
        font-size: 2.2em;
    }
    .page-news-latest-industry-news__subtitle {
        font-size: 1.1em;
    }
    .page-news-latest-industry-news__cta-button {
        padding: 15px 35px;
        font-size: 1.1em;
    }
    .page-news-latest-industry-news__section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
    }
    .page-news-latest-industry-news__grid-item {
        padding: 25px;
    }
    .page-news-latest-industry-news__grid-item h3 {
        font-size: 1.5em;
    }
    .page-news-latest-industry-news__image-content {
        height: 200px;
    }
    .faq-question {
        padding: 15px 20px;
    }
    .faq-question h3 {
        font-size: 1.1em;
    }
    .faq-toggle {
        font-size: 20px;
    }
    .faq-answer {
        padding: 0 20px;
    }
    .faq-item.active .faq-answer {
        padding: 20px;
    }
    .page-news-latest-industry-news__cta-content h2 {
        font-size: 2em;
    }
    .page-news-latest-industry-news__cta-content p {
        font-size: 1.1em;
    }
    .page-news-latest-industry-news__cta-button--large {
        padding: 15px 40px;
        font-size: 1.2em;
    }
}

@media (max-width: 480px) {
    .page-news-latest-industry-news__hero-image {
        height: 220px;
    }
    .page-news-latest-industry-news__title {
        font-size: 1.8em;
    }
    .page-news-latest-industry-news__subtitle {
        font-size: 1em;
    }
    .page-news-latest-industry-news__cta-button {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-news-latest-industry-news__section-title {
        font-size: 1.5em;
    }
    .page-news-latest-industry-news__grid-item h3 {
        font-size: 1.3em;
    }
    .page-news-latest-industry-news__image-content {
        height: 180px;
    }
    .faq-question h3 {
        font-size: 1em;
    }
    .faq-toggle {
        font-size: 18px;
    }
    .page-news-latest-industry-news__cta-content h2 {
        font-size: 1.8em;
    }
    .page-news-latest-industry-news__cta-content p {
        font-size: 1em;
    }
    .page-news-latest-industry-news__cta-button--large {
        padding: 12px 30px;
        font-size: 1.1em;
    }
}