/**
 * Home Page Styles
 * Стили главной страницы
 */

/* Секция с чек-апом */
.section-checkup-intro {
    margin: 20px 0;
}

/* Сетка для слайдера чек-апов */
.checkup-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
}

/* Карточка чек-апа */
.checkup-card {
    border-radius: 15px;
    display: grid;
    grid-template-columns: 1fr 420px;
    min-height: 460px;
    overflow: hidden;
    position: relative;
    padding: 50px 100px;
}

/* Контент (левая часть) */
.checkup-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Содержимое слайда (из редактора) */
.checkup-info {
    color: white;
}

/* Заголовок слайда */
.checkup-title {
    font-size: 49px;
    font-weight: 400;
    line-height: 1.2;
    margin: 0 0 20px;
}

.checkup-info h2 {
    font-size: 49px;
    font-weight: 400;
    line-height: 1.2;
    margin: 0 0 20px;
}

.checkup-info h3 {
    font-size: 30px;
    font-weight: 400;
    line-height: 1.3;
    margin: 0 0 15px;
}

.checkup-info p {
    font-size: 27px;
    font-weight: 400;
    line-height: 1.5;
    margin: 0 0 10px;
}

.checkup-info p:last-child {
    margin-bottom: 0;
}

.checkup-info ul,
.checkup-info ol {
    font-size: 20px;
    line-height: 1.5;
    margin: 0 0 10px;
    padding-left: 20px;
}

.checkup-info a {
    color: white;
    text-decoration: underline;
}

/* Кнопка */
.btn-checkup {
    background-color: white;
    border-radius: 1000px;
    color: #D20001;
    font-size: 17px;
    font-weight: 500;
    padding: 20px 50px;
    text-decoration: none;
    display: inline-block;
    align-self: flex-start;
    margin-top: 30px;
    transition: opacity 0.3s ease;
}

.btn-checkup:hover {
    opacity: 0.9;
}

/* Стили навигации слайдера перенесены в basic.css */

/* Splide слайдеры - кастомные стили навигации */

/* Контейнер навигации */
.splide__arrows {
    display: flex;
    gap: 12px;
    position: absolute;
    bottom: -70px;
    right: 100px;
    z-index: 10;
}

/* Стрелки */
.splide__arrow {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    width: 51px;
    height: 51px;
    opacity: 1;
    transition: opacity 0.3s ease;
    position: static;
    transform: none;
}

.splide__arrow:hover {
    opacity: 0.85;
}

.splide__arrow svg {
    width: 51px;
    height: 51px;
    fill: #E01F26;
}

.splide__arrow--prev {
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 51 51"><circle cx="25.5" cy="25.5" r="25.5" fill="%23E01F26"/><path d="M28 18l-7 7.5 7 7.5" stroke="white" stroke-width="2" fill="none"/></svg>') center/contain no-repeat;
}

.splide__arrow--next {
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 51 51"><circle cx="25.5" cy="25.5" r="25.5" fill="%23E01F26"/><path d="M23 18l7 7.5-7 7.5" stroke="white" stroke-width="2" fill="none"/></svg>') center/contain no-repeat;
}

/* Точки пагинации */
.splide__pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    position: absolute;
    bottom: -70px;
    left: 50%;
    transform: translateX(-50%);
    padding: 0;
    margin: 0;
}

.splide__pagination__page {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background-color: rgba(224, 31, 38, 0.3);
    border: none;
    padding: 0;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.splide__pagination__page.is-active {
    background-color: #E01F26;
}

.splide__pagination__page:hover {
    background-color: rgba(224, 31, 38, 0.6);
}

/* Отступ снизу для секций со слайдерами */
.splide {
    margin-bottom: 70px;
}

/* Стили карточек услуг перенесены в services-cards.css */

/* Баннер подготовки к исследованиям */
.section-preparation-banner {
    margin: 35px 0;
    margin-top: 80px;
}

.preparation-card {
    background-color: #E3D3BE;
    border-radius: 5px;
    padding: 38px 50px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 50px;
    align-items: center;
    position: relative;
}

.preparation-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Бейдж "Важно знать" */
.preparation-badge {
    background-color: #E01F26;
    border-radius: 100px;
    color: white;
    font-size: 15px;
    font-weight: 400;
    padding: 7px 21px;
    display: inline-block;
    align-self: flex-start;
}

/* Заголовок */
.preparation-title {
    color: #E01F26;
    font-size: 22px;
    font-weight: 400;
    line-height: 1.3;
    margin: 0;
}

/* Список услуг */
.preparation-list {
    display: grid;
    grid-template-columns: repeat(3, auto);
    gap: 15px 40px;
    width: 50%;
}

.preparation-item {
    color: #383E4B;
    font-size: 17px;
    line-height: 1.5;
}

.preparation-image {
    position: absolute;
    right: 60px;
    bottom: -45px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.preparation-image img {
    max-width: 100%;
    height: auto;
    display: block;
    width: 488px;
}

/* Стили секции специалистов перенесены в specialists.css */

/* Стили карточек специалистов используют общие классы .specialist-* из basic.css */

/* Секция "О компании" */
.section-about {
    margin: 50px 0;
    margin-top: 150px;
}

/* Верхняя часть: Grid 3 колонки × 3 строки */
.about-top {
    display: grid;
    grid-template-columns: 2fr auto 1fr;
    grid-template-rows: auto auto auto;
    gap: 10px;
    margin-bottom: 10px;
}

/* Текстовый блок - занимает 3 строки */
.about-text {
    background-color: #E3D3BE;
    border-radius: 15px;
    padding: 75px 60px;
    grid-row: span 3;
}

.about-title {
    color: #383E4B;
    font-size: 25px;
    font-weight: 400;
    line-height: normal;
    margin: 0 0 40px;
}

.about-description p {
    color: #383E4B;
    font-size: 17px;
    line-height: 150%;
    margin: 0 0 10px;
}

.about-description p:last-child {
    margin-bottom: 0;
}

/* Изображение с наложенной статистикой - занимает 3 строки */
.about-image-stats {
    position: relative;
    grid-row: span 3;
}

.about-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    width: 367px;
    height: 470px;
}

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

.about-stat-overlay {
    position: absolute;
    top: 45px;
    left: 48px;
}

.stat-number {
    color: rgba(56, 62, 75, 0.7);
    font-size: 39px;
    font-weight: 300;
    line-height: normal;
    margin-bottom: 5px;
}

.stat-label {
    color: rgba(56, 62, 75, 0.7);
    font-size: 16px;
    line-height: 1.5;
}

/* Обёртка карточек статистики */
.stat-cards {
    display: contents;
}

/* Карточки статистики - размещаются в grid */
.stat-card {
    background-color: #E3D3BE;
    border-radius: 15px;
    padding: 20px;
}

/* Третья карточка (10+) должна быть в строке 3 */
.stat-cards .stat-card:nth-child(3) {
    grid-column: 3;
    grid-row: 3;
    padding-bottom: 95px;
}

.stat-card-number {
    color: rgba(56, 62, 75, 0.7);
    font-size: 39px;
    font-weight: 300;
    line-height: normal;
    margin-bottom: 5px;
}

.stat-card-label {
    color: rgba(56, 62, 75, 0.7);
    font-size: 16px;
    line-height: 1.5;
}

/* Фотографии внизу */
.about-photos {
    display: grid;
    grid-template-columns: 510px 1fr;
    gap: 10px;
}

.about-photo {
    border-radius: 15px;
    overflow: hidden;
    height: 491px;
}

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

/* Секция галереи */
.section-gallery {
    margin: 110px 0;
}

.section-gallery .section-title {
    color: #383E4B;
    font-size: 30px;
    font-weight: 400;
    line-height: 1.2;
    margin: 0 0 30px;
    text-align: center;
}

/* Splide слайдер - breakout эффект (вне контейнера) */
.section-gallery .gallery-splide {
    margin-left: auto;
    margin-right: 0;
    max-width: calc(50vw + var(--container-width) / 2);
    padding-left: var(--container-padding);
    padding-right: 20px;
    margin-bottom: 40px;
}

/* Сетка галереи */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.gallery-item {
    width: 310px;
    height: 377px;
    flex-shrink: 0;
    overflow: hidden;
    border-radius: 5px;
    background-color: #F5F5F5;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* Секция отзывов */
.section-reviews {
    margin: 140px 0 50px;
}

/* Заголовок + ссылка "Все" */
.reviews-header {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 45px;
    position: relative;
}

.reviews-header .section-title {
    color: #383E4B;
    font-size: 30px;
    font-weight: 400;
    line-height: normal;
    margin: 0;
}

/* Специфичное позиционирование для ссылки "Все" в отзывах */
.reviews-all {
    position: absolute;
    right: 0;
}

/* Галерея фотографий отзывов - стили перенесены в basic.css */

/* Рейтинг Яндекс.Отзывы */
.yandex-reviews-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-bottom: 35px;
}

.yandex-logo img {
    display: block;
    max-width: 100%;
    height: auto;
}

.rating-large {
    color: #383E4B;
    font-size: 120px;
    font-weight: 300;
    line-height: 1;
    opacity: 0.1;
}

/* Слайдер отзывов */
.reviews-slider {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 35px;
}

/* Карточка отзыва */
/* Стили карточек отзывов перенесены в basic.css */

/* Навигация слайдера в секции отзывов */
.section-reviews .slider-navigation {
    margin-top: 0;
    margin-bottom: 50px;
}

/* Кнопки действий - базовые стили перенесены в basic.css */
/* Специфичный отступ для секции на главной */
.section-reviews .reviews-actions {
    margin-top: 80px;
}

/* Секция "Свежие новости" (горизонтальные карточки) */
.section-fresh-news {
    margin: 50px 0;
}

/* Шапка секции */
.section-fresh-news .section-header {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 35px;
    position: relative;
}

.section-fresh-news .section-title {
    color: #383E4B;
    font-size: 30px;
    font-weight: 400;
    line-height: normal;
    margin: 0;
}

.section-fresh-news .section-all-link {
    color: #E01F26;
    font-size: 20px;
    font-weight: 400;
    text-decoration: none;
    transition: opacity 0.3s ease;
    position: absolute;
    right: 0;
}

.section-fresh-news .section-all-link:hover {
    opacity: 0.8;
}

/* Splide слайдер - breakout эффект (вне контейнера) */
.section-fresh-news .fresh-news-splide {
    margin-left: auto;
    margin-right: 0;
    max-width: calc(50vw + var(--container-width) / 2);
    padding-left: var(--container-padding);
    padding-right: 20px;
    margin-bottom: 40px;
}

/* Сетка новостей - 3 горизонтальные карточки */
.fresh-news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

/* Карточка новости - горизонтальная (изображение слева, контент справа) */
.fresh-news-card {
    flex-shrink: 0;
    display: flex;
    flex-direction: row;
    gap: 20px;
}

/* Изображение новости */
.fresh-news-image {
    width: 310px;
    height: 451px;
    flex-shrink: 0;
    border-radius: 5px;
    overflow: hidden;
    background-color: #F5F5F5;
}

.fresh-news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Контент новости */
.fresh-news-content {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* Дата */
.fresh-news-date {
    color: #383E4B;
    font-size: 15px;
    font-weight: 400;
    line-height: normal;
    opacity: 0.6;
    display: block;
}

/* Заголовок новости */
.fresh-news-title {
    color: #383E4B;
    font-size: 20px;
    font-weight: 400;
    line-height: normal;
    margin: 0;
}

/* Превью текста */
.fresh-news-excerpt {
    color: #383E4B;
    font-size: 17px;
    font-weight: 400;
    line-height: 1.3;
    opacity: 0.8;
    margin: 0;
    width: 260px;
}

/* Кнопка "Читать подробнее" */
.fresh-news-btn {
    background-color: transparent;
    border: 1px solid #E01F26;
    border-radius: 5px;
    color: #E01F26;
    font-size: 16px;
    font-weight: 400;
    line-height: normal;
    height: 50px;
    width: 240px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.fresh-news-btn:hover {
    background-color: #E01F26;
    color: white;
}
.checkup-image {
    text-align: end;
}
.checkup-image img {
    max-width: 420px;
    height: auto;
}



/* Секция "Информация по беременности" */
.section-pregnancy-info {
    margin: 120px 0 95px;
}

.section-pregnancy-info .section-title {
    color: #383E4B;
    font-size: 30px;
    font-weight: 400;
    line-height: normal;
    margin: 0 0 35px;
    text-align: left;
}

/* Сетка карточек - 2 колонки */
.pregnancy-grid {
    display: grid;
    grid-template-columns: repeat(2, 235px);
    gap: 50px;
}

/* Карточка беременности */
.pregnancy-card {
    display: flex;
    flex-direction: column;
}

.pregnancy-link {
    text-decoration: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Изображение */
.pregnancy-image {
    width: 154px;
    height: 119px;
    border-radius: 2px;
    overflow: hidden;
    background-color: #F5F5F5;
    box-shadow: -6.717px 96.274px 26.867px 0px rgba(219, 219, 219, 0),
                -4.478px 61.347px 24.628px 0px rgba(219, 219, 219, 0.02),
                -2.239px 34.479px 20.598px 0px rgba(219, 219, 219, 0.06),
                -0.896px 15.225px 15.225px 0px rgba(219, 219, 219, 0.09),
                -0.448px 4.03px 8.508px 0px rgba(219, 219, 219, 0.11);
}

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

/* Контент */
.pregnancy-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* Заголовок карточки */
.pregnancy-title {
    color: #E01F26;
    font-size: 17px;
    font-weight: 400;
    line-height: normal;
    margin: 0;
}

/* Дата */
.pregnancy-date {
    color: #383E4B;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.3;
    opacity: 0.8;
    display: block;
}
@media (max-width: 1300px) {
    .checkup-card {
        padding: clamp(40px, calc(3.333vw + 6.667px), 50px) clamp(80px, calc(6.667vw + 13.333px), 100px);
        min-height: clamp(385px, calc(25vw + 135px), 460px);
    }
    .checkup-image img {
        max-width: clamp(375px, calc(15vw + 225px), 420px);
    }
    .checkup-info h2 {
        font-size: clamp(43px, calc(2vw + 23px), 49px);
    }
    .splide {
        margin-bottom: clamp(40px, calc(10vw - 60px), 70px);
    }
    .preparation-list {
        grid-template-columns: repeat(3, 1fr);
    }
    .preparation-image img {
        width: clamp(380px, calc(36vw + 20px), 488px);
    }
    .preparation-image {
        bottom: clamp(-45px, calc(-15vw + 150px), 0px);
    }
    .section-about {
        margin-top: clamp(90px, calc(20vw - 110px), 150px);
    }
    .about-text {
        padding: clamp(35px, calc(13.378vw - 98.913px), 75px) clamp(35px, calc(8.361vw - 48.696px), 60px);
    }

    /* === Секция "О компании": реструктуризация === */
    .section-about .container {
        display: grid;
        grid-template-columns: 4fr 2fr 2fr 3fr;
        gap: 10px;
    }
    .about-top, .about-photos {
        display: contents;
    }
    /* stat-cards: display:contents чтобы каждая карточка — отдельный грид-элемент */
    .stat-cards {
        display: contents;
    }
    /* Ряд 1: текстовый блок на всю ширину */
    .about-text {
        grid-column: 1 / -1;
        grid-row: 1;
    }
    /* Ряд 2-4: фото-1 слева (span 3 строки) */
    .about-photo:first-child {
        grid-column: 1;
        grid-row: 2 / 5;
    }
    /* 15+ — широкая карточка, col 2-3, ряд 2 */
    .stat-cards .stat-card:nth-child(1) {
        grid-column: 2 / 4;
        grid-row: 2;
    }
    /* 20+ — col 2, ряд 3 */
    .stat-cards .stat-card:nth-child(2) {
        grid-column: 2;
        grid-row: 3;
    }
    /* 10+ — col 3, ряд 3 */
    .stat-cards .stat-card:nth-child(3) {
        grid-column: 3;
        grid-row: 3;
        padding-bottom: 20px;
    }
    /* Микроскоп + 2500+ — col 4, span 2 строки */
    .about-image-stats {
        grid-column: 4;
        grid-row: 2 / 4;
    }
    /* Ряд 4: фото-2 под стат-карточками и микроскопом */
    .about-photo:last-child {
        grid-column: 2 / -1;
        grid-row: 4;
    }
    /* Сброс фиксированных размеров */
    .about-image {
        width: 100%;
        height: 100%;
    }
    .about-photo {
        height: auto;
    }
    .about-photo:first-child {
        height: 100%;
    }
    .about-photo:first-child img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    .about-photo:last-child img {
        width: 100%;
        height: auto;
    }

    .section-gallery {
        margin-top: clamp(70px, calc(13.333vw - 63.333px), 110px);
        margin-bottom: clamp(70px, calc(13.333vw - 63.333px), 110px);
    }
    .section-reviews {
        margin-top: clamp(80px, calc(20vw - 120px), 140px);
    }
    .section-reviews .reviews-actions {
        margin-top: clamp(50px, calc(10vw - 50px), 80px);
    }
    .reviews-actions {
        margin-bottom: clamp(25px, calc(10vw - 75px), 55px);
    }
    .section-fresh-news {
        margin: clamp(30px, calc(6.667vw - 36.667px), 50px) 0;
    }
    .section-pregnancy-info {
        margin: clamp(80px, calc(13.333vw - 53.333px), 120px) 0 clamp(55px, calc(13.333vw - 78.333px), 95px);
    }

}

/* Мобильная версия */
@media (max-width: 1000px) {
    /* Секция "Свежие новости" */
    .section-fresh-news {
        padding: 30px 0;
    }

    .section-fresh-news .section-header {
        margin-bottom: 25px;
    }

    .section-fresh-news .section-title {
        font-size: 22px;
    }

    .section-fresh-news .section-all-link {
        font-size: 16px;
    }

    .section-fresh-news .fresh-news-splide {
        max-width: 100%;
        padding-left: 20px;
        padding-right: 20px;
        margin-bottom: 25px;
    }

    .fresh-news-card {
        flex-direction: column;
        gap: 15px;
        width: 100%;
    }

    .fresh-news-image {
        width: 100%;
        height: auto;
    }

    .fresh-news-image img {
        width: 100%;
        height: auto;
    }

    .fresh-news-content {
        gap: 8px;
    }

    .fresh-news-title {
        font-size: 17px;
    }

    .fresh-news-excerpt {
        font-size: 15px;
        width: auto;
    }

    .fresh-news-btn {
        font-size: 14px;
        width: auto;
        height: auto;
        padding: 12px 24px;
    }

    .section-gallery {
        margin: 35px 0;
    }

    .section-gallery .gallery-splide {
        max-width: 100%;
        padding-left: 20px;
        padding-right: 20px;
    }

    .gallery-item {
        width: 100%;
        height: auto;
    }

    .section-reviews {
        margin: 35px 0;
    }

    .reviews-header {
        justify-content: space-between;
        margin-bottom: 25px;
    }

    .reviews-header .section-title {
        flex: 1;
    }

    .reviews-all {
        position: static;
        flex-grow: 0;
    }

    .splide {
        margin-bottom: 30px;
    }

    .section-reviews .reviews-actions {
        margin-top: 30px;
    }

    .gallery-item img {
        width: 100%;
        height: auto;
    }

    /* Секция с чек-апом */
    .section-checkup-intro {
        margin: 20px 0;
    }

    /* Мобильные стили карточек услуг перенесены в services-cards.css */

    /* Баннер подготовки к исследованиям */
    .section-preparation-banner {
        margin: 40px 0;
    }

    .preparation-card {
        grid-template-columns: 1fr;
        padding: 30px 20px;
        gap: 30px;
    }

    .preparation-content {
        gap: 15px;
    }

    /* Бейдж */
    .preparation-badge {
        font-size: 14px;
        padding: 6px 18px;
    }

    /* Заголовок */
    .preparation-title {
        font-size: 20px;
    }

    /* Список - одна колонка */
    .preparation-list {
        grid-template-columns: 1fr;
        gap: 12px;
        width: 100%;
    }

    .preparation-item {
        font-size: 15px;
    }

    /* Изображение - убираем абсолютное позиционирование */
    .preparation-image {
        position: relative;
        right: auto;
        bottom: auto;
        text-align: center;
        margin-top: 20px;
    }

    .preparation-image img {
        width: 100%;
        max-width: 350px;
        height: auto;
    }

    /* Мобильные стили секции специалистов перенесены в specialists.css */

    .section-about {
        margin: 0;
    }

    /* Сброс container grid из 1300px брейкпоинта */
    .section-about .container {
        display: block;
    }
    .about-photos {
        display: grid;
    }
    .about-photo:first-child,
    .about-photo:last-child {
        grid-column: auto;
        grid-row: auto;
    }

    /* Верхняя часть - flex с wrap */
    .about-top {
        display: flex;
        flex-wrap: wrap;
        gap: 15px;
    }

    /* Текстовый блок */
    .about-text {
        padding: 40px 20px;
        order: 1;
        width: 100%;
    }

    .about-title {
        font-size: 24px;
        max-width: 180px;
        margin: auto;
        margin-bottom: 20px;
        text-align: center;
    }

    .about-description p {
        font-size: 15px;
        margin-bottom: 12px;
    }

    /* Карточки статистики - сетка 2x2 */
    .stat-cards {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 1fr 1fr;
        gap: 10px;
        order: 2;
        width: 100%;
    }

    .stat-cards .stat-card {
        padding: 15px;
    }

    .stat-cards .stat-card:nth-child(1) {
        grid-column: 1;
        grid-row: 1;
    }

    .stat-cards .stat-card:nth-child(2) {
        grid-column: 1;
        grid-row: 2;
    }

    .stat-cards .stat-card:nth-child(3) {
        grid-column: 2;
        grid-row: 1 / 3;
        padding-bottom: 15px;
    }

    .stat-card-number {
        font-size: 32px;
        margin-bottom: 3px;
    }

    .stat-card-label {
        font-size: 14px;
    }

    /* Изображение с микроскопом - после карточек */
    .about-image-stats {
        order: 5;
        width: 100%;
        flex-basis: 100%;
    }

    .about-image {
        width: 100%;
        height: auto;
        max-width: 400px;
        margin: 0 auto;
    }

    .about-image img {
        width: 100%;
        height: auto;
    }

    .about-stat-overlay {
        top: 30px;
        left: 30px;
    }

    .stat-number {
        font-size: 32px;
    }

    .stat-label {
        font-size: 14px;
    }

    /* Фотографии - одна колонка */
    .about-photos {
        grid-template-columns: 1fr;
        gap: 15px;
        margin-top: 15px;
    }

    .about-photo {
        height: auto;
    }

    .about-photo img {
        width: 100%;
        height: auto;
    }

    /* Карточка чек-апа - вертикальная на мобильных */
    .checkup-card {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto;
        min-height: auto;
        padding: 30px 20px;
        gap: 20px;
    }

    /* Изображение щита - сверху, по центру */
    .checkup-image {
        order: -1;
        text-align: center;
    }

    .checkup-image img {
        max-width: 200px;
        height: auto;
    }

    /* Контент - под изображением */
    .checkup-content {
        text-align: center;
        align-items: center;
    }

    /* Содержимое слайда */
    .checkup-title {
        font-size: 28px;
        margin-bottom: 15px;
    }

    .checkup-info h2 {
        font-size: 28px;
        margin-bottom: 15px;
    }

    .checkup-info h3 {
        font-size: 22px;
    }

    .checkup-info p {
        font-size: 18px;
    }

    .checkup-info ul,
    .checkup-info ol {
        font-size: 16px;
    }

    /* Кнопка */
    .btn-checkup {
        font-size: 15px;
        padding: 15px 40px;
        margin-top: 20px;
        align-self: center;
    }

    .section-pregnancy-info {
        margin: 40px 0;
    }

    .section-pregnancy-info .section-title {
        font-size: 22px;
        margin-bottom: 25px;
    }

    .pregnancy-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .pregnancy-title {
        font-size: 15px;
    }

}
