/* style/industry-news.css */

.page-industry-news {
    font-family: 'Arial', sans-serif;
    color: #FFFFFF; /* Light text on dark background */
    background-color: #1A202C; /* Main dark background */
    line-height: 1.6;
}

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

/* Hero Section */
.page-industry-news__hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 20px;
    background: linear-gradient(135deg, #1A202C 0%, #3a4a6b 100%); /* Dark gradient for hero */
    position: relative;
    overflow: hidden;
    color: #FFFFFF;
}

.page-industry-news__hero-content {
    z-index: 1;
    max-width: 800px;
}

.page-industry-news__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #FFD700; /* Gold for main title */
    line-height: 1.2;
}

.page-industry-news__hero-description {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: #e0e0e0;
}

.page-industry-news__hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.15;
    z-index: 0;
}

.page-industry-news__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* General Section Styling */
.page-industry-news__section {
    padding: 60px 0;
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.page-industry-news__section:last-of-type {
    border-bottom: none;
}

.page-industry-news__section-title {
    font-size: 2.5em;
    color: #FFD700;
    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;
}

/* Intro Section */
.page-industry-news__intro p {
    font-size: 1.1em;
    margin-bottom: 20px;
    text-align: justify;
    color: #e0e0e0;
}

/* News List Grid */
.page-industry-news__articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.page-industry-news__article-card {
    background-color: #2a3342; /* Slightly lighter dark background 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;
    display: flex;
    flex-direction: column;
}

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

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

.page-industry-news__article-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.page-industry-news__article-title {
    font-size: 1.6em;
    margin-bottom: 15px;
    color: #FFD700;
}

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

.page-industry-news__article-title a:hover {
    color: #ffe87a;
}

.page-industry-news__article-description {
    font-size: 1em;
    color: #c0c0c0;
    margin-bottom: 20px;
    flex-grow: 1;
}

.page-industry-news__read-more-btn {
    display: inline-block;
    background-color: #FFD700;
    color: #1A202C;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
    text-align: center;
    align-self: flex-start;
}

.page-industry-news__read-more-btn:hover {
    background-color: #ffe87a;
    transform: translateY(-2px);
}

/* CTA Banner */
.page-industry-news__cta-banner {
    background-color: #FFD700; /* Gold background for CTA */
    color: #1A202C; /* Dark text on gold */
    text-align: center;
    padding: 80px 20px;
}

.page-industry-news__cta-container {
    max-width: 900px;
}

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

.page-industry-news__cta-description {
    font-size: 1.3em;
    margin-bottom: 40px;
    color: #333;
}

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

.page-industry-news__cta-button {
    display: inline-block;
    padding: 15px 35px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-industry-news__cta-button--primary {
    background-color: #1A202C;
    color: #FFD700;
    border: 2px solid #1A202C;
}

.page-industry-news__cta-button--primary:hover {
    background-color: #3a4a6b;
    color: #ffe87a;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.page-industry-news__cta-button--secondary {
    background-color: transparent;
    color: #1A202C;
    border: 2px solid #1A202C;
}

.page-industry-news__cta-button--secondary:hover {
    background-color: #1A202C;
    color: #FFD700;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

/* Conclusion Section */
.page-industry-news__conclusion p {
    font-size: 1.1em;
    margin-bottom: 20px;
    text-align: justify;
    color: #e0e0e0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-industry-news__hero {
        padding: 60px 15px;
    }

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

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

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

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

    .page-industry-news__article-image {
        height: 180px;
    }

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

    .page-industry-news__cta-banner {
        padding: 60px 15px;
    }

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

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

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

    .page-industry-news__cta-button {
        width: 100%;
    }
}

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

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

    .page-industry-news__article-image {
        height: 150px;
    }

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

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

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