/* style/latest-news.css */
.page-latest-news {
    font-family: 'Arial', sans-serif;
    color: #e0e0e0; /* Light gray for general text on dark background */
    background-color: #0f1a24; /* Slightly lighter dark background */
}

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

.page-latest-news__hero-section {
    background: linear-gradient(135deg, #1A2E44, #0f1a24);
    padding: 100px 0;
    text-align: center;
    color: #FFD700; /* Gold for hero titles */
}

.page-latest-news__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    line-height: 1.2;
    color: #FFD700; /* Gold for main title */
}

.page-latest-news__hero-subtitle {
    font-size: 1.5em;
    margin-bottom: 40px;
    color: #f0f0f0; /* Off-white for subtitle */
}

.page-latest-news__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    font-size: 1.1em;
    cursor: pointer;
    border: none;
}

.page-latest-news__btn--primary {
    background-color: #FFD700;
    color: #1A2E44;
}

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

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

.page-latest-news__btn--secondary:hover {
    background-color: #2c4a6b;
    transform: translateY(-2px);
}

.page-latest-news__content-section {
    padding: 60px 0;
    background-color: #0f1a24;
}

.page-latest-news__grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.page-latest-news__main-article {
    background-color: #1A2E44;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-latest-news__section-title {
    font-size: 2.5em;
    color: #FFD700;
    margin-bottom: 30px;
    border-bottom: 2px solid #FFD700;
    padding-bottom: 10px;
}

.page-latest-news__article-subtitle {
    font-size: 1.8em;
    color: #f0f0f0;
    margin-top: 40px;
    margin-bottom: 20px;
}

.page-latest-news__main-article p {
    line-height: 1.8;
    margin-bottom: 15px;
    color: #e0e0e0;
}

.page-latest-news__image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 25px 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-latest-news__list {
    list-style: disc inside;
    margin-left: 20px;
    margin-bottom: 20px;
    color: #e0e0e0;
}

.page-latest-news__list li {
    margin-bottom: 10px;
    line-height: 1.6;
}

.page-latest-news__link {
    color: #FFD700;
    text-decoration: none;
    font-weight: bold;
}

.page-latest-news__link:hover {
    text-decoration: underline;
}

.page-latest-news__sidebar {
    background-color: #1A2E44;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-latest-news__sidebar-widget {
    margin-bottom: 40px;
}

.page-latest-news__widget-title {
    font-size: 1.8em;
    color: #FFD700;
    margin-bottom: 20px;
    border-bottom: 1px solid #FFD700;
    padding-bottom: 10px;
}

.page-latest-news__widget-list {
    list-style: none;
    padding: 0;
}

.page-latest-news__widget-list li {
    margin-bottom: 15px;
}

.page-latest-news__widget-link {
    color: #e0e0e0;
    text-decoration: none;
    display: block;
    padding: 8px 0;
    border-radius: 5px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.page-latest-news__widget-link:hover {
    background-color: #2c4a6b;
    color: #FFD700;
}

.page-latest-news__sidebar-cta {
    background-color: #0f1a24;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    border: 1px solid #FFD700;
}

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

.page-latest-news__cta-text {
    font-size: 1.1em;
    margin-bottom: 25px;
    color: #f0f0f0;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-latest-news__grid {
        grid-template-columns: 1fr;
    }

    .page-latest-news__hero-title {
        font-size: 2.8em;
    }

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

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

    .page-latest-news__article-subtitle {
        font-size: 1.5em;
    }
}

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

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

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

    .page-latest-news__main-article, .page-latest-news__sidebar {
        padding: 25px;
    }

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

    .page-latest-news__article-subtitle {
        font-size: 1.3em;
    }
}

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

    .page-latest-news__hero-title {
        font-size: 1.8em;
    }

    .page-latest-news__hero-subtitle {
        font-size: 0.9em;
    }

    .page-latest-news__btn {
        padding: 12px 20px;
        font-size: 1em;
    }

    .page-latest-news__main-article, .page-latest-news__sidebar {
        padding: 15px;
    }

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

    .page-latest-news__article-subtitle {
        font-size: 1.2em;
    }

    .page-latest-news__list {
        margin-left: 10px;
    }
}