/* =========================================
   СТРАНИЦА ОДИНОЧНОЙ НОВОСТИ
   ========================================= */

.news-article {
    margin-bottom: 100px;
}

/* --- ШАПКА НОВОСТИ (Hero Image) --- */
.article-header {
    position: relative;
    width: 100%;
    height: 60vh; /* Занимает 60% высоты экрана */
    min-height: 400px;
    margin-bottom: 60px;
    overflow: hidden;
    border-radius: 24px;
}

.article-cover-box {
    position: relative;
    width: 100%;
    height: 100%;
}

.article-cover-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.article-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    /* Затемнение снизу вверх для читаемости заголовка */
    background: linear-gradient(to top, rgba(0, 60, 130, 0.9) 0%, rgba(0,0,0,0) 60%);
    z-index: 1;
}

.article-title-container {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    padding-bottom: 50px;
    color: #fff;
}

.article-date {
    display: inline-block;
    background: #00a0c8;
    padding: 6px 15px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.article-full-title {
    font-family: 'Gotham', sans-serif;
    font-size: 3rem;
    line-height: 1.1;
    margin: 0;
    text-transform: uppercase;
    max-width: 900px;
}

/* --- ТЕЛО СТАТЬИ --- */
.article-body-container {
    max-width: 800px !important; /* Узкая колонка для комфортного чтения текста */
}

.article-content {
    font-size: 1.25rem; /* Крупный шрифт */
    line-height: 1.8;
    color: #333;
}

.article-content p {
    margin-bottom: 25px;
}

/* --- ПОДВАЛ СТАТЬИ --- */
.article-footer {
    margin-top: 60px;
    padding-top: 30px;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #003c82;
    text-decoration: none;
    font-family: 'Gotham', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    transition: color 0.3s;
}

.back-link:hover {
    color: #00a0c8;
}

/* --- АДАПТИВ --- */
@media (max-width: 900px) {
    .article-header {
        height: 50vh;
        border-radius: 0; /* На мобилках картинка на весь экран смотрится лучше без скруглений */
        margin-left: -20px;
        margin-right: -20px;
        width: calc(100% + 40px);
    }

    .article-full-title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .article-full-title {
        font-size: 1.5rem;
    }

    .article-content {
        font-size: 1.1rem;
    }
}