.content-description {
    font-size: 16px;
    line-height: 29px;
    color: var(--text);
    margin-block: 40px 51px;
    padding-inline: 32px;
    font-weight: 500;
}
.services-cards {
    padding-left: 32px;
    margin-bottom: 162px;
    display: flex;
    flex-flow: row wrap;
    gap: 32px;
}
.service-card {
    max-width: 380px;
    width: 100%;
    width: minmax(100%, 380px);
    display: block;
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 10px 10px rgba(0,0,0,0.03);
    position: relative;
    border: 1px solid var(--gray);
}
.service-card:hover {
  text-decoration: none;
}

.service-card .card-img {
    height: 210px;
}
.service-card .card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-card .card-content {
    padding: 26px;
    position: relative;
}

.service-card .clinic {
    text-align: center;
    color: var(--primary);
    font-size: 16px;
    line-height: 21px;
    margin-bottom: 6px;
}

.service-card .title {
    text-align: center;
    font-weight: bold;
    font-size: 19px;
    text-decoration: underline!important;
    margin-bottom: 32px;
    display: block;
    color: var(--text)!important;
}

.service-card .location {
    display: flex;
    gap: 6px;
    align-items: center;
    color: #555;
    font-size: 14px;
    margin-top: 10px;
    justify-content: center;
}

.service-card .arrow-btn {
    position: absolute;
    bottom: 16px;
    right: 16px;
    width: 40px;
    height: 36px;
    background: #C8E6E9;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}