/* ===== ОТЧЕТЫ В СТИЛЕ АККОРДЕОНА ===== */

.reports-header {
    text-align: center;
    margin: 60px 0 50px;
}

.reports-archive-title {
    font-size: 42px;
    font-weight: 700;
    color: #80001C;
    font-family: 'MontserratBold', sans-serif;
    margin-bottom: 16px;
}

.reports-archive-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #F3474E, #E06878);
    margin: 15px auto 0;
    border-radius: 2px;
}

.reports-archive-subtitle {
    font-size: 18px;
    color: #A44056;
    font-family: 'MontserratRegular', sans-serif;
    max-width: 700px;
    margin: 0 auto;
}

/* Аккордеон */
.reports-accordion {
    max-width: 800px;
    margin: 0 auto 80px;
}

.accordion-item {
    background: #fff;
    border-radius: 20px;
    margin-bottom: 16px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(224, 104, 120, 0.1);
    transition: all 0.3s ease;
}

.accordion-item:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.accordion-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 30px;
    cursor: pointer;
    background: #fff;
    transition: background 0.3s ease;
}

.accordion-header:hover {
    background: #FFF4F4;
}

.accordion-year {
    font-size: 24px;
    font-weight: 700;
    color: #80001C;
    font-family: 'MontserratBold', sans-serif;
}

.accordion-count {
    font-size: 14px;
    color: #E06878;
    font-family: 'MontserratMedium', sans-serif;
    background: rgba(224, 104, 120, 0.1);
    padding: 4px 12px;
    border-radius: 50px;
}

.accordion-icon {
    color: #F3474E;
    transition: transform 0.3s ease;
}

.accordion-item.active .accordion-icon {
    transform: rotate(180deg);
}

.accordion-body {
    padding: 0 20px 20px 30px;
    border-top: 1px solid rgba(224, 104, 120, 0.1);
}

/* Документы */
.document-item {
    margin-bottom: 12px;
}

.document-link {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 16px;
    background: #fff;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(224, 104, 120, 0.08);
}

.document-link:hover {
    background: #FFF4F4;
    transform: translateX(5px);
    border-color: rgba(224, 104, 120, 0.3);
}

.document-icon {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
}

.document-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.document-title {
    font-family: 'MontserratMedium', sans-serif;
    font-size: 15px;
    color: #80001C;
}

.document-date {
    font-family: 'MontserratRegular', sans-serif;
    font-size: 11px;
    color: #E06878;
}

.document-download {
    color: #F3474E;
    opacity: 0.6;
    transition: all 0.3s ease;
}

.document-link:hover .document-download {
    opacity: 1;
    transform: translateX(3px);
}

/* Пагинация (если нужно) */
.reports-pagination {
    text-align: center;
    margin-top: 40px;
    padding: 20px 0;
}

.reports-pagination .page-numbers {
    display: inline-block;
    padding: 8px 14px;
    margin: 0 4px;
    font-size: 14px;
    font-family: 'MontserratMedium', sans-serif;
    color: #80001C;
    background: #fff;
    border: 1px solid rgba(224, 104, 120, 0.2);
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.reports-pagination .page-numbers.current {
    background: #F3474E;
    color: #fff;
    border-color: #F3474E;
}

/* Адаптация */
@media (max-width: 768px) {
    .reports-archive-title {
        font-size: 32px;
    }
    
    .reports-header {
        margin: 40px 0 30px;
    }
    
    .accordion-header {
        padding: 15px 20px;
    }
    
    .accordion-year {
        font-size: 20px;
    }
    
    .accordion-body {
        padding: 0 15px 15px 20px;
    }
    
    .document-link {
        padding: 10px 12px;
    }
    
    .document-title {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .accordion-header {
        flex-wrap: wrap;
        gap: 8px;
    }
    
    .document-link {
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .document-info {
        width: calc(100% - 50px);
    }
}