/* ===== ГЛАВНЫЙ ФАЙЛ КОМПОНЕНТОВ ===== */

/* Импортируем все компоненты */
@import url('./components/ui.css');
@import url('./components/layout.css');
@import url('./components/content.css');
@import url('./components/sidebar.css');

/* ===== ОБЩИЕ СТИЛИ ДЛЯ СТРАНИЦ ===== */

/* Основные стили страницы */
.page {
    padding: 2rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    min-height: 100vh;
}

/* Заголовки секций */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #6c757d;
    max-width: 600px;
    margin: 0 auto;
}

/* Списки статей */
.articles-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/* Мобильная адаптация */
@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
    
    .page {
        padding: 0.5rem 0 !important;
    }
}

@media (max-width: 576px) {
    .section-title {
        font-size: 1.75rem;
    }
}
