.doctor-card-v3-widget {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: transparent;
    padding: 15px 0;
    justify-content: space-between;
    gap: 15px;
}


.doctor-card-v3-image img {
    object-fit: cover;
    /* border-radius: 20px; */
    height: 100%;
    aspect-ratio: 1;
    width: 100%;
    object-position: top;
    border-radius: 20px;
    border: 1px solid #e0e0e0;
}




.doctor-card-v3-content-top{
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.doctor-card-v3-name {
    font-size: 18px;
    font-family: 'EuropaBold';
    color: #464646;
    margin: 0px 0 0;
}

.doctor-card-v3-title {
    font-family: 'EuropaRegular';
    font-size: 14px;
    font-weight: 600;
    color: #464646;
    margin: 5px 0 5px;
    position: relative;
}
.doctor-card-v3-description {
    font-family: 'EuropaRegular';
    font-size: 14px;
    color: #464646;
}

a.doctor-card-v3-button {
    font-size: 14px;
    color: #1f2e4d;
    font-family: 'EuropaBold';
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0;
    gap: 10px;
    text-transform: uppercase;
}

a.doctor-card-v3-button:hover {
    background-color: #1f2e4d;
    color: #fff;
}

/* .doctor-card-v3-title:after {
    content: '';
    display: block;
    width: 100%;
    height: 1px;
    background-color: #1f2e4d;
    margin-top: 10px;
    position: absolute;
    bottom: 8.3px;
    left: 0;
} */

.doctor-card-v3-title span {
    background-color: transparent;
    z-index: 99;
    position: relative;
    padding-right: 5px;
}

.doctor-card-v3-image {
    position: relative;
}

span.doctor-card-v3-image-label {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    padding: 5px 10px;
    width: max-content;
    border-radius: 20px;
}