/* style/industry-insights-news.css */
.page-industry-insights-news {
    font-family: 'Arial', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f8f9fa;
}

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

/* Hero Section */
.page-industry-insights-news__hero-section {
    background: linear-gradient(135deg, #0A2463 0%, #1a3c7a 100%); /* Darker blue gradient */
    color: #ffffff;
    padding: 100px 0;
    text-align: center;
}

.page-industry-insights-news__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #E3B23C; /* Gold for emphasis */
    font-weight: bold;
    line-height: 1.2;
}

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

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

.page-industry-insights-news__btn--primary {
    background-color: #E3B23C; /* Gold */
    color: #0A2463; /* Dark blue text */
    margin-right: 15px;
}

.page-industry-insights-news__btn--primary:hover {
    background-color: #ebc977; /* Lighter gold */
    transform: translateY(-3px);
}

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

.page-industry-insights-news__btn--secondary:hover {
    background-color: #1a3c7a; /* Lighter dark blue */
    transform: translateY(-3px);
}

/* Content Section */
.page-industry-insights-news__content-section {
    padding: 60px 0;
    background-color: #ffffff;
}

.page-industry-insights-news__article p {
    margin-bottom: 1.5em;
    font-size: 1.1em;
    color: #444;
}

.page-industry-insights-news__section-title {
    font-size: 2.5em;
    color: #0A2463;
    margin-top: 50px;
    margin-bottom: 30px;
    text-align: left;
    border-bottom: 3px solid #E3B23C;
    padding-bottom: 10px;
}

.page-industry-insights-news__subsection-title {
    font-size: 1.8em;
    color: #0A2463;
    margin-top: 40px;
    margin-bottom: 20px;
    text-align: left;
}

.page-industry-insights-news__article-card h3 a {
    color: #0A2463;
    text-decoration: none;
}

.page-industry-insights-news__article-card h3 a:hover {
    color: #E3B23C;
    text-decoration: underline;
}

.page-industry-insights-news__image {
    width: 100%;
    height: auto;
    max-height: 450px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 30px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

/* Call to Action Box */
.page-industry-insights-news__cta-box {
    background-color: #0A2463;
    color: #ffffff;
    padding: 50px;
    border-radius: 10px;
    text-align: center;
    margin-top: 60px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

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

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

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

/* Related Articles Section */
.page-industry-insights-news__related-articles {
    padding: 60px 0;
    background-color: #f0f2f5;
}

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

.page-industry-insights-news__article-card {
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: transform 0.3s ease;
}

.page-industry-insights-news__article-card:hover {
    transform: translateY(-5px);
}

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

.page-industry-insights-news__article-title {
    font-size: 1.5em;
    color: #0A2463;
    padding: 20px 20px 10px;
    margin: 0;
}

.page-industry-insights-news__article-excerpt {
    font-size: 1em;
    color: #555;
    padding: 0 20px 20px;
}

.page-industry-insights-news__read-more {
    display: inline-block;
    color: #E3B23C;
    text-decoration: none;
    font-weight: bold;
    padding: 0 20px 20px;
    transition: color 0.3s ease;
}

.page-industry-insights-news__read-more:hover {
    color: #0A2463;
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-industry-insights-news__hero-title {
        font-size: 2.8em;
    }
    .page-industry-insights-news__hero-subtitle {
        font-size: 1.3em;
    }
    .page-industry-insights-news__section-title {
        font-size: 2em;
    }
    .page-industry-insights-news__subsection-title {
        font-size: 1.6em;
    }
    .page-industry-insights-news__cta-title {
        font-size: 2em;
    }
    .page-industry-insights-news__cta-description {
        font-size: 1.1em;
    }
    .page-industry-insights-news__articles-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .page-industry-insights-news__hero-section {
        padding: 80px 0;
    }
    .page-industry-insights-news__hero-title {
        font-size: 2.2em;
    }
    .page-industry-insights-news__hero-subtitle {
        font-size: 1.1em;
    }
    .page-industry-insights-news__btn {
        padding: 12px 25px;
        font-size: 1em;
        margin-bottom: 15px;
    }
    .page-industry-insights-news__btn--primary {
        margin-right: 0;
    }
    .page-industry-insights-news__cta-buttons {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .page-industry-insights-news__cta-buttons .page-industry-insights-news__btn {
        margin: 10px 0;
        width: 80%;
    }
    .page-industry-insights-news__section-title {
        font-size: 1.8em;
    }
    .page-industry-insights-news__subsection-title {
        font-size: 1.4em;
    }
    .page-industry-insights-news__article p {
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    .page-industry-insights-news__hero-section {
        padding: 60px 0;
    }
    .page-industry-insights-news__hero-title {
        font-size: 1.8em;
    }
    .page-industry-insights-news__hero-subtitle {
        font-size: 1em;
    }
    .page-industry-insights-news__content-section,
    .page-industry-insights-news__related-articles {
        padding: 40px 0;
    }
    .page-industry-insights-news__cta-box {
        padding: 30px;
    }
    .page-industry-insights-news__cta-title {
        font-size: 1.8em;
    }
    .page-industry-insights-news__cta-description {
        font-size: 0.95em;
    }
    .page-industry-insights-news__articles-grid {
        grid-template-columns: 1fr;
    }
}