/* style/news-industry-updates.css */

/* General page styling */
.page-news-industry-updates {
    font-family: 'Arial', sans-serif;
    color: #f0f0f0; /* Light text for dark background */
    background-color: #0A2463; /* Primary dark blue background */
    line-height: 1.6;
}

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

.page-news-industry-updates__section-title {
    font-size: 2.5em;
    color: #FFD700; /* Gold for titles */
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
    padding-top: 40px;
}

/* Buttons */
.page-news-industry-updates__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, color 0.3s ease;
    cursor: pointer;
    border: none;
    text-align: center;
}

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

.page-news-industry-updates__btn--primary:hover {
    background-color: #e6c200; /* Slightly darker gold on hover */
    color: #000;
}

.page-news-industry-updates__btn--secondary {
    background-color: transparent;
    color: #FFD700; /* Gold text */
    border: 2px solid #FFD700; /* Gold border */
    margin-left: 20px;
}

.page-news-industry-updates__btn--secondary:hover {
    background-color: #FFD700; /* Gold background on hover */
    color: #0A2463; /* Dark blue text on hover */
}

/* Hero Section */
.page-news-industry-updates__hero {
    background: linear-gradient(135deg, #0A2463 0%, #1A3F87 100%); /* Dark blue gradient */
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-news-industry-updates__hero-title {
    font-size: 3.5em;
    color: #FFD700; /* Gold title */
    margin-bottom: 20px;
    font-weight: bold;
    line-height: 1.2;
}

.page-news-industry-updates__hero-description {
    font-size: 1.3em;
    color: #c0c0c0; /* Lighter grey for description */
    max-width: 800px;
    margin: 0 auto 40px auto;
}

.page-news-industry-updates__hero-cta {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* Latest News Section */
.page-news-industry-updates__latest-news {
    padding: 80px 0;
    background-color: #0A2463; /* Primary dark blue */
}

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

.page-news-industry-updates__news-card {
    background-color: #1A3F87; /* Slightly lighter dark blue for cards */
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.page-news-industry-updates__news-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.4);
}

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

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

.page-news-industry-updates__news-title {
    font-size: 1.6em;
    margin-bottom: 15px;
    font-weight: bold;
    line-height: 1.3;
}

.page-news-industry-updates__news-title a {
    color: #FFD700; /* Gold for news titles */
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-news-industry-updates__news-title a:hover {
    color: #e6c200; /* Darker gold on hover */
}

.page-news-industry-updates__news-meta {
    font-size: 0.9em;
    color: #999;
    margin-bottom: 10px;
}

.page-news-industry-updates__news-excerpt {
    font-size: 1em;
    color: #ccc;
    margin-bottom: 20px;
    flex-grow: 1;
}

.page-news-industry-updates__read-more {
    color: #FFD700; /* Gold for read more link */
    text-decoration: none;
    font-weight: bold;
    align-self: flex-start;
    transition: color 0.3s ease;
}

.page-news-industry-updates__read-more:hover {
    color: #e6c200;
    text-decoration: underline;
}

/* Deep Dive Section */
.page-news-industry-updates__deep-dive {
    padding: 80px 0;
    background-color: #071C4B; /* Even darker blue for contrast */
}

.page-news-industry-updates__article {
    background-color: #1A3F87; /* Lighter dark blue for article background */
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.25);
    color: #f0f0f0;
}

.page-news-industry-updates__article-title {
    font-size: 2em;
    color: #FFD700; /* Gold for article titles */
    margin-bottom: 25px;
    font-weight: bold;
    padding-top: 20px;
}

.page-news-industry-updates__article-image {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 30px;
    border: 1px solid #FFD700;
}

.page-news-industry-updates__article p {
    margin-bottom: 20px;
    font-size: 1.1em;
    line-height: 1.8;
    color: #e0e0e0;
}

/* CTA Section */
.page-news-industry-updates__cta-section {
    background-color: #FFD700; /* Gold background for CTA */
    padding: 60px 0;
    text-align: center;
}

.page-news-industry-updates__cta-content {
    background-color: #0A2463; /* Dark blue content box */
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
    max-width: 900px;
    margin: 0 auto;
}

.page-news-industry-updates__cta-title {
    font-size: 2.8em;
    color: #FFD700; /* Gold text on dark blue background */
    margin-bottom: 20px;
    font-weight: bold;
}

.page-news-industry-updates__cta-description {
    font-size: 1.2em;
    color: #f0f0f0; /* Light text */
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

/* Related Articles Section */
.page-news-industry-updates__related-articles {
    padding: 80px 0;
    background-color: #0A2463; /* Primary dark blue */
}

.page-news-industry-updates__article-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.page-news-industry-updates__article-item {
    background-color: #1A3F87; /* Lighter dark blue for items */
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    padding-bottom: 20px; /* Space for content */
}

.page-news-industry-updates__article-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.page-news-industry-updates__article-thumbnail {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-bottom: 1px solid #FFD700;
    margin-bottom: 20px;
}

.page-news-industry-updates__article-item-title {
    font-size: 1.4em;
    margin-bottom: 10px;
    padding: 0 20px;
    font-weight: bold;
    line-height: 1.3;
}

.page-news-industry-updates__article-item-title a {
    color: #FFD700; /* Gold for article item titles */
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-news-industry-updates__article-item-title a:hover {
    color: #e6c200;
}

.page-news-industry-updates__article-item-excerpt {
    font-size: 0.95em;
    color: #ccc;
    padding: 0 20px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-news-industry-updates__hero-title {
        font-size: 2.8em;
    }
    .page-news-industry-updates__hero-description {
        font-size: 1.1em;
    }
    .page-news-industry-updates__section-title {
        font-size: 2em;
    }
    .page-news-industry-updates__news-card,
    .page-news-industry-updates__article-item {
        margin-bottom: 20px;
    }
    .page-news-industry-updates__news-grid,
    .page-news-industry-updates__article-list {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
    .page-news-industry-updates__article-title {
        font-size: 1.8em;
    }
    .page-news-industry-updates__cta-title {
        font-size: 2.2em;
    }
    .page-news-industry-updates__cta-description {
        font-size: 1.1em;
    }
}

@media (max-width: 768px) {
    .page-news-industry-updates__hero {
        padding: 80px 0;
    }
    .page-news-industry-updates__hero-title {
        font-size: 2.2em;
    }
    .page-news-industry-updates__hero-description {
        font-size: 1em;
    }
    .page-news-industry-updates__hero-cta {
        flex-direction: column;
        gap: 15px;
    }
    .page-news-industry-updates__btn--secondary {
        margin-left: 0;
    }
    .page-news-industry-updates__section-title {
        font-size: 1.8em;
    }
    .page-news-industry-updates__news-grid,
    .page-news-industry-updates__article-list {
        grid-template-columns: 1fr;
    }
    .page-news-industry-updates__article {
        padding: 30px;
    }
    .page-news-industry-updates__article-title {
        font-size: 1.6em;
    }
    .page-news-industry-updates__cta-content {
        padding: 30px;
    }
    .page-news-industry-updates__cta-title {
        font-size: 1.8em;
    }
    .page-news-industry-updates__cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
}