/* style/industry-news.css */
.page-industry-news {
    font-family: 'Arial', sans-serif;
    color: #333;
    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, #0A2463 0%, #0A2463 60%, #FFD700 100%); /* Adjusted gradient for better contrast */
    color: #FFFFFF;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-industry-news__title {
    font-size: 3.2em;
    margin-bottom: 20px;
    color: #FFFFFF;
    font-weight: bold;
    line-height: 1.2;
}

.page-industry-news__subtitle {
    font-size: 1.3em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #E0E0E0;
}

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

.page-industry-news__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease;
    white-space: nowrap;
}

.page-industry-news__btn--primary {
    background-color: #FFD700;
    color: #0A2463;
    border: 2px solid #FFD700;
}

.page-industry-news__btn--primary:hover {
    background-color: #e6c200;
    color: #000000;
}

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

.page-industry-news__btn--secondary:hover {
    background-color: #FFD700;
    color: #0A2463;
}

.page-industry-news__section {
    padding: 60px 0;
    background-color: #F8F8F8;
}

.page-industry-news__section:nth-of-type(even) {
    background-color: #FFFFFF;
}

.page-industry-news__section-title {
    font-size: 2.5em;
    color: #0A2463;
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
}

.page-industry-news__description {
    font-size: 1.1em;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 50px auto;
    color: #555;
}

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

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

.page-industry-news__news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

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

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

.page-industry-news__card-title {
    font-size: 1.5em;
    color: #0A2463;
    margin-bottom: 15px;
    font-weight: bold;
    line-height: 1.3;
}

.page-industry-news__card-title a {
    text-decoration: none;
    color: inherit;
}

.page-industry-news__card-title a:hover {
    color: #FFD700;
}

.page-industry-news__card-excerpt {
    font-size: 0.95em;
    color: #666;
    margin-bottom: 20px;
    flex-grow: 1;
}

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

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

.page-industry-news__detail-pages .page-industry-news__grid--2-col {
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
}

.page-industry-news__detail-card {
    background-color: #F0F4F8;
    border-left: 5px solid #0A2463;
    padding: 30px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.page-industry-news__detail-title {
    font-size: 1.8em;
    color: #0A2463;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-industry-news__detail-title a {
    text-decoration: none;
    color: inherit;
}

.page-industry-news__detail-title a:hover {
    color: #FFD700;
}

.page-industry-news__detail-description {
    color: #555;
    margin-bottom: 20px;
    flex-grow: 1;
}

.page-industry-news__btn--link {
    background-color: transparent;
    color: #0A2463;
    border: 1px solid #0A2463;
    padding: 10px 20px;
    text-align: center;
}

.page-industry-news__btn--link:hover {
    background-color: #0A2463;
    color: #FFFFFF;
}

.page-industry-news__content-block {
    background-color: #FFFFFF;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    margin-bottom: 40px;
}

.page-industry-news__content-block h3 {
    font-size: 2em;
    color: #0A2463;
    margin-top: 0;
    margin-bottom: 20px;
    font-weight: bold;
}

.page-industry-news__content-block p {
    font-size: 1.05em;
    color: #444;
    margin-bottom: 20px;
}

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

.page-industry-news__cta-section {
    background-color: #0A2463;
    color: #FFFFFF;
    text-align: center;
    padding: 80px 0;
}

.page-industry-news__cta-section .page-industry-news__section-title {
    color: #FFFFFF;
}

.page-industry-news__cta-section .page-industry-news__description {
    color: #E0E0E0;
    margin-bottom: 40px;
}

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

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

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

    .page-industry-news__detail-pages .page-industry-news__grid--2-col {
        grid-template-columns: 1fr;
    }
}

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

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

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

    .page-industry-news__section {
        padding: 40px 0;
    }

    .page-industry-news__section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
    }

    .page-industry-news__description {
        font-size: 1em;
        margin-bottom: 40px;
    }

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

    .page-industry-news__card-title {
        font-size: 1.3em;
    }

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

    .page-industry-news__btn {
        padding: 12px 25px;
        font-size: 0.9em;
    }

    .page-industry-news__content-block {
        padding: 30px;
    }

    .page-industry-news__content-block h3 {
        font-size: 1.6em;
    }

    .page-industry-news__cta-section {
        padding: 60px 0;
    }
}

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

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

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

    .page-industry-news__hero-cta {
        flex-direction: column;
        gap: 15px;
    }

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

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

    .page-industry-news__content-block h3 {
        font-size: 1.4em;
    }
}