/* style/industry-news.css */

/* Base Styles for the page content */
.page-industry-news {
    font-family: 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: #E0E0E0; /* Light gray for general text on dark backgrounds */
    line-height: 1.6;
    background-color: #0F1D2E; /* Slightly lighter dark blue than primary for background */
}

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

/* Hero Section */
.page-industry-news__hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: linear-gradient(135deg, #1A2A40 0%, #0F1D2E 100%);
    padding: 80px 20px;
    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 */
    font-weight: 700;
    line-height: 1.2;
}

.page-industry-news__hero-description {
    font-size: 1.3em;
    margin-bottom: 40px;
    opacity: 0.9;
}

.page-industry-news__hero-cta {
    display: inline-block;
    background-color: #FFD700; /* Gold button */
    color: #1A2A40; /* Dark blue text on gold */
    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;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-industry-news__hero-cta:hover {
    background-color: #e5c100; /* Slightly darker gold on hover */
    transform: translateY(-3px);
}

.page-industry-news__hero-image {
    position: absolute;
    bottom: 0;
    right: 0;
    opacity: 0.15;
    width: 60%;
    height: auto;
    z-index: 0;
}

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

/* Introduction Section */
.page-industry-news__intro {
    padding: 60px 0;
    background-color: #1A2A40; /* Primary dark blue background */
    color: #FFFFFF;
}

.page-industry-news__intro-title {
    font-size: 2.5em;
    color: #FFD700;
    text-align: center;
    margin-bottom: 30px;
    font-weight: 600;
}

.page-industry-news__intro-text {
    font-size: 1.1em;
    max-width: 900px;
    margin: 0 auto 20px auto;
    text-align: justify;
    opacity: 0.9;
}

/* Articles Grid Section */
.page-industry-news__articles {
    padding: 80px 0;
    background-color: #0F1D2E; /* Slightly lighter dark blue */
}

.page-industry-news__articles-title {
    font-size: 2.8em;
    color: #FFD700;
    text-align: center;
    margin-bottom: 50px;
    font-weight: 700;
}

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

.page-industry-news__article-card {
    background-color: #1A2A40; /* Dark blue card background */
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    color: #E0E0E0;
}

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

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

.page-industry-news__article-card-title {
    font-size: 1.8em;
    margin: 25px 25px 15px 25px;
    color: #FFD700;
    font-weight: 600;
}

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

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

.page-industry-news__article-card-description {
    font-size: 1em;
    margin: 0 25px 20px 25px;
    flex-grow: 1;
    opacity: 0.85;
}

.page-industry-news__article-card-link {
    display: inline-block;
    background-color: #FFD700;
    color: #1A2A40;
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    margin: 0 25px 25px 25px;
    align-self: flex-start;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-industry-news__article-card-link:hover {
    background-color: #e5c100;
    transform: translateY(-2px);
}

/* Deep Dive Section */
.page-industry-news__deep-dive {
    padding: 80px 0;
    background-color: #1A2A40;
    color: #FFFFFF;
}

.page-industry-news__deep-dive-title {
    font-size: 3em;
    color: #FFD700;
    text-align: center;
    margin-bottom: 40px;
    font-weight: 700;
}

.page-industry-news__deep-dive-subtitle {
    font-size: 2em;
    color: #FFD700;
    margin-top: 40px;
    margin-bottom: 20px;
    font-weight: 600;
}

.page-industry-news__deep-dive-text {
    font-size: 1.1em;
    margin-bottom: 25px;
    text-align: justify;
    opacity: 0.9;
}

.page-industry-news__image {
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin: 30px 0;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.page-industry-news__image--large {
    max-height: 500px;
    object-fit: cover;
}

.page-industry-news__image--medium {
    max-height: 400px;
    object-fit: cover;
}

.page-industry-news__cta-group {
    text-align: center;
    margin-top: 60px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

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

.page-industry-news__primary-cta {
    background-color: #FFD700;
    color: #1A2A40;
}

.page-industry-news__primary-cta:hover {
    background-color: #e5c100;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

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

.page-industry-news__secondary-cta:hover {
    background-color: #FFD700;
    color: #1A2A40;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}


/* Responsive Design */
@media (max-width: 992px) {
    .page-industry-news__hero-title {
        font-size: 2.8em;
    }

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

    .page-industry-news__intro-title,
    .page-industry-news__articles-title,
    .page-industry-news__deep-dive-title {
        font-size: 2.2em;
    }

    .page-industry-news__deep-dive-subtitle {
        font-size: 1.7em;
    }
}

@media (max-width: 768px) {
    .page-industry-news__hero {
        padding: 60px 20px;
    }

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

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

    .page-industry-news__hero-cta {
        padding: 12px 25px;
        font-size: 1em;
    }

    .page-industry-news__intro-title,
    .page-industry-news__articles-title,
    .page-industry-news__deep-dive-title {
        font-size: 1.8em;
    }

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

    .page-industry-news__cta-group {
        flex-direction: column;
        gap: 15px;
    }
}

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

    .page-industry-news__intro-title,
    .page-industry-news__articles-title,
    .page-industry-news__deep-dive-title {
        font-size: 1.5em;
    }

    .page-industry-news__deep-dive-subtitle {
        font-size: 1.4em;
    }

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

    .page-industry-news__primary-cta,
    .page-industry-news__secondary-cta {
        padding: 15px 25px;
        font-size: 1.1em;
        width: 100%;
        box-sizing: border-box;
    }
}