.kffc-instructors {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 30px;
}

.kffc-instructor {
    text-align: center;
}

.kffc-instructor-photo {
    margin-bottom: 20px;
}

.kffc-instructor-photo img {
    display: block;
    width: 100%;
    max-width: 350px;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 50%;
    margin: 0 auto;
}

.kffc-instructor-name {
    margin: 0 0 12px;
    font-size: 1.5rem;
}

.kffc-instructor-bio {
    line-height: 1.6;
}

.kffc-instructor-bio p:last-child {
    margin-bottom: 0;
}

@media (max-width: 900px) {
    .kffc-instructors {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 600px) {
    .kffc-instructors {
        grid-template-columns: 1fr;
    }
} 