.amis-training {
    padding: 40px 20px;
    margin-top: 20px;
}

.amis-training h2 {
    text-align: center;
    color: #1f2937;
    margin-bottom: 10px;
}

.amis-training p {
    text-align: center;
    color: #6b7280;
    max-width: 700px;
    margin: 0 auto 30px;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
}

.video-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.video-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.video-card iframe {
    width: 100%;
    aspect-ratio: 16/9;
    border: none;
}

.video-card h4 {
    padding: 15px;
    margin: 0;
    text-align: center;
    font-size: 15px;
    font-weight: 600;
    color: #374151;
    min-height: 60px;
}