/* style/industry-news.css */

/* General container for content */
.page-industry-news__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

.page-industry-news__hero-content {
    position: relative;
    z-index: 1;
}

.page-industry-news__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #E3B505; /* Gold for emphasis */
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-industry-news__hero-description {
    font-size: 1.3em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #DDEEFF; /* Lighter blue for readability */
}

.page-industry-news__hero-btn {
    display: inline-block;
    background-color: #E3B505; /* Gold button */
    color: #0A2463; /* Dark blue text */
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2em;
    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-btn:hover {
    background-color: #FFD700; /* Brighter gold on hover */
    transform: translateY(-3px);
}

/* Section Titles */
.page-industry-news__section-title {
    font-size: 2.5em;
    color: #0A2463; /* Dark blue */
    text-align: center;
    margin-top: 60px;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 10px;
}

.page-industry-news__section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: #E3B505; /* Gold underline */
    margin: 10px auto 0;
    border-radius: 2px;
}

/* General text styles */
.page-industry-news__introduction p,
.page-industry-news__in-depth-analysis p,
.page-industry-news__trends-future p,
.page-industry-news__conclusion p {
    font-size: 1.1em;
    line-height: 1.8;
    color: #333333; /* Dark grey for body text */
    margin-bottom: 20px;
    text-align: justify;
}

.page-industry-news__in-depth-analysis h3,
.page-industry-news__trends-future h3 {
    font-size: 1.8em;
    color: #0A2463;
    margin-top: 40px;
    margin-bottom: 20px;
    border-left: 5px solid #E3B505; /* Gold accent */
    padding-left: 15px;
}

.page-industry-news__in-depth-analysis h3 a,
.page-industry-news__trends-future h3 a {
    color: #0A2463; /* Ensure link color is readable */
    text-decoration: none;
}

.page-industry-news__in-depth-analysis h3 a:hover,
.page-industry-news__trends-future h3 a:hover {
    color: #E3B505;
    text-decoration: underline;
}

/* Article Grid for Latest Updates */
.page-industry-news__article-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-industry-news__article-card {
    background-color: #FFFFFF;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

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

.page-industry-news__article-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

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

.page-industry-news__article-title {
    font-size: 1.5em;
    color: #0A2463;
    margin-bottom: 15px;
    line-height: 1.4;
}

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

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

.page-industry-news__article-excerpt {
    font-size: 0.95em;
    color: #555555;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1; /* Allow excerpt to take available space */
}

.page-industry-news__read-more-btn {
    display: inline-block;
    background-color: #0A2463; /* Dark blue button */
    color: #FFFFFF;
    padding: 10px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.9em;
    transition: background-color 0.3s ease;
    align-self: flex-start; /* Align button to start */
}

.page-industry-news__read-more-btn:hover {
    background-color: #E3B505; /* Gold on hover */
    color: #0A2463; /* Dark blue text on hover */
}

/* Call to Action Group */
.page-industry-news__cta-group {
    text-align: center;
    margin-top: 50px;
    margin-bottom: 50px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.page-industry-news__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

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

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

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

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

.page-industry-news__btn--large {
    font-size: 1.4em;
    padding: 18px 45px;
}

/* Full width image */
.page-industry-news__image-full-width {
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: cover;
    border-radius: 10px;
    margin-top: 40px;
    margin-bottom: 40px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

/* Padding for sections */
.page-industry-news__introduction,
.page-industry-news__latest-updates,
.page-industry-news__in-depth-analysis,
.page-industry-news__trends-future,
.page-industry-news__conclusion {
    padding: 60px 0;
}

/* Responsive adjustments */
@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__section-title {
        font-size: 2em;
    }
    .page-industry-news__article-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .page-industry-news__hero {
        padding: 80px 0 60px;
    }
    .page-industry-news__hero-title {
        font-size: 2.2em;
    }
    .page-industry-news__hero-description {
        font-size: 1em;
        margin-bottom: 30px;
    }
    .page-industry-news__hero-btn {
        padding: 12px 30px;
        font-size: 1em;
    }
    .page-industry-news__section-title {
        font-size: 1.8em;
        margin-top: 40px;
        margin-bottom: 30px;
    }
    .page-industry-news__introduction p,
    .page-industry-news__in-depth-analysis p,
    .page-industry-news__trends-future p,
    .page-industry-news__conclusion p {
        font-size: 1em;
        line-height: 1.7;
    }
    .page-industry-news__in-depth-analysis h3,
    .page-industry-news__trends-future h3 {
        font-size: 1.5em;
        margin-top: 30px;
        margin-bottom: 15px;
    }
    .page-industry-news__article-content {
        padding: 20px;
    }
    .page-industry-news__article-title {
        font-size: 1.3em;
    }
    .page-industry-news__article-excerpt {
        font-size: 0.9em;
    }
    .page-industry-news__read-more-btn {
        padding: 8px 20px;
        font-size: 0.85em;
    }
    .page-industry-news__cta-group {
        flex-direction: column;
        gap: 15px;
    }
    .page-industry-news__btn {
        width: 80%;
        max-width: 300px;
        margin: 0 auto;
    }
    .page-industry-news__btn--large {
        font-size: 1.2em;
        padding: 15px 35px;
    }
    .page-industry-news__image-full-width {
        max-height: 300px;
        margin-top: 30px;
        margin-bottom: 30px;
    }
    .page-industry-news__introduction,
    .page-industry-news__latest-updates,
    .page-industry-news__in-depth-analysis,
    .page-industry-news__trends-future,
    .page-industry-news__conclusion {
        padding: 40px 0;
    }
}

@media (max-width: 480px) {
    .page-industry-news__hero-title {
        font-size: 1.8em;
    }
    .page-industry-news__hero-description {
        font-size: 0.9em;
    }
    .page-industry-news__hero-btn {
        padding: 10px 25px;
        font-size: 0.9em;
    }
    .page-industry-news__section-title {
        font-size: 1.5em;
    }
    .page-industry-news__article-grid {
        grid-template-columns: 1fr;
    }
    .page-industry-news__btn {
        width: 90%;
    }
}

/* Ensure contrast for all elements */
/* Default text color on light backgrounds */
.page-industry-news p,
.page-industry-news li,
.page-industry-news span {
    color: #333333; /* Sufficient contrast for light backgrounds */
}

/* Headings on light backgrounds */
.page-industry-news h1,
.page-industry-news h2,
.page-industry-news h3,
.page-industry-news h4,
.page-industry-news h5,
.page-industry-news h6 {
    color: #0A2463; /* Dark blue, good contrast */
}

/* Links */
.page-industry-news a {
    color: #0A2463; /* Dark blue, good contrast */
}
.page-industry-news a:hover {
    color: #E3B505; /* Gold, still good contrast on light backgrounds */
}

/* Elements on dark background (hero section) */
.page-industry-news__hero-title {
    color: #E3B505; /* Gold on dark blue, good contrast */
}
.page-industry-news__hero-description {
    color: #DDEEFF; /* Lighter blue on dark blue, good contrast */
}
.page-industry-news__hero-btn {
    background-color: #E3B505; /* Gold */
    color: #0A2463; /* Dark blue on gold, good contrast */
}
.page-industry-news__hero-btn:hover {
    background-color: #FFD700; /* Brighter gold */
    color: #0A2463; /* Dark blue on gold, good contrast */
}

/* Buttons */
.page-industry-news__btn--primary {
    background-color: #E3B505; /* Gold */
    color: #0A2463; /* Dark blue on gold, good contrast */
}
.page-industry-news__btn--primary:hover {
    background-color: #FFD700;
    color: #0A2463;
}
.page-industry-news__btn--secondary {
    background-color: #0A2463; /* Dark blue */
    color: #E3B505; /* Gold on dark blue, good contrast */
}
.page-industry-news__btn--secondary:hover {
    background-color: #1A3C7D;
    color: #FFD700;
}