.teachers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, 280px);
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
}

.teacher-card {
    text-align: center;
    background: var(--white);
    border-radius: 12px;
    padding: 1.25rem;
    box-shadow: 0 4px 16px var(--primary-shadow);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    width: 100%;
    max-width: 280px;
}

.teacher-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.teacher-image {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
    margin: 0 auto 1rem;
}

.teacher-info a {
    text-decoration: none;
    color: var(--dark-color);
}

.teacher-info a:hover {
    color: var(--primary-color);
}

.teacher-name {
    margin: 0 0 0.35rem;
    font-size: 1.125rem;
    color: var(--primary-color);
}

.job-title {
    margin: 0;
    color: var(--gray-color);
    font-size: 0.9rem;
    line-height: 1.55;
    letter-spacing: 0.01em;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.rank-title {
    margin: 0 0 1.5rem;
    text-align: center;
}

.teachers-rank-section .rank-title {
    padding-top: 0;
}
