/* ===== Стили для раздела новостей ===== */

/* Обертка каждой новости в списке */
.news-item {
    padding: 25px 0;
    border-bottom: 2px solid #f0f0f0;
    transition: background 0.2s;
}

.news-item:last-child {
    border-bottom: none;
}

.news-item:hover {
    background: #fafafa;
}

/* Заголовок новости в списке */
.news-item h2 {
    margin-top: 0;
    margin-bottom: 8px;
    font-size: 22px;
    font-weight: 600;
}

.news-item h2 a {
    color: #222;
    text-decoration: none;
    transition: color 0.2s;
}

.news-item h2 a:hover {
    color: #e31e24;
}

/* Дата новости */
.news-item .uk-text-meta {
    color: #999;
    font-size: 14px;
}

/* Картинка новости */
.news-item .news-image img {
    border-radius: 8px;
    transition: transform 0.3s ease;
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.news-item .news-image img:hover {
    transform: scale(1.03);
}

/* Текст новости */
.news-item .news-text {
    font-size: 15px;
    line-height: 1.6;
    color: #444;
}

/* Кнопка "Читать далее" */
.news-item .uk-button-text {
    color: #e31e24;
    font-weight: 500;
}

.news-item .uk-button-text:hover {
    color: #b0151a;
}

/* ===== Адаптация для мобильных ===== */
@media (max-width: 768px) {
    .news-item {
        padding: 15px 0;
    }
    
    .news-item h2 {
        font-size: 18px;
    }
    
    .news-item .news-image img {
        height: 150px;
    }
}

/* ===== Стили для отдельной новости ===== */
.news-full-image {
    border-radius: 12px;
    max-height: 500px;
    object-fit: cover;
    width: 100%;
}

.news-full-content {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
}

.news-full-content p {
    margin-bottom: 20px;
}

/* Большое изображение в полной новости */
.news-full-image {
    border-radius: 12px;
    max-height: 500px;
    object-fit: cover;
    width: 100%;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* Контент новости */
.news-full-content {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
}

.news-full-content p {
    margin-bottom: 20px;
}

.news-full-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 20px 0;
}

/* Адаптация для мобильных */
@media (max-width: 768px) {
    .news-full-image {
        max-height: 300px;
    }
    
    .news-full-content {
        font-size: 15px;
        line-height: 1.7;
    }
}

/* ===== Кнопка "Все новости" ===== */
.news-back-link {
    margin-top: 40px;
    margin-bottom: 80px; /* Увеличил отступ снизу */
    padding-top: 20px;
    border-top: 1px solid #e5e5e5;
}

.news-back-link .uk-button-primary {
    background-color: #e31e24;
    color: #fff;
    padding: 10px 30px;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
    text-decoration: none;
    border: none;
}

.news-back-link .uk-button-primary:hover {
    background-color: #b0151a;
    transform: translateX(-5px);
    box-shadow: 0 4px 15px rgba(227, 30, 36, 0.3);
}

/* ===== Картинка в полной новости ===== */
.news-full-image {
    max-height: 500px;
    object-fit: cover;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* ===== Адаптация для мобильных ===== */
@media (max-width: 768px) {
    .news-back-link {
        margin-top: 30px;
        margin-bottom: 60px;
    }
    
    .news-back-link .uk-button-primary {
        padding: 8px 20px;
        font-size: 14px;
        width: 100%;
        text-align: center;
    }
    
    .news-full-image {
        max-height: 300px;
    }
}

