.doctor-card-widget {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 20px;
    border: 2px solid #eee;
    border-radius: 20px;
    width: 100%;
    height: 100%;
}


.doctor-card-image img {
    object-fit: cover;
    border-radius: 20px;
    height: auto;
    aspect-ratio: 1;
    width: 100%;
    object-position: top;
}

.doctor-card-content {
    background: #f7f7f7;
    padding: 15px;
    border-radius: 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.doctor-card-name {
    font-size: 16px;
    font-family: 'EuropaBold';
    color: #1f2e4d;
    margin: 15px 0 0;
}

.doctor-card-title {
    font-family: 'EuropaRegular';
    font-size: 14px;
    color: #1f2e4d;
    margin: 5px 0 5px;
    position: relative;
}

.doctor-card-description {
    font-family: 'EuropaRegular';
    font-size: 14px;
    color: #464646;
}

a.doctor-card-button {
    font-size: 12px;
    color: #1f2e4d;
    font-family: 'EuropaBold';
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    border: 2px solid #1f2e4d;
    padding: 15px;
    border-radius: 26px;
    gap:10px;
}

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

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

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