.teacher-card {
    max-width: 320px;
    /* Можно менять по дизайну */
    margin: 0 auto;
    border: 1px solid #ddd;
    border-radius: 6px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    font-family: Arial, sans-serif;
}

.teacher-card__inner {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.teacher-card__photo {
    width: 100%;
    padding-top: 100%;
    /* квадратная область */
    position: relative;
    overflow: hidden;
    background: #f0f0f0;
}

.teacher-card__photo img.teacher-photo {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    /* чтобы фото не обрезалось, а вписывалось */
    object-position: center center;
    display: block;
}

.teacher-card__info {
    padding: 16px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

.teacher-card__name {
    margin: 0 0 8px;
    font-size: 1.25rem;
    font-weight: 700;
    color: #222;
}

.teacher-card__name a {
    color: #222;
    text-decoration: none;
    transition: color 0.3s ease;
}

.teacher-card__position {
    margin: 0 0 8px;
    font-size: 1rem;
    color: #555;
}

.teacher-card__degree {
    margin: 0 0 8px;
    font-size: 1rem;
    color: #555;
}


.teacher-card__experience {
    margin: 0;
    font-size: 0.9rem;
    color: #777;
}

.teacher-card__experience .label {
    font-weight: 600;
    margin-right: 4px;
}

/* Адаптивность для мобильных */
@media (max-width: 480px) {
    .teacher-card {
        max-width: 100%;
        border-radius: 0;
        box-shadow: none;
    }
}