
.article-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    border-radius: 8px;
}

/* Заголовок статьи */
.article-header {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 2px solid #cc7e33;
}

.article-title {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 10px;
    font-weight: 700;
}

.article-meta {
    color: #cc7e33;
    font-size: 1.1rem;
    font-weight: 500;
}

/* Основной контент */
.article-content {
    font-size: 1.1rem;
}

/* Введение */
.intro-section {
    margin-bottom: 40px;
}

.lead-text {
    font-size: 1.2rem;
    color: #555;
    text-align: justify;
    line-height: 1.8;
}

/* Секции контента */
.content-section {
    margin-bottom: 50px;
}

.section-title {
    font-size: 1.8rem;
    color: #2c3e50;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #e9ecef;
}

.accent-title {
    color: #cc7e33;
    border-bottom-color: #cc7e33;
}

/* Блоки особенностей */
.feature-block {
    margin-bottom: 25px;
    padding: 20px;
    background: #f8f9fa;
    border-left: 4px solid #cc7e33;
    border-radius: 4px;
}

.feature-title {
    color: #cc7e33;
    font-size: 1.3rem;
    margin-bottom: 10px;
    font-weight: 600;
}

/* Блок уведомления */
.notice-block {
    background: #fff3e0;
    border: 1px solid #cc7e33;
    border-radius: 6px;
    padding: 20px;
    margin-top: 25px;
}

.notice-block p {
    margin: 0;
    color: #e65100;
}

/* Типы вагонов */
.wagon-type {
    margin-bottom: 30px;
    padding: 25px;
    background: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #e9ecef;
}

.wagon-title {
    color: #cc7e33;
    font-size: 1.4rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.wagon-details p {
    margin-bottom: 10px;
}

.wagon-details strong {
    color: #2c3e50;
}

/* Список специализированных вагонов */
.special-list {
    list-style: none;
    padding-left: 0;
}

.special-list li {
    padding: 8px 0;
    border-bottom: 1px solid #e9ecef;
}

.special-list li:last-child {
    border-bottom: none;
}

.special-list strong {
    color: #cc7e33;
}

/* Критерии выбора */
.criteria-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 25px;
}

.criterion {
    padding: 20px;
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 6px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.criterion:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(204, 126, 51, 0.1);
}

.criterion-title {
    color: #cc7e33;
    font-size: 1.2rem;
    margin-bottom: 10px;
    font-weight: 600;
}

/* Заключение */
.conclusion-section {
    margin-top: 50px;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 8px;
}

.cta-block {
    margin-top: 25px;
    padding: 25px;
    background: white;
    border: 2px solid #cc7e33;
    border-radius: 8px;
}

.cta-block p {
    margin-bottom: 15px;
}

.cta-block strong {
    color: #cc7e33;
    font-size: 1.2rem;
}

/* Адаптивность */
@media (max-width: 768px) {
    .article-container {
        padding: 15px;
        margin: 10px;
    }
    
    .article-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .criteria-grid {
        grid-template-columns: 1fr;
    }
    
    .wagon-type {
        padding: 15px;
    }
    
    .feature-block {
        padding: 15px;
    }
}

@media (max-width: 480px) {
    .article-title {
        font-size: 1.7rem;
    }
    
    .section-title {
        font-size: 1.3rem;
    }
    
    .article-content {
        font-size: 1rem;
    }
}