/* style/industry-news.css */
.page-industry-news {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #F0F0F0; /* Light gray for general text on dark backgrounds */
    background-color: #0A192F; /* Primary dark background */
}

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

.page-industry-news__hero {
    background: linear-gradient(135deg, #0A192F 0%, #333333 100%);
    padding: 100px 0;
    text-align: center;
    color: #FFFFFF;
    position: relative;
    overflow: hidden;
}

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

.page-industry-news__hero-subtitle {
    font-size: 1.3em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #E0E0E0;
}

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

.page-industry-news__section--light {
    background-color: #1a2a44; /* Slightly lighter dark background */
    color: #F0F0F0;
}

.page-industry-news__section--dark {
    background-color: #0A192F;
    color: #F0F0F0;
}

.page-industry-news__section-title {
    font-size: 2.5em;
    color: #FFD700; /* Gold for section titles */
    text-align: center;
    margin-bottom: 50px;
    font-weight: bold;
}

.page-industry-news__sub-title {
    font-size: 1.8em;
    color: #FFD700;
    margin-top: 40px;
    margin-bottom: 20px;
    font-weight: bold;
}

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

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

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

.page-industry-news__grid-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.page-industry-news__grid-item .page-industry-news__img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.page-industry-news__grid-title {
    font-size: 1.5em;
    color: #FFD700;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-industry-news__grid-description {
    font-size: 1em;
    color: #C0C0C0;
}

.page-industry-news__img--full-width {
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 30px;
}

.page-industry-news__btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
    font-size: 1.1em;
    text-align: center;
    white-space: nowrap;
}

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

.page-industry-news__btn--primary:hover {
    background-color: #e6c200; /* Darker gold */
    transform: translateY(-2px);
}

.page-industry-news__btn--secondary {
    background-color: transparent;
    color: #FFD700;
    border: 2px solid #FFD700;
}

.page-industry-news__btn--secondary:hover {
    background-color: #FFD700;
    color: #0A192F;
    transform: translateY(-2px);
}

.page-industry-news__btn--link {
    background-color: transparent;
    color: #FFD700;
    border: none;
    padding: 0;
    font-size: 1em;
    text-decoration: underline;
}

.page-industry-news__btn--link:hover {
    color: #e6c200;
}

.page-industry-news__related-news {
    background-color: #1a2a44;
    padding: 80px 0;
}

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

.page-industry-news__news-item {
    background-color: #0A192F;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-industry-news__news-title {
    font-size: 1.8em;
    margin-bottom: 15px;
}

.page-industry-news__news-title a {
    color: #FFD700;
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-industry-news__news-title a:hover {
    color: #e6c200;
    text-decoration: underline;
}

.page-industry-news__news-description {
    font-size: 1em;
    color: #C0C0C0;
    margin-bottom: 20px;
}

.page-industry-news__cta-banner {
    background: linear-gradient(90deg, #0A192F, #333333);
    padding: 80px 0;
    text-align: center;
    color: #FFFFFF;
}

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

.page-industry-news__cta-text {
    font-size: 1.2em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #E0E0E0;
}

.page-industry-news__cta-buttons .page-industry-news__btn {
    margin: 0 10px;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .page-industry-news__hero-title {
        font-size: 2.8em;
    }
    .page-industry-news__section-title {
        font-size: 2em;
    }
    .page-industry-news__sub-title {
        font-size: 1.5em;
    }
    .page-industry-news__cta-title {
        font-size: 2.2em;
    }
    .page-industry-news__grid-item {
        padding: 20px;
    }
    .page-industry-news__grid-title {
        font-size: 1.3em;
    }
}

@media (max-width: 768px) {
    .page-industry-news__hero {
        padding: 80px 0;
    }
    .page-industry-news__hero-title {
        font-size: 2.2em;
    }
    .page-industry-news__hero-subtitle,
    .page-industry-news__cta-text {
        font-size: 1em;
    }
    .page-industry-news__section {
        padding: 40px 0;
    }
    .page-industry-news__section-title {
        font-size: 1.8em;
    }
    .page-industry-news__sub-title {
        font-size: 1.3em;
    }
    .page-industry-news__grid {
        grid-template-columns: 1fr;
    }
    .page-industry-news__cta-title {
        font-size: 1.8em;
    }
    .page-industry-news__cta-buttons .page-industry-news__btn {
        display: block;
        margin: 15px auto;
        width: 80%;
    }
    .page-industry-news__news-title {
        font-size: 1.5em;
    }
}

@media (max-width: 480px) {
    .page-industry-news__hero-title {
        font-size: 1.8em;
    }
    .page-industry-news__hero-subtitle,
    .page-industry-news__cta-text {
        font-size: 0.9em;
    }
    .page-industry-news__section-title {
        font-size: 1.5em;
    }
    .page-industry-news__sub-title {
        font-size: 1.2em;
    }
    .page-industry-news__paragraph,
    .page-industry-news__grid-description,
    .page-industry-news__news-description {
        font-size: 0.9em;
    }
    .page-industry-news__btn {
        padding: 10px 20px;
        font-size: 1em;
    }
    .page-industry-news__cta-title {
        font-size: 1.5em;
    }
    .page-industry-news__news-title {
        font-size: 1.3em;
    }
}