/* === ОСНОВНОЙ БЛОК === */
.uix-artovitel-hero {
    padding: 60px 0;
    font-family: Arial, sans-serif;
    color: #333;
}

.uix-artovitel-hero .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
}

/* === ТЕКСТОВАЯ ЧАСТЬ === */
.uix-artovitel-hero__content {
    flex: 1 1 500px;
    max-width: 600px;
}

.uix-artovitel-hero__header h2.lt90 {
    font-size: 28px;
    font-weight: 700;
    color: #d62828;
    margin: 0 0 20px 0;
    text-transform: uppercase;
}

.uix-artovitel-hero__text p {
    font-size: 16px;
    line-height: 1.6;
    margin: 0 0 15px 0;
    color: #444;
}

.uix-artovitel-hero__text p.lt95 {
    font-style: italic;
    color: #555;
}

/* === БЛОК С КАРТИНКОЙ === */
.uix-artovitel-hero__image-wrapper {
    flex: 1 1 300px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.uix-artovitel-hero__image {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 16px 24px 0 rgba(42, 20, 30, 0.14);
    transition: transform 0.3s ease;
}

.uix-artovitel-hero__image:hover {
    transform: scale(1.03);
}

/* === АДАПТИВНОСТЬ === */
@media (max-width: 768px) {
    .uix-artovitel-hero {
        padding: 40px 0;
    }

    .uix-artovitel-hero .container {
        gap: 30px;
        text-align: center;
    }

    .uix-artovitel-hero__content {
        flex-basis: 100%;
        max-width: 100%;
        order: 1;
    }

    .uix-artovitel-hero__image-wrapper {
        flex-basis: 100%;
        order: 0;
        justify-content: center;
    }

    .uix-artovitel-hero__header h2.lt90 {
        font-size: 24px;
    }

    .uix-artovitel-hero__text p {
        font-size: 15px;
        line-height: 1.5;
    }
}

/* === ОСНОВНОЙ БЛОК === */
.uix-artovitel-indications {
    position: relative;
    padding: 40px 0;
    background-color: #fff;
    color: #333;
    font-family: Arial, sans-serif;
    overflow: hidden;
}

.uix-artovitel-indications .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

/* === ЗАГОЛОВОК (как в bl2__footer) === */
.uix-artovitel-indications__header-bg {
    text-align: center;
    margin-bottom: 40px;
}

.uix-artovitel-indications__subtitle.lt33 {
    font-size: 18px;
    color: #e63946;
    text-transform: uppercase;
    font-weight: 700;
    margin: 0;
}

.uix-artovitel-indications__title.lt34 {
    font-size: 36px;
    font-weight: 700;
    color: #d62828;
    margin: 10px 0 0;
    text-transform: uppercase;
}

/* === ВВОДНЫЙ ТЕКСТ === */
.uix-artovitel-indications__intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 30px;
}

.uix-artovitel-indications__intro p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
    margin: 0;
}

/* === СПИСОК ПОКАЗАНИЙ === */
.uix-artovitel-indications__list {
    list-style: none;
    padding: 0;
    max-width: 700px;
    margin: 0 auto 40px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.uix-artovitel-indications__list-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

/* === ИКОНКА (кружок с галочкой или точкой) === */
.uix-artovitel-indications__icon {
    display: block;
    width: 24px;
    height: 24px;
    background-color: #d62828;
    border-radius: 50%;
    margin-top: 3px;
    flex-shrink: 0;
    position: relative;
}

.uix-artovitel-indications__icon::after {
    content: "✓";
    color: white;
    font-size: 14px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-weight: bold;
}

/* === ТЕКСТ В ПУНКТЕ === */
.uix-artovitel-indications__text {
    font-size: 16px;
    line-height: 1.5;
    color: #444;
}

.uix-artovitel-indications__text strong {
    color: #d62828;
}

/* === ДЕКОРАТИВНЫЕ ЭЛЕМЕНТЫ === */
.uix-artovitel-indications__leaf-left,
.uix-artovitel-indications__leaf-right,
.uix-artovitel-indications__body {
    position: absolute;
    pointer-events: none;
    z-index: 1;
}

.uix-artovitel-indications__leaf-left {
    top: 20%;
    left: 5%;
    width: 12%;
    opacity: 0.8;
}

.uix-artovitel-indications__leaf-left img,
.uix-artovitel-indications__leaf-right img {
    width: 100%;
    height: auto;
}

.uix-artovitel-indications__leaf-right {
    top: 30%;
    right: 8%;
    width: 14%;
    opacity: 0.8;
}

.uix-artovitel-indications__body {
    top: 50%;
    right: 10%;
    width: 18%;
    transform: translateY(-50%);
    opacity: 0.15;
}

.uix-artovitel-indications__body img {
    width: 100%;
    height: auto;
}

/* === АДАПТИВНОСТЬ === */
@media (max-width: 768px) {
    .uix-artovitel-indications {
        padding: 60px 0;
    }

    .uix-artovitel-indications__title.lt34 {
        font-size: 28px;
    }

    .uix-artovitel-indications__subtitle.lt33 {
        font-size: 16px;
    }

    .uix-artovitel-indications__list {
        gap: 12px;
    }

    .uix-artovitel-indications__text {
        font-size: 15px;
    }

    .uix-artovitel-indications__leaf-left,
    .uix-artovitel-indications__leaf-right,
    .uix-artovitel-indications__body {
        display: none;
    }
}


 /* === [UIX] Ingredients — Reduced Vertical Spacing === */
  .uix-artovitel-ingredients {
    padding: 60px 0; /* Было 100px — стало 60px (сверху и снизу) */
    background: #fffaf5;
    font-family: 'Arial', sans-serif;
    color: #333;
  }

  .uix-artovitel-ingredients .container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 80px;
  }

  /* Заголовок — как на сайте */
  .uix-artovitel-ingredients__header-bg {
    background-color: #b83012;
    padding: 25px 0; /* Уменьшено с 30px */
    margin: 0 0 30px; /* Было 50px — стало 30px */
    text-align: center;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(184, 48, 18, 0.2);
  }

  .uix-artovitel-ingredients__title {
    font: 60px bebas_neuebold, 'Bebas Neue', sans-serif;
    margin: 0;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
  }

  .uix-artovitel-ingredients__subtitle {
    font: 24px bebas_neuebold, 'Bebas Neue', sans-serif;
    color: #ffcc99;
    margin: 6px 0 0;
    text-transform: uppercase;
    letter-spacing: 2px;
  }

  /* Введение */
  .uix-artovitel-ingredients__intro {
    max-width: 800px;
    margin: 0 auto 30px; /* Было 50px — стало 30px */
    font-size: 18px;
    line-height: 1.7;
    text-align: center;
    color: #555;
  }

  /* Сетка */
  .uix-artovitel-ingredients__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px; /* Было 30px — чуть компактнее */
  }

  /* Карточка */
  .uix-artovitel-ingredient {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
  }

  .uix-artovitel-ingredient:hover {
    transform: translateY(-6px);
  }

  /* SVG-иконка */
  .uix-artovitel-ingredient__icon {
    width: 80px;
    height: 80px;
    margin: 16px auto; /* Было 20px — чуть ближе */
    display: block;
    filter: drop-shadow(0 4px 8px rgba(249, 163, 2, 0.2));
  }

  /* Текст */
  .uix-artovitel-ingredient__content {
    padding: 0 20px 20px;
  }

  .uix-artovitel-ingredient__name {
    font-size: 20px;
    font-weight: 700;
    color: #1a3c60;
    margin: 0 0 10px;
    text-align: center;
  }

  .uix-artovitel-ingredient__desc {
    font-size: 15px;
    line-height: 1.7;
    color: #444;
  }

  .uix-artovitel-ingredient__desc strong {
    color: #d93a00;
  }

  /* Адаптив */
  @media (max-width: 768px) {
    .uix-artovitel-ingredients {
      padding: 50px 0; /* На мобилках — ещё меньше */
    }
    .uix-artovitel-ingredients .container {
      padding: 0 20px;
    }
    .uix-artovitel-ingredients__grid {
      grid-template-columns: 1fr;
    }
    .uix-artovitel-ingredient__icon {
      width: 70px;
      height: 70px;
    }
    .uix-artovitel-ingredients__intro,
    .uix-artovitel-ingredients__header-bg {
      margin-bottom: 25px;
    }
  }
  
  /* === [UIX] Package Leaflet — Medical Info === */
  .uix-artovitel-leaflet {
    padding: 60px 0;
    background: #f9f9f9;
    font-family: 'Arial', sans-serif;
    color: #333;
  }

  .uix-artovitel-leaflet .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 80px;
  }

  /* Заголовок — как на сайте */
  .uix-artovitel-leaflet__header-bg {
    background-color: #b83012;
    padding: 25px 0;
    margin: 0 0 30px;
    text-align: center;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(184, 48, 18, 0.2);
  }

  .uix-artovitel-leaflet__title {
    font: 60px bebas_neuebold, 'Bebas Neue', sans-serif;
    margin: 0;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
  }

  .uix-artovitel-leaflet__subtitle {
    font: 24px bebas_neuebold, 'Bebas Neue', sans-serif;
    color: #ffcc99;
    margin: 6px 0 0;
    text-transform: uppercase;
    letter-spacing: 2px;
  }

  /* Основной текст */
  .uix-artovitel-leaflet__content {
    max-width: 900px;
    margin: 0 auto;
    font-size: 17px;
    line-height: 1.7;
    color: #444;
  }

  /* Заголовки пунктов */
  .uix-artovitel-leaflet__section-title {
    font-size: 20px;
    font-weight: 700;
    color: #d93a00;
    margin: 24px 0 12px;
    padding-bottom: 6px;
    border-bottom: 2px solid #f9a302;
    display: inline-block;
  }

  /* Списки */
  .uix-artovitel-leaflet__list {
    margin: 12px 0 12px 20px;
    list-style: disc;
  }

  .uix-artovitel-leaflet__list li {
    margin: 8px 0;
  }

  /* Текст без маркеров */
  .uix-artovitel-leaflet__text {
    margin: 12px 0;
  }

  /* Особые блоки — предупреждения */
  .uix-artovitel-leaflet__warning {
    background: #fff3e0;
    border-left: 4px solid #ff9800;
    padding: 12px 16px;
    margin: 16px 0;
    font-style: italic;
    color: #e65100;
    border-radius: 0 8px 8px 0;
  }

  /* Адаптив */
  @media (max-width: 768px) {
    .uix-artovitel-leaflet {
      padding: 50px 0;
    }
    .uix-artovitel-leaflet .container {
      padding: 0 20px;
    }
    .uix-artovitel-leaflet__title {
      font-size: 40px;
    }
    .uix-artovitel-leaflet__subtitle {
      font-size: 18px;
    }
    .uix-artovitel-leaflet__content {
      font-size: 16px;
      line-height: 1.65;
    }
  }

  @media (max-width: 480px) {
    .uix-artovitel-leaflet__title {
      font-size: 34px;
    }
    .uix-artovitel-leaflet__section-title {
      font-size: 18px;
    }
  }
  
/* === [UIX] Pharmacist's Opinion — Real Size + Text Wrap === */
  .uix-artovitel-pharmacist {
    padding: 60px 0;
    background: #ffffff;
    font-family: 'Arial', sans-serif;
    color: #333;
  }

  .uix-artovitel-pharmacist .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 80px;
  }

  /* Заголовок — как на сайте */
  .uix-artovitel-pharmacist__header-bg {
    background-color: #b83012;
    padding: 25px 0;
    margin: 0 0 30px;
    text-align: center;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(184, 48, 18, 0.2);
  }

  .uix-artovitel-pharmacist__title {
    font: 60px bebas_neuebold, 'Bebas Neue', sans-serif;
    margin: 0;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
  }

  .uix-artovitel-pharmacist__subtitle {
    font: 24px bebas_neuebold, 'Bebas Neue', sans-serif;
    color: #ffcc99;
    margin: 6px 0 0;
    text-transform: uppercase;
    letter-spacing: 2px;
  }

  /* Контент: фото слева, текст справа */
  .uix-artovitel-pharmacist__content {
    display: flex;
    gap: 40px;
    align-items: flex-start;
  }

  /* Фото — в оригинальном размере */
  .uix-artovitel-pharmacist__photo {
    flex: 0 0 405px;
    width: 405px;
    height: 590px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.18);
    border: 2px solid #f9a302;
  }

  .uix-artovitel-pharmacist__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 0; /* Смещаем изображение вверх — показываем больше головы */
}

  /* Текст — обтекает фото */
  .uix-artovitel-pharmacist__text {
    flex: 1;
    font-size: 17px;
    line-height: 1.75;
    color: #444;
  }

  .uix-artovitel-pharmacist__text p {
    margin: 0 0 16px 0;
  }

  .uix-artovitel-pharmacist__text strong {
    color: #d93a00;
  }

  .uix-artovitel-pharmacist__info {
    font-size: 18px;
    font-weight: 700;
    color: #1a3c60;
    margin: 16px 0 0;
    display: block;
  }

/* Адаптив: на мобилках — фото сверху */
@media (max-width: 992px) {
  .uix-artovitel-pharmacist__content {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  /* Увеличиваем фото — было 360px, теперь 400px */
  .uix-artovitel-pharmacist__photo {
    flex: 0 0 400px;
    width: 400px;
    height: 585px; /* Соотношение ~3:4: 400 * 1.45 = 580 */
    margin-bottom: 24px;
    border-radius: 18px; /* Чуть мягче углы */
  }

  .uix-artovitel-pharmacist__text {
    text-align: center;
  }
}

@media (max-width: 768px) {
  .uix-artovitel-pharmacist {
    padding: 50px 0;
  }
  .uix-artovitel-pharmacist .container {
    padding: 0 16px; /* Можно уменьшить отступы, чтобы освободить место */
  }
  .uix-artovitel-pharmacist__title {
    font-size: 42px;
  }
  .uix-artovitel-pharmacist__subtitle {
    font-size: 18px;
  }

  /* Ещё больше — почти как на десктопе */
  .uix-artovitel-pharmacist__photo {
    flex: 0 0 360px;
    width: 360px;
    height: 525px;
  }
}

@media (max-width: 480px) {
  /* Максимальный размер для маленьких экранов — без уменьшения */
  .uix-artovitel-pharmacist__photo {
    flex: 0 0 320px;
    width: 320px;
    height: 468px; /* ~3:4 */
    border-radius: 16px;
  }

  .uix-artovitel-pharmacist__title {
    font-size: 36px;
  }
  .uix-artovitel-pharmacist__subtitle {
    font-size: 16px;
  }
}

/* === [UIX] Customer Reviews — Clean & Trustworthy === */
  .uix-artovitel-reviews {
    padding: 60px 0;
    background: #f9f9f9;
    font-family: 'Arial', sans-serif;
    color: #333;
  }

  .uix-artovitel-reviews .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 80px;
  }

  /* Заголовок — как на сайте */
  .uix-artovitel-reviews__header-bg {
    background-color: #b83012;
    padding: 25px 0;
    margin: 0 0 30px;
    text-align: center;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(184, 48, 18, 0.2);
  }

  .uix-artovitel-reviews__title {
    font: 60px bebas_neuebold, 'Bebas Neue', sans-serif;
    margin: 0;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
  }

  .uix-artovitel-reviews__subtitle {
    font: 24px bebas_neuebold, 'Bebas Neue', sans-serif;
    color: #ffcc99;
    margin: 6px 0 0;
    text-transform: uppercase;
    letter-spacing: 2px;
  }

  /* Введение */
  .uix-artovitel-reviews__intro {
    max-width: 900px;
    margin: 0 auto 30px;
    font-size: 17px;
    line-height: 1.7;
    text-align: center;
    color: #555;
  }

  /* Сетка отзывов */
  .uix-artovitel-reviews__list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 24px;
    margin-bottom: 30px;
  }

  /* Отзыв */
  .uix-artovitel-review {
    background: #ffffff;
    border-radius: 14px;
    padding: 20px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  }

  /* Имя и возраст */
  .uix-artovitel-review__header {
    font-size: 18px;
    font-weight: 700;
    color: #1a3c60;
    margin-bottom: 8px;
  }

  .uix-artovitel-review__age {
    font-size: 16px;
    color: #777;
    font-weight: normal;
  }

  /* Рейтинг — звёзды */
  .uix-artovitel-review__rating {
    color: #f9a302;
    font-size: 18px;
    margin-bottom: 12px;
    font-weight: bold;
  }

  .uix-artovitel-review__rating::before {
    content: "★★★★★";
    opacity: 0.3;
  }

  .uix-artovitel-review__rating[data-stars="5"]::before { content: "★★★★★"; }
  .uix-artovitel-review__rating[data-stars="4"]::before { content: "★★★★☆"; }

  /* Текст отзыва */
  .uix-artovitel-review__text {
    font-size: 15px;
    line-height: 1.7;
    color: #444;
  }

  /* Адаптив */
  @media (max-width: 768px) {
    .uix-artovitel-reviews {
      padding: 50px 0;
    }
    .uix-artovitel-reviews .container {
      padding: 0 20px;
    }
    .uix-artovitel-reviews__title {
      font-size: 40px;
    }
    .uix-artovitel-reviews__subtitle {
      font-size: 18px;
    }
    .uix-artovitel-review__header {
      font-size: 17px;
    }
    .uix-artovitel-review__text {
      font-size: 15px;
    }
  }

  @media (max-width: 480px) {
    .uix-artovitel-reviews__list {
      grid-template-columns: 1fr;
    }
    .uix-artovitel-reviews__title {
      font-size: 34px;
    }
  }
  
  
/* === ОСНОВНОЙ БЛОК С НОВЫМ КЛАССОМ === */
.custom-div-lsjdei {
    position: relative;
    max-width: 400px;
    margin: 0; /* Убрали auto — чтобы не центрировался */
    padding: 30px;
    background-color: #fffbf4;
    border-radius: 12px;
    box-shadow: 0 16px 24px 0 rgba(42, 20, 30, 0.14);
    font-family: Arial, sans-serif;
    /* Прижимаем к левому краю */
    margin-left: 0;
    margin-right: auto;
}

/* === ПУНКТИРНАЯ РАМКА ВНУТРИ (с отступом 10px) === */
.custom-div-lsjdei::before {
    content: "";
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    border: 1px dashed #d7cbb5;
    border-radius: 8px;
    pointer-events: none; /* 🔥 Главное — не блокирует клики */
    z-index: 1;
}

/* === ВСЁ СОДЕРЖИМОЕ ВЫШЕ ПСЕВДОЭЛЕМЕНТА === */
.custom-div-lsjdei > * {
    position: relative;
    z-index: 2;
}

/* === "SPECIAL OFFER!" === */
.custom-div-lsjdei .lt7 {
    font-size: 18px;
    font-weight: 700;
    color: #e63946;
    text-align: center;
    margin-bottom: 10px;
    text-transform: uppercase;
}




/* === ТЕКСТ "Until the end..." === */
.custom-div-lsjdei .lt8 {
    text-align: center;
    font-size: 14px;
    color: #555;
    margin: 10px 0;
}

/* === СЕЛЕКТ СТРАНЫ === */
.custom-div-lsjdei .country_select {
    width: 100%;
    padding: 12px;
    margin-bottom: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background-color: white;
    font-size: 16px;
    color: #333;
    appearance: auto;
    -webkit-appearance: auto;
}

/* === ПОЛЯ ВВОДА === */
.custom-div-lsjdei .form__body label {
    display: block;
    margin-bottom: 12px;
}

.custom-div-lsjdei .form__body input[type="text"] {
    width: 100%;
    padding: 14px 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background-color: white;
    font-size: 16px;
    color: #333;
    transition: border-color 0.3s ease;
}

.custom-div-lsjdei .form__body input[type="text"]:focus {
    outline: none;
    border-color: #d62828;
    box-shadow: 0 0 0 2px rgba(214, 40, 40, 0.1);
}

/* === КНОПКА === */
.custom-div-lsjdei button[type="submit"] {
    display: block;
    width: 100%;
    padding: 14px;
    background-color: #d62828;
    color: white;
    font-size: 18px;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    text-transform: uppercase;
    margin-top: 10px;
}

.custom-div-lsjdei button[type="submit"]:hover {
    background-color: #c1121f;
}

/* === ОСТАТОК ТОВАРА (если добавишь позже) === */
.custom-div-lsjdei .bl1__goods-count {
    text-align: center;
    font-size: 14px;
    color: #555;
    margin-top: 15px;
    font-weight: 500;
}

.custom-div-lsjdei .bl1__goods-count span {
    font-weight: 700;
    color: #d62828;
}

/* === ГАРАНТИЯ: не сломается из-за box-sizing === */
* {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.custom-div-lsjdei .bl1__price {
    position: relative;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    padding: 10px 0;
}

.custom-div-lsjdei .price_old,
.custom-div-lsjdei .price_main,
.custom-div-lsjdei .bl1__price1 {
    color: #fff !important;
}

.custom-div-lsjdei .price_old {
    text-decoration: line-through;
}






/* Включаем flex для контейнера, чтобы блоки встали в ряд */
.block1 .container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: flex-start; /* Выравнивание по верху */
}

/* Все нужные блоки — в одну строку */
.block1 .container > .bl1__img,
.block1 .container > .bl1__list,
.block1 .container > .custom-div-lsjdei {
    flex: 1 1 300px; /* Гибкая ширина, минимально 300px */
    min-width: 250px;
}

/* Остальные элементы (header) — остаются как отдельные строки */
.block1 .container > header {
    flex-basis: 100%;
    width: 100%;
    margin-bottom: 10px;
}

/* Для мобильных: если экран маленький — блоки встают друг под друга */
@media (max-width: 768px) {
    .block1 .container {
        flex-direction: column;
    }
    .block1 .container > * {
        width: 100% !important;
        flex: none;
    }
}


/* === ОСНОВНОЙ БЛОК === */
.uix-artovitel-faq {
    padding: 40px 0;
    background-color: #fff;
    color: #333;
    font-family: Arial, sans-serif;
}

.uix-artovitel-faq .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* === ЗАГОЛОВОК === */
.uix-artovitel-faq__header-bg {
    text-align: center;
    margin-bottom: 50px;
}

.uix-artovitel-faq__subtitle.lt600 {
    font-size: 18px;
    color: #e63946;
    text-transform: uppercase;
    font-weight: 700;
    margin: 0;
}

.uix-artovitel-faq__title.lt601 {
    font-size: 36px;
    font-weight: 700;
    color: #d62828;
    margin: 10px 0 0;
    text-transform: uppercase;
}

/* === СПИСОК ВОПРОСОВ === */
.uix-artovitel-faq__list {
    list-style: none;
    padding: 0;
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

/* === ВОПРОС === */
.uix-artovitel-faq__question {
    font-size: 18px;
    font-weight: 700;
    color: #d62828;
    margin: 0;
    line-height: 1.4;
}

/* === ОТВЕТ === */
.uix-artovitel-faq__answer {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
    margin: 8px 0 0;
    padding-left: 0;
}

/* === АДАПТИВНОСТЬ === */
@media (max-width: 768px) {
    .uix-artovitel-faq {
        padding: 60px 0;
    }

    .uix-artovitel-faq__title.lt601 {
        font-size: 28px;
    }

    .uix-artovitel-faq__subtitle.lt600 {
        font-size: 16px;
    }

    .uix-artovitel-faq__question {
        font-size: 17px;
    }

    .uix-artovitel-faq__answer {
        font-size: 15px;
        line-height: 1.5;
    }

    .uix-artovitel-faq__list {
        gap: 20px;
    }
}