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

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

/* Hero Section */
.page-industry-news__hero {
    background-color: #0A1931;
    padding: 80px 0;
    text-align: center;
    background-image: linear-gradient(135deg, #0A1931 0%, #1a335a 100%);
    border-bottom: 2px solid #E0B400;
}

.page-industry-news__hero-title {
    font-size: 3.2em;
    color: #E0B400; /* Auxiliary color for title */
    margin-bottom: 15px;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-industry-news__hero-subtitle {
    font-size: 1.4em;
    color: #F5E6CE;
    max-width: 800px;
    margin: 0 auto;
}

/* Articles Section */
.page-industry-news__articles {
    padding: 60px 0;
    background-color: #0A1931;
}

.page-industry-news__article {
    background-color: #1a2a47; /* Slightly lighter dark background for articles */
    border-radius: 10px;
    margin-bottom: 40px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-industry-news__article-title {
    font-size: 2.2em;
    color: #E0B400;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(224, 180, 0, 0.3);
    padding-bottom: 10px;
}

.page-industry-news__article-image {
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-industry-news__article-meta {
    font-size: 0.9em;
    color: #9d7e00; /* Darker gold for meta info */
    margin-bottom: 15px;
}

.page-industry-news__article-content p {
    margin-bottom: 15px;
    font-size: 1.1em;
    color: #F5E6CE;
}

.page-industry-news__article-content strong {
    color: #E0B400;
}

.page-industry-news__cta-button {
    display: inline-block;
    background-color: #E0B400; /* Auxiliary color for buttons */
    color: #0A1931; /* Dark text for light button */
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    margin-top: 20px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    border: none;
    cursor: pointer;
}

.page-industry-news__cta-button:hover {
    background-color: #ffc800; /* Slightly brighter gold on hover */
    transform: translateY(-2px);
}

/* CTA Banner */
.page-industry-news__cta-banner {
    background-color: #1a2a47;
    border-radius: 10px;
    padding: 40px;
    text-align: center;
    margin-top: 60px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.page-industry-news__cta-banner-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.2;
    z-index: 1;
}

.page-industry-news__cta-banner-content {
    position: relative;
    z-index: 2;
}

.page-industry-news__cta-banner-title {
    font-size: 2.8em;
    color: #E0B400;
    margin-bottom: 15px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.page-industry-news__cta-banner-text {
    font-size: 1.3em;
    color: #F5E6CE;
    max-width: 900px;
    margin: 0 auto 30px auto;
}

.page-industry-news__cta-button--large {
    padding: 15px 35px;
    font-size: 1.3em;
    border-radius: 7px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-industry-news__hero-title {
        font-size: 2.5em;
    }
    .page-industry-news__hero-subtitle {
        font-size: 1.2em;
    }
    .page-industry-news__article-title {
        font-size: 1.8em;
    }
    .page-industry-news__article-content p {
        font-size: 1em;
    }
    .page-industry-news__cta-banner-title {
        font-size: 2.2em;
    }
    .page-industry-news__cta-banner-text {
        font-size: 1.1em;
    }
}

@media (max-width: 768px) {
    .page-industry-news__hero {
        padding: 60px 0;
    }
    .page-industry-news__hero-title {
        font-size: 2em;
    }
    .page-industry-news__hero-subtitle {
        font-size: 1em;
    }
    .page-industry-news__articles {
        padding: 40px 0;
    }
    .page-industry-news__article {
        padding: 20px;
        margin-bottom: 30px;
    }
    .page-industry-news__article-title {
        font-size: 1.6em;
    }
    .page-industry-news__cta-banner {
        padding: 30px;
        margin-top: 40px;
    }
    .page-industry-news__cta-banner-title {
        font-size: 1.8em;
    }
    .page-industry-news__cta-banner-text {
        font-size: 1em;
    }
    .page-industry-news__cta-button--large {
        padding: 12px 25px;
        font-size: 1.1em;
    }
}

@media (max-width: 480px) {
    .page-industry-news__hero-title {
        font-size: 1.8em;
    }
    .page-industry-news__hero-subtitle {
        font-size: 0.9em;
    }
    .page-industry-news__article-title {
        font-size: 1.4em;
    }
    .page-industry-news__cta-button {
        font-size: 1em;
        padding: 10px 20px;
    }
    .page-industry-news__cta-banner-title {
        font-size: 1.5em;
    }
    .page-industry-news__cta-banner-text {
        font-size: 0.9em;
    }
}