/* Instructors */
.instructors {
    padding: 6rem 0;
}

.instructors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.instructor-card {
    background: var(--bg-white);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
    border: 2px solid transparent;
}

.instructor-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.instructor-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.instructor-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.instructor-social {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
}

.instructor-social a {
    width: 40px;
    height: 40px;
    background: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    transition: var(--transition);
}

.instructor-social a:hover {
    background: var(--primary-color);
    color: var(--bg-white);
}

.instructor-info {
    padding: 2rem;
}

.instructor-info h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.instructor-title {
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 1rem;
}

.instructor-description {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.instructor-stats {
    display: flex;
    justify-content: space-around;
    gap: 1rem;
}

.instructor-stats .stat {
    text-align: center;
}

.instructor-stats .stat-number {
    display: block;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
}

.instructor-stats .stat-label {
    font-size: 0.75rem;
    color: var(--text-light);
}
