/* Переменные */
:root {
    --primary-color: #2c3e50;
    --accent-color: #3498db;
    --white: #ffffff;
    --danger-color: #e74c3c;
    --light-bg: #f8f9fa;
    --text-color: #2c3e50;
    --border-radius: 8px;
    --box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    --transition: all 0.3s ease;
}

/* Основные стили новостей */
.news_section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

#NewsHeader {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 40px;
    padding: 20px 0;
}

#NewsHeader i {
    margin-right: 15px;
    color: var(--accent-color);
}

/* Карточка новости */
.news {
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: 16px 20px;
    margin-bottom: 20px;
    transition: var(--transition);
    border: 1px solid #e9ecef;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.news:hover {
    box-shadow: 0 4px 20px rgba(0,0,0,0.12);
    transform: translateY(-2px);
}

/* Заголовок новости */
.newsName {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
    line-height: 1.3;
    border-bottom: 2px solid var(--accent-color);
    padding-bottom: 15px;
}

/* Галерея изображений */
.images_news {
    margin: 20px 0;
}

.news-gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 15px;
    justify-content: center;
}

.img_p {
    width: 100%;
    max-width: 350px;
    height: 120px;
    object-fit: cover;
    border-radius: var(--border-radius);
    transition: var(--transition);
    box-shadow: var(--box-shadow);
}

.img_p:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

/* Текст новости */
.news_text {
    margin: 20px 0;
}

.text {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-color);
    margin-bottom: 15px;
    font-weight: 400;
}

.full_text {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-color);
    margin-bottom: 15px;
    font-weight: 400;
}

/* Футер новости */
.news-footer {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid #e9ecef;
}

.newsDate {
    font-size: 14px;
    color: #6c757d;
    margin: 0;
    display: flex;
    align-items: center;
    font-weight: 500;
}

.newsDate i {
    margin-right: 8px;
    color: var(--accent-color);
}

/* Админ панель */
#buttons-link-section {
    background: var(--light-bg);
    padding: 30px 0;
    margin-bottom: 30px;
}

#buttons-link-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.button-link-block {
    text-align: center;
}

.button-link {
    background: linear-gradient(135deg, var(--accent-color) 0%, #2980b9 100%);
    color: var(--white);
    border: none;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 500;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--box-shadow);
}

.button-link:hover {
    background: linear-gradient(135deg, #2980b9 0%, #1f5f8b 100%);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(52, 152, 219, 0.3);
}

/* Адаптивность */
@media (max-width: 768px) {
    .news_section {
        padding: 0 10px;
    }

    #NewsHeader {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .news {
        padding: 20px;
        margin-bottom: 20px;
}

    .newsName {
        font-size: 20px;
        margin-bottom: 15px;
    }

    .news-gallery {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .img_p {
        height: 150px;
    }
    
    .text, .full_text {
        font-size: 14px;
    }

    .newsDate {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    #NewsHeader {
        font-size: 24px;
    }
    
    .news {
        padding: 15px;
    }

    .newsName {
        font-size: 18px;
    }

    .img_p {
        height: 120px;
    }
}