.services {
    margin-bottom: 70px;
    margin-top: 44px;
}
.services__title {
    font-weight: 600;
    font-size: 52px;
    line-height: 120%;
    letter-spacing: 0%;
    text-transform: uppercase;
    color: #28314d;
}
.services__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 486px;
    background: linear-gradient(180deg, #c4e2ff 0%, rgba(255, 255, 255, 0) 100%);
    z-index: -1;
}

.services__category {
    column-count: 4;
    column-gap: 10px;
}
.services__category-inner {
    background: #eef4f9cc;
    border-radius: 20px;
    padding: 20px 30px;
    break-inside: avoid;
    margin-bottom: 10px;
    display: inline-block;
    width: 100%;
}

.services__category-header {
    display: none;
}
.services__category-content {
    display: block;
    margin-top: 9px;
}
.services__category-title {
    font-weight: 600;
    font-size: 20px;
    line-height: 170%;
    letter-spacing: 0%;
    text-transform: uppercase;
    margin-bottom: 0;
}
.services__category-title-link {
    color: #38393b;
    text-decoration: none;
}
.services__category-meta {
    font-weight: 500;
    font-size: 14px;
    line-height: 140%;
    color: #38393b;
    margin: 5px 0 0;
}
.services__list {
    list-style-type: none;
    padding: 0;
    padding-left: 20px;
    display: flex;
    flex-direction: column;
    gap: 3px;
}
.services__item {
    position: relative;
}
.services__item:before {
    content: "";
    position: absolute;
    width: 3px;
    height: 3px;
    background: #38393b;
    border-radius: 50%;
    left: -15px;
    top: 12px;
}
.services__link {
    font-weight: 500;
    font-size: 16px;
    line-height: 140%;
    letter-spacing: 0%;
    color: #38393b;
    text-decoration: none;
}
.services__more {
    font-weight: 500;
    font-size: 14px;
    line-height: 140%;
    letter-spacing: 0%;
}
.services__more-link {
    color: #7892e8;
    text-decoration: none;
}
.services__clinics-count {
    color: #38393b;
}

@media (max-width: 1200px) {
    .services__category {
        column-count: 2;
    }
}
@media (max-width: 768px) {
    .services__category {
        column-count: 1;
        column-gap: 8px;
    }
    .services__category-inner {
        padding: 0;
        margin-bottom: 8px;
        border-radius: 25px;
    }
    .services__category-desktop {
        display: none;
    }
    .services__category-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        padding: 6px 6px 6px 20px;
        background: transparent;
        border: none;
        cursor: pointer;
        text-align: left;
    }
    .services__category-header-content {
        flex: 1;
    }
    .services__category-title {
        margin: 0;
        font-size: 14px;
        line-height: 150%;
    }
    .services__category-icon {
        flex-shrink: 0;
        margin-left: 15px;
        transition: transform 0.3s ease;
    }
    .services__category-inner.is-active .services__category-icon {
        transform: rotate(90deg);
    }
    .services__category-content {
        display: none;
        padding: 0 20px 20px 20px;
    }
    .services__category-inner.is-active .services__category-content {
        display: block;
    }
    .services__list {
        margin: 0;
        gap: 0;
    }
    .services__more {
        font-size: 11px;
        margin-top: 5px;
        /* display: none; */
    }
    .services__category-meta {
        font-size: 11px;
        line-height: 150%;
        margin-top: 0;
    }
    .services__link {
        font-size: 12px;
    }
    .services {
        margin-top: 16px;
    }
    .services__title {
        font-size: 24px;
    }
}
