.teachers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

@media (max-width: 1024px) {
    .teachers-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .teachers-grid {
        grid-template-columns: 1fr;
    }
}

.teacher-card {
    background: #fff;
    padding: 1.5rem;
    border-left: 4px solid var(--gold);
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    align-self: start;
}

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

.teacher-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 1rem;
    object-position: top;
}

.teacher-card h3 {
    color: var(--dark);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.teacher-card .teacher-title {
    color: var(--accent);
    font-weight: 500;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
}

.teacher-card p {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
}
