.doctor-card {
    display: block;
    position: relative;
    border-radius: 16px;
    width: 180px;
    height: 100%;
    overflow: hidden;
    transition: opacity ease .5s;
    isolation: isolate;
}

.doctor-card:hover {
    opacity: .85;
}

.doctor-card__blur {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    left: -50%;
    right: -50%;
    top: -50.38%;
    bottom: -51.64%;
    background-image: linear-gradient(0deg, rgba(0, 0, 0, 0.24), rgba(0, 0, 0, 0.24));
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;    
    z-index: -1;
    filter: blur(100px);
    transform: translateZ(0);
}

.doctor-card__img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 16px 16px 0 0;
}

.doctor-card__desc {
    padding: 16px;
    border-bottom-left-radius: 16px;
    border-bottom-right-radius: 16px;
}


.doctor-card__name {
    font-weight: 500;
    font-size: 15px;
    line-height: 1.2;
    color: #EFF0F0;
    margin-bottom: 8px;
}

.doctor-card__desc_dark .doctor-card__name{
    color: #000;
}

.doctor-card__spec {
    font-weight: 400;
    font-size: 11px;
    line-height: 1.36;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.7);
}

.doctor-card__desc_dark .doctor-card__spec{
    color: #000;
}

.doctor-card__rank {
    display: none;
}

@media screen and (min-width: 1280px) {

    .doctor-card {
        width: 250px;
    }

    .doctor-card__desc {
        padding: 20px;
    }

    .doctor-card__name {
        font-size: 17px;
        line-height: 1.06;
        margin-bottom: 4px;
    }

    .doctor-card__spec {
        font-size: 13px;
        line-height: 1.23;
    }

    .doctor-card__rank {
        display: block;
        margin-top: 10px;
        margin-bottom: 0;
        padding-top: 10px;
        border-top: 1px solid rgba(255, 255, 255, 0.24);
        font-weight: 400;
        font-size: 13px;
        line-height: 1.23;
        color: #fff;
    }
}