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

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

.page-industry-news__hero {
    background: linear-gradient(135deg, #0A192F 0%, #1a3a60 100%); /* Dark blue gradient */
    padding: 80px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

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

.page-industry-news__hero-title {
    font-size: 3.5em;
    color: #FFD700; /* Gold for titles, WCAG AA contrast for #0A192F */
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    font-weight: bold;
}

.page-industry-news__hero-subtitle {
    font-size: 1.5em;
    color: #f5e6d0;
    margin-bottom: 30px;
}

.page-industry-news__cta-button {
    display: inline-block;
    background-color: #FFD700; /* Gold button */
    color: #0A192F; /* Dark blue text on gold, WCAG AA contrast for #FFD700 */
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

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

.page-industry-news__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.2;
    overflow: hidden;
}

.page-industry-news__hero-image .page-industry-news__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(50%) blur(3px);
}

.page-industry-news__intro-section,
.page-industry-news__in-depth-analysis {
    padding: 60px 0;
    background-color: #1a2a40; /* Slightly lighter dark blue for contrast */
}

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

.page-industry-news__section-description {
    font-size: 1.1em;
    color: #f5e6d0;
    text-align: center;
    margin-bottom: 50px;
}

.page-industry-news__intro-section p,
.page-industry-news__in-depth-analysis p {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: #d0d0d0; /* Slightly muted light text, WCAG AA contrast for #1a2a40 */
}

.page-industry-news__intro-section strong,
.page-industry-news__in-depth-analysis strong {
    color: #FFD700;
}

.page-industry-news__latest-articles {
    padding: 60px 0;
    background-color: #0A192F;
}

.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; /* Card background */
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

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

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

.page-industry-news__article-card h3 {
    font-size: 1.6em;
    color: #FFD700; /* Gold for article titles */
    padding: 20px 20px 10px;
    margin: 0;
}

.page-industry-news__article-excerpt {
    font-size: 1em;
    color: #c0c0c0; /* Muted light text */
    padding: 0 20px 20px;
    flex-grow: 1;
}

.page-industry-news__read-more-btn {
    display: inline-block;
    background-color: #FFD700;
    color: #0A192F;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1em;
    margin: 0 20px 20px;
    transition: background-color 0.3s ease;
    align-self: flex-start;
}

.page-industry-news__read-more-btn:hover {
    background-color: #e6c200;
}

.page-industry-news__subsection-title {
    font-size: 2em;
    color: #FFD700;
    margin-top: 50px;
    margin-bottom: 25px;
    text-align: left;
    border-bottom: 2px solid #FFD700;
    padding-bottom: 10px;
}

.page-industry-news__image {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 30px auto;
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

.page-industry-news__image--full-width {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
}

.page-industry-news__cta-section {
    background: linear-gradient(90deg, #0A192F, #FFD700);
    padding: 80px 0;
    text-align: center;
}

.page-industry-news__cta-content {
    background-color: rgba(10, 25, 47, 0.85); /* Semi-transparent dark blue overlay */
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.6);
}

.page-industry-news__section-title--cta {
    color: #FFD700;
    font-size: 2.8em;
    margin-bottom: 20px;
}

.page-industry-news__section-description--cta {
    color: #f5e6d0;
    font-size: 1.3em;
    margin-bottom: 40px;
}

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

.page-industry-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, box-shadow 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.page-industry-news__btn--primary {
    background-color: #FFD700; /* Gold */
    color: #0A192F; /* Dark blue */
}

.page-industry-news__btn--primary:hover {
    background-color: #e6c200;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
}

.page-industry-news__btn--secondary {
    background-color: #0A192F; /* Dark blue */
    color: #FFD700; /* Gold */
    border: 2px solid #FFD700;
}

.page-industry-news__btn--secondary:hover {
    background-color: #1a2a40; /* Slightly lighter dark blue */
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
}

.page-industry-news__btn--tertiary {
    background-color: transparent;
    color: #f5e6d0; /* Light text */
    border: 2px solid #f5e6d0;
}

.page-industry-news__btn--tertiary:hover {
    background-color: rgba(245, 230, 208, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
}

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

    .page-industry-news__hero-subtitle {
        font-size: 1.2em;
    }

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

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

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

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

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

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

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

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

    .page-industry-news__intro-section,
    .page-industry-news__latest-articles,
    .page-industry-news__in-depth-analysis,
    .page-industry-news__cta-section {
        padding: 40px 0;
    }

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

    .page-industry-news__subsection-title {
        font-size: 1.6em;
    }

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

    .page-industry-news__btn {
        width: 80%;
    }
}

@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__cta-button {
        padding: 12px 25px;
        font-size: 1.1em;
    }

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

    .page-industry-news__section-description {
        font-size: 0.95em;
    }

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

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

    .page-industry-news__article-excerpt {
        font-size: 0.9em;
    }

    .page-industry-news__read-more-btn {
        font-size: 0.9em;
        padding: 8px 15px;
    }

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

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

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

    .page-industry-news__btn {
        width: 90%;
        font-size: 1em;
        padding: 12px 20px;
    }
}