.header_btn_flex {
  display: flex;
}

.btn_red_v1 {
  background: #e42228 !important;
  color: #fff !important;
  margin-left: 5px;
}

/**
главная 
Российская клиника с японским подходом
*/
/* ===== Контейнер ===== */
.u261-container {
  max-width: 1600px;
  margin: 0 auto;
  padding: 40px 24px;
}

/* ===== HERO-секция ===== */
.u261-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
  margin-bottom: 32px;
}

.u261-hero__content {
  padding-top: 10px;
}

.u261-hero__title {
  font-size: 60px;
  font-weight: 500;
  line-height: 1;
  color: #000;
  margin-bottom: 16px;
}

.u261-hero__title-accent {
  display: block;
  position: relative;
  padding-bottom: 16px;
}

.u261-hero__title_red {
  width: 48px;
  height: 2px;
  background: #e42228;
  margin-bottom: 10px;
}

.u261-hero__text {
  font-size: 20px;
  line-height: 1.5;
  color: #000;
  margin-bottom: 20px;
}

/* ===== Слайдер ===== */
.u261-hero__slider-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.u261-hero__slider {
  width: 100%;
  aspect-ratio: 4 / 3;
  background: #e0e0e0;
  border-radius: 12px;
  position: relative;
  overflow: hidden;
}

.u261-slider__container {
  position: relative;
  width: 100%;
  height: 100%;
}

.u261-slider__slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
}

.u261-slider__slide.u261-active {
  opacity: 1;
}

.u261-slider__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.u261-slider__slide-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #e0e0e0 0%, #c0c0c0 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #666;
  text-align: center;
  padding: 20px;
  background-position: center !important ;
  background-size: cover !important ;
  background-repeat: no-repeat !important;
}

/* Кнопки навигации */
.u261-slider__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #333;
  opacity: 0;
  transition:
    opacity 0.3s,
    background 0.3s;
  z-index: 10;
  opacity: 0;
}

.u261-hero__slider:hover .u261-slider__nav {
  opacity: 1;
}

.u261-slider__nav:hover {
  background: rgba(255, 255, 255, 1);
}

.u261-slider__nav--prev {
  left: 16px;
}

.u261-slider__nav--next {
  right: 16px;
}

/* Индикаторы */
.u261-slider__dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}

.u261-slider__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  border: none;
  cursor: pointer;
  transition:
    background 0.3s,
    transform 0.3s;
}

.u261-slider__dot.u261-active {
  background: rgba(255, 255, 255, 1);
  transform: scale(1.2);
}

.u261-btn-primary {
  display: block;
  width: 100%;
  padding: 10px 28px;
  background: #e42228;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-align: center;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  text-decoration: none;
  transition:
    background 0.3s ease,
    transform 0.2s ease;
}

.u261-btn-primary:hover {
  background: #c62828;
  transform: translateY(-1px);
}

/* ===== Секция рейтингов ===== */
.u261-ratings {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-bottom: 32px;
}

.u261-rating-card {
  background: #f8f9fa;
  border-radius: 12px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.u261-rating-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.u261-rating-card__title {
  font-size: 20px;
  font-weight: 500;
  color: #000;
  height: 50px;
}

.u261-rating-card__title--big {
  font-size: 28px;
}

.u261-rating-card__icon {
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30%;
  background: #fff;
  border-radius: 36px;
  min-width: 40px;
  max-width: 90px;
}

.u261-rating-card__icon svg,
.u261-rating-card__icon img {
  max-width: 28px;
  max-height: 28px;
}

.u261-rating-card__label {
  font-size: 14px;
  color: #9d9d9d;
  line-height: 1.2;
  font-weight: 300;
}

.u261-rating-card__label--muted {
  color: #aaa;
}

.u261-rating-card__link {
  font-size: 14px;
  color: #e42228;
  text-decoration: underline;
  font-weight: 500;
}

.u261-rating-card__link:hover {
  text-decoration: underline;
}

/* ===== Секция карточек (нижняя) ===== */
.u261-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.u261-card {
  display: flex;
  flex-direction: column;
}

.u261-card__image {
  width: 100%;
  aspect-ratio: 4 / 3;
  background: #e0e0e0;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background-position: center !important;
  background-size: cover !important;
  background-repeat: no-repeat !important;
}

.u261-card__image-icon {
  width: 100px;
  height: 100px;
  opacity: 0.35;
}

.u261-card__image-icon svg {
  width: 100%;
  height: 100%;
}

.u261-card__play-btn {
  width: 80px;
  height: 80px;
  opacity: 0.4;
}

.u261-card__play-btn svg {
  width: 100%;
  height: 100%;
}

.u261-card__body {
  padding-top: 12px;
}

.u261-card__title {
  font-size: 16px;
  font-weight: 600;
  color: #333;
  margin-bottom: 4px;
}

.u261-card__link {
  font-size: 14px;
  color: #000000;
  text-decoration: underline;
  text-decoration-color: transparent;
  transition: text-decoration-color 0.2s;
}

.u261-card__link:hover {
  text-decoration-color: #3a3a3a;
}

/* ===== Адаптивность ===== */
@media (max-width: 1024px) {
  .u261-hero {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .u261-ratings {
    grid-template-columns: repeat(3, 1fr);
  }

  .u261-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .u261-hero__title {
    font-size: 32px;
  }

  .u261-ratings {
    grid-template-columns: repeat(2, 1fr);
  }

  .u261-cards {
    grid-template-columns: 1fr;
  }

  .u261-slider__nav {
    opacity: 1;
    width: 40px;
    height: 40px;
    font-size: 20px;
  }
}

@media (max-width: 480px) {
  .u261-container {
    padding: 20px 16px;
  }

  .u261-hero__title {
    font-size: 28px;
  }

  .u261-ratings {
    grid-template-columns: 1fr;
  }

  .u261-slider__nav {
    width: 36px;
    height: 36px;
    font-size: 18px;
  }

  .u261-slider__nav--prev {
    left: 10px;
  }

  .u261-slider__nav--next {
    right: 10px;
  }
}

/**
главная 
Саико — это
*/

.u262-container {
  max-width: 1600px;
  margin: 0 auto;
  background-color: #ffffff;
  padding: 60px 40px;
}

.u262-header {
  font-size: 60px;
  font-weight: 500;
  color: #000000;
  margin-bottom: 10px;
  padding-bottom: 10px;
  display: inline-block;
}

.u262-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.u262-card {
  background-color: #f8f9fa;
  padding: 30px;
  border-radius: 8px;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.u262-wrapper:hover {
  transform: translateY(-5px);
}

.u262-card-title {
  font-size: 33px;
  font-weight: 400;
  color: #000000;
  margin-bottom: 0px;
  padding-bottom: 10px;
  display: inline-block;
  margin-bottom: 15px;
}

.u262-card-pl {
  width: 55px;
  height: 2px;
  background: #e42228;
  margin-bottom: 10px;
}

.u262-card-text {
  width: 50%;
  font-size: 14px;
  line-height: 1.6;
  color: #000;
  margin-top: 15px;
}
.u262-card-wrapper {
  margin-top: -110px;
  margin-right: -15px;
  width: 46%;
  float: right;
}

.u262-card-image {
  width: 100%;
  max-height: 150px;
  max-width: 150px;
  background-color: #d8d8d8;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 15px;
  float: right;
  aspect-ratio: 1 / 1;
  background-position: center !important;
  background-size: cover !important;
  background-repeat: no-repeat !important;
}

.u262-card-image svg {
  width: 60px;
  height: 60px;
  fill: #999999;
}

.u262-link {
  display: inline-flex;
  align-items: center;
  color: #e74c3c;
  text-decoration: none;
  font-size: 14px;
  margin-top: 15px;
  transition: color 0.3s ease;
}

.u262-link:hover {
  color: #c0392b;
  text-decoration: underline;
}

.u262-link::after {
  content: ">";
  margin-left: 5px;
  transition: transform 0.3s ease;
}

.u262-link:hover::after {
  transform: translateX(3px);
}

.u262-schedule {
  font-size: 14px;
  line-height: 1.8;
  color: #555555;
}

@media (max-width: 968px) {
  .u262-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .u262-grid {
    grid-template-columns: 1fr;
  }

  .u262-header {
    font-size: 36px;
  }

  .u262-container {
    padding: 30px 20px;
  }
}

/*u26ms главная слайдер */

.u26ms-container {
  max-width: 1600px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.u26ms-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.u26ms-slider-wrapper {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.u26ms-slide {
  min-width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 60px 40px;
  background: white;
  border-radius: 20px;
}

.u26ms-content {
  flex: 0 0 45%;
  padding-right: 40px;
}

.u26ms-title {
  font-size: 88px;
  font-weight: 500;
  line-height: 1.2;
  color: #000;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.u26ms-divider {
  width: 60px;
  height: 3px;
  background: #e63946;
  margin-bottom: 30px;
}

.u26ms-description {
  font-size: 20px;
  line-height: 1.4;
  color: #000;
  margin-bottom: 40px;
  max-width: 460px;
  font-weight: 300;
}

.u26ms-button {
  display: inline-block;
  padding: 16px 48px;
  background: #e63946;
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(230, 57, 70, 0.3);
}

.u26ms-button:hover {
  background: #d62839;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(230, 57, 70, 0.4);
}

.u26ms-image-wrapper {
  flex: 0 0 45%;
  position: relative;
  height: 500px;
  overflow: hidden;
}

.u26ms-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.u26ms-logo {
  position: absolute;
  top: 40px;
  right: 40px;
  width: 120px;
  height: 120px;
  background: #e63946;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(230, 57, 70, 0.4);
  z-index: 10;
}

.u26ms-logo svg {
  width: 60px;
  height: 60px;
  fill: white;
}

.u26ms-nav {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 100;
}

.u26ms-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ddd;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}

.u26ms-dot.u26ms-active {
  background: #e63946;
  width: 32px;
  border-radius: 6px;
}

.u26ms-arrow {
  opacity: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  z-index: 100;
  border: none;
  font-size: 20px;
  color: #333;
}

.u26ms-arrow:hover {
  background: #e63946;
  color: white;
  transform: translateY(-50%) scale(1.1);
}

.u26ms-arrow.u26ms-prev {
  left: 20px;
}

.u26ms-arrow.u26ms-next {
  right: 20px;
}

@media (max-width: 968px) {
  .u26ms-slide {
    flex-direction: column;
    padding: 40px 20px;
  }

  .u26ms-content {
    flex: 0 0 100%;
    padding-right: 0;
    margin-bottom: 30px;
    text-align: center;
  }

  .u26ms-title {
    font-size: 32px;
  }

  .u26ms-divider {
    margin-left: auto;
    margin-right: auto;
  }

  .u26ms-description {
    margin-left: auto;
    margin-right: auto;
  }

  .u26ms-image-wrapper {
    flex: 0 0 100%;
    height: 300px;
  }

  .u26ms-arrow {
    display: none;
  }
}

@media (max-width: 480px) {
  .u26ms-title {
    font-size: 24px;
  }

  .u26ms-button {
    padding: 14px 32px;
    font-size: 12px;
  }
}

/* u26d1 доктор публикации */

.u26d1-container {
  max-width: 1600px;
  margin: 0 auto;
  background-color: #ffffff;
  margin-top: 50px;
}

.u26d1-header {
  margin-bottom: 40px;
}

.u26d1-title {
  font-size: 32px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 12px;
}

.u26d1-divider {
  width: 60px;
  height: 2px;
  background-color: #e74c3c;
}

.u26d1-publications-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.u26d1-publication-item {
  padding: 20px 0;
}

.u26d1-publication-title {
  font-size: 24px;
  font-weight: 500;
  color: #1a1a1a;
  margin-bottom: 30px;
}

.u26d1-publication-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 20px;
}

.u26d1-tag {
  display: inline-block;
  padding: 6px 16px;
  background-color: #f8f9fa;
  border-radius: 20px;
  font-size: 13px;
  color: #6c757d;
  font-weight: 400;
}

.u26d1-link {
  color: #e74c3c;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.3s ease;
}

.u26d1-link:hover {
  color: #c0392b;
}

.u26d1-link::after {
  content: "›";
  font-size: 18px;
  line-height: 1;
}

.u26d1-footer {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid #e9ecef;
}

.u26d1-view-all {
  color: #e74c3c;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.3s ease;
}

.u26d1-view-all:hover {
  color: #c0392b;
  text-decoration: underline;
}

@media (max-width: 768px) {
  .u26d1-container {
    padding: 20px;
  }

  .u26d1-title {
    font-size: 24px;
  }

  .u26d1-publications-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .u26d1-publication-title {
    font-size: 20px;
  }
}

/* u26d2 */

.u26d2-container {
  max-width: 1600px;
  margin: 0 auto;
  background-color: #ffffff;
  padding: 40px;
  border-radius: 8px;
  margin-top: 50px;
}

.u26d2-title {
  font-size: 32px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 32px;
  padding-bottom: 16px;
  border-bottom: 2px solid #e0e0e0;
}

.u26d2-service-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.u26d2-service-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px;
  background-color: #fafafa;
  border-radius: 8px;
  transition: background-color 0.3s ease;
}

.u26d2-service-item:hover {
  background-color: #f0f0f0;
}

.u26d2-service-name {
  flex: 1;
  font-size: 16px;
  color: #333333;
  padding-right: 20px;
}

.u26d2-divider {
  flex: 0 0 60%;
  height: 1px;
  background-color: #e0e0e0;
  margin: 0 20px;
}

.u26d2-button {
  padding: 10px 24px;
  font-size: 14px;
  font-weight: 500;
  color: #c41e3a;
  background-color: transparent;
  border: 1px solid #c41e3a;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.u26d2-button:hover {
  background-color: #c41e3a;
  color: #ffffff;
}

.u26d2-price {
  font-size: 24px;
  font-weight: 600;
  color: #1a1a1a;
  margin-left: 24px;
  min-width: 120px;
  text-align: right;
}

.u26d2-price-currency {
  font-size: 16px;
  font-weight: 400;
  margin-left: 4px;
}

@media (max-width: 768px) {
  .u26d2-container {
    padding: 24px;
  }

  .u26d2-title {
    font-size: 24px;
  }

  .u26d2-service-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .u26d2-divider {
    display: none;
  }

  .u26d2-button-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
  }

  .u26d2-price {
    margin-left: 0;
  }
}

@media (min-width: 1200px) and (max-width: 1919px) {
  .u261-container,
  .u262-container,
  .u26ms-container,
  .u26d1-container,
  .u26d2-container {
    max-width: 1126px;
  }
}

@media (max-width: 1200px) {
  .u26ms-slider {
    margin-top: 80px;
    min-height: 700px;
  }

  .u26ms-image-wrapper {
    width: 100%;
  }
  
}
