   /* Карточки кейсов */
        .case-card-wrapper {
            margin-bottom: 30px;
        }
        .case-card {
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            border-radius: 10px;
            background: #fff;
            transition: box-shadow 0.3s ease;
            height: 100%;
            display: flex;
            flex-direction: column;
        }
        .case-card:hover {
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
        }
        .case-card__slider {
            border-radius: 10px 10px 0 0;
            overflow: hidden;
            position: relative;
        }
        .photo-slider .swiper-slide {
            height: auto;
        }
        .photo-slider__image {
            width: 100%;
            height: auto;
            aspect-ratio: 716 / 385;
            object-fit: cover;
            background: #eef2f5;
        }
        .photo-thumb-slider {
            position: absolute;
            bottom: 20px;
            left: 20px;
            z-index: 10;
            max-width: calc(81px * 2 + 10px);
            padding: 0 5px;
        }
        .photo-thumb-slider .swiper-slide {
            width: 81px;
            height: 55px;
            opacity: 0.5;
            cursor: pointer;
            transition: opacity 0.2s;
            border-radius: 5px;
            overflow: hidden;
        }
        .photo-thumb-slider .swiper-slide-thumb-active {
            opacity: 1;
        }
        .photo-thumb-slider__image {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .case-card__content {
            padding: 20px 20px 20px;
            flex: 1;
            display: flex;
            flex-direction: column;
        }
        .case-card__title {
            font-size: 20px;
            font-weight: 600;
            margin-bottom: 10px;
            color: #2c2c2c;
            line-height: 1.3;
        }
        .case-card__desc, .case-card__solution {
            font-size: 15px;
            color: #505050;
            margin-bottom: 15px;
        }
        .case-card__doctor {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 15px;
        }
        .case-card__doctor-photo {
            width: 66px;
            height: 66px;
            border-radius: 50%;
            object-fit: cover;
            background: #ddd;
        }
        .case-card__doctor-info {
            display: flex;
            flex-direction: column;
        }
        .case-card__doctor-name {
            font-weight: 600;
            font-size: 16px;
            color: #070707;
        }
        .case-card__doctor-spec {
            font-size: 14px;
            color: #505050;
        }
        .case-card__category {
            display: inline-block;
            background: #f0f0f0;
            color: #2c2c2c;
            padding: 5px 12px;
            border-radius: 20px;
            font-size: 13px;
            font-weight: 500;
            align-self: flex-start;
            margin-top: auto;
        }
        /* Фильтр */
        .cases-filter {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 10px;
            margin-bottom: 40px;
        }
        .cases-filter__btn {
            background: transparent;
            border: 1px solid #2dadbc;
            color: #2dadbc;
            padding: 8px 20px;
            border-radius: 30px;
            font-weight: 500;
            font-size: 16px;
            transition: all 0.2s;
            cursor: pointer;
        }
        .cases-filter__btn:hover,
        .cases-filter__btn.active {
            background: #2dadbc;
            color: #fff;
        }
        .cases-show-more {
            text-align: center;
            margin-top: 20px;
            margin-bottom: 60px;
        }
        .cases-show-more .btn {
            padding: 15px 40px;
            font-size: 16px;
        }
        /* Адаптив */
        @media (max-width: 767px) {
            .case-card__title {
                font-size: 18px;
            }
            .photo-thumb-slider .swiper-slide {
                width: 60px;
                height: 40px;
            }
        }
        /* Блок отзывов */
        .reviews-video-slider {
            margin-top: 60px;
            margin-bottom: 60px;
        }
        .reviews-video-slider .slick-slide {
            padding: 0 10px;
        }
        .video-card {
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0,0,0,0.05);
            background: #fff;
            height: 100%;
        }
        .video-card__preview {
            position: relative;
            aspect-ratio: 16 / 9;
        }
        .video-card__preview img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .video-card__play {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 64px;
            height: 64px;
            background: rgba(0,0,0,0.5) url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="white"><polygon points="5,3 19,12 5,21" /></svg>') center no-repeat;
            background-size: 30%;
            border-radius: 50%;
            cursor: pointer;
            transition: background 0.2s;
        }
        .video-card__play:hover {
            background-color: rgba(237, 93, 43, 0.9);
        }
        .video-card__duration {
            position: absolute;
            bottom: 10px;
            left: 10px;
            background: rgba(0,0,0,0.6);
            color: #fff;
            padding: 2px 8px;
            border-radius: 20px;
            font-size: 12px;
        }
        .video-card__content {
            padding: 15px;
        }
        .video-card__title {
            font-weight: 600;
            font-size: 18px;
            margin-bottom: 8px;
        }
        .video-card__text {
            color: #505050;
            font-size: 14px;
            margin-bottom: 8px;
        }
        .video-card__author {
            font-style: italic;
            color: #2dadbc;
        }
        .reviews-video-slider .slick-prev:before,
        .reviews-video-slider .slick-next:before {
            color: #2dadbc;
        }