/* style/industry-news.css */
.page-industry-news {
    font-family: Arial, sans-serif;
    color: #E0E0E0; /* Light text for dark background */
    background-color: #0A2647; /* Primary dark background */
    line-height: 1.6;
}

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

.page-industry-news__hero {
    background: linear-gradient(135deg, #0A2647, #1F4E79);
    padding: 80px 0;
    text-align: center;
    color: #FFFFFF;
}

.page-industry-news__hero-title {
    font-size: 2.8em;
    margin-bottom: 15px;
    color: #FFC107;
    font-weight: bold;
}

.page-industry-news__hero-subtitle {
    font-size: 1.3em;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.9;
}

.page-industry-news__section-title {
    font-size: 2.2em;
    color: #FFC107;
    text-align: center;
    margin-bottom: 40px;
    padding-top: 60px;
    font-weight: bold;
}

.page-industry-news__latest-news {
    padding: 60px 0;
    background-color: #0A2647;
}

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

.page-industry-news__news-card {
    background-color: #1F4E79; /* Slightly lighter dark blue for cards */
    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;
}

.page-industry-news__news-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-industry-news__card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.page-industry-news__card-content {
    padding: 25px;
}

.page-industry-news__card-title {
    font-size: 1.5em;
    margin-bottom: 15px;
    min-height: 70px; /* Ensure consistent card height */
}

.page-industry-news__card-title a {
    color: #FFC107; /* Secondary color for titles */
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-industry-news__card-title a:hover {
    color: #FFE082; /* Lighter yellow on hover */
}

.page-industry-news__card-excerpt {
    font-size: 0.95em;
    color: #E0E0E0;
    margin-bottom: 20px;
}

.page-industry-news__read-more-btn {
    display: inline-block;
    background-color: #FFC107;
    color: #0A2647;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.page-industry-news__read-more-btn:hover {
    background-color: #FFE082;
    color: #000000;
}

.page-industry-news__88online-spotlight {
    background-color: #0A2647;
    padding: 80px 0;
}

.page-industry-news__spotlight-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
}

.page-industry-news__spotlight-image {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
}

.page-industry-news__spotlight-text {
    flex: 2;
    min-width: 300px;
}

.page-industry-news__spotlight-text p {
    margin-bottom: 15px;
    color: #E0E0E0;
}

.page-industry-news__spotlight-text strong {
    color: #FFC107;
}

.page-industry-news__btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    margin-top: 20px;
    margin-right: 15px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.page-industry-news__btn--primary {
    background-color: #FFC107;
    color: #0A2647;
    box-shadow: 0 4px 10px rgba(255, 193, 7, 0.4);
}

.page-industry-news__btn--primary:hover {
    background-color: #FFE082;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(255, 193, 7, 0.6);
}

.page-industry-news__btn--secondary {
    background-color: #1F4E79;
    color: #FFC107;
    border: 2px solid #FFC107;
}

.page-industry-news__btn--secondary:hover {
    background-color: #2F6F9F;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(255, 193, 7, 0.6);
}

.page-industry-news__future-outlook {
    background-color: #1F4E79; /* Darker blue for contrast */
    padding: 80px 0;
}

.page-industry-news__paragraph {
    margin-bottom: 20px;
    color: #E0E0E0;
    font-size: 1.05em;
}

.page-industry-news__cta-section {
    background-color: #0A2647;
    padding: 80px 0;
    text-align: center;
}

.page-industry-news__cta-title {
    font-size: 2.5em;
    color: #FFC107;
    margin-bottom: 20px;
    font-weight: bold;
}

.page-industry-news__cta-description {
    font-size: 1.2em;
    color: #E0E0E0;
    max-width: 800px;
    margin: 0 auto 30px auto;
}

.page-industry-news__btn--large {
    padding: 15px 35px;
    font-size: 1.3em;
}

/* Floating Promo */
.page-industry-news__floating-promo {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #FFC107;
    color: #0A2647;
    padding: 10px 15px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 1000;
    transition: transform 0.3s ease-in-out;
    transform: translateX(120%); /* Hidden by default */
}

.page-industry-news__floating-promo.show {
    transform: translateX(0); /* Show on load */
}

.page-industry-news__floating-promo a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #0A2647;
    font-weight: bold;
}

.page-industry-news__promo-icon {
    width: 30px;
    height: 30px;
    object-fit: contain;
}

.page-industry-news__promo-text {
    font-size: 1em;
}

.page-industry-news__close-promo {
    background: none;
    border: none;
    color: #0A2647;
    font-size: 1.2em;
    cursor: pointer;
    margin-left: 10px;
}

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

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

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

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

    .page-industry-news__spotlight-content {
        flex-direction: column;
        text-align: center;
    }

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

    .page-industry-news__btn {
        display: block;
        width: fit-content;
        margin: 20px auto 0 auto;
    }

    .page-industry-news__btn--secondary {
        margin-top: 15px;
    }

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

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

    .page-industry-news__floating-promo {
        bottom: 10px;
        right: 10px;
        padding: 8px 12px;
    }

    .page-industry-news__promo-text {
        font-size: 0.9em;
    }
}

@media (max-width: 480px) {
    .page-industry-news__hero {
        padding: 60px 0;
    }
    .page-industry-news__hero-title {
        font-size: 1.8em;
    }
    .page-industry-news__hero-subtitle {
        font-size: 0.9em;
    }
    .page-industry-news__section-title {
        font-size: 1.6em;
    }
    .page-industry-news__card-title {
        font-size: 1.3em;
    }
    .page-industry-news__btn--large {
        font-size: 1.1em;
        padding: 12px 25px;
    }
}