/* style/industry-news.css */
.page-industry-news {
    font-family: 'Arial', sans-serif;
    color: #E0E0E0; /* Light gray for general text on dark background */
    background-color: #0A2240; /* Main dark blue background */
}

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

.page-industry-news__hero {
    background: linear-gradient(135deg, #0A2240 0%, #1A3A5E 100%); /* Dark blue gradient */
    padding: 100px 0;
    text-align: center;
    color: #FFD700; /* Gold for hero text */
    position: relative;
    overflow: hidden;
}

.page-industry-news__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    line-height: 1.2;
    color: #FFD700; /* Gold for main title */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-industry-news__hero-subtitle {
    font-size: 1.4em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #F0F0F0; /* Light text for subtitle */
}

.page-industry-news__section {
    padding: 60px 0;
    background-color: #0A2240;
}

.page-industry-news__section--dark {
    background-color: #1A3A5E; /* Slightly lighter dark blue for contrast */
    color: #F0F0F0;
}

.page-industry-news__section-title {
    font-size: 2.5em;
    color: #FFD700; /* Gold for section titles */
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

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

.page-industry-news__text {
    font-size: 1.1em;
    line-height: 1.8;
    margin-bottom: 30px;
    text-align: justify;
    color: #E0E0E0;
}

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

.page-industry-news__article {
    background-color: #1A3A5E; /* Dark blue for article 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;
    display: flex;
    flex-direction: column;
    height: 100%;
}

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

.page-industry-news__article-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-bottom: 3px solid #FFD700; /* Gold border */
}

.page-industry-news__article-title {
    font-size: 1.6em;
    color: #FFD700; /* Gold for article titles */
    padding: 20px 25px 10px;
    margin-bottom: 0;
}

.page-industry-news__article-text {
    font-size: 1em;
    line-height: 1.7;
    color: #C0C0C0;
    padding: 0 25px 20px;
    flex-grow: 1;
}

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

.page-industry-news__feature-item {
    background-color: #0A2240; /* Dark blue for feature items */
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.page-industry-news__feature-item:hover {
    transform: translateY(-5px);
}

.page-industry-news__feature-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 5px #FFD700);
}

.page-industry-news__feature-title {
    font-size: 1.8em;
    color: #FFD700; /* Gold for feature titles */
    margin-bottom: 15px;
}

.page-industry-news__feature-text {
    font-size: 1em;
    line-height: 1.7;
    color: #C0C0C0;
}

.page-industry-news__event-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-top: 40px;
}

.page-industry-news__event-item {
    display: flex;
    background-color: #1A3A5E;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    transition: transform 0.3s ease;
}

.page-industry-news__event-item:hover {
    transform: translateY(-5px);
}

.page-industry-news__event-image {
    width: 35%;
    height: auto;
    object-fit: cover;
    border-right: 3px solid #FFD700;
}

.page-industry-news__event-content {
    padding: 25px;
    width: 65%;
}

.page-industry-news__event-title {
    font-size: 1.8em;
    color: #FFD700;
    margin-bottom: 10px;
}

.page-industry-news__event-date {
    font-size: 0.9em;
    color: #999;
    margin-bottom: 15px;
}

.page-industry-news__event-text {
    font-size: 1em;
    line-height: 1.7;
    color: #C0C0C0;
    margin-bottom: 20px;
}

.page-industry-news__cta {
    background-color: #FFD700; /* Gold background for CTA */
    padding: 80px 0;
    text-align: center;
    color: #0A2240; /* Dark blue text on gold background */
}

.page-industry-news__cta-title {
    font-size: 3em;
    color: #0A2240;
    margin-bottom: 20px;
}

.page-industry-news__cta-text {
    font-size: 1.2em;
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto 40px;
    color: #222;
}

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

.page-industry-news__contact {
    padding: 60px 0;
    background-color: #0A2240;
    text-align: center;
}

/* Buttons */
.page-industry-news__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 1.1em;
    font-weight: bold;
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
    cursor: pointer;
    border: none;
}

.page-industry-news__btn--primary {
    background-color: #FFD700; /* Gold primary button */
    color: #0A2240; /* Dark blue text */
}

.page-industry-news__btn--primary:hover {
    background-color: #E6C200; /* Slightly darker gold on hover */
    transform: translateY(-3px);
}

.page-industry-news__btn--secondary {
    background-color: #0A2240; /* Dark blue secondary button */
    color: #FFD700; /* Gold text */
    border: 2px solid #FFD700;
}

.page-industry-news__btn--secondary:hover {
    background-color: #FFD700; /* Gold background on hover */
    color: #0A2240; /* Dark blue text on hover */
    transform: translateY(-3px);
}

.page-industry-news__link-text {
    color: #FFD700;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.page-industry-news__link-text:hover {
    color: #E6C200;
    text-decoration: underline;
}

.page-industry-news__link-inline {
    color: #FFD700;
    text-decoration: underline;
    font-weight: bold;
    transition: color 0.3s ease;
}

.page-industry-news__link-inline:hover {
    color: #E6C200;
}

.text-highlight {
    color: #FFD700;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .page-industry-news__hero-title {
        font-size: 2.8em;
    }

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

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

    .page-industry-news__article-title {
        font-size: 1.4em;
    }

    .page-industry-news__feature-title {
        font-size: 1.6em;
    }

    .page-industry-news__event-item {
        flex-direction: column;
    }

    .page-industry-news__event-image {
        width: 100%;
        height: 250px;
        border-bottom: 3px solid #FFD700;
        border-right: none;
    }

    .page-industry-news__event-content {
        width: 100%;
    }

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

    .page-industry-news__cta-text {
        font-size: 1.1em;
    }
}

@media (max-width: 768px) {
    .page-industry-news__hero-title {
        font-size: 2.2em;
    }

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

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

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

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

    .page-industry-news__cta-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .page-industry-news__btn {
        width: 80%;
        max-width: 300px;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .page-industry-news__hero {
        padding: 60px 0;
    }

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

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

    .page-industry-news__text, .page-industry-news__article-text, .page-industry-news__feature-text, .page-industry-news__event-text, .page-industry-news__cta-text {
        font-size: 0.95em;
    }
}