/* Распорядок дня в лагере */
.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 12px;
}

.section-title span {
    color: #2563eb;
}

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

.schedule-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.schedule-block {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    border: 2px solid #e5e7eb;
    transition: all 0.3s ease;
}

.schedule-block:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.schedule-block-header {
    padding: 14px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.schedule-block-header i {
    font-size: 16px;
    color: #fff;
}

.schedule-block-header span {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 800;
    color: #fff;
}

.schedule-items {
    padding: 14px 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.schedule-item {
    display: flex;
    align-items: baseline;
    gap: 10px;
    font-size: 13px;
    color: #4b5563;
    line-height: 1.5;
}

.schedule-time {
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 800;
    color: #2563eb;
    white-space: nowrap;
    flex-shrink: 0;
    min-width: 80px;
}

/* Responsive */
@media (max-width: 1024px) {
    .section-title {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .schedule-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .section-subtitle {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .schedule-block {
        border-radius: 14px;
    }
    
    .schedule-block-header {
        padding: 12px 16px;
    }
    
    .schedule-block-header span {
        font-size: 13px;
    }
    
    .schedule-items {
        padding: 12px 16px;
    }
    
    .schedule-item {
        font-size: 12px;
        flex-wrap: wrap;
    }
    
    .schedule-time {
        font-size: 11px;
        min-width: 70px;
    }
}

/* Анимации AOS */
.aos {
    transition: all 0.6s ease;
}

.aos-delay-1 {
    transition-delay: 0.15s;
}