/* style/news.css */
.page-news {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #f0f0f0; /* Light gray for general text for better contrast on dark background */
    background-color: #0A2463; /* Main background color */
}

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

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

.page-news__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    font-weight: bold;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-news__hero-description {
    font-size: 1.3em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.page-news__sub-section-title {
    font-size: 1.8em;
    color: #FFD700; /* Accent color for sub-titles */
    margin-top: 50px;
    margin-bottom: 20px;
    border-left: 5px solid #FFD700;
    padding-left: 15px;
}

.page-news__content-block p {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: #e0e0e0; /* Slightly lighter text for readability */
}

.page-news__highlight {
    color: #FFD700;
    font-weight: bold;
}

.page-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;
    margin: 10px;
    cursor: pointer;
    border: none;
}

.page-news__btn--primary {
    background-color: #FFD700; /* Accent color for primary buttons */
    color: #0A2463; /* Main color for text on accent background */
}

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

.page-news__btn--secondary {
    background-color: #0A2463; /* Main color for secondary buttons */
    color: #FFD700; /* Accent color for text on main background */
    border: 2px solid #FFD700;
}

.page-news__btn--secondary:hover {
    background-color: #1A3B80;
    transform: translateY(-3px);
}

.page-news__btn--large {
    padding: 18px 35px;
    font-size: 1.2em;
}

.page-news__btn--link {
    background: none;
    border: none;
    color: #FFD700;
    padding: 0;
    margin: 0;
    font-size: 1em;
    text-decoration: underline;
}

.page-news__btn--link:hover {
    color: #e6c200;
    transform: none;
}

.page-news__image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 30px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.page-news__image--full-width {
    display: block;
    margin: 40px auto;
}

.page-news__image--inline {
    float: right;
    margin-left: 30px;
    margin-bottom: 20px;
    width: 40%;
    min-width: 300px;
}

.page-news__content-block::after {
    content: "";
    display: table;
    clear: both;
}

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

.page-news__article-card {
    background-color: #1A3B80; /* Darker blue for card background */
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s ease;
}

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

.page-news__article-title {
    font-size: 1.5em;
    margin-bottom: 15px;
    color: #FFD700;
    line-height: 1.3;
}

.page-news__article-title a {
    color: #FFD700;
    text-decoration: none;
}

.page-news__article-title a:hover {
    text-decoration: underline;
}

.page-news__article-description {
    font-size: 1em;
    color: #c0c0c0;
    margin-bottom: 20px;
    flex-grow: 1;
}

.page-news__cta-section {
    background-color: #FFD700; /* Accent color for CTA background */
    padding: 80px 0;
    text-align: center;
    color: #0A2463; /* Main color for text on accent background */
    margin-top: 80px;
}

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

.page-news__cta-description {
    font-size: 1.2em;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    color: #0A2463;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-news__hero-title {
        font-size: 2.8em;
    }
    .page-news__section-title {
        font-size: 2em;
    }
    .page-news__sub-section-title {
        font-size: 1.5em;
    }
    .page-news__image--inline {
        float: none;
        margin: 20px auto;
        width: 80%;
    }
}

@media (max-width: 768px) {
    .page-news__hero-title {
        font-size: 2.2em;
    }
    .page-news__hero-description {
        font-size: 1.1em;
    }
    .page-news__section-title {
        font-size: 1.8em;
    }
    .page-news__sub-section-title {
        font-size: 1.3em;
    }
    .page-news__btn {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-news__btn--large {
        padding: 15px 30px;
        font-size: 1.1em;
    }
    .page-news__article-list {
        grid-template-columns: 1fr;
    }
    .page-news__cta-title {
        font-size: 2.2em;
    }
    .page-news__cta-description {
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    .page-news__hero-title {
        font-size: 1.8em;
    }
    .page-news__hero-description {
        font-size: 0.9em;
    }
    .page-news__section-title {
        font-size: 1.5em;
    }
    .page-news__sub-section-title {
        font-size: 1.2em;
    }
    .page-news__btn {
        padding: 10px 20px;
        font-size: 0.9em;
    }
    .page-news__btn--large {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-news__cta-title {
        font-size: 1.8em;
    }
    .page-news__cta-description {
        font-size: 0.9em;
    }
    .page-news__image--inline {
        width: 100%;
        margin: 20px auto 0;
    }
}