/*!
Theme Name: EvaMed
Theme URI: http://underscores.me/
Author: Underscores.me
Author URI: http://underscores.me/
Description: Description
Version: 1.0.1
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: evamed
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned.

EvaMed is based on Underscores https://underscores.me/, (C) 2012-2020 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
*/

/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Generic
	- Normalize
	- Box sizing
# Base
	- Typography
	- Elements
	- Links
	- Forms
## Layouts
# Components
	- Navigation
	- Posts and pages
	- Comments
	- Widgets
	- Media
	- Captions
	- Galleries
# plugins
	- Jetpack infinite scroll
# Utilities
	- Accessibility
	- Alignments

--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Generic
--------------------------------------------------------------*/

/* Normalize
--------------------------------------------- */

/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */

/* Document
	 ========================================================================== */

/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */
html {
    line-height: 1.15;
    -webkit-text-size-adjust: 100%;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    margin: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: system-ui, -apple-system, "Segoe UI", sans-serif;
    position: relative;
    overflow-x: hidden;
    background-color: #fff;
}

body::before,
body::after {
    content: "";
    position: fixed;
    width: 120vmax;
    height: 120vmax;
    border-radius: 50%;
    pointer-events: none;
    z-index: -1;
    filter: blur(80px);
    opacity: 0.5;
}

body::before {
    background: radial-gradient(circle, rgba(184, 232, 232, 0.7) 0%, rgba(145, 222, 222, 0.2) 40%, transparent 70%);
    top: -30vmax;
    left: -20vmax;
    animation: blob-float 20s ease-in-out infinite;
}

body::after {
    background: radial-gradient(circle, rgba(232, 248, 248, 0.7) 0%, rgba(200, 235, 235, 0.2) 40%, transparent 70%);
    bottom: -40vmax;
    right: -30vmax;
    animation: blob-float 25s ease-in-out infinite reverse;
}

@keyframes blob-float {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(5vw, -8vh) scale(1.05);
    }

    66% {
        transform: translate(-5vw, 5vh) scale(0.98);
    }
}

.site {
    width: 100%;
}

.container {
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
}

.header {
    width: 100%;
    border-bottom: 1px solid #c5e3e3;
    margin-bottom: 34px;
}

.header__top {
    padding: 16px 0;
}

.header__top .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px 24px;
}

.header__nav {
    padding: 12px 0 16px;
    border-top: 1px solid #eef7f7;
}

.header__nav .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 1px solid #cfe8ea;
    border-radius: 10px;
    background: #ffffff;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 6px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.menu-toggle:hover {
    border-color: #269b96;
    background: #f4fbfb;
}

.menu-toggle:focus-visible {
    outline: none;
    border-color: #269b96;
    box-shadow: 0 0 0 3px rgba(38, 155, 150, 0.16);
}

.menu-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    border-radius: 2px;
    background: #0f555f;
    transition: transform 0.25s ease, opacity 0.2s ease, width 0.2s ease;
    transform-origin: center;
}

.header__nav.is-open .menu-toggle span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.header__nav.is-open .menu-toggle span:nth-child(2) {
    opacity: 0;
}

.header__nav.is-open .menu-toggle span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.header__logo-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
}

.header__logo-icon {
    width: 180px;
    height: auto;
    flex-shrink: 0;
}

.header__logo-icon>svg,
.footer__logo-icon>svg {
    fill: #009b97;
    height: auto;
}

.header__logo-icon svg,
.footer__logo-icon svg {
    width: 100%;
    height: 100%;
}

.header__logo-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.header__logo-name {
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.header__logo-cryo {
    color: #009b97;
}

.header__logo-cliniq {
    color: #c95a4a;
}

.header__logo-tagline {
    font-size: 0.7rem;
    color: #9a9a9a;
    letter-spacing: 0.04em;
}

.header__locations {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.header__location-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.875rem;
    color: #333;
}

.header__icon-pin {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    color: #009b97;
}

.header__hours {
    display: flex;
    gap: 2px;
    font-size: 0.875rem;
    color: #333;
    align-items: center;
    gap: 6px;
}

.header__phones {
    display: flex;
    align-items: center;
    gap: 5px;
    flex-direction: column;
    justify-content: space-between;
}

.header__phone {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    color: #333;
    text-decoration: none;
}

.header__phone:hover {
    color: #009b97;
}

.header__icon-wa {
    width: 20px;
    height: 20px;
    color: #25d366;
}

.header__icon-phone {
    width: 18px;
    height: 18px;
    color: #009b97;
}

.header__callback {
    font-size: 0.875rem;
    font-weight: 600;
    color: #c95a4a;
    text-decoration: none;
}



.header__nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 auto;
    padding: 0 0px 5px;
    border-top: none;
}

.header__search {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    cursor: pointer;
    color: #009b97;
}

.header__search svg {
    width: 22px;
    height: 22px;
}

.header__search-wrap {
    position: relative;
    margin-left: 10px;
}

.header-floating {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    z-index: 220;
    background: #fff;
    border-bottom: 1px solid #e2eff1;
    box-shadow: 0 10px 20px rgba(7, 73, 82, 0.1);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-110%);
    transition: transform 0.25s ease, opacity 0.2s ease, visibility 0.2s ease;
}

body.floating-header-visible .header-floating {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

.header-floating__container {
    min-height: 74px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.header-floating__logo {
    width: 150px;
    height: auto;
    flex-shrink: 0;
    display: inline-flex;
}

.header-floating__logo-inner {
    width: 100%;
    display: block;
}

.header-floating__logo-inner svg {
    width: 100%;
    height: auto;
}

.header-floating__menu {
    flex: 1;
    min-width: 0;
    justify-content: center;
    display: flex;
}

ul#floating-primary-menu {
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 20px;
    list-style: none;
}

.header-floating__actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.header-floating__callback {
    border: 1px solid #d4e9eb;
    border-radius: 10px;
    padding: 9px 12px;
    text-decoration: none;
}

.header-floating__callback:hover {
    text-decoration: none;
    border-color: #269b96;
    background: #f4fbfb;
}

.admin-bar .header-floating {
    top: 32px;
}

@media (max-width: 782px) {
    .admin-bar .header-floating {
        top: 46px;
    }
}

.header__search-dropdown {
    position: absolute;
    right: 0;
    top: calc(100% + 8px);
    width: min(340px, 80vw);
    padding: 10px;
    background: #fff;
    border: 1px solid #d7e5e8;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    opacity: 0;
    transform: translateY(-6px);
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
    z-index: 60;
}

.header__search-wrap.is-open .header__search-dropdown {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.header__search-dropdown .search-form {
    display: flex;
    align-items: center;
    gap: 8px;
}

.header__search-dropdown .search-form label {
    flex: 1;
    margin: 0;
}

.header__search-dropdown .search-field {
    flex: 1;
    width: 100%;
    border: 1px solid #cfdde0;
    border-radius: 8px;
    padding: 10px 12px;
    font: inherit;
    color: #1b2d30;
    background: #fff;
}

.header__search-dropdown .search-field:focus {
    outline: none;
    border-color: #009b97;
    box-shadow: 0 0 0 3px rgba(0, 155, 151, 0.15);
}

.header__search-dropdown .search-submit {
    border: none;
    border-radius: 8px;
    padding: 10px 14px;
    font: inherit;
    cursor: pointer;
    background: #009b97;
    color: #fff;
    white-space: nowrap;
}

.header__search-dropdown .search-submit:hover {
    background: #087d79;
}

.header__menu {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px 28px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.header__nav .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header__menu a {
    font-size: 0.9rem;
    color: #333;
    text-decoration: none;
}

.header__menu a:hover {
    color: #009b97;
}

@media (max-width: 1024px) {

    .header__top {
        justify-content: flex-start;
    }

    .header__locations,
    .header__hours {
        display: none;
    }
}

@media (max-width: 768px) {
    .header__phones {
        flex-direction: column;
        align-items: flex-start;
    }

    .header__menu {
        gap: 6px 16px;
    }

    .header__menu li:nth-child(n+6) {
        width: 100%;
    }
    ul#primary-menu .sub-menu,
    ul#floating-primary-menu .sub-menu {
        position: static;
        top: auto;
        left: auto;
        min-width: 0;
        margin: 4px 0 8px;
        padding: 4px 0 0 12px;
        border: none;
        border-radius: 0;
        box-shadow: none;
        background: transparent;
        opacity: 1;
        visibility: visible;
        transform: none;
        pointer-events: auto;
    }

    ul#primary-menu .sub-menu .menu-item a,
    ul#floating-primary-menu .sub-menu .menu-item a {
        padding: 8px 10px;
        font-size: 0.95rem;
        color: #4d666c;
        white-space: normal;
    }
}

.block {
    margin: 32px 0;
    width: 100%;
}

.block__container {
    display: flex;
    max-height: 480px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}

.block__left {
    flex: 1;
    padding: 56px 48px 56px 56px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
    max-width: 589px;
    background: linear-gradient(90deg, rgb(255 255 255 / 99%) 56%, rgb(255 255 255 / 0%) 102%);
}

.block__title {
    margin: 0 0 24px;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.2;
    color: #009b97;
}

.block__text {
    margin: 0 0 16px;
    font-size: 1rem;
    line-height: 1.6;
    color: #4a4a4a;
}

.block__text:last-of-type {
    margin-bottom: 32px;
    font-style: italic;
}

.block__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    background: #009b97;
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    transition: background 0.2s;
    align-self: flex-start;
}

.block__btn:hover {
    background: #008c8c;
}

.top-baner {
    padding: 0;
}

.block__right {
    flex: 0 0 420px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.block__bg-blur {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.block__blur-circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.7);
    filter: blur(60px);
}

.block__blur-circle--1 {
    width: 200px;
    height: 200px;
    top: 10%;
    right: 10%;
}

.block__blur-circle--2 {
    width: 160px;
    height: 160px;
    bottom: 20%;
    left: 5%;
}

.block__blur-circle--3 {
    width: 120px;
    height: 120px;
    top: 50%;
    left: 30%;
}

.block__logo img {
    width: 100%;
    height: 100%;
}

.block__logo-icon {
    width: 100%;
    height: 100%;
    color: #009b97;
}

.block__brand {
    position: relative;
    z-index: 1;
    margin-top: 20px;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    color: #5a9a9a;
}

@media (max-width: 900px) {
    .block__container {
        flex-direction: column;
    }

    .block__right {
        flex: none;
        min-height: 320px;
    }
}

/* ========== CARDS (3 ÐºÐ¾Ð»Ð¾Ð½ÐºÐ¸) ========== */
.cards {
    margin: 0 0 32px;
    width: 100%;
    margin: 0 0 72px;
}

.cards__container {
    display: flex;
    align-items: stretch;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}

.cards__item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 32px 28px;
    text-decoration: none;
    color: inherit;
    min-width: 0;
}

.cards__item:hover {
    background: #fafcfc;
}

.cards__item:hover .cards__title {
    color: #008c8c;
}

.cards__title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.125rem;
    font-weight: 700;
    color: #009b97;
}

.cards__arrow {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    color: #ffffff;
    margin-left: 13px;
}

.cards__desc {
    margin: 0 0 4px;
    font-size: 0.875rem;
    line-height: 1.4;
    color: #7a7a7a;
}

.cards__desc:last-child {
    margin-bottom: 0;
}

.cards__sep {
    width: 1px;
    background: #c5e3e3;
    flex-shrink: 0;
    margin: 24px 0;
}

@media (max-width: 768px) {
    .cards__container {
        flex-direction: column;
    }

    .cards__sep {
        width: 100%;
        height: 1px;
        margin: 0;
    }
}

/* ========== Ð£Ð¡ÐÐ£ÐÐ ========== */
.services {
    margin: 0 0 72px;
    width: 100%;
}

.services__title {
    margin: 0 0 28px;
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a1a;
}

.services__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    position: relative;
}

.service-card__head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    padding: 24px;
}

.service-card__title {
    margin: 0;
    font-size: 1.125rem;
    font-weight: 700;
    color: #1a1a1a;
    flex: 1;
    min-width: 0;
}

.service-card__icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: #e8f4f4;
    color: #009b97;
}

.service-card__icon svg {
    width: 22px;
    height: 22px;
}

.service-card__icon--red {
    background: #ffe8e4;
    color: #c95a4a;
}

.service-card__text {
    margin: 12px 24px 16px;
    font-size: 0.875rem;
    line-height: 1.5;
    color: #6a6a6a;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 45px;
}

a.uslugi-card__link:hover {
    background: #e0f7f6;
}

.service-card__img {
    width: 100%;
    aspect-ratio: 1 / 1;
    flex-shrink: 0;
}

.service-card__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 24px;
    max-width: calc(100% - 48px);
    background: #5a9a9a;
    color: #fff;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 12px;
    position: absolute;
    z-index: 1;
    transition: background 0.2s;
    bottom: 30px;
    left: 30px;
}

.service-card__img {
    position: relative;
}

.service-card__img::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 35%;
    bottom: 0;
    left: 0;
    background: linear-gradient(1deg, #a8d4d4 0%, #e0f0f000 100%);
}

.service-card__btn:hover {
    background: #009b97;
}

.services__all, .anons-front__all, .otzivi-front__all { 
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 32px;
    padding: 18px 40px;
    background: #5a9a9a;
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 12px;
    transition: background 0.2s;
}

.services__all:hover, .anons-front__all:hover, .otzivi-front__all:hover {
    background: #009b97;
}

@media (max-width: 900px) {
    .services__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .services__grid {
        grid-template-columns: 1fr;
    }
}

/* ========== Ð¢ÐÐ ÐÐ ÐÐ¦ÐÐÐ£Ð  (Swiper) ========== */
.top-procedures {
    margin: 0 0 72px;
    width: 100%;
    position: relative;
}


.top-procedures__title {
    margin: 0 0 24px;
    font-size: 2rem;
    font-weight: 700;
    color: #009b97;
}

.top-procedures__slider {
    overflow: hidden;
}

.top-procedures__slider .swiper-slide {
    height: auto;
}

.proc-card {
    display: block;
    position: relative;
    height: 320px;
    border-radius: 16px;
    overflow: hidden;
    text-decoration: none;
    color: #fff;
}

.proc-card__img {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #a8d4d4 0%, #e0f0f0 100%);
}

.proc-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(13, 92, 92, 0.85) 0%, transparent 50%);
}

.proc-card__price {
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 8px 14px;
    background: rgba(255, 255, 255, 0.9);
    color: #009b97;
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 10px;
    border: 1px solid #c5e3e3;
    z-index: 2;
}

.proc-card__name {
    position: absolute;
    bottom: 76px;
    left: 20px;
    right: 20px;
    margin: 0;
    font-size: 1.125rem;
    font-weight: 700;
    z-index: 2;
}

.proc-card__btn {
    position: absolute;
    bottom: 20px;
    right: 20px;
    padding: 12px 20px;
    background: #009b97;
    color: #fff;
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 10px;
    z-index: 2;
    transition: background 0.2s;
}

.proc-card:hover .proc-card__btn {
    background: #008c8c;
}

/* Swiper: ÐºÐ½Ð¾Ð¿ÐºÐ¸ Ð½Ð°Ð²Ð¸Ð³Ð°ÑÐ¸Ð¸ */
.top-procedures__prev,
.top-procedures__next {
    width: 44px;
    height: 44px;
    background: none !important;
    border: none !important;
    border-radius: 50%;
    color: #679190 !important;
    transition: background 0.2s, border-color 0.2s;
}

.top-procedures__prev:hover,
.top-procedures__next:hover {
    color: #009b97 !important;
}

.top-procedures__prev::after,
.top-procedures__next::after {
    font-size: 18px;
    font-weight: 700;
}

/* Swiper: Ð¿Ð°Ð³Ð¸Ð½Ð°ÑÐ¸Ñ */
.top-procedures__pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #c5e3e3;
    opacity: 1;
    transition: background 0.2s, transform 0.2s;
}

.top-procedures__pagination .swiper-pagination-bullet-active {
    background: #009b97;
    transform: scale(1.2);
}

.top-procedures__pagination {
    margin-top: 24px;
    position: relative;
}

/* ========== ALTAY RESTART ========== */
.altay {
    margin: 0 0 72px;
    width: 100%;
}

.altay__card {
    display: flex;
    position: relative;
    min-height: 420px;
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    color: #1a5a52;
    align-items: center;
}

.altay__bg {}

.altay__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

a.altay__card>* {
    width: 50%;
}

.altay__overlay {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 55%;
    min-width: 320px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(2px);
}

.altay__content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding-left: 32px;
}

.altay__title {
    margin: 0 0 16px;
    font-size: 2.25rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #1a5a52;
}

.altay__subtitle {
    margin: 0 0 16px;
    font-size: 1.125rem;
    font-weight: 400;
    color: #1a5a52;
}

.altay__text {
    margin: 0 0 28px;
    font-size: 0.9375rem;
    line-height: 1.55;
    color: #1a5a52;
}

.altay__btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border: 2px solid #009b97;
    background: transparent;
    color: #009b97;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    transition: background 0.2s, color 0.2s;
}

.altay__card:hover .altay__btn {
    background: #009b97;
    color: #fff;
}

@media (max-width: 768px) {
    .altay__overlay {
        width: 100%;
        min-width: 0;
        background: rgba(255, 255, 255, 0.92);
    }

    .altay__content {
        margin-left: 0;
        max-width: none;
        padding: 32px 20px;
    }

    .altay__title {
        font-size: 1.75rem;
    }
}

/* ========== ÐÐÐÐÐ¡Ð¢Ð ========== */
.news {
    margin: 0 0 48px;
    width: 100%;
}

.news__title {
    margin: 0 0 28px;
    font-size: 2rem;
    font-weight: 700;
    color: #009b97;
}

.news__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.news-card {
    display: flex;
    flex-direction: column;
}

.news-card__img img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.news-card__link {
    display: block;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    margin-bottom: 12px;
}

.news-card__img {
    width: 100%;
    height: 100%;
    aspect-ratio: 4 / 3;
    background: #e0e8e8;
}

.news-card__btn {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    display: inline-flex;
    align-items: center;
    padding: 12px 20px;
    background: #009b97;
    color: #fff;
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 8px;
    white-space: nowrap;
    transition: background 0.2s;
}

.news-card__link:hover .news-card__btn {
    background: #008c8c;
}

.news-card__date {
    display: block;
    margin-bottom: 8px;
    font-size: 0.875rem;
    color: #7a7a7a;
}

.news-card__title {
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.4;
    color: #1a1a1a;
}

.news__footer {
    margin-top: 28px;
    display: flex;
    justify-content: flex-end;
}

.news__all {
    display: inline-flex;
    align-items: center;
    padding: 14px 28px;
background: #5a9a9a;
    color: #fff;
    font-size: 0.9375rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: background 0.2s;
}

.news__all:hover {
    background: #008c8c;
}

@media (max-width: 900px) {
    .news__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .news__grid {
        grid-template-columns: 1fr;
    }
}


.equipment {
    margin: 0 0 72px;
    width: 100%;
}

.equipment__title {
    margin: 0 0 24px;
    font-size: 2rem;
    font-weight: 700;
    color: #009b97;
}

.equipment__block {
    display: flex;
    height: 380px;
    background: linear-gradient(135deg, #2a8a82 0%, #009b97 100%);
    border-radius: 16px 0 0 16px;
    overflow: hidden;
    position: relative;
}

.equipment__visual {
    flex: 1;
    min-width: 0;
    position: relative;
    overflow: hidden;
}

.equipment__img img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.equipment__visual.swiper {
    height: 100%;
}

.equipment__visual .swiper-wrapper,
.equipment__visual .swiper-slide {
    height: 100%;
}

.equipment__visual .swiper-slide {
    display: flex;
}

.equipment__img {
    width: 100%;
    height: 100%;
    min-height: 380px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, transparent 50%), #3a9a92;
}

.equipment__snowflake {
    position: absolute;
    color: rgba(255, 255, 255, 0.4);
    font-size: 1.25rem;
    pointer-events: none;
}

.equipment__snowflake--1 {
    top: 15%;
    left: 20%;
}

.equipment__snowflake--2 {
    bottom: 25%;
    left: 35%;
    font-size: 1rem;
}

.equipment__snowflake--3 {
    top: 40%;
    right: 25%;
    font-size: 0.875rem;
}

.equipment__overlay {
    flex: 0 0 42%;
    min-width: 280px;
    padding: 40px 36px;
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(8px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 24px;
}

.equipment__list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 24px;
    color: #fff;
    font-size: 0.9375rem;
    line-height: 1.4;
}

.equipment__logo {
    margin: 0;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    color: rgba(255, 255, 255, 0.9);
}

.equipment__btn {
    display: inline-flex;
    align-items: center;
    align-self: flex-start;
    padding: 14px 24px;
    background: #009b97;
    color: #fff;
    font-size: 0.9375rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: background 0.2s;
}

.equipment__btn:hover {
    background: #064a4a;
}

@media (max-width: 768px) {
    .equipment__block {
        flex-direction: column;
        border-radius: 16px;
    }

    .equipment__visual {
        min-height: 200px;
    }

    .equipment__overlay {
        flex: none;
        min-width: 0;
    }

    .equipment__list {
        grid-template-columns: 1fr;
    }
}


.faq-form {
    margin: 0 0 72px;
    width: 100%;
}

.faq-form__wrap {
    display: flex;
    gap: 40px;
}

.faq-form__left {
    flex: 1;
    min-width: 0;
}

.faq-form__title {
    margin: 0 0 16px;
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    position: absolute;
    top: 32px;
    left: 32px;
}

.faq-form__text {
    margin: 0;
    font-size: 1rem;
    line-height: 1.55;
    color: #2a7a72;
}

.faq-form__left img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.faq-form__card {
    padding: 32px 36px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(13, 92, 92, 0.12);
    border: 1px solid #e0efef;
}

.faq-form__left {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
}

.faq-form__card-title {
    margin: 0 0 24px;
    font-size: 1.25rem;
    font-weight: 700;
    color: #009b97;
}

.faq-form__form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-form__label {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.faq-form__label-text {
    font-size: 0.8125rem;
    color: #5a5a5a;
}

.faq-form__input {
    padding: 12px 14px;
    font-size: 1rem;
    border: 1px solid #d0e0e0;
    border-radius: 8px;
    background: #fff;
    color: #1a1a1a;
    font-family: inherit;
    transition: border-color 0.2s;
    width: 100%;
}

.wpcf7-acceptance {
    padding-top: 12px;
    display: block;
}

.faq-form__input:focus {
    outline: none;
    border-color: #009b97;
}

.faq-form__input::placeholder {
    color: #9a9a9a;
}

.faq-form__textarea {
    resize: vertical;
    min-height: 100px;
}

.faq-form__btn {
    margin-top: 4px;
    padding: 14px 24px;
    background: linear-gradient(135deg, #009b97 0%, #2a7a72 100%);
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: opacity 0.2s;
}

.faq-form__btn:hover {
    opacity: 0.9;
}

.faq-form__agree {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    margin-top: 4px;
}

.faq-form__checkbox {
    margin-top: 4px;
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    accent-color: #009b97;
}

.faq-form__agree-text {
    font-size: 0.8125rem;
    line-height: 1.4;
    color: #009b97;
}


/* ========== ÐÐÐÐ¢ÐÐÐ¢Ð« ========== */
.contacts {
    margin: 0 0 48px;
    width: 100%;
}

.contacts__title {
    margin: 0 0 24px;
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a1a;
}

.contacts__block {
    background: #e8f4f4;
    border-radius: 16px;
    border: 1px solid #d0e8e8;
    overflow: hidden;
}

.contacts__tabs {
    display: flex;
    gap: 0;
    padding: 20px 24px 0;
    border-bottom: 1px solid #d0e8e8;
}

.contacts__tab {
    padding: 12px 20px;
    font-size: 0.9375rem;
    color: #333;
    background: none;
    border: none;
    border-radius: 10px 10px 0 0;
    cursor: pointer;
    font-family: inherit;
    transition: background 0.2s, border-color 0.2s;
}

.contacts__tab:hover {
    background: rgba(255, 255, 255, 0.6);
}

.contacts__tab--active {
    background: #fff;
    border: 1px solid #c5e3e3;
    border-bottom-color: #e8f4f4;
    margin-bottom: -1px;
    color: #1a1a1a;
}

.contacts__content {
    display: flex;
    min-height: 360px;
    margin-bottom: -6px;
}

.contacts__info {
    flex: 0 0 380px;
    padding: 28px 24px 24px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.contacts__label {
    margin: 16px 0 4px;
    font-size: 0.8125rem;
    color: #6a6a6a;
}

.contacts__label:first-child {
    margin-top: 0;
}

.contacts__metro {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0;
    font-size: 1.125rem;
    font-weight: 700;
    color: #1a1a1a;
}

.contacts__icon-pin {
    width: 20px;
    height: 20px;
    color: #009b97;
}

.contacts__address,
.contacts__hours {
    margin: 0;
    font-size: 0.9375rem;
    color: #333;
}

.contacts__phones a,
.contacts__email a {
    color: #333;
    text-decoration: none;
}

.contacts__phones a:hover,
.contacts__email a:hover {
    color: #009b97;
}

.contacts__phones,
.contacts__email {
    margin: 0;
    font-size: 0.9375rem;
}

.contacts__social {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.contacts__social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    text-decoration: none;
    color: #fff;
    font-size: 0.75rem;
    font-weight: 600;
}

.contacts__social-icon--vk {
    background: #0077ff;
}

.contacts__social-icon--yt {
    background: #ff0000;
}

.contacts__social-icon--wa {
    background: #25d366;
}

.contacts__map-wrap {
    flex: 1;
    min-width: 0;
}

.contacts__map {
    width: 100%;
    height: 100%;
    min-height: 360px;
    background: #d8ecec;
}

.contacts__map-placeholder {
    width: 100%;
    height: 100%;
    min-height: 360px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: #5a7a7a;
    font-size: 0.9375rem;
}

.contacts__map-pin {
    font-size: 2rem;
}

.contacts__map-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: #e53935;
    color: #fff;
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: background 0.2s;
}

.contacts__map-btn:hover {
    background: #c62828;
}

@media (max-width: 768px) {
    .contacts__content {
        flex-direction: column;
    }

    .contacts__info {
        flex: none;
    }

    .contacts__map,
    .contacts__map-placeholder {
        min-height: 280px;
    }
}

/* ========== Ð¤Ð£Ð¢ÐÐ  ========== */
.footer {
    width: 100%;
    background: #e0f7fa;
    padding: 70px 0 24px;
    margin-top: 70px;
}

.footer__top {
    display: flex;
    flex-wrap: wrap;
    gap: 32px 40px;
    padding-bottom: 32px;
    border-bottom: 1px solid #b8e8ec;
    justify-content: space-between;
}

.footer__col {
    min-width: 0;
}

.footer__col--logo {
    flex: 0 0 auto;
}


.footer__col--contacts {
    flex: 0 0 200px;
}

.footer__logo-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.footer__logo-icon {
    width: 172px;
    height: auto;
    color: #009b97;
}

.footer__logo-icon svg {
    width: 100%;
    height: 100%;
}

.footer__logo-name {
    display: block;
    font-size: 1.125rem;
    font-weight: 700;
    color: #1a1a1a;
}

.footer__logo-tagline {
    display: block;
    font-size: 0.7rem;
    color: #5a7a7a;
    letter-spacing: 0.04em;
}

.footer__nav {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer__nav a {
    font-size: 0.9375rem;
    color: #333;
    text-decoration: none;
}

.footer__nav a:hover {
    color: #009b97;
}

.footer__heading {
    margin: 0 0 16px;
    font-size: 0.9375rem;
    font-weight: 700;
    color: #1a1a1a;
}

.footer__list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer__list li {
    margin-bottom: 6px;
}

.footer__list a {
    font-size: 0.875rem;
    color: #333;
    text-decoration: none;
}

.footer__list a:hover {
    color: #009b97;
}

.footer__contact {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0 0 10px;
    font-size: 0.875rem;
}

.footer__icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    color: #009b97;
}

.footer__contact a {
    color: #333;
    text-decoration: none;
}

.footer__contact a:hover {
    color: #009b97;
}

.footer__social {
    display: flex;
    gap: 10px;
    margin-top: 12px;
}

.footer__social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 0.7rem;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
}

.footer__social-link:nth-child(1) {
    background: #0077ff;
}

.footer__social-link:nth-child(2) {
    background: #46a7da;
}

.footer__social-link:nth-child(3) {
    background: #0088cc;
}

.footer__bottom {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding-top: 24px;
}

.footer__copyright {
    margin: 0;
    font-size: 0.8125rem;
    color: #5a7a7a;
    flex: 1 1 280px;
}

.footer__legal {
    display: flex;
    gap: 24px;
}

.footer__legal a {
    font-size: 0.8125rem;
    color: #009b97;
    text-decoration: none;
}

span.wpcf7-spinner {
    position: absolute;
    bottom: 60px;
}

.footer__legal a:hover {
    text-decoration: underline;
}

.footer__disclaimer {
    margin: 0;
    font-size: 0.8125rem;
    color: #5a7a7a;
    flex: 0 0 240px;
    text-align: right;
}

@media (max-width: 900px) {
    .footer__top {
        flex-direction: column;
    }

    .footer__col--contacts {
        flex: none;
    }

    .footer__bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer__copyright,
    .footer__disclaimer {
        flex: none;
        text-align: center;
    }
}

@keyframes jello-vertical {
    0% {
        transform: scale3d(1, 1, 1);
    }

    30% {
        transform: scale3d(0.99, 1.05, 1);
    }

    40% {
        transform: scale3d(1.05, 0.99, 1);
    }

    50% {
        transform: scale3d(0.9, 1.05, 1);
    }

    65% {
        transform: scale3d(1.03, 0.99, 1);
    }

    75% {
        transform: scale3d(0.99, 1.03, 1);
    }

    100% {
        transform: scale3d(1, 1, 1);
    }
}

path.fil1 {
    fill: #fff;
    animation: jello-vertical 1.6s ease-in-out infinite both;
}

/* ========== ÐÐÐÐÐÐ¬ÐÐÐ ÐÐÐÐ (Ð¾Ð±ÑÐ°ÑÐ½ÑÐ¹ Ð·Ð²Ð¾Ð½Ð¾Ðº) ========== */
.modal {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s, visibility 0.25s;
}

.modal--open {
    opacity: 1;
    visibility: visible;
}

.modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    cursor: pointer;
}

.modal__box {
    position: relative;
    width: 100%;
    max-width: 400px;
    padding: 32px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.modal__close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    padding: 0;
    font-size: 1.5rem;
    line-height: 1;
    color: #6a6a6a;
    background: none;
    border: none;
    cursor: pointer;
    transition: color 0.2s;
}

.modal__close:hover {
    color: #0d5c5c;
}

.modal__title {
    margin: 0 0 24px;
    font-size: 1.5rem;
    font-weight: 700;
    color: #0d5c5c;
}

.modal__form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.modal__label {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.modal__label-text {
    font-size: 0.875rem;
    color: #5a5a5a;
}

.modal__input {
    padding: 12px 14px;
    font-size: 1rem;
    border: 1px solid #d0e0e0;
    border-radius: 8px;
    font-family: inherit;
    transition: border-color 0.2s;
    width: 100%;
}

.wpcf7-list-item {
    display: flex;
    margin: 0 !important;
    align-items: center;
}

.modal__input:focus {
    outline: none;
    border-color: #0d5c5c;
}

.modal__agree {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-size: 0.8125rem;
    color: #5a5a5a;
}

.modal__checkbox {
    margin-top: 5px;
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    accent-color: #0d5c5c;
}

.modal__submit {
    padding: 14px 24px;
    background: #0d5c5c;
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.2s;
}

.modal__submit:hover {
    background: #008c8c;
}

a.block__btn svg {
    stroke: #FFF;
    padding-left: 4px;
    padding-top: 4px;
}

.cards__title-wrap {
    display: flex;
    gap: 10px;
    align-items: center;
}

.service-card__img img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.swiper-button-prev,
.swiper-rtl .swiper-button-next {
    left: var(--swiper-navigation-sides-offset, 70px) !important;
    right: auto;
}

.swiper-button-next,
.swiper-rtl .swiper-button-prev {
    right: var(--swiper-navigation-sides-offset, 70px) !important;
    left: auto;
}

.proc-card__img img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

footer.footer path.fil1 {
    fill: #e2f7fa;
    animation: jello-vertical 1.6s ease-in-out infinite both;
}

ul#primary-menu {
    display: flex;
    gap: 25px;
    list-style: none;
}

.reviews-baner {
    display: flex;
    justify-content: space-between;
}

@media (max-width: 1024px) {
    .header-floating__container {
        position: relative;
        min-height: 62px;
        gap: 10px;
    }

    .header-floating__logo {
        width: 120px;
    }

    .header-floating__menu {
        display: none;
        position: absolute;
        left: 0;
        right: 0;
        top: 100%;
        margin: 0;
        padding: 8px;
        margin-top: 10px;
        background: #ffffff;
        border: 1px solid #d7e8ea;
        border-radius: 14px;
        box-shadow: 0 12px 30px rgba(7, 73, 82, 0.12);
        z-index: 70;
        opacity: 0;
        transform: translateY(-8px);
        pointer-events: none;
        max-height: 0;
        overflow: hidden;
        transition: opacity 0.2s ease, transform 0.2s ease, max-height 0.25s ease, padding 0.2s ease;
    }

    .header-floating.is-open .header-floating__menu {
        display: flex;
        flex-direction: column;
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
        max-height: 80vh;
    }

    .header-floating.is-open ul#floating-primary-menu {
        flex-direction: column;
        gap: 2px;
        align-items: stretch;
    }

    .header-floating.is-open ul#floating-primary-menu .menu-item a {
        display: block;
        padding: 11px 12px;
        border-radius: 10px;
    }

    .header-floating.is-open ul#floating-primary-menu .menu-item a:hover,
    .header-floating.is-open ul#floating-primary-menu .current_page_item a {
        background: #f2fbfb;
    }

    .header-floating.is-open .menu-toggle.float-toggle span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .header-floating.is-open .menu-toggle.float-toggle span:nth-child(2) {
        opacity: 0;
    }

    .header-floating.is-open .menu-toggle.float-toggle span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .header-floating__callback {
        display: none;
    }

    .menu-toggle {
        display: inline-flex;
        flex-shrink: 0;
    }

    .header__nav .container {
        position: relative;
        gap: 10px;
    }

    ul#primary-menu {
        position: absolute;
        left: 0;
        right: 0;
        top: calc(100% + 10px);
        margin: 0;
        padding: 0;
        flex-direction: column;
        gap: 2px;
        background: #ffffff;
        border: 1px solid #d7e8ea;
        border-radius: 14px;
        box-shadow: 0 12px 30px rgba(7, 73, 82, 0.12);
        z-index: 70;
        opacity: 0;
        transform: translateY(-8px);
        pointer-events: none;
        max-height: 0;
        overflow: hidden;
        transition: opacity 0.2s ease, transform 0.2s ease, max-height 0.25s ease, padding 0.2s ease;
    }

    .header__nav.is-open ul#primary-menu {
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
        max-height: 80vh;
        padding: 8px;
    }

    ul#primary-menu .menu-item a {
        display: block;
        padding: 11px 12px;
        border-radius: 10px;
           
    }

    ul#primary-menu .menu-item a:hover,
    ul#primary-menu .current_page_item a {
        background: #f2fbfb;
    }

    .header__nav .header__search-wrap {
        margin-left: auto;
    }
}

.menu-item a {
    text-decoration: none;
    color: #1a1a1a;
    font-weight: bold;
        padding: 20px;
}

.menu-item a:hover,
.current_page_item a {
    color: #009b97;
}

p.contacts__phones {
    font-weight: bold;
}

p.contacts__email {
    font-weight: bold;
}


.accordion-container {
    position: relative;
    height: auto;
    margin: 10px auto;
}

.set {
    position: relative;
    width: 100%;
    height: auto;
    overflow: hidden;
    scroll-margin-top: 90px;
    /* учёт фиксированной шапки при прокрутке к блоку */
}

.set a:hover {
    background: #379b961a;
}

.set>a {
    display: block;
    padding: 32px 25px;
    text-decoration: none;
    color: #333;
    font-weight: 500;
    border-bottom: 1px solid #ddd;
    transition: all 0.2s linear;
    font-size: 28px;
    border-radius: 6px 6px 6px 6px;
}

.set>a i {
    float: right;
    margin-top: -1px;
    transition: transform 0.3s ease;
    transform-origin: 50% 100%;
    display: flex;
    width: 20px;
    height: 20px;
}

.set>a i.fa-minus {
    transform: rotate(135deg);
}

.set>a.active {
    background-color: #269b9629;
    color: #333;
    border-radius: 6px 6px 32px 32px;
}

.accordion-container .content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, opacity 0.2s ease-out;
    opacity: 0;
}

.accordion-container .content.open {
    max-height: 1000px;
    opacity: 1;
}

.accordion-container .content p {
    padding: 26px;
    margin: 0;
    color: #333;
    opacity: 0;
    transition: opacity 0.2s ease-out 0.1s;
}

.accordion-container .content.open p {
    opacity: 1;
}

/* Таймлайн образования врача */
.edu-timeline {
    list-style: none;
    margin: 0;
    padding: 0 0 0 60px;
    position: relative;
    border-left: 3px solid #379b96;
    margin-left: 24px;
    padding-top: 14px;
}

.edu-timeline::before {
    content: '';
    position: absolute;
    left: -3px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, #379b96 0%, #e3f2fd 100%);
    border-radius: 2px;
}

.edu-timeline__item {
    position: relative;
    padding-bottom: 1.5rem;
}

.edu-timeline__item:last-child {
    padding-bottom: 0;
}

.edu-timeline__item::before {
    content: '';
    position: absolute;
    left: -68px;
    top: 4px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #379b96;
    border: 3px solid #fff;
    box-shadow: 0 0 0 2px #379b96;
}

.edu-timeline__year {
    display: inline-block;
    font-weight: 700;
    font-size: 1rem;
    color: #379b96;
    margin-bottom: 0.35rem;
}

.edu-timeline__body {
    padding: 0.5rem 0;
}

.edu-timeline__place {
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 0.25rem;
}

.edu-timeline__type {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 0.15rem;
}

.edu-timeline__spec {
    font-size: 0.95rem;
    color: #444;
}

.edu-timeline__empty {
    padding: 10px 15px;
    margin: 0;
    color: #666;
}

.vrach-head {
    display: flex;
    gap: 50px;
    margin-bottom: 70px;
}

.vrach-foto {
    overflow: hidden;
    max-width: 500px;
    aspect-ratio: 4 / 5;
    border-radius: 16px;
}

.vrach-foto img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.vrach-desc {
    display: flex;
    gap: 20px;
    flex-direction: column;
}

.vrach-fio {
    font-size: 24px;
    font-weight: 700;
}

.vrach-doljnost,
.vrach-stag span {
    font-size: 24px;
    font-weight: 700;
    color: #269b96;
}

section.vrach {
    position: relative;
}

@keyframes vrach-bg-pulse {

    0%,
    100% {
        opacity: 0.15;
        transform: scale(1);
    }

    50% {
        opacity: 0.25;
        transform: scale(1.02);
    }
}

img.vrach-bg {
    position: absolute;
    right: 240px;
    opacity: 0.2;
    top: 40px;
    z-index: -3;
    animation: vrach-bg-pulse 4s ease-in-out infinite;
}

.vrach-bio {
    max-width: 500px;
}

/* Список врачей (страница Врачи) */
.vrach-list .vrach-card {
    margin-bottom: 60px;
}

.vrach-list .vrach-card:last-child {
    margin-bottom: 0;
}

.vrach-list .vrach-head {
    display: flex;
    text-decoration: none;
    color: inherit;
    margin-bottom: 0;
    transition: opacity 0.2s;
    max-width: 930px;
}

.vrach-list .vrach-head:hover {
    opacity: 0.9;
}

.vrach-list .vrach-foto {
    max-width: 280px;
}

.vrach-list .vrach-bio {
    max-width: none;
}

.vrach-back {
    margin-bottom: 1.5rem;
}

.vrach-back a {
    color: #269b96;
    text-decoration: none;
}

.vrach-back a:hover {
    text-decoration: underline;
}

.vrach-single .vrach-head--single {
    display: flex;
    gap: 50px;
    margin-bottom: 2rem;
}

.vrach-single .vrach-foto {
    max-width: 280px;
    flex-shrink: 0;
}

.vrach-schedule {
    margin-top: 1rem;
    padding: 1rem;
    background: #ffffff6b;
    border-radius: 12px;
    border: 1px solid #e0e0e054;
}

.vrach-schedule__speciality-form {
    margin-bottom: 1rem;
}

.vrach-schedule__speciality-label {
    display: inline-block;
    margin-right: 0.5rem;
    font-weight: 600;
    font-size: 0.95rem;
}

.vrach-schedule__speciality-select {
    padding: 0.4rem 0.75rem;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 0.95rem;
    background: #fff;
    min-width: 200px;
}

.vrach-schedule__speciality-select:focus {
    outline: none;
    border-color: #269b96;
}

.vrach-schedule__title {
    display: block;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.vrach-schedule__dates {
    display: flex;
    gap: 0.5rem;
    overflow-x: auto;
    padding-bottom: 0.5rem;
    margin-bottom: 1rem;
    -webkit-overflow-scrolling: touch;
}

.vrach-schedule__date-card {
    flex-shrink: 0;
    min-width: 70px;
    padding: 0.6rem 0.5rem;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    background: #fff;
    cursor: pointer;
    font: inherit;
    text-align: center;
    transition: border-color 0.2s, background 0.2s;
}

.vrach-schedule__date-card:hover {
    border-color: #269b96;
    background: #e3fdf0;
}

.vrach-schedule__date-card.is-selected {
    border-color: #269b96;
    background: #e3f2fd;
}

.vrach-schedule__date-card[aria-pressed="true"] {
    border-color: #269b96;
    background: #e3fdf0;
}

.vrach-schedule__date-day {
    display: block;
    font-weight: 600;
    font-size: 0.95rem;
}

.vrach-schedule__date-weekday {
    display: block;
    font-size: 0.8rem;
    color: #666;
    margin-top: 0.2rem;
}

.vrach-schedule__slots-wrap {
    position: relative;
    min-height: 60px;
}

.vrach-schedule__day-slots {
    display: none;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.vrach-schedule__day-slots.is-visible {
    display: flex;
}

.vrach-schedule__slot {
    padding: 0.5rem 0.75rem;
    border: none;
    border-radius: 8px;
    background: #269b96;
    color: #fff;
    font: inherit;
    font-size: 0.9rem;
    cursor: pointer;
    transition: background 0.2s;
}

.vrach-schedule__slot:hover {
    background: #18605d;
}

.vrach-schedule__empty {
    margin: 0;
    font-size: 0.9rem;
    color: #666;
}

/* Модальное окно записи на приём */
.vrach-booking-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    visibility: hidden;
    opacity: 0;
    transition: visibility 0.2s, opacity 0.2s;
}

.vrach-booking-modal.is-open {
    visibility: visible;
    opacity: 1;
}

.vrach-booking-modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    cursor: pointer;
}

.vrach-booking-modal__box {
    position: relative;
    width: 100%;
    max-width: 420px;
    max-height: 90vh;
    overflow: auto;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    padding: 1.5rem;
}

.vrach-booking-modal__close {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    width: 2rem;
    height: 2rem;
    padding: 0;
    border: none;
    background: none;
    font-size: 1.5rem;
    line-height: 1;
    color: #666;
    cursor: pointer;
    border-radius: 4px;
}

.vrach-booking-modal__close:hover {
    color: #000;
    background: #f0f0f0;
}

.vrach-booking-modal__title {
    margin: 0 0 0.5rem;
    font-size: 1.25rem;
}

.vrach-booking-modal__slot {
    margin: 0 0 1rem;
    font-size: 0.95rem;
    color: #269b96;
    font-weight: 600;
}

.vrach-booking-modal__form {
    margin: 0;
}

.vrach-booking-modal__field {
    margin: 0 0 1rem;
}

.vrach-booking-modal__field label {
    display: block;
    margin-bottom: 0.25rem;
    font-size: 0.9rem;
}

.vrach-booking-modal__field .required {
    color: #c00;
}

.vrach-booking-modal__field input,
.vrach-booking-modal__field textarea {
    width: 100%;
    padding: 0.5rem 0.75rem;
    border: 1px solid #ccc;
    border-radius: 6px;
    font: inherit;
}

.vrach-booking-modal__field input:focus,
.vrach-booking-modal__field textarea:focus {
    outline: none;
    border-color: #269b96;
}

.vrach-booking-modal__actions {
    display: flex;
    gap: 0.75rem;
    margin: 1.25rem 0 0;
    justify-content: center;
}

.vrach-booking-modal__submit {
    padding: 0.6rem 1.25rem;
    border: none;
    border-radius: 8px;
    background: #269b96;
    color: #fff;
    font: inherit;
    cursor: pointer;
}

.vrach-booking-modal__submit:hover {
    background: #18605d;
}

.vrach-booking-modal__cancel {
    padding: 0.6rem 1.25rem;
    border: 1px solid #ccc;
    border-radius: 8px;
    background: #fff;
    font: inherit;
    cursor: pointer;
}

.vrach-booking-modal__cancel:hover {
    background: #f5f5f5;
}

/* Прайс */
.price-section__title {
    margin-bottom: 1.5rem;
}

.price-table-wrap {
    overflow-x: auto;
}

.price-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95rem;
}

.price-table th,
.price-table td {
    padding: 0.75rem 1rem;
    text-align: left;
    border-bottom: 1px solid #e0e0e0;
}

.price-table thead th {
    background: #269b9624;
    font-weight: 600;
}

.price-table tbody tr:hover {
    background: #d9f9f7;
}

.price-table__th-duration,
.price-table__duration {
    white-space: nowrap;
    width: 1%;
}

.price-table__th-price,
.price-table__price {
    white-space: nowrap;
    font-weight: 600;
}

.price-table__th-action {
    width: 1%;
    text-align: right;
}

.price-table__action {
    text-align: right;
}

.price-table__btn {
    display: inline-block;
    padding: 0.4rem 1rem;
    border-radius: 8px;
    background: #269b96;
    color: #fff;
    text-decoration: none;
    font-size: 0.9rem;
    transition: background 0.2s;
}

.price-table__btn:hover {
    background: #18605d;
    color: #fff;
}

.price-section__empty {
    color: #666;
}

/* Блог — плитка 2 в ряд */
.blog-section__title {
    margin-bottom: 1.5rem;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }
}

.blog-card {
    margin: 0;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    transition: box-shadow 0.2s;
}

.blog-card:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

.blog-card__link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.blog-card__thumb {
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: #f0f0f0;
}

.blog-card__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-card__body {
    padding: 1rem 1.25rem;
}

.blog-card__title {
    margin: 0 0 0.5rem;
    font-size: 1.1rem;
    line-height: 1.3;
}

.blog-card__title a {
    color: inherit;
    text-decoration: none;
}

.blog-card__meta {
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 0.5rem;
}

.blog-card__excerpt {
    font-size: 0.9rem;
    line-height: 1.5;
    color: #444;
}

.blog-card__excerpt p {
    margin: 0;
}

.blog-section__empty {
    color: #666;
}

/* Навигация «предыдущий / следующий» запись (single) */
.post-navigation {
    margin-top: 2.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e8e8e8;
}

.post-navigation .nav-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.post-navigation .nav-previous,
.post-navigation .nav-next {
    margin: 0;
}

.post-navigation .nav-previous a,
.post-navigation .nav-next a {
    display: block;
    padding: 1rem 1.25rem;
    background: #f8f9fa;
    border-radius: 10px;
    text-decoration: none;
    color: inherit;
    border: 1px solid #eee;
    transition: background 0.2s, border-color 0.2s, box-shadow 0.2s;
}

.post-navigation .nav-previous a:hover,
.post-navigation .nav-next a:hover {
    background: #fff;
    border-color: #269b96;
    box-shadow: 0 4px 12px rgba(38, 155, 150, 0.15);
}

.post-navigation .nav-next {
    text-align: right;
}

.post-navigation .nav-subtitle {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #269b96;
    margin-bottom: 0.35rem;
}

.post-navigation .nav-title {
    display: block;
    font-weight: 600;
    font-size: 0.95rem;
    line-height: 1.35;
}

.post-navigation .nav-next .nav-subtitle {
    margin-bottom: 0.35rem;
}

@media (max-width: 640px) {
    .post-navigation .nav-links {
        grid-template-columns: 1fr;
    }
}

.vrach-api-response {
    max-height: 400px;
    overflow: auto;
    padding: 1rem;
    background: #f5f5f5;
    border-radius: 8px;
    white-space: pre-wrap;
    word-break: break-all;
    font-size: 12px;
}

article.blog-card:hover .blog-card__body {
    background: #e0f7f6;
}

.single .post-thumbnail {
    overflow: hidden;
    border-radius: 16px;
}

/* --- Выравнивание и обтекание --- */
.alignleft {
    float: left;
    margin: 0 20px 20px 0;
    /* Отступ справа и снизу */
}

.alignright {
    float: right;
    margin: 0 0 20px 20px;
    /* Отступ слева и снизу */
}

.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
    clear: both;
    /* Предотвращает обтекание с обеих сторон */
}

/* --- Стили для подписей (caption) --- */
.wp-caption {
    max-width: 100%;
    /* Адаптивность */
    border: 1px solid #ddd;
    padding: 5px;
    text-align: center;
    background-color: #f3f3f3;
    border-radius: 3px;
}

.wp-caption img {
    display: block;
    margin: 0 auto;
    max-width: 100%;
    height: auto;
}

.wp-caption-text {
    font-size: 0.9em;
    padding: 5px;
    margin: 0;
    color: #666;
}

/* --- Адаптивность изображений --- */
img {
    max-width: 100%;
    height: auto;
}

/* Дополнительные отступы для изображений с выравниванием (опционально) */
img.alignleft {
    margin: 0 20px 20px 0;
}

img.alignright {
    margin: 0 0 20px 20px;
}

/* Услуги: плитка 3 в ряд */
.uslugi {
    padding: 2rem 0;
}

.uslugi__title {
    margin-bottom: 1.5rem;
}

.uslugi-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
}

.uslugi-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.uslugi-card__link {
    display: block;
    color: inherit;
    text-decoration: none;
    height: 100%;
}

.uslugi-card__thumb {
    aspect-ratio: 16 / 10;
    background: #f1f1f1;
}

.uslugi-card__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.uslugi-card__body {
    padding: 1rem 1.1rem 1.2rem;
}

.uslugi-card__title {
    margin: 0 0 0.5rem;
    font-size: 1.05rem;
    line-height: 1.35;
}

.uslugi-card__subtitle {
    color: #5f6368;
    font-size: 0.95rem;
    line-height: 1.45;
}

.uslugi__empty {
    color: #666;
}

@media (max-width: 992px) {
    .uslugi-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .uslugi-grid {
        grid-template-columns: 1fr;
    }
}

/* Одна услуга */
.usluga-single {
    padding-bottom: 2rem;
}

.usluga-single__image {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    margin-bottom: 1.25rem;
    height: 520px;
}

.usluga-single__image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.32);
}

.usluga-single__image img {
    display: block;
    width: 100%;
    height: 100%;
    object-position: center;
    object-fit: cover;
}

p.usluga-single__subtitle {
    margin-top: 43px;
    font-size: 18px;
    font-style: italic;
}

.usluga-single__title {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    margin: 0;
    color: #fff;
    text-align: center;
    font-size: clamp(1.5rem, 3vw, 2.3rem);
    line-height: 1.25;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
    padding: 0 1rem;
    width: 100%;
}

.usluga-single__title--plain {
    position: static;
    transform: none;
    color: #1f1f1f;
    text-shadow: none;
    padding: 0;
    margin-bottom: 1rem;
    text-align: left;
}

/* О клинике */
.about-clinic {
    padding: 2rem 0 3rem;
}

.about-clinic__brand {
    margin: 0 0 0.5rem;
    font-size: clamp(2rem, 4vw, 3.6rem);
    font-weight: 500;
    color: #109b96;
    line-height: 1.1;
}

.about-clinic__lead {
    margin: 0 0 1.5rem;
    font-size: clamp(1.05rem, 2.2vw, 1.8rem);
    color: #6f8488;
    line-height: 1.25;
    max-width: 950px;
}

.about-clinic__hero {
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 2rem;
        display: flex;
    gap: 28px;
}

.about-clinic__hero img {
    display: block;
    width: 100%;
    height: auto;
}

.about-clinic__task-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 0.9rem;
}

.about-clinic__task-title {
    margin: 0;
    font-size: clamp(1.7rem, 3.5vw, 3.4rem);
    font-weight: 500;
    line-height: 1.15;
    color: #109b96;
}

.about-clinic__task-icon {
    width: 58px;
    height: 58px;
    border: 3px solid #66b7be;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: #66b7be;
    flex-shrink: 0;
}

.about-clinic__text {
    margin: 0 0 0.7rem;
    font-size: clamp(0.95rem, 1.7vw, 1.9rem);
    line-height: 1.35;
    color: #6f8488;
    opacity: 0.85;
}

.about-clinic__cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin: 1.4rem 0 2rem;
}

.about-clinic__card {
    background: rgba(215, 250, 254, 0.45);
    border-radius: 20px;
    padding: 1.4rem 1.5rem;
    color: #5b767a;
    line-height: 1.35;
    font-size: clamp(0.95rem, 1.45vw, 1.45rem);
}

.about-clinic__gallery {
    border-radius: 20px;
    overflow: hidden;
    background: #fff;
}

.about-clinic__gallery-swiper {
    border-radius: 20px;
    overflow: hidden;
}

.about-clinic__gallery-slide {
    display: block;
}

.about-clinic__gallery img {
    display: block;
    width: 100%;
    height: auto;
}

.about-clinic__gallery-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.9rem;
    padding: 0.7rem 1rem 0;
    color: #5b767a;
}

.about-clinic__gallery-nav button {
    border: none;
    background: transparent;
    color: #5b767a;
    font-size: 1.15rem;
    cursor: pointer;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.about-clinic__gallery-nav button:hover {
    background: #eaf8fa;
}

@media (max-width: 900px) {
    .about-clinic__cards {
        grid-template-columns: 1fr;
    }
}

/* Основатель */
.about-founder {
    margin-top: 2.5rem;
    display: grid;
    grid-template-columns: minmax(320px, 1.05fr) minmax(320px, 1fr);
    gap: 2rem;
    align-items: center;
}

.about-founder__visual {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.about-founder__bg-shape {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    pointer-events: none;
}

.about-founder__photo {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 620px;
    height: auto;
    display: block;
}

.about-founder__title {
    margin: 0 0 0.9rem;
    font-size: clamp(2rem, 4vw, 4.2rem);
    line-height: 1.12;
    font-weight: 500;
    color: #109b96;
}

.about-founder__name {
    margin-bottom: 1.2rem;
    font-size: clamp(1.3rem, 2.2vw, 2.4rem);
    font-weight: 600;
    color: #109b96;
}

.about-founder__text {
    margin: 0 0 1rem;
    font-size: clamp(1rem, 1.7vw, 1.9rem);
    line-height: 1.35;
    color: #5b767a;
}

@media (max-width: 992px) {
    .about-founder {
        grid-template-columns: 1fr;
    }

    .about-founder__visual {
        min-height: 420px;
    }
}

.about-unique {
    margin-top: 2.5rem;
    background: #2b9b960d;
    border-radius: 16px;
    padding: 2.5rem 2.2rem 2.8rem;
}

.about-unique__head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
}

.about-unique__title {
    margin: 0;
    font-size: clamp(2rem, 4vw, 4.2rem);
    line-height: 1.15;
    font-weight: 500;
    color: #109b96;
}

.about-unique__icon {
    width: 66px;
    height: 66px;
    flex-shrink: 0;
}

.about-unique__subtitle {
    margin: 1rem 0 1.4rem;
    font-size: clamp(1.15rem, 2vw, 2.2rem);
    line-height: 1.3;
    color: #3f7d85;
    opacity: 0.95;
}

.about-unique__levels {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
    margin-bottom: 1.8rem;
}

.about-unique__level {
    background: #fff;
    border-radius: 18px;
    padding: 0.95rem 1rem;
    text-align: center;
    font-size: clamp(0.95rem, 1.35vw, 1.35rem);
    color: #109b96;
}

.about-unique__texts {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.2rem;
}

.about-unique__text-col {
    padding-top: 1rem;
    border-top: 2px solid #00cae0;
}

.about-unique__text-col p {
    margin: 0;
    font-size: clamp(1rem, 1.8vw, 2rem);
    line-height: 1.35;
    color: #5b767a;
}

@media (max-width: 1100px) {
    .about-unique__levels {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 760px) {
    .about-unique {
        padding: 1.4rem 1rem 1.6rem;
    }

    .about-unique__texts {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .about-unique__head {
        align-items: center;
    }
}

/* Что вы получите */
.about-benefits {
    margin-top: 2.5rem;
}

.about-benefits__head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
}

.about-benefits__title {
    margin: 0;
    font-size: clamp(2rem, 4vw, 4.2rem);
    line-height: 1.15;
    font-weight: 500;
    color: #109b96;
}

.about-benefits__icon {
    width: 68px;
    height: 68px;
    flex-shrink: 0;
}

.about-benefits__lead {
    margin: 1rem 0 2rem;
    font-size: clamp(1rem, 1.8vw, 2rem);
    line-height: 1.35;
    color: #6f8488;
    opacity: 0.9;
    max-width: 1200px;
}

.about-benefits__row {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.about-benefits__label {
    padding-top: 0.65rem;
    border-top: 2px solid #00cae0;
    color: #109b96;
    font-size: clamp(1.2rem, 2vw, 2.2rem);
}

.about-benefits__list {
    margin: 0;
    padding-left: 1.1rem;
    color: #6f8488;
    font-size: clamp(1rem, 1.7vw, 1.9rem);
    line-height: 1.35;
}

.about-benefits__list li {
    margin-bottom: 0.65rem;
}

.about-benefits__bottom {
    margin-top: 1rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: end;
}

.about-benefits__bottom-text {
    margin: 0;
    color: #8b9ba0;
    font-size: clamp(1.05rem, 1.8vw, 2rem);
    line-height: 1.35;
    max-width: 560px;
}

.about-benefits__bottom-img {
    border-radius: 0;
    overflow: hidden;
}

.about-benefits__bottom-img img {
    display: block;
    width: 100%;
    height: auto;
}

@media (max-width: 980px) {

    .about-benefits__row,
    .about-benefits__bottom {
        grid-template-columns: 1fr;
    }

    .about-benefits__icon {
        width: 52px;
        height: 52px;
    }
}

/* Страница поиска */
.search .site-main {
    max-width: 1100px;
    margin: 0 auto;
    padding: 2rem 1rem 3rem;
}

.search .page-header {
    margin: 0 0 1.2rem;
}

.search .page-title {
    margin: 0;
    font-size: clamp(1.7rem, 3vw, 2.3rem);
    color: #109b96;
    line-height: 1.2;
}

.search .page-title span {
    color: #269b96;
}

.search .site-main>article {
    background: #fff;
    border: 1px solid #e5ecef;
    border-radius: 14px;
    padding: 1rem 1.1rem;
    margin-bottom: 1rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}

.search .entry-title {
    margin: 0 0 0.45rem;
    font-size: clamp(1.1rem, 2vw, 1.45rem);
    line-height: 1.3;
}

.search .entry-title a {
    text-decoration: none;
    color: #109b96;
}

.search .entry-title a:hover {
    color: #269b96;
}

.search .entry-meta {
    margin-bottom: 0.5rem;
    font-size: 0.86rem;
    color: #6b7d82;
}

.search .post-thumbnail {
    margin: 0.6rem 0 0.8rem;
    border-radius: 10px;
    overflow: hidden;
}

.search .entry-summary {
    color: #4d666c;
    line-height: 1.5;
}

.search .entry-footer {
    margin-top: 0.65rem;
    font-size: 0.85rem;
    color: #6f848a;
}

.search .navigation.posts-navigation {
    margin-top: 1.2rem;
}

.search .navigation .nav-links {
    display: flex;
    justify-content: space-between;
    gap: 0.8rem;
}

.search .navigation .nav-previous a,
.search .navigation .nav-next a {
    display: inline-block;
    padding: 0.55rem 0.85rem;
    background: #f4fbfb;
    border: 1px solid #dcecec;
    border-radius: 9px;
    text-decoration: none;
    color: #0f555f;
}

.search .navigation .nav-previous a:hover,
.search .navigation .nav-next a:hover {
    background: #e8f7f7;
}

/* Страница 404 */
.evamed-404 {
    padding: 2rem 0 3rem;
}

.evamed-404__card {
    max-width: 860px;
    margin: 0 auto;
    padding: clamp(1.3rem, 2.4vw, 2rem);
    border-radius: 18px;
    border: 1px solid #dbeff2;
    background: linear-gradient(180deg, #f8feff 0%, #ffffff 100%);
    box-shadow: 0 6px 18px rgba(7, 73, 82, 0.08);
}

.evamed-404__code {
    margin: 0 0 0.5rem;
    font-size: clamp(2.5rem, 7vw, 5rem);
    line-height: 1;
    font-weight: 700;
    letter-spacing: 0.06em;
    color: #00cae0;
}

.evamed-404__header {
    margin: 0 0 0.7rem;
}

.evamed-404__title {
    margin: 0;
    font-size: clamp(1.7rem, 3vw, 2.35rem);
    line-height: 1.2;
    color: #109b96;
}

.evamed-404__text {
    margin: 0 0 1.1rem;
    max-width: 640px;
    font-size: 1rem;
    line-height: 1.55;
    color: #5b767a;
}

.evamed-404__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    margin-bottom: 1rem;
}

.evamed-404__btn {
    display: inline-block;
    padding: 0.55rem 1rem;
    border-radius: 9px;
    border: 1px solid #269b96;
    background: #269b96;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: 0.2s ease;
}

.evamed-404__btn:hover {
    background: #18605d;
    border-color: #18605d;
    color: #fff;
}

.evamed-404__btn--ghost {
    background: #ffffff;
    color: #0f555f;
    border-color: #cfe8ea;
}

.evamed-404__btn--ghost:hover {
    background: #e8f7f7;
    border-color: #bfe2e6;
    color: #0f555f;
}

.evamed-404__search .search-form {
    display: flex;
    gap: 0.55rem;
    align-items: center;
}

.evamed-404__search .search-field {
    flex: 1;
    min-width: 180px;
    padding: 0.68rem 0.85rem;
    border: 1px solid #d6e9ec;
    border-radius: 10px;
    background: #fff;
}

.evamed-404__search .search-field:focus {
    outline: none;
    border-color: #269b96;
    box-shadow: 0 0 0 3px rgba(38, 155, 150, 0.14);
}

.evamed-404__search .search-submit {
    padding: 0.67rem 1rem;
    border: 1px solid #269b96;
    border-radius: 10px;
    background: #269b96;
    color: #fff;
    font-weight: 600;
    cursor: pointer;
}

.evamed-404__search .search-submit:hover {
    background: #18605d;
    border-color: #18605d;
}

@media (max-width: 640px) {
    .evamed-404__search .search-form {
        flex-direction: column;
        align-items: stretch;
    }
}

/* Дополнительные блоки о клинике */
.about-activity {
    margin-top: 2.5rem;
}

.about-activity__title {
    margin: 0 0 1rem;
    font-size: clamp(1.8rem, 3.2vw, 3rem);
    color: #109b96;
    line-height: 1.2;
}

.about-activity__list {
    margin: 0;
    padding-left: 1.2rem;
    display: grid;
    gap: 0.75rem;
    color: #5b767a;
    font-size: clamp(1rem, 1.6vw, 1.5rem);
    line-height: 1.45;
}

.about-activity__list li::marker {
    color: #00cae0;
}

.about-advantages {
    margin-top: 2.5rem;
    padding: 1.4rem;
    background: unset;
    border-radius: 18px;
}

.about-advantages__title {
    margin: 0 0 1rem;
    font-size: clamp(1.8rem, 3.2vw, 3rem);
    color: #109b96;
    line-height: 1.2;
}

.about-advantages__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.about-advantages__item {
    background: #ffffff42;
    border: 1px solid #dbeff2;
    border-radius: 14px;
    padding: 1rem;
}

.about-advantages__item h3 {
    margin: 0 0 0.55rem;
    color: #109b96;
    font-size: clamp(1.05rem, 1.6vw, 1.35rem);
    line-height: 1.3;
}

.about-advantages__item p {
    margin: 0;
    color: #5b767a;
    font-size: clamp(0.95rem, 1.4vw, 1.1rem);
    line-height: 1.45;
}

@media (max-width: 980px) {
    .about-advantages__grid {
        grid-template-columns: 1fr;
    }
}

/* Отзывы */


.reviews-page__title {
    margin: 0 0 1rem;
}

.reviews-page__notice,
.reviews-page__error {
    padding: 0.85rem 1rem;
    border-radius: 10px;
    margin-bottom: 1rem;
}

.reviews-page__notice {
    background: #e8f7ec;
    color: #216738;
}

.reviews-page__error {
    background: #fdecec;
    color: #8f1f1f;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.review-card {
    background: #fff;
    border: 1px solid #e6ecef;
    border-radius: 12px;
    padding: 1rem 1.1rem;
}

/* Карточка отзыва из ACF (макет) */
.review-card--acf {
    padding: 1.25rem 1.35rem;
    border-radius: 14px;
    border-color: #e2e6e6;
    background: linear-gradient(360deg, #269b9614, transparent);
}

.review-card__top {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.review-card--acf .review-card__name {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a1a1a;
}

.review-card__source {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    flex-shrink: 0;
}

.review-card__source img {
    width: 28px;
    height: 28px;
    object-fit: contain;
}

.review-card__specialist {
    margin: 0 0 0.5rem;
    font-size: 0.95rem;
    color: #333;
}

.review-card__specialist a {
    color: #009b97;
    text-decoration: none;
}

.review-card__specialist a:hover {
    color: #087d79;
}

.review-card__title {
    margin: 0 0 0.6rem;
    font-size: 1.05rem;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.35;
}

.review-card__text-wrap {
    margin-top: 0;
}

.review-card--acf .review-card__text,
.review-card__excerpt {
    color: #4d666c;
    line-height: 1.5;
    font-size: 0.95rem;
}

.review-card__more {
    margin-top: 0.35rem;
    padding: 0;
    border: none;
    background: none;
    font-size: inherit;
    color: #009b97;
    text-decoration: none;
    cursor: pointer;
    float: right;
}

.review-card__more:hover {
    color: #087d79;
}

.review-card__head {
    display: flex;
    justify-content: space-between;
    gap: 0.5rem;
    margin-bottom: 0.6rem;
}

.review-card__date {
    font-size: 0.85rem;
    color: #7a8a90;
    white-space: nowrap;
}

.review-card__text {
    color: #4d666c;
    line-height: 1.45;
}

.reviews-page__empty {
    color: #66787d;
}

.reviews-fab {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 1000;
    border: none;
    border-radius: 999px;
    background: #269b96;
    color: #fff;
    padding: 0.8rem 1.1rem;
    font-size: 0.95rem;
    cursor: pointer;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.reviews-fab:hover {
    background: #1d7874;
}

.reviews-modal {
    position: fixed;
    inset: 0;
    z-index: 1100;
    display: none;
}

.reviews-modal.is-open {
    display: block;
}

.reviews-modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
}

.reviews-modal__dialog {
    position: relative;
    z-index: 1;
    max-width: 520px;
    margin: 5vh auto 0;
    background: #fff;
    border-radius: 14px;
    padding: 1.1rem 1.1rem 1.2rem;
}

.reviews-modal__close {
    position: absolute;
    top: 10px;
    right: 10px;
    border: none;
    background: transparent;
    font-size: 1.5rem;
    cursor: pointer;
    line-height: 1;
}

.reviews-modal__title {
    margin: 0 0 0.9rem;
    color: #109b96;
}

.reviews-form__field {
    display: block;
    margin-bottom: 0.8rem;
}

.reviews-form__field span {
    display: block;
    margin-bottom: 0.3rem;
    font-size: 0.9rem;
    color: #47636a;
}

.reviews-form__field input,
.reviews-form__field textarea {
    width: 100%;
    border: 1px solid #d7e2e6;
    border-radius: 8px;
    padding: 0.55rem 0.65rem;
    font: inherit;
}

.reviews-form__submit {
    border: none;
    background: #269b96;
    color: #fff;
    border-radius: 8px;
    padding: 0.6rem 1rem;
    cursor: pointer;
}

@media (max-width: 820px) {
    .reviews-grid {
        grid-template-columns: 1fr;
    }
}

/* Анонсы */
.anons-page {
    padding: 2rem 0 3rem;
}

.anons-page__title {
    margin: 0 0 1.2rem;
}

.anons-grid {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 1.25rem;
}

.anons-card {
    background: #ffffff26;
    border: 1px solid #e5ecef;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    display: grid;
    grid-template-columns: 1fr 2fr;
    align-items: center;
}

.anons-card__photo {

    width: 100%;
    height: 100%;
}

.anons-card__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.anons-card__body {
    padding: 1rem 2.1rem 1.2rem;
}

.anons-card--no-photo {
    grid-template-columns: 1fr;
}

.anons-card__fio {
    margin: 0 0 0.35rem;
    font-size: 1.2rem;
    line-height: 1.25;
    color: #109b96;
}

.anons-card__spec {
    color: #269b96;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.anons-card__city {
    color: #6a7b80;
    margin-bottom: 0.65rem;
    font-size: 0.95rem;
}

.anons-card__desc {
    color: #4d666c;
    line-height: 1.45;
    margin-bottom: 0.75rem;
}

.anons-card__start {
    font-size: 0.92rem;
    color: #6d7f84;
    margin-bottom: 0.5rem;
}

.anons-card__end {
    font-size: 0.92rem;
    color: #6d7f84;
    margin-bottom: 0.5rem;
}

.anons-card__countdown {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 0.85rem;
    padding: 0.65rem 0.7rem;
    background: #e9f9f8;
    border-radius: 10px;
    color: #0d4f57;
    font-size: 0.92rem;
    width: fit-content;
}

.anons-card__countdown strong {
    font-size: 1rem;
}

.anons-card__countdown-done {
    font-weight: 600;
    color: #0c6e68;
}

.anons-card__actions {
    margin-top: 0.8rem;
}

.anons-card__book-btn {
    border: none;
    background: #269b96;
    color: #fff;
    border-radius: 8px;
    padding: 0.58rem 1rem;
    cursor: pointer;
    font: inherit;
}

.anons-card__book-btn:hover {
    background: #1f7d79;
}

.anons-page__empty {
    color: #66787d;
}

/* Анонсы на главной (краткий блок) */
.anons-front {
    padding: 2rem 0 2.5rem;
}

.anons-front__title {
    margin: 0 0 1.2rem;
}

.anons-front__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
}

.anons-front__card {
    display: block;
    background: #fff;
    border: 1px solid #e5ecef;
    border-radius: 14px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: box-shadow 0.2s, border-color 0.2s;
}

.anons-front__card:hover {
    border-color: #269b96;
    box-shadow: 0 4px 16px rgba(38, 155, 150, 0.15);
}

.anons-front__photo {
    aspect-ratio: 1;
    overflow: hidden;
}

.anons-front__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.anons-front__body {
    padding: 1rem;
}

.anons-front__fio {
    font-weight: 600;
    font-size: 1.05rem;
    color: #109b96;
    margin-bottom: 0.35rem;
}

.anons-front__spec {
    font-size: 0.9rem;
    color: #5a7a7a;
}

.anons-front__city {
    font-size: 0.9rem;
    color: #6a7b80;
    margin-top: 0.2rem;
}



.anons-front__empty {
    color: #66787d;
}

/* Отзывы на главной (краткий блок) */
.otzivi-front {
    padding: 2rem 0 2.5rem;
}

.otzivi-front__title {
    margin: 0 0 1.2rem;
}

.otzivi-front__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
}

.otzivi-front__card {
    display: block;
    background: #fff;
    border: 1px solid #e5ecef;
    border-radius: 14px;
    padding: 1rem 1.1rem;
    text-decoration: none;
    color: inherit;
    transition: box-shadow 0.2s, border-color 0.2s;
}

.otzivi-front__card:hover {
    border-color: #269b96;
    box-shadow: 0 4px 16px rgba(38, 155, 150, 0.15);
}

.otzivi-front__top {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.otzivi-front__fio {
    font-weight: 700;
    font-size: 1.05rem;
    color: #1a1a1a;
}

.otzivi-front__source {
    display: inline-flex;
    flex-shrink: 0;
}

.otzivi-front__source img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.otzivi-front__spec {
    font-size: 0.9rem;
    color: #009b97;
    margin-bottom: 0.35rem;
}

.otzivi-front__text {
    font-size: 0.9rem;
    color: #4d666c;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
}

h2 {
    color: #379b96;
}

.otzivi-front__empty {
    color: #66787d;
}

@media (max-width: 768px) {
    .anons-front__grid {
        grid-template-columns: 1fr;
    }

    .otzivi-front__grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 920px) {
    .anons-grid {
        grid-template-columns: 1fr;
    }

    .anons-card {
        grid-template-columns: 1fr;
    }
}

.anons-modal {
    position: fixed;
    inset: 0;
    z-index: 1200;
    display: none;
}

.anons-modal.is-open {
    display: block;
}

.anons-modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
}

.anons-modal__dialog {
    position: relative;
    z-index: 1;
    max-width: 560px;
    margin: 6vh auto 0;
    background: #fff;
    border-radius: 14px;
    padding: 1.1rem 1.1rem 1.2rem;
}

.anons-modal__close {
    position: absolute;
    top: 10px;
    right: 10px;
    border: none;
    background: transparent;
    font-size: 1.5rem;
    cursor: pointer;
    line-height: 1;
}

.anons-modal__title {
    margin: 0 0 0.45rem;
    color: #109b96;
}

.anons-modal__subtitle {
    margin: 0 0 0.9rem;
    color: #5c7379;
}

.anons-modal__form-placeholder {
    min-height: 120px;
    border: 1px dashed #c9d6dc;
    border-radius: 10px;
    padding: 0.8rem;
    color: #8aa0a8;
    font-size: 0.95rem;
}

footer.footer .menu-item a {
    font-weight: normal;
}

.swiper-pagination-fraction {
    width: unset !important;
}

.about-clinic__gallery-swiper.swiper.swiper-initialized.swiper-horizontal.swiper-backface-hidden {
    height: 350px;
}

.header-floating__logo-inner svg {
    fill: #269b96;
}

span.wpcf7-form-control.wpcf7-acceptance label {
    display: flex;
    align-items: center;
    gap: 10px;
}

.header__social a {
    text-decoration: none;
}

.header__social {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    align-items: center;
}

/* Куки-баннер */
.cookies-banner {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1300;
    display: none;
    background: rgba(4, 59, 60, 0.96);
    color: #ffffff;
    padding: 0.85rem 0;
    font-size: 0.9rem;
}

.cookies-banner--visible {
    display: block;
}

.cookies-banner__inner {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
}

.cookies-banner__text {
    line-height: 1.4;
}

.cookies-banner__text a {
    color: #00cae0;
    text-decoration: underline;
}

.cookies-banner__text a:hover {
    color: #8ae1ff;
}

.cookies-banner__btn {
    flex-shrink: 0;
    border: none;
    border-radius: 999px;
    padding: 0.5rem 1.2rem;
    background: #00cae0;
    color: #043b3c;
    font-weight: 600;
    cursor: pointer;
}

.cookies-banner__btn:hover {
    background: #35d5ea;
}

.baner-item-logo img {
    height: 100%;
    width: 100%;
        max-width: 200px;
}
.baner-item-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 38px;
    width: 100%;
}
.reviews-baner-item {
    display: flex;
    flex-direction: column;
}
.reviews-baner {
    background: #269b9621;
    padding: 46px;
    border-radius: 25px;
    margin-bottom: 46px;
}
a.baner-item-link {
    display: block;
    text-align: center;
    margin-top: 22px;
    text-decoration: none;
    color: #269b96;
}
footer.footer .header__social {
    justify-content: flex-start;
}
a.services__all {
    float: right;
}
.about-clinic__hero img {
    width: 50%;
    border-radius: 24px;
}
a.bvi-open {
    text-decoration: none;
}
/* Sub-menu в главном меню */
ul#primary-menu > .menu-item,
ul#floating-primary-menu > .menu-item {
    position: relative;
}

ul#primary-menu .sub-menu,
ul#floating-primary-menu .sub-menu {
    list-style: none;
    margin: 0;
    padding: 8px;
    min-width: 220px;
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    z-index: 120;
    background: #ffffff;
    border: 1px solid #d7e8ea;
    border-radius: 12px;
    box-shadow: 0 12px 30px rgba(7, 73, 82, 0.12);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    pointer-events: none;
    transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
}

ul#primary-menu .menu-item-has-children:hover > .sub-menu,
ul#primary-menu .menu-item-has-children:focus-within > .sub-menu,
ul#floating-primary-menu .menu-item-has-children:hover > .sub-menu,
ul#floating-primary-menu .menu-item-has-children:focus-within > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

ul#primary-menu .sub-menu .menu-item a,
ul#floating-primary-menu .sub-menu .menu-item a {
    display: block;
    padding: 9px 10px;
    border-radius: 8px;
    font-weight: 600;
    color: #1a1a1a;
    white-space: nowrap;
}

ul#primary-menu .sub-menu .menu-item a:hover,
ul#primary-menu .sub-menu .current_page_item > a,
ul#floating-primary-menu .sub-menu .menu-item a:hover,
ul#floating-primary-menu .sub-menu .current_page_item > a {
    background: #f2fbfb;
    color: #009b97;
}
@media (max-width: 1348px) {
    .container {
        padding: 0 12px;
    }

    .container.block__container.top-baner {
        padding: 0;
    }

    .service-card__head {
        min-height: 65px;
    }
}

@media (max-width: 1100px) {
    .about-clinic__hero img {
    width: 100%;
    }
    .about-clinic__hero {
            flex-direction: column;
    }
    ul#floating-primary-menu {
        gap: 10px;
    }

    .faq-form__left,
    a.header__callback {
        display: none;
    }

    .faq-form__wrap {
        flex-direction: column;
    }

    .faq-form__card {
        flex: none;
        width: 100%;
    }

    .header__logo-icon {
        width: 140px;
    }

    .header__phones {
        gap: 12px;
    }

    a.header__phone svg {
        max-width: 16px;
    }

    .block__left {
        padding: 24px;
    }

    .header {
        margin-bottom: 16px;
    }

    .cards__item {
        padding: 16px 16px;
    }

    .service-card__head {
        padding: 23px 16px 0;
    }

    .service-card__text {
        margin: 12px 16px 16px;
    }

    .altay__card {
        flex-direction: column;
        min-height: unset;
    }

    a.altay__card>* {
        width: 100%;
    }

    .faq-form__card {
        padding: 32px 24px;
    }

    .footer {
        padding: 26px 0 24px;
        margin-top: 40px;
    }

    .anons-card__body {
        padding: 24px;
    }

    .vrach-head {
        gap: 16px;
    }

    .block__title {
        font-size: 28px;
    }
}
.uslura_txt {
    margin: 76px 0;
}