/* style/news.css */
.page-news {
    font-family: 'Arial', sans-serif;
    color: #FFFFFF; /* Default text color for dark sections */
    background-color: #0A2463; /* Main background color */
}

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

.page-news__hero {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 600px;
    padding: 80px 20px;
    background: linear-gradient(135deg, #0A2463 0%, #0A2463 50%, #0A2463 100%); /* Solid dark blue for background for better text contrast */
    color: #FFFFFF;
    text-align: center;
    overflow: hidden;
    position: relative;
}

.page-news__hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.page-news__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3; /* Subtle overlay */
}

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

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

.page-news__hero-description {
    font-size: 1.3em;
    line-height: 1.6;
    margin-bottom: 40px;
    color: #FFFFFF;
}

.page-news__introduction, .page-news__benefits, .page-news__responsibility {
    background-color: #0A2463;
    padding: 60px 0;
    color: #FFFFFF;
}

.page-news__categories {
    background-color: #1a3a70; /* Slightly lighter dark blue for contrast */
    padding: 60px 0;
    color: #FFFFFF;
}

.page-news__section-title {
    font-size: 2.5em;
    color: #FFD700;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.page-news__section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: #FFD700;
    margin: 15px auto 0 auto;
    border-radius: 2px;
}

.page-news__section-description {
    font-size: 1.1em;
    line-height: 1.6;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px auto;
    color: #E0E0E0;
}

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

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

.page-news__article-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

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

.page-news__article-card h3 {
    font-size: 1.5em;
    padding: 20px 20px 10px;
    color: #FFD700;
}

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

.page-news__article-card h3 a:hover {
    color: #FFF;
}

.page-news__article-excerpt {
    font-size: 1em;
    line-height: 1.5;
    padding: 0 20px 20px;
    flex-grow: 1;
    color: #E0E0E0;
}

.page-news__article-card .page-news__btn {
    margin: 0 20px 20px;
    align-self: flex-start;
}

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

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

.page-news__btn--primary:hover {
    background-color: #e6c200;
    color: #0A2463;
    transform: translateY(-2px);
}

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

.page-news__btn--secondary:hover {
    background-color: #FFD700;
    color: #0A2463;
    transform: translateY(-2px);
}

.page-news__benefit-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.page-news__benefit-list li {
    background-color: #1a3a70; /* Slightly lighter dark blue */
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.page-news__benefit-list li:hover {
    transform: translateY(-5px);
}

.page-news__benefit-title {
    font-size: 1.8em;
    color: #FFD700;
    margin-bottom: 15px;
}

.page-news__benefit-list p {
    font-size: 1em;
    line-height: 1.6;
    color: #E0E0E0;
}

.page-news__responsibility {
    padding: 60px 0;
    text-align: center;
    background-color: #0A2463;
    color: #FFFFFF;
}

.page-news__responsibility p {
    max-width: 900px;
    margin: 20px auto;
    font-size: 1.1em;
    line-height: 1.7;
}

.page-news__cta-section {
    background-color: #FFD700;
    padding: 80px 0;
    text-align: center;
    color: #0A2463;
    position: relative;
    overflow: hidden;
}

.page-news__cta-title {
    font-size: 2.8em;
    color: #0A2463;
    margin-bottom: 20px;
}

.page-news__cta-description {
    font-size: 1.2em;
    line-height: 1.6;
    max-width: 900px;
    margin: 0 auto 30px auto;
    color: #333;
}

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

.page-news__cta-section .page-news__btn--primary {
    background-color: #0A2463;
    color: #FFD700;
    border-color: #0A2463;
}

.page-news__cta-section .page-news__btn--primary:hover {
    background-color: #1a3a70;
    color: #FFD700;
}

.page-news__cta-section .page-news__btn--secondary {
    background-color: transparent;
    color: #0A2463;
    border-color: #0A2463;
}

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

.page-news__cta-image {
    width: 100%;
    max-width: 1000px;
    height: auto;
    margin-top: 50px;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.highlight-keyword {
    color: #FFD700;
    font-weight: bold;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-news__hero-title {
        font-size: 3em;
    }
    .page-news__section-title {
        font-size: 2em;
    }
    .page-news__cta-title {
        font-size: 2.2em;
    }
}

@media (max-width: 768px) {
    .page-news__hero {
        min-height: 400px;
        padding: 60px 15px;
    }
    .page-news__hero-title {
        font-size: 2.5em;
    }
    .page-news__hero-description {
        font-size: 1.1em;
    }
    .page-news__introduction, .page-news__categories, .page-news__benefits, .page-news__responsibility, .page-news__cta-section {
        padding: 40px 0;
    }
    .page-news__section-title {
        font-size: 1.8em;
    }
    .page-news__article-grid {
        grid-template-columns: 1fr;
    }
    .page-news__benefit-list {
        grid-template-columns: 1fr;
    }
    .page-news__cta-title {
        font-size: 1.8em;
    }
    .page-news__cta-description {
        font-size: 1em;
    }
    .page-news__cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .page-news__hero-title {
        font-size: 2em;
    }
    .page-news__hero-description {
        font-size: 1em;
    }
    .page-news__btn {
        padding: 10px 20px;
        font-size: 0.9em;
    }
    .page-news__section-title {
        font-size: 1.5em;
    }
    .page-news__article-card h3 {
        font-size: 1.3em;
    }
    .page-news__benefit-title {
        font-size: 1.5em;
    }
    .page-news__cta-title {
        font-size: 1.5em;
    }
}