.doctor-card-f5846edc {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    position: relative;
    transition: all 0.3s ease;
}

.doctor-card-image-wrap-f5846edc {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.doctor-card-image-wrap-f5846edc img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.5s ease;
}

.doctor-card-f5846edc:hover .doctor-card-image-wrap-f5846edc img {
    transform: scale(1.05);
}

.doctor-card-image-overlay-f5846edc {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.doctor-card-content-f5846edc {
    flex-grow: 1;
    position: relative;
    z-index: 2;
}

.doctor-card-name-f5846edc {
    margin-top: 0;
    font-weight: 600;
}

.doctor-card-specialization-f5846edc {
    font-weight: 500;
}

.doctor-card-description-f5846edc {
    margin-bottom: 0;
}