html{
    scroll-behavior: smooth;
}
body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    background: #f5f7fb;
}

.container {
    width: min(1280px, calc(100% - 64px));
    margin: auto;
}

.search-form .home-section h2 {
    font-size: 36px;
    line-height: 1.2;
    margin: 0 0 35px;
    color: #111827;
}

/*.home-section:nth-of-type(even) {
    background: #f8f9ff;
}*/

.mt--50{
margin-top:50px;
}
.mt--20{
    margin-top:20px;
}


.search-form {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 10px;
    margin-bottom: 10px;
    flex-wrap: wrap;
    width: 100%;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}



.search-input {
    flex: 1 1 380px;
    min-width: 0;
    height: 56px;
    padding: 0 18px;
    border: none;
    border-radius: 12px;
    font-size: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.search-city {
    flex: 0 1 220px;
    min-width: 180px;
    max-width: 220px;
    height: 56px;
    padding: 0 18px;
    border: none;
    border-radius: 12px;
    font-size: 15px;
    background: white;
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

.search-button {
    flex: 0 0 auto;
    height: 56px;
    padding: 0 28px;
    background: #2d1f8f;
    color: white;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0,0,0,0.14);
}

.hero {
    background: linear-gradient(135deg, rgba(78,111,179,0.96), rgba(108,127,216,0.92));
    padding: 70px 0 120px 0;
    text-align: center;
    color: white;
}

.hero-inner {
    max-width: 900px;
    margin: 0 auto;
}

.hero-title {
    font-size: 56px;
    line-height: 1.1;
    font-weight: 800;
    margin: 0 0 14px;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: 18px;
    line-height: 1.6;
    opacity: 0.92;
    margin: 0 0 34px;
}


.hero-stats {
    display: flex;
    justify-content: center;
    gap: 70px;
    margin-top: 8px;
    flex-wrap: wrap;
}

.hero-stat {
    text-align: center;
}

    .hero-stat strong {
        font-size: 30px;
        display: block;
        margin-bottom: 4px;
    }

    .hero-stat span {
        font-size: 14px;
        opacity: 0.9;
    }



.clinic-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 28px;
    margin-top: 0;
}


.clinic-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 18px 45px rgba(15,23,42,0.08);
    transition: all .25s ease;
}

.map-wrapper iframe {
    height: 380px;
    border-radius: 12px;
}

.clinic-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0,0,0,.15);
}

.clinic-link {
    display: flex;
    text-decoration: none;
    height: 100%;
    flex-direction: column;
}

.clinic-image-wrap {
    position: relative;
    height:150px;
    overflow: hidden;
}

.clinic-generated-image {
    background: linear-gradient(135deg,#5865d8,#7a6ee6);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 24px;
    color: white;
}

.clinic-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(255,255,255,0.05), rgba(0,0,0,0.08));
    pointer-events: none;
}

.clinic-generated-avatar {
    position: relative;
    z-index: 1;
    width: 78px;
    height: 78px;
    border-radius: 50%;
    background: rgba(255,255,255,0.16);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    font-weight: 800;
    letter-spacing: 0.04em;
    margin-bottom: 16px;
    border: 1px solid rgba(255,255,255,0.28);
    box-shadow: 0 8px 20px rgba(0,0,0,0.10);
}

.clinic-generated-title {
    position: relative;
    z-index: 1;
    font-size: 17px;
    line-height: 1.35;
    font-weight: 700;
    max-width: 260px;
    margin-bottom: 12px;
}

.clinic-generated-meta {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    font-size: 14px;
}

.clinic-generated-city,
.clinic-generated-rating {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    opacity: 0.95;
}

    .clinic-generated-rating i {
        color: #ffd76a;
    }

.clinic-card-body {
    padding: 24px 24px 26px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    flex: 1;
}

.clinic-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
}

.clinic-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    border-radius: 999px;
    background: #eef2ff;
    color: #4338ca;
    font-size: 12px;
    font-weight: 700;
}

.clinic-title {
    font-size: 18px;
    line-height: 1.35;
    margin: 0 0 14px;
    color: #111827;
}

.clinic-contact-line {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
    font-size: 14px;
    font-weight: 600;
    color: #4b5563;
}

    .clinic-contact-line i {
        color: #4e6fb3;
    }

.clinic-excerpt {
    font-size: 14px;
    line-height: 1.7;
    color: #6b7280;
    margin: 0 0 22px;
}

.clinic-card-bottom {
    margin-top: auto;
    text-align:center;
}

.clinic-more {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 16px;
    border-radius: 12px;
    background: #4e6fb3;
    color: white;
    font-size: 14px;
    font-weight: 700;
    box-shadow: 0 10px 24px rgba(78,111,179,0.24);
}

.clinic-card-bottom {
    margin-top: auto;
}


.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgb(56 87 149);
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 24px rgba(15,23,42,0.08);
}

.site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    min-height: 72px;
}

.main-nav {
    display: flex;
    align-items: center;
}

.menu-toggle {
    display: none;
    width: 48px;
    height: 48px;
    border: none;
    border-radius: 12px;
    background: rgba(255,255,255,0.12);
    cursor: pointer;
    padding: 0;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
}

    .menu-toggle span {
        display: block;
        width: 22px;
        height: 2px;
        background: white;
        border-radius: 999px;
        transition: all .2s ease;
    }

.site-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    min-height: 72px;
}

.logo a {
    color: white;
    text-decoration: none;
    font-weight: 800;
    font-size: 22px;
}

.logo img {
    height: 65px;
}

nav ul {
    display: flex;
    align-items: center;
    gap: 22px;
    list-style: none;
    margin: 0;
    padding: 0;
}

    nav ul li {
        position: relative;
    }

        nav ul li a {
            display: block;
            padding: 10px 0;
            color: white;
            text-decoration: none;
            font-size: 14px;
            font-weight: 700;
        }

        nav ul li ul {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            min-width: 240px;
            padding: 10px 0;
            background: white;
            border-radius: 16px;
            box-shadow: 0 18px 45px rgba(15,23,42,0.14);
        }

        nav ul li:hover > ul {
            display: block;
        }

        nav ul li ul li a {
            padding: 12px 18px;
            color: #111827;
            font-size: 14px;
            font-weight: 600;
        }

        nav ul li a {
            transition: opacity .2s ease;
        }

            nav ul li a:hover {
                opacity: .8;
            }

.city-grid,
.service-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 22px;

}

    .city-grid a,
    .service-grid a {
        display: flex;
        align-items: center;
        gap: 10px;
        min-height: 96px;
        background: white;
        border-radius: 20px;
        text-decoration: none;
        color: #111827;
        font-weight: 700;
        font-size: 16px;
        box-shadow: 0 14px 35px rgba(15,23,42,0.07);
        transition: transform .2s ease, box-shadow .2s ease;
        padding: 0 22px;
    }

        .city-grid a:hover,
        .service-grid a:hover {
            transform: translateY(-4px);
            box-shadow: 0 18px 45px rgba(15,23,42,0.12);
        }

        .city-grid a i,
        .service-grid a i {
            color: #4e6fb3;
        }

.city-count {
    margin-left: auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 34px;
    height: 34px;
    padding: 0 10px;
    border-radius: 999px;
    background: #eef2ff;
    color: #4338ca;
    font-size: 13px;
    font-weight: 800;
}

footer {
    margin-top: 80px;
    padding: 30px 0 60px;
    font-size: 14px;
    color: #6b7280;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 28px;
    margin-top: -60px;
}

.feature-card {
    background: white;
    border-radius: 20px;
    padding: 32px 28px;
    box-shadow: 0 18px 45px rgba(15,23,42,0.10);
    text-align: center;
}

.feature-icon {
    font-size: 34px;
    margin-bottom: 14px;
}
.feature-icon i{
    color:rgb(56 87 149);
}
.feature-card h3 {
    margin: 0 0 10px;
    font-size: 20px;
    color: #111827;
}

.feature-card p {
    margin: 0;
    font-size: 15px;
    line-height: 1.7;
    color: #6b7280;
}

.posts-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 28px;
    margin-top: 30px;
}

.post-card {
    background: white;
    border-radius: 20px;
    padding: 28px;
    box-shadow: 0 14px 40px rgba(15,23,42,0.08);
    transition: transform .2s ease, box-shadow .2s ease;
}

    .post-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 20px 50px rgba(15,23,42,0.14);
    }

.post-card-link {
    display: block;
    text-decoration: none;
}

.post-card-title {
    margin: 0 0 14px;
    font-size: 22px;
    line-height: 1.3;
    color: #111827;
}

.post-card-excerpt {
    margin: 0 0 20px;
    font-size: 15px;
    line-height: 1.7;
    color: #6b7280;
}

.post-card-more {
    display: inline-flex;
    align-items: center;
    padding: 12px 16px;
    border-radius: 12px;
    background: #4e6fb3;
    color: white;
    font-size: 14px;
    font-weight: 700;
}

.single-clinic {
    padding: 50px 0;
}

.single-clinic__top {
    margin-bottom: 30px;
}

.single-clinic__breadcrumbs {
    display: flex;
    gap: 8px;
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 14px;
}

    .single-clinic__breadcrumbs a {
        color: #6b7280;
        text-decoration: none;
    }

.single-clinic__title {
    font-size: 32px;
    line-height: 1.15;
    margin: 0 0 10px;
    color: #111827;
    padding:20px 20px 5px 20px;
}

.single-clinic__city {
    font-size: 16px;
    color: #6b7280;
}

.single-clinic__grid {
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(320px, 1fr);
    gap: 30px;
    align-items: start;
}

.single-clinic__card,
.single-clinic__info-card {
    background: white;
    border-radius: 22px;
    box-shadow: 0 14px 40px rgba(15,23,42,0.08);
    overflow: hidden;
}

.single-clinic__image img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
}

.single-clinic__section {
    padding: 20px;
    border-top: 1px solid #eef2f7;
}

    .single-clinic__section:first-child {
        border-top: none;
    }

    .single-clinic__section h2 {
        margin: 30px 0 0 0;
        font-size: 26px;
        color: #111827;
    }
.single-clinic__section h3{margin-top:0;}
.single-clinic__text {
    font-size: 16px;
    line-height: 1.8;
    color: #4b5563;
}
.single-clinic__section p{
    margin:0;
}
.single-clinic__map {
    border-radius: 18px;
    overflow: hidden;
}
.single-clinic__sidebar{
    align-self: start;
    position: sticky;
}
.single-clinic__info-card {
    padding: 15px;
    top: 100px;
    border-radius: 24px;
    background: white;
    box-shadow: 0 18px 45px rgba(15,23,42,0.10);
}

    .single-clinic__info-card h3 {
        margin: 0 0 22px;
        font-size: 24px;
        color: #111827;
    }

.single-clinic__info-item {
    padding: 14px 0;
    border-top: 1px solid #eef2f7;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

    .single-clinic__info-item:first-of-type {
        border-top: none;
        padding-top: 0;
    }

    .single-clinic__info-item strong {
        font-size: 14px;
        color: #6b7280;
        text-transform: uppercase;
        letter-spacing: .03em;
    }


.single-clinic__related {
    margin-top: 50px;
}

.single-clinic__related-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 28px;
}

    .single-clinic__related-head h2 {
        margin: 0;
        font-size: 36px;
        line-height: 1.2;
        color: #111827;
    }

.single-clinic__related-link {
    text-decoration: none;
    font-weight: 700;
    color: #4e6fb3;
}

.single-clinic__info-item a {
    color: #111827;
    text-decoration: none;
    font-weight: 700;
}

.single-clinic__image img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
    border-radius: 22px 22px 0 0;
}

.single-clinic__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}

.single-clinic__services-card {
    margin-top: 20px;
    padding: 28px;
}

.single-clinic__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
}

.single-clinic__tag {
    display: inline-flex;
    align-items: center;
    padding: 10px 14px;
    border-radius: 999px;
    background: #eef2ff;
    color: #4338ca;
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.2;
    transition: transform .2s ease, box-shadow .2s ease;
}

    .single-clinic__tag:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 24px rgba(15,23,42,0.10);
    }

.single-clinic__actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 0 0 24px;
}

.single-clinic__action {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 18px;
    border-radius: 14px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 700;
    background: #eef2ff;
    color: #4338ca;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

    .single-clinic__action:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 24px rgba(15,23,42,0.10);
    }

.single-clinic__action--primary {
    background: #4e6fb3;
    color: white;
}

.clinic-image-wrap {
    height: 210px;
    overflow: hidden;
}

.clinic-generated-image {
    background: linear-gradient(135deg,#4e6fb3,#6c7fd8);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 24px;
    color: white;
}

.clinic-generated-avatar {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: rgba(255,255,255,0.18);
    backdrop-filter: blur(6px);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 800;
    letter-spacing: 0.04em;
    margin-bottom: 14px;
    border: 1px solid rgba(255,255,255,0.25);
}

.clinic-generated-title {
    font-size: 18px;
    line-height: 1.35;
    font-weight: 700;
    max-width: 240px;
    margin-bottom: 8px;
}

.clinic-generated-city {
    font-size: 14px;
    opacity: 0.9;
    display: flex;
    align-items: center;
    gap: 6px;
    justify-content: center;
}

    .clinic-generated-city i {
        font-size: 12px;
        opacity: 0.9;
    }

.single-clinic__info-item span,
.single-clinic__info-item a {
    font-size: 16px;
    color: #111827;
    text-decoration: none;
    word-break: break-word;
    line-height: 1.6;
}

.city-hero {
    padding: 90px 0 70px;
    background: linear-gradient(135deg,#5865d8,#7a6ee6);
    color: white;
}

.city-hero__content {
    max-width: 900px;
}

.city-hero__breadcrumbs {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    margin-bottom: 18px;
    opacity: .92;
}

    .city-hero__breadcrumbs a {
        color: white;
        text-decoration: none;
    }

.city-subtitle {
    font-size: 18px;
    opacity: .9;
    margin-top: 12px;
    font-weight: 500;
}

.city-hero h1 {
    margin: 0 0 16px;
    font-size: 48px;
    line-height: 1.1;
    font-weight: 800;
}

.city-hero p {
    margin: 0 0 24px;
    font-size: 18px;
    line-height: 1.7;
    opacity: .95;
}

.city-hero__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 15px;
    font-weight: 600;
}

    .city-hero__meta span {
        display: inline-flex;
        align-items: center;
        gap: 8px;
    }

.city-content {
    padding: 50px 0;
}

.city-layout {
    display: grid;
    grid-template-columns: 320px minmax(0, 1fr);
    gap: 30px;
    align-items: start;
}

.city-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: sticky;
    top: 90px;
    align-self: start;
}

.city-sidebar__card {
    background: white;
    border-radius: 24px;
    padding: 26px;
    box-shadow: 0 18px 45px rgba(15,23,42,0.08);
}

    .city-sidebar__card h3 {
        margin: 0 0 14px;
        font-size: 24px;
        color: #111827;
    }

    .city-sidebar__card p {
        margin: 0;
        font-size: 15px;
        line-height: 1.8;
        color: #4b5563;
    }

.city-search-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

    .city-search-form input {
        min-height: 50px;
        padding: 0 16px;
        border: 1px solid #dbe1ea;
        border-radius: 14px;
        font-size: 15px;
    }

    .city-search-form button {
        min-height: 50px;
        border: none;
        border-radius: 14px;
        background: #4e6fb3;
        color: white;
        font-weight: 700;
        cursor: pointer;
    }

.city-main {
    min-width: 0;
}

.city-pagination {
    display: flex;
    justify-content: center;
    margin-top: 40px;
    gap:20px;
}

    .nav-links {
        display: flex;
        gap: 20px;
    }

    .page-numbers {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-width: 44px;
        height: 44px;
        padding: 0 14px;
        border-radius: 12px;
        background: white;
        box-shadow: 0 10px 24px rgba(15,23,42,0.08);
        text-decoration: none;
        color: #111827;
        font-weight: 700;
    }

        .page-numbers.current {
            background: #4e6fb3;
            color: white;
        }

.city-seo {
    padding: 0 0 50px;
}

.city-seo__box {
    background: white;
    border-radius: 28px;
    padding: 34px;
    box-shadow: 0 18px 45px rgba(15,23,42,0.08);
}

    .city-seo__box h2 {
        margin: 0 0 16px;
        font-size: 34px;
        color: #111827;
    }

    .city-seo__box p {
        margin: 0 0 16px;
        font-size: 16px;
        line-height: 1.9;
        color: #4b5563;
    }

.city-empty {
    background: white;
    border-radius: 24px;
    padding: 32px;
    box-shadow: 0 18px 45px rgba(15,23,42,0.08);
}

.seo-footer-links {
    padding: 50px 0 50px;
}

.seo-footer-box {
    background: white;
    border-radius: 28px;
    padding: 32px;
    box-shadow: 0 18px 45px rgba(15,23,42,0.08);
}

    .seo-footer-box h2 {
        margin: 0 0 10px;
        font-size: 34px;
        color: #111827;
    }

.seo-footer-subtitle {
    margin: 0 0 24px;
    font-size: 16px;
    line-height: 1.7;
    color: #6b7280;
}

.seo-tabs__nav {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 24px;
}

.seo-tabs__button {
    border: none;
    background: #eef2ff;
    color: #4338ca;
    padding: 12px 18px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all .2s ease;
}

    .seo-tabs__button:hover {
        background: #dfe7ff;
    }

    .seo-tabs__button.is-active {
        background: #4e6fb3;
        color: white;
        box-shadow: 0 10px 24px rgba(78,111,179,0.24);
    }

.seo-tabs__panel {
    display: none;
}

    .seo-tabs__panel.is-active {
        display: block;
    }

.seo-tabs__links {
    list-style: none;
    padding: 0;
    margin: 0;
    columns: 4;
    column-gap: 28px;
}

    .seo-tabs__links li {
        break-inside: avoid;
        margin-bottom: 5px;
    }

    .seo-tabs__links a {
        text-decoration: none;
        color: #4e6fb3;
        font-weight: 600;
        line-height: 1.6;
    }

.city-sidebar__links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

    .city-sidebar__links a {
        text-decoration: none;
        color: #4e6fb3;
        font-weight: 600;
        line-height: 1.6;
    }

.city-search-form__select {
    min-height: 50px;
    padding: 0 16px;
    border: 1px solid #dbe1ea;
    border-radius: 14px;
    font-size: 15px;
    background: white;
    width: 100%;
}

.clinic-card-overlay img{
    width:100%;height:auto;
}
.alteServicii {
    margin-top: 10px;
}
.category-article  .city-hero{
    padding: 50px 0;
}
.category-article  .city-hero__meta,
.category-article  .city-subtitle,
.category-article  .city-seo,
.category-article  aside,
.category-article  p{
    display:none;
}
.category-article .city-layout{
    grid-template-columns:unset;
    gap:0;
}
.single-article__card {
    background: #fff;
    border-radius: 20px;
    padding: 24px;
    top: 24px;
}
.single-article__aside {
    align-self: start;
    position:sticky;
    top:25px;
}
.single-article__card h3 {
    margin: 0 0 18px;
    font-size: 24px;
    line-height: 1.2;
}
.single-article__card--popular{
    margin-top:20px;   
}
.single-article__related-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 14px;
}

.single-article__related-item {
    margin: 0;
}

.single-article__related-link {
    display: flex;
    gap: 12px;
    align-items: center;
    text-decoration: none;
    color: inherit;
}

.single-article__related-thumb {
    width: 72px;
    height: 72px;
    flex: 0 0 72px;
    border-radius: 12px;
    overflow: hidden;
    display: block;
}

.single-article__related-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.single-article__related-title {
    font-size: 15px;
    font-weight: 600;
    line-height: 1.4;
}
.site-footer {
    margin-top: 0;
    background: linear-gradient(135deg, #2d4f8f 0%, #6f7dd9 100%);
    color: #fff;
    padding: 56px 0 24px;
}

.site-footer__top {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 32px;
    border-bottom: 1px solid rgba(255,255,255,.15);
}

.site-footer__logo {
    display: inline-flex;
    align-items: center;
    margin-bottom: 18px;
}

.site-footer__logo img {
    max-height: 48px;
    width: auto;
    display: block;
}

.site-footer__desc {
    max-width: 340px;
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255,255,255,.82);
    margin: 0;
}

.site-footer__title {
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 18px;
    color: #fff;
}

.site-footer__menu {
    list-style: none;
    margin: 0;
    padding: 0;
}

.site-footer__menu li + li {
    margin-top: 12px;
}

.site-footer__menu a {
    color: rgba(255,255,255,.84);
    text-decoration: none;
    transition: color .2s ease, opacity .2s ease;
}

.site-footer__menu a:hover {
    color: #fff;
}

.site-footer__bottom {
    padding-top: 22px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.site-footer__bottom p {
    margin: 0;
    color: rgba(255,255,255,.75);
    font-size: 14px;
}

.site-footer__bottom-links {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

.site-footer__bottom-links a {
    color: rgba(255,255,255,.78);
    text-decoration: none;
    font-size: 14px;
}

.site-footer__bottom-links a:hover {
    color: #fff;
}

.article-toc {
    margin: 0 0 20px 0;
    padding: 0;
    border-left: 4px solid #EA2700;
}

.article-toc h3{
    margin-bottom:12px;
    font-size:18px;
}
.article-toc li:before{
    content: "";
    position: absolute;
    width: 12px;
    height: 15px;
    background-image: url(../../images/toc.svg);
    background-size: cover;
    background-repeat: no-repeat;
}
.article-toc ul{
    list-style: none;
    margin: 0;
    padding-left: 10px;
    display: flex;
    gap: 10px;
    position: relative;
    flex-direction: column;
    align-items: flex-start;
}

.article-toc li{
    display: flex;
    gap: 10px;
    align-items: center;
}

.article-toc a{
    color: #111;
    text-decoration: none;
    font-weight: normal;
    font-style: italic;
    padding-left: 22px;
    line-height: 18px;
}

.article-toc a:hover{
    text-decoration:underline;
}

.article-faq {
    margin-top: 40px;
}

.article-faq > h2 {
    margin-bottom: 20px;
}

.article-faq .faq-item {
    margin-bottom: 14px;
    padding: 22px 24px;
    background: #ffffff;
    border: 1px solid #e7edf5;
    border-radius: 18px;
    box-shadow: 0 6px 18px rgba(16, 37, 66, 0.04);
}

.article-faq .faq-item:last-of-type {
    margin-bottom: 0;
}

.article-faq .faq-item h3 {
    margin: 0 0 10px;
    font-size: 21px;
    line-height: 1.35;
}

.article-faq .faq-item p {
    margin: 0;
    font-size: 17px;
    line-height: 1.75;
    color: #4a5565;
}
.single-clinic__main {
    background: #fff;
    display: flex;
    flex-direction: column;
    padding: 20px;
}
.titleClinic h1 {
    padding: 0 0 5px 0;
    border-bottom: 1px solid #e9eaeb;
    margin-bottom: 5px;
}
.titleClinic .post-views{
    border-top:none;
    background:unset;
    margin-top:0;
    padding:0;
}
.single-clinic__text .article-summary{
    margin-top:20px;
    padding: 20px;
    background: rgb(216 220 227 / 57%);
    border: 1px solid #e7edf5;
    border-radius: 18px;
    box-shadow: 0 6px 18px rgba(16, 37, 66, 0.04);    
}
.single-clinic__text .article-summary h3{
    margin-bottom:0;
}
.single-clinic__text .article-summary ul{margin:0;}

span.post-views {
    border-top: 1px solid #eef2f7;
    display: flex;
    background: #f5f5f5;
    font-size:12px;
    padding: 5px 5px 5px 20px;
}
.single-article__related-views {
    font-size: 12px;
    margin-top: 5px;
    color: #666;
    font-weight: normal;
}

.hero-ad-wrap{
    max-width:728px;
    margin:20px auto 0;
    text-align:center;
}
.cs-ad-hero {
    max-width:728px;
    width:100%;
    text-align: center;
}
.clinic-grid-ad{
    grid-column: 1 / -1;
    margin: 0 auto;
}

.single-clinic-ad{
    display: flex;
    justify-content: center;
}
.single-clinic-patrat{
margin:0;
padding:0;
text-align:center;
}

.cs-ad-single-middle{
max-width:728px;
}

.clinic-grid-ad {
    grid-column: 1 / -1;
    display: flex;
    justify-content: center;
    margin: 0;
}

.cs-ad-cities {
    width: 100%;
    max-width: 728px;
}
