/* Даты смен */
.section-header {
    text-align: center;
    margin-bottom: 40px;
}

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

.section-title span {
    color: var(--blue, #1a56db);
}

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

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

.shift-card {
    background: #fff;
    border-radius: 18px;
    padding: 22px 18px;
    text-align: center;
    border: 2px solid var(--border, #e5e7eb);
    transition: all 0.3s;
    cursor: pointer;
}

.shift-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(245, 158, 11, 0.15);
}

.shift-num {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 800;
    color: #fff;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
}

.shift-dates {
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    font-weight: 800;
    color: var(--dark, #1f2937);
    margin-bottom: 4px;
}

.shift-label {
    font-size: 12px;
    color: var(--muted, #6b7280);
    font-weight: 600;
}

/* Responsive */
@media (max-width: 1024px) {
    .shifts-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .section-title {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .shifts-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    
    .shift-card {
        padding: 18px 14px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .section-subtitle {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .shifts-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .shift-card {
        display: flex;
        align-items: center;
        text-align: left;
        gap: 16px;
        padding: 16px 20px;
    }
    
    .shift-num {
        margin: 0;
        width: 44px;
        height: 44px;
        font-size: 18px;
    }
    
    .shift-info {
        flex: 1;
    }
    
    .shift-dates {
        font-size: 16px;
        margin-bottom: 2px;
    }
    
    .shift-label {
        font-size: 11px;
    }
}

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

.aos-delay-1 { transition-delay: 0.1s; }
.aos-delay-2 { transition-delay: 0.2s; }
.aos-delay-3 { transition-delay: 0.3s; }