.card__link .button{
    font-weight: 700;
    font-size: 15px;
    line-height: 24px;
}
.card__name{
    font-weight: 700;
    font-size: 17px;
    line-height: 24px;
}

.choose__doctors {
    align-items: stretch;
    gap: 32px 24px;
}

.choose__doctors .card {
    width: calc(25% - 18px);
    display: flex;
    flex-direction: column;
    min-height: 100%;
    padding: 28px 28px 30px;
    border-radius: 32px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 18px 45px rgba(226, 37, 84, 0.16), 0 10px 24px rgba(27, 27, 38, 0.1);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.choose__doctors .card:hover {
    transform: translateY(-10px) scale(1.025);
    box-shadow: 0 30px 80px rgba(226, 37, 84, 0.24), 0 18px 42px rgba(27, 27, 38, 0.16);
}

.choose__doctors .card__inner {
    width: min(100%, 300px);
    aspect-ratio: 1 / 1;
    height: auto;
    margin: 0 auto 24px;
    border-radius: 50%;
}

.choose__doctors .card__photo {
    display: block;
    width: 100%;
    height: 100%;
    padding-top: 0;
    margin: 0;
    border-radius: 50%;
    background-color: #2f3943;
    overflow: hidden;
}

.choose__doctors .card__photo picture,
.choose__doctors .card__photo img {
    display: block;
    width: 100%;
    height: 100%;
}

.choose__doctors .card__photo img {
    position: static !important;
    inset: auto !important;
    transform: none !important;
    object-fit: cover;
    object-position: top center;
}

.choose__doctors .card__link {
    left: 50%;
    bottom: -12px;
    transform: translateX(-50%);
    z-index: 2;
}

.choose__doctors .card__link .button {
    min-width: 138px;
    min-height: 44px;
    padding: 0 22px;
    border-radius: 999px;
    justify-content: center;
}

.choose__doctors .card__photo .arrow__pulse {
    display: none;
}

.choose__doctors .card__name {
    margin-bottom: 12px;
    font-size: 20px;
    line-height: 26px;
}

.choose__doctors .card__post {
    margin-bottom: 12px;
}

.choose__doctors .card__experience {
    margin-bottom: 12px;
}

.choose__doctors .card__description {
    line-height: 22px;
}

@media (max-width: 1180px) {
    .choose__doctors .card {
        width: calc(50% - 12px);
    }
}

@media (max-width: 768px) {
    .choose__doctors {
        gap: 20px;
    }

    .choose__doctors .card {
        width: 100%;
        padding: 24px;
        border-radius: 28px;
    }

    .choose__doctors .card__inner {
        width: min(100%, 260px);
        margin-bottom: 22px;
    }

    .choose__doctors .card__name {
        font-size: 19px;
        line-height: 25px;
    }
}
