/* Статистика наград */
.awards-stats {
    margin-bottom: 60px;
}

.awards-stats .stats-card {
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    padding: 40px 20px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    text-align: center;
}

.awards-stats .stat-item {
    padding: 20px 10px;
    transition: var(--transition);
    border-bottom: 3px solid transparent;
}

.awards-stats .stat-item:hover {
    transform: translateY(-5px);
    border-bottom-color: var(--primary-color);
}

.awards-stats .stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.awards-stats .stat-label {
    font-size: 1.1rem;
    color: var(--text-color);
    font-weight: 600;
    line-height: 1.4;
}

/* Фильтры по годам */
.awards-filters {
    background: white;
    padding: 25px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    margin-bottom: 40px;
}

.filters-title h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.year-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.year-btn {
    background: var(--light-color);
    color: var(--text-color);
    border: none;
    padding: 8px 16px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: var(--transition);
}

.year-btn:hover,
.year-btn.active {
    background: var(--primary-color);
    color: white;
}

/* Лента наград */
.main-awards {
    margin-bottom: 60px;
}

.awards-timeline {
    position: relative;
    max-width: 800px;
    margin: 40px auto;
}

.awards-timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--light-color);
    z-index: 1;
}

.timeline-item {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    position: relative;
}

.timeline-date {
    min-width: 60px;
    text-align: center;
    z-index: 2;
}

.date-year {
    background: var(--primary-color);
    color: white;
    padding: 10px;
    border-radius: var(--border-radius);
    font-weight: bold;
    display: block;
}

.timeline-content {
    flex-grow: 1;
}

.award-card {
    background: white;
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    display: flex;
    gap: 20px;
}

.award-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.award-card.major {
    border: 2px solid var(--primary-color);
}

.award-icon {
    font-size: 40px;
    color: var(--primary-color);
    flex-shrink: 0;
    margin-top: 5px;
}

.award-content {
    flex-grow: 1;
}

.award-content h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--dark-color);
}

.award-meta {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 15px;
    color: #666;
    font-size: 0.95rem;
}

.award-description {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.award-recipients {
    font-size: 0.9rem;
}

.recipient-label {
    font-weight: 600;
    color: var(--primary-color);
}

/* Благодарности */
.gratitude-section {
    margin-bottom: 60px;
}

.gratitude-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.gratitude-card {
    background: white;
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
}

.gratitude-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.gratitude-header {
    display: flex;
    gap: 20px;
    align-items: center;
    margin-bottom: 20px;
}

.gratitude-logo {
    font-size: 40px;
    color: var(--primary-color);
    flex-shrink: 0;
}

.gratitude-header h3 {
    font-size: 1.2rem;
    color: var(--dark-color);
    line-height: 1.4;
}

.gratitude-text {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
    font-style: italic;
    border-left: 3px solid var(--light-color);
    padding-left: 15px;
}

.gratitude-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #999;
    font-size: 0.9rem;
    flex-wrap: wrap;
    gap: 10px;
}

/* Сертификаты и дипломы */
.certificates-section {
    margin-bottom: 60px;
}

.certificates-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.certificate-item {
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
}

.certificate-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.certificate-preview {
    height: 200px;
    overflow: hidden;
}

.certificate-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.certificate-item:hover .certificate-preview img {
    transform: scale(1.05);
}

.certificate-info {
    padding: 25px;
}

.certificate-info h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--dark-color);
}

.certificate-info p {
    color: #666;
    margin-bottom: 15px;
    line-height: 1.6;
    font-size: 0.95rem;
}

.certificate-date {
    color: #999;
    font-size: 0.9rem;
    font-weight: 600;
}

/* Responsive для awards.html */
@media (max-width: 1100px) {
    .awards-stats .stats-card {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 900px) {
    .timeline-item {
        flex-direction: column;
        gap: 15px;
    }
    
    .awards-timeline::before {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .timeline-date {
        width: 100%;
        text-align: left;
    }
    
    .date-year {
        display: inline-block;
    }
    
    .award-card {
        flex-direction: column;
        text-align: center;
    }
    
    .award-icon {
        margin: 0 auto 15px;
    }
}

@media (max-width: 768px) {
    .awards-stats .stats-card {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .awards-stats .stat-number {
        font-size: 3rem;
    }
    
    .gratitude-cards,
    .certificates-gallery {
        grid-template-columns: 1fr;
    }
    
    .gratitude-header {
        flex-direction: column;
        text-align: center;
    }
    
    .gratitude-logo {
        margin-bottom: 15px;
    }
    
    .gratitude-text {
        border-left: none;
        padding-left: 0;
        border-top: 3px solid var(--light-color);
        padding-top: 15px;
    }
}

@media (max-width: 480px) {
    .year-filters {
        justify-content: center;
    }
    
    .awards-stats .stat-number {
        font-size: 2.5rem;
    }
    
    .awards-stats .stat-label {
        font-size: 1rem;
    }
    
    .award-meta {
        flex-direction: column;
    }
    
    .gratitude-meta {
        flex-direction: column;
        align-items: flex-start;
    }
}