/* Teachers Section - v2.1.0 */
.teachers-section {
    padding: 80px 0;
    background: #ffffff;
    border-bottom: 1px solid #e2e8f0;
    overflow: hidden;
}

.teachers-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 120px;
}

/* Fade-in Animation */
.teachers-section .fade-in-element {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.teachers-section .fade-in-element.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Title */
.teachers-title {
    font-size: 28px;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 40px;
    text-align: left;
    letter-spacing: -0.5px;
}

/* Teachers Grid */
.teachers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

/* Teacher Item */
.teachers-item {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Video Player (same pattern as reviews) */
.teachers-video {
    width: 100%;
    aspect-ratio: 9/16;
    background: #000000;
    border-radius: 8px;
    border: 2px solid #e2e8f0;
    overflow: hidden;
    object-fit: contain;
}

/* Teacher Name */
.teachers-name {
    font-size: 20px;
    font-weight: 500;
    color: #0f172a;
    text-align: center;
    margin: 0;
}

/* Teacher Role */
.teachers-role {
    font-size: 14px;
    color: #64748b;
    margin: 4px 0 0 0;
}

/* Responsive */
@media (max-width: 1024px) {
    .teachers-container {
        padding: 0 60px;
    }

    .teachers-grid {
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .teachers-section {
        padding: 60px 0;
    }

    .teachers-container {
        padding: 0 24px;
    }

    .teachers-title {
        font-size: 28px;
        margin-bottom: 32px;
    }

    .teachers-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .teachers-item:last-child {
        grid-column: 1 / -1;
        max-width: 280px;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .teachers-title {
        font-size: 24px;
    }

    .teachers-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .teachers-item:last-child {
        max-width: none;
    }
}
