/* ===== СТИЛИ ДЛЯ СТАТЕЙ КАТЕГОРИИ "БЛАГОТВОРИТЕЛЬНОСТЬ" ===== */

.article-page {
    max-width: 900px;
    margin: 0 auto;
}

.article-hero {
    background: linear-gradient(135deg, #EC4899 0%, #BE185D 100%);
    color: white;
    border-radius: 25px;
    padding: 50px 40px;
    margin-bottom: 40px;
    box-shadow: 0 20px 60px rgba(236, 72, 153, 0.4);
    text-align: center;
}

.article-category-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

.article-main-title {
    font-size: 42px;
    font-weight: bold;
    line-height: 1.3;
    margin: 0 0 20px 0;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.article-meta-info {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    opacity: 0.95;
}

.article-body {
    background: white;
    border-radius: 25px;
    padding: 50px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    margin-bottom: 40px;
}

.article-content {
    font-size: 18px;
    line-height: 1.9;
    color: #374151;
}

.article-content p {
    margin: 0 0 25px 0;
}

.article-content p:last-child {
    margin-bottom: 0;
}

.article-content h2 {
    font-size: 28px;
    font-weight: bold;
    color: #1F2937;
    margin: 40px 0 20px 0;
    padding-bottom: 10px;
    border-bottom: 3px solid #EC4899;
}

.article-content h3 {
    font-size: 22px;
    font-weight: 600;
    color: #374151;
    margin: 30px 0 15px 0;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #8B5CF6 0%, #6D28D9 100%);
    color: white;
    padding: 14px 28px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(139, 92, 246, 0.3);
}

.back-link:hover {
    transform: translateX(-5px);
    box-shadow: 0 8px 30px rgba(139, 92, 246, 0.4);
}

/* Адаптивность */
@media screen and (max-width: 768px) {
    .article-hero {
        padding: 35px 25px;
    }
    
    .article-main-title {
        font-size: 32px;
    }
    
    .article-body {
        padding: 30px 25px;
    }
    
    .article-content {
        font-size: 16px;
    }
}

@media screen and (max-width: 480px) {
    .article-main-title {
        font-size: 26px;
    }
    
    .article-body {
        padding: 25px 20px;
    }
    
    .article-meta-info {
        flex-direction: column;
        gap: 15px;
    }
}
