/*
 Theme Name: Child Alchemy Shorts
 Theme URI: None
 Description: This theme is for changes!
 Author:       alhimikus
 Author URI: None
 Template:     alhimshorts
 Version:      1.2.4
 License: License
 License URI: No license required
*/

.consultation-block h2 {
  color: var(--primary-color);
}

.consultation-block p {
  color: var(--primary-color);
}

.accordion__toggle.is-open {
  color: #2f2f2f;
}

.accordion__text {
  color: #2f2f2f;
  background-color: #bcb4d3;
  margin: -10px 20px 25px;
  border-radius: 0 0 25px 25px;
}

.page-footer {
  border-bottom: 25px solid #2f2f2f;
  background-color: #2f2f2f;
  padding: 30px 0;
}

@media only screen and (min-width: 1200px) {
  .page-footer {
    border-bottom: 40px solid #2f2f2f;
  }
}

@media only screen and (min-width: 768px) {
  .page-footer {
    padding: 40px 0;
  }
}

.page-footer__title {
  color: var(--trinity-color);
}

.page-footer__menu a:hover {
  color: var(--secondary-color);
}

.footer__menu .mainmenu__item a {
  background-color: #2f2f2f;
}

.page-header__menu .mainmenu__item a:hover {
  color: #2f2f2f;
}

.tariffs h2,
.tariffs h3,
.tariffs p,
.tariffs li {
  color: #c9ddf1;
}

.tariff-card__pricebox {
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-section._bg-section-dark {
  background: var(--primary-color);
}

.profile-card {
  background-color: var(--accent-color-light);
  -webkit-box-shadow: 0 7px 23px 13px #373033;
  box-shadow: 0 7px 23px 13px #373033;
}

.profile-card__products-title {
  color: var(--white-color);
}

.section-header {
  margin-top: 20px;
}

.course-product {
  -webkit-box-shadow: 0 7px 24px 13px #d6ceec;
  box-shadow: 0 7px 24px 13px #d6ceec;
  background-color: #b8afd3;
}

.course-product:hover {
  background-color: #8e7676;
}

.button._primary:hover {
  background-color: #ad9595;
}

.page-header {
  background-color: #2f2f2f;
}

.button._secondary {
  background-color: var(--secondary-color);
  color: var(--white-color);
}

#menu-footer-menu .mainmenu__item {
  border-bottom: 0;
}

.button._secondary {
  margin-bottom: 20px;
}

.profile__subtitle {
  color: #645982;
}


.page-header__main {
  background-color: rgba(41, 40, 40, 0.98);
}

.page__wrapper {
  background-color: rgba(41, 40, 40, 0.98);
}

.button._secondary:hover {
  background-color: #7e506f;
}

.mainpage__about-text {
  color: #444;
}

.accordion .section-header h2 {
  color: var(--primary-color);
}

.accordion__toggle {
  background-color: var(--primary-color);
  border-radius: 25px;
}

.accordion__toggle.is-open {
  border-radius: 12px;
}

.tariff-card {
  background-color: #444;
}

.container-wide .textblock {
  color: #fde7d0;
}

.textblock p:last-child {
  margin-bottom: 20px;
}

.landing-page__author-img img {
  margin-top: 10px;
}

.container-wide .section-header {
  color: #fde7d0;
}


.page-header__menu .mainmenu__item a {
  color: #fff;
  background-color: #292828;
}

.page-header__menu .mainmenu__item a:hover {
  color: #f2e8c7;
}

.page-header__menu .mainmenu__item a:hover,
.page-header__menu .mainmenu__item .sub-menu a:hover {
  background-color: #201919;
}

@media only screen and (max-width: 767px) {
  .page-footer__block .page-footer__title_site {
    display: none;
  }

  .page-footer__block .block-footer__menu {
    display: none;
  }

  .mainmenu__item {
    border-bottom: 1px solid #604848;
  }
}

/* Контактная форма */

/* Обертка формы */
.custom-form {
  max-width: 500px;
  margin: 0 auto;
  padding: 20px;
  background-color: #fdd9b6;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Группа полей */
.form-group {
  margin-bottom: 15px;
}

/* Метки полей */
.form-group label {
  display: block;
  margin-bottom: 5px;
  font-size: 16px;
  font-weight: bold;
  color: #333;
}

/* Поля ввода */
.custom-form input[type="text"],
.custom-form input[type="tel"],
.custom-form textarea {
  width: 100%;
  padding: 10px;
  font-size: 16px;
  border: 1px solid #ebb886;
  border-radius: 8px;
  transition: border-color 0.3s ease;
  box-sizing: border-box;
  background-color: #f5dec7;
}

/* Стиль при фокусе */
.custom-form input[type="text"]:focus,
.custom-form input[type="tel"]:focus,
.custom-form textarea:focus {
  border-color: #b46125;
  outline: none;
}

/* Поле для текста */
.custom-form textarea {
  resize: vertical;
  min-height: 80px;
}

/* Кнопка отправки */
.submit-button input[type="submit"] {
  display: block;
  width: 100%;
  max-width: 200px;
  margin: 0 auto;
  padding: 15px 25px;
  font-size: 16px;
  font-weight: bold;
  color: #fff;
  background-color: #d37f43;
  ;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

/* Стиль кнопки при наведении */
.submit-button input[type="submit"]:hover {
  background-color: #ad7b57;
}

/* Адаптация под мобильные устройства */
@media (max-width: 768px) {
  .custom-form {
    padding: 15px;
  }

  .submit-button input[type="submit"] {
    max-width: 100%;
  }
}

.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.payment-required .wpcf7-response-output {
  border-color: #fdd9b6;
  color: #fdd9b6;
}

.contact-form-wrapper h2 {
  color: #fdd9b6;
}

/* Стили для таблиц с ценами */

/* Общий контейнер */
.pricing-container {
  background-color: #fdd9b6;
  /* Основной цвет фона */
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  max-width: 1200px;
  margin: 0 auto;
  font-family: Arial, sans-serif;
}

/* Блоки "Проживание" и "Дополнительные услуги" */
.pricing-block {
  margin-bottom: 40px;
}

.pricing-block h2 {
  text-align: center;
  font-size: 24px;
  color: #333;
  margin-bottom: 20px;
}

/* Контейнер для элементов */
.pricing-items {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

/* Отдельный элемент */
.pricing-item {
  background-color: #fde7d0;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 300px;
  padding: 15px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Заголовок элемента */
.item-header {
  font-size: 18px;
  font-weight: bold;
  color: #ce714f;
  /* Акцентный цвет */
  margin-bottom: 10px;
}

/* Детали элемента */
.item-details p {
  margin: 5px 0;
  font-size: 14px;
  color: #333;
}

/* Эффект при наведении */
.pricing-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Адаптация под мобильные устройства */
@media (max-width: 768px) {
  .pricing-items {
    gap: 15px;
  }

  .pricing-item {
    max-width: 100%;
  }
}

/* Стили для галереии */

/* Общая структура галереи */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  /* Три столбца */
  gap: 20px;
  /* Отступы между изображениями */
  margin-top: 20px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  /* Закругленные углы */
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  /* Легкая тень */
}

.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
  /* Плавное увеличение при наведении */
}

.gallery-item:hover img {
  transform: scale(1.05);
  /* Небольшое увеличение при наведении */
}

/* Адаптация под мобильные устройства */
@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    /* Два столбца на планшетах */
  }
}

@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: 1fr;
    /* Один столбец на мобильных устройствах */
  }
}



/* Стили для Страницы Контакты */

/* Общий контейнер */
.contact-block {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  background-color: #fdd9b6;
  /* Основной цвет фона */
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Блок с контактами */
.contact-info {
  flex: 1;
  min-width: 300px;
  padding: 20px;
  background-color: #f5dec7;
  border-radius: 10px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.contact-info h2 {
  font-size: 24px;
  color: #333;
  margin-bottom: 20px;
}

.contact-info p {
  font-size: 16px;
  line-height: 1.6;
  color: #555;
  margin-bottom: 10px;
}

.contact-info a {
  color: #0073aa;
  text-decoration: none;
  font-weight: bold;
}

.contact-info a:hover {
  text-decoration: underline;
}

/* Блок с картой */
.contact-map {
  flex: 1.5;
  min-width: 300px;
  border-radius: 10px;
  overflow: hidden;
}

.contact-map iframe {
  width: 100%;
  height: 400px;
  border: none;
  border-radius: 10px;
}

/* Адаптация под мобильные устройства */
@media (max-width: 768px) {
  .contact-block {
    flex-direction: column;
    gap: 20px;
  }

  .contact-info,
  .contact-map {
    min-width: 100%;
  }
}




.consultation-block {
  max-width: 1200px;
  margin: 2rem auto;
  padding: 0 1rem;
  box-sizing: border-box;
}

.consultation-title {
  text-align: center;
  margin-bottom: 1.5rem;
  font-size: 4rem;
  color: #333;
}

.consultation-content {
  display: flex !important;
  /* Принудительное отображение как flex */
  flex-wrap: wrap;
  gap: 2rem;
  align-items: flex-start;
  width: 100%;
  /* Явная ширина */
}

/* Текстовая часть */
.consultation-text {
  flex: 1 1 300px;
  min-width: 0;
}

.consultation-text p {
  margin-top: 0;
  font-size: 2rem;
  line-height: 1.6;
}

/* Ссылки-кнопки */
.consultation-links {
  display: flex !important;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

.consultation-link {
  display: flex !important;
  align-items: center;
  padding: 0.75rem 1rem;
  text-decoration: none;
  color: #fff;
  background-color: #666;
  border-radius: 5px;
  transition: all 0.3s ease;
  width: 100%;
  max-width: 280px;
  justify-content: flex-start;
  text-align: left;
}

.consultation-link:hover,
.consultation-link:focus {
  opacity: 0.9;
  transform: translateY(-2px);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

/* Иконки Font Awesome */
.consultation-link i {
  margin-right: 15px;
  width: 24px;
  text-align: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

/* Текст внутри кнопки */
.consultation-link span {
  flex-grow: 1;
  text-align: center;
}

/* Цвета кнопок */
.consultation-link.telegram {
  background-color: #2c6e8f;
}

.consultation-link.whatsapp {
  background-color: #358A55;
}

.consultation-link.vk {
  background-color: #45668e;
}

/* Картинка */
.consultation-image {
  flex: 1 1 300px;
  min-width: 0;
}

.consultation-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}

/* Адаптивность для мобильных устройств */
@media (max-width: 768px) {
  .consultation-content {
    flex-direction: column !important;
  }

  .consultation-links {
    align-items: stretch;
  }

  .consultation-link {
    width: 100%;
    max-width: none;
  }
}

/* --- ДОПОЛНЕНИЕ К СУЩЕСТВУЮЩИМ СТИЛЯМ --- */

/* Стиль для кнопки телефона */
.consultation-link.phone {
  background-color: #888 !important;
}

/* Выделенная кнопка — подписка на канал */
.consultation-channel-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 1rem 1.5rem;
  background: #2c6e8f;
  color: white !important;
  text-decoration: none !important;
  font-weight: bold;
  border-radius: 8px;
  margin-top: 1.5rem;
  transition: all 0.3s ease;
  max-width: 300px;
  margin-left: auto;
  margin-right: auto;
  font-size: 1.5rem;
}

.consultation-channel-link:hover,
.consultation-channel-link:focus {
  opacity: 0.9;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Улучшение выравнивания текста в кнопках */
.consultation-link span {
  text-align: left;
}

/* Адаптив — уменьшаем заголовок на мобильных */
@media (max-width: 768px) {
  .consultation-title {
    font-size: 2.5rem;
  }

  .consultation-text p {
    font-size: 1.6rem;
  }
}

/* Новый стиль для тарифов и программ */

/* Контейнер тарифов */
.tariffs__list {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
  padding: 20px 0;
}

.tariffs__item {
  flex: 1;
  min-width: 280px;
  max-width: 380px;
}

/* Базовый стиль карточки */
.tariff-card {
  background: #1e1e1e;
  color: #fff;
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s ease;
  position: relative;
  display: flex;
  flex-direction: column;
}

.tariff-card._dark {
  background: #3a3a3a;
  color: #fff;
}

/* Выделенный блок — слоновая кость */
.tariff-card._featured {
  background: #fdfbf7;
  color: #1a1a1a;
  transform: scale(1.05);
  /* больше */
  z-index: 1;
}

.tariff-card._featured * {
  color: #1a1a1a !important;
}

.tariff-card__main {
  padding: 24px;
}

.tariff-card__title {
  font-size: 1.5em;
  margin: 0 0 12px 0;
  color: inherit;
}

.tariff-card__list {
  list-style: none;
  padding: 0;
  margin: 16px 0;
}

.tariff-card__list li {
  margin-bottom: 8px;
  position: relative;
  padding-left: 20px;
}

.tariff-card__list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #00aaff;
}

.tariff-card__pricebox {
  margin-bottom: 16px;
}

.tariff-card__price {
  font-size: 1.4em;
  font-weight: bold;
  color: inherit;
}

.tariff-card__oldprice {
  text-decoration: line-through;
  color: #999;
  margin-left: 8px;
  font-size: 0.9em;
}

.tariff-card__button {
  display: block;
  background: #70668c;
  ;
  color: white;
  text-align: center;
  padding: 12px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s;
}

.tariff-card._featured .tariff-card__button {
  background: #b5a6dd;
  color: #fff;
}

.tariff-card__button:hover {
  background: #8479a5;
}

.tariff-card._featured .tariff-card__button:hover {
  background: #aba0ca;
}

/* Бейдж (опционально) */
.tariff-card__badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: #b5a6dd;
  color: white;
  font-size: 12px;
  padding: 6px 10px 4px;
  border-radius: 12px;
  font-weight: bold;
  z-index: 2;
}


/* Кнопка о мастере */

.textblock-button__link {
  display: inline-block;
  background: #70668c;
  color: white;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s;
}

.textblock-button__link:hover {
  background: #9488b6;
}

/* Индивидуальные стили экодесанта */




/* Галерея */
/* === Заголовок H2 над галереей === */
.sh-gallery-wrapper {
  margin: 40px 20px;
}

.sh-gallery-wrapper h2 {
  text-align: center;
  color: var(--accent-color);
  font-size: 2rem;
  margin-bottom: 30px;
  font-weight: 600;
}

/* === Галерея: контейнер с отступом от белого фона === */
.sh-gallery {
  max-width: 100%;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  border-radius: 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  background-color: #2b2a2a;
}

/* === Контейнер слайдов — плавная анимация === */
.sh-gallery-inner {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

/* === Один слайд: флекс-контейнер (десктоп) === */
.sh-gallery-slide {
  min-width: 100%;
  display: flex;
  flex-direction: row;
  padding: 40px 250px;
  box-sizing: border-box;
  background-color: var(--color-block-light);
  /* Подложка слайда */
  position: relative;
  gap: 30px;
}

@media (max-width: 768px) {
  .sh-gallery-slide {
    padding: 40px 5px;
  }
}

/* === Картинка слева: квадрат 300×300 === */
.sh-gallery-slide__image {
  width: 300px;
  height: 300px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 12px;
  flex-shrink: 0;
}

/* === Контент справа === */
.sh-gallery-slide__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
  color: var(--accent-color-black);
}

/* === Заголовок слайда — крупнее === */
.sh-gallery-slide__title {
  font-size: 3.2rem;
  line-height: 1.7;
  color: var(--accent-color);
  margin-bottom: 16px;
  font-weight: 600;
  letter-spacing: 1.5px;
}

/* === Текст — увеличенный, читабельный === */
.sh-gallery-slide__text {
  color: var(--hi-color);
  /* font-size: 1.55rem; */
  line-height: 1.2;
  margin-bottom: 24px;
}

.sh-gallery-slide__text p {
  margin: 8px 0;
}

.landing-page__cover-button {
  margin: 20px auto;
}

/* === Кнопка — крупнее === */
.sh-gallery-button {
  display: inline-block;
  padding: 14px 30px;
  font-size: 1.55rem;
  font-weight: 500;
  text-decoration: none;
  border-radius: var(--button-border-radius);
  background-color: var(--color-block-medium);
  color: var(--accent-color);
  transition: all 0.3s ease;
  align-self: flex-start;
}

.sh-gallery-button:hover {
  background-color: var(--color2);
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(175, 211, 183, 0.4);
}

/* === Нижняя SVG-линия под каждым слайдом === */
.sh-gallery-slide::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 114px;
  background-image: url('https://ecodesant.ru/wp-content/uploads/2023/12/Vector.svg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  pointer-events: none;
}

/* === Точки навигации === */
.sh-gallery-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  padding: 24px 0;
  flex-wrap: wrap;
}

.sh-gallery-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: var(--four-color);
  cursor: pointer;
  transition: all 0.3s ease;
}

.sh-gallery-dot.active {
  background-color: var(--primary-color);
  transform: scale(1.2);
}

/* === Адаптив: мобильные (до 768px) === */
@media (max-width: 768px) {
  .sh-gallery-wrapper {
    margin: 30px 15px;
  }

  .sh-gallery-wrapper h2 {
    /* font-size: 1.7rem; */
    margin-bottom: 24px;
  }

  .sh-gallery-slide {
    flex-direction: column;
    padding: 30px 20px;
    gap: 20px;
  }

  .sh-gallery-slide__image {
    width: 100%;
    height: 260px;
    margin-bottom: 0;
  }

  .sh-gallery-slide__content {
    text-align: center;
  }

  .sh-gallery-slide__title {
    /* font-size: 1.6rem; */
    margin-bottom: 14px;
  }

  .sh-gallery-slide__text {
    /* font-size: 1.1rem; */
    line-height: 1.65;
  }

  .sh-gallery-button {
    /* font-size: 1.1rem; */
    padding: 12px 26px;
  }

  .sh-gallery-dot {
    width: 10px;
    height: 10px;
  }
}

/* === Очень маленькие экраны (до 480px) === */
@media (max-width: 480px) {
  .sh-gallery-slide {
    padding: 15px;
  }

  .sh-gallery-slide__title {
    font-size: 2.4rem;
    line-height: 1.3em;
    letter-spacing: 0.14em;
  }

  .sh-gallery-slide__text {
    /* font-size: 1.35rem; */
  }

  .sh-gallery-button {
    /* font-size: 1.45rem; */
    padding: 10px 22px;
  }

  .sh-gallery-slide::after {
    height: 20px;
  }
}

/* === Контейнер с иконками === */
.eco-hero-section {
  margin: 40px 0;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.eco-hero-container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

/* === Изображение слева === */
.eco-hero-image {
  flex: 1 1 300px;
  min-width: 280px;
}

.eco-hero-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  display: block;
}

/* === Контент справа === */
.eco-hero-content {
  flex: 1 1 500px;
  min-width: 280px;
  color: var(--hi-color);
}

/* === Заголовок === */
.eco-hero-title {
  /* font-size: 1.6rem; */
  font-weight: 600;
  color: var(--accent-color);
  margin: 0 0 12px 0;
  line-height: 1.4;
}

.eco-hero-subtitle {
  font-size: 3.2rem;
  color: var(--accent-color-average);
  margin: 0 0 20px 0;
  font-weight: 500;
  letter-spacing: 3.2px;
}

/* === Введение === */
.eco-hero-intro {
  /* font-size: 1.1rem; */
  line-height: 1.6;
  margin: 0 0 24px 0;
  color: var(--hi-color);
}

/* === Ссылки с иконками === */
.eco-hero-links {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 0 0 24px 0;
}

.eco-hero-link {
  display: flex;
  align-items: center;
  gap: 12px;
  /* font-size: 1.15rem; */
}

.eco-hero-link img {
  width: 25px;
  height: 25px;
  flex-shrink: 0;
}

.eco-hero-link a {
  color: var(--accent-color);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.eco-hero-link a:hover {
  color: var(--accent-color-average);
}

/* === Миссия === */
.eco-hero-mission {
  /* font-size: 1.1rem; */
  line-height: 1.7;
  margin: 24px 0 0 0;
  color: var(--hi-color);
}

.eco-hero-mission strong {
  color: var(--accent-color);
}

/* === Адаптивность === */

/* Планшет и маленькие десктопы */
@media (max-width: 1024px) {
  .eco-hero-title {
    /* font-size: 1.5rem; */
  }

  .eco-hero-subtitle,
  .eco-hero-link {
    /* font-size: 1.1rem; */
  }
}

/* Мобильные: изображение сверху */
@media (max-width: 768px) {
  .eco-hero-container {
    flex-direction: column;
    gap: 30px;
  }

  .eco-hero-image,
  .eco-hero-content {
    width: 100%;
  }

  .eco-hero-title {
    /* font-size: 1.4rem; */
    line-height: 1.4;
  }

  .eco-hero-subtitle {
    /* font-size: 1.1rem; */
  }

  .eco-hero-intro,
  .eco-hero-link,
  .eco-hero-mission {
    /* font-size: 1.05rem; */
  }
}

/* Очень маленькие экраны */
@media (max-width: 480px) {
  .eco-hero-title {
    /* font-size: 1.3rem; */
  }

  .eco-hero-links {
    gap: 12px;
  }

  .eco-hero-link {
    /* font-size: 1.05rem; */
  }

  .eco-hero-mission {
    /* font-size: 1rem; */
  }
}

/* === Основной контейнер === */
.stats-block {
  display: flex;
  justify-content: space-around;
  gap: 20px;
  padding: 40px 20px;
  text-align: center;
  max-width: 1200px;
  margin: 40px auto;
  overflow: hidden;
}

.stat-number h2 {
  font-size: 45px;
}

/* === Каждый блок статистики === */
.stat-item {
  flex: 1;
  min-width: 140px;
  padding: 20px;
  background: var(--five-color);
  /* #efefef — светлый фон */
  border-radius: 10px;
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(20px);
}

/* Анимация появления */
@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.stat-item:nth-child(1) {
  animation: fadeInUp 0.6s ease forwards;
}

.stat-item:nth-child(2) {
  animation: fadeInUp 0.6s ease 0.2s forwards;
}

.stat-item:nth-child(3) {
  animation: fadeInUp 0.6s ease 0.4s forwards;
}

/* При наведении — лёгкий эффект */
.stat-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  background: #f8f8f8;
}

/* === Цифры — крупные и жирные === */
.stat-number {
  /* font-size: 2.8rem; */
  font-weight: 700;
  color: var(--primary-color);
  /* #afd3b7 — твой зелёный */
  margin: 0;
  line-height: 1;
}

/* === Подпись под цифрой === */
.stat-label {
  /* font-size: 1.8rem; */
  color: var(--hi-color);
  /* #3e3e3e */
  margin: 12px 0 0;
  font-weight: 500;
}

/* === Адаптивность === */

/* Планшеты */
@media (max-width: 768px) {
  .stats-block {
    flex-wrap: wrap;
    gap: 16px;
    padding: 30px 15px;
  }

  .stat-item {
    flex: 1 1 calc(50% - 10px);
    min-width: 130px;
    padding: 18px;
  }

  .stat-number {
    /* font-size: 2.4rem; */
  }

  .stat-label {
    /* font-size: 1.05rem; */
  }
}

/* Мобильные (до 480px) */
@media (max-width: 480px) {
  .stats-block {
    padding: 25px 10px;
  }

  .stat-item {
    flex: 1 1 100%;
    min-width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }

  .stat-number {
    /* font-size: 2.2rem; */
  }

  .stat-label {
    /* font-size: 1rem; */
  }
}


/* === Основной контейнер === */
.about-section {
  max-width: 1140px;
  margin: 40px auto;
  padding: 0 20px;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--hi-color);
  line-height: 1.7;
}

/* === Заголовки === */
.section-title {
  text-align: center;
  color: var(--accent-color);
  margin: 50px 0 30px;
  font-weight: 600;
}

/* === Основной текст === */
.about-content {
  max-width: 800px;
  margin: 0 auto 40px;
}

.about-content p {
  margin: 16px 0;
}

/* === Список === */
.about-list {
  padding-left: 20px;
  margin: 20px 0;
}

.about-list li {
  margin: 8px 0;
}

/* === Ссылки === */
.about-content a {
  color: #326f11;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.about-content a:hover {
  color: var(--primary-color);
}

/* === Призыв к действию === */
.call-to-action {
  font-weight: 600;
  text-align: center;
  margin: 30px 0;
  /* font-size: 1.1rem; */
  color: var(--accent-color);
}

/* === Сетка команды === */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  margin: 0 auto;
  max-width: 1100px;
  padding: 0 10px;
}

/* === Карточка участника === */
.team-member {
  text-align: center;
  padding: 20px;
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}

.team-member:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.team-member img {
  width: 138px;
  height: 138px;
  object-fit: contain;
  margin: 0 auto 16px;
  display: block;
  border-radius: 50%;
  background-color: var(--five-color);
  padding: 8px;
}

.team-member h3 {
  color: var(--accent-color);
  margin: 0 0 10px;
  font-weight: 600;
  font-size: 26px;
  letter-spacing: 1.5px;
}

.team-member p {
  color: var(--accent-color-average);
  margin: 0;
  line-height: 1.5;
}

/* === Адаптивность === */

/* Планшеты */
@media (max-width: 768px) {
  .section-title {
    margin: 40px 0 24px;
  }

  .about-content {
    padding: 0 10px;
  }

  .team-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
  }

  .team-member {
    padding: 18px;
  }

  .team-member img {
    width: 120px;
    height: 120px;
  }

  .team-member h3 {}

  .team-member p {}
}

/* Мобильные (до 480px) */
@media (max-width: 480px) {
  .about-section {
    margin: 30px 10px;
    padding: 0 10px;
  }

  .section-title {}

  .team-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .team-member img {
    width: 100px;
    height: 100px;
    margin-bottom: 12px;
    padding: 6px;
  }

  .team-member h3 {}

  .team-member p {
    /* font-size: 0.9rem; */
    line-height: 1.4;
  }

  .call-to-action {}
}

/* === Устав: основной контейнер === */
.charter-section {
  max-width: 1000px;
  margin: 40px auto;
  padding: 0 20px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: var(--hi-color);
  line-height: 1.8;
}

.charter-container {
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

.charter-content {
  padding: 40px;
}

/* === Заголовки === */
.charter-title {
  text-align: center;
  font-size: 7.2rem;
  color: var(--accent-color);
  margin: 40px 0 10px;
  font-weight: 700;
}

.charter-subtitle {
  text-align: center;

  color: var(--accent-color-average);
  margin-bottom: 40px;
  font-weight: 500;
}

.charter-content h2 {
  /* font-size: 2.8rem; */
  color: var(--accent-color);
  margin: 40px 0 20px;
  font-weight: 600;
  border-bottom: 2px solid var(--primary-color);
  padding-bottom: 8px;
  display: inline-block;
  letter-spacing: 1.55px;
}

.charter-content h3 {
  /* font-size: 3.3rem; */
  color: var(--accent-color);
  margin: 30px 0 15px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* === Текст и списки === */
.charter-content p {
  margin: 16px 0;
  text-align: justify;
}

.charter-content ul,
.charter-content ol {
  margin: 20px 0;
  padding-left: 30px;
}

.charter-content ul li,
.charter-content ol li {
  margin: 8px 0;
}

.charter-content strong {
  color: var(--accent-color);
}

/* Вложенные списки */
.charter-ol-inner {
  margin: 10px 0;
  padding-left: 30px;
}

.charter-ol-inner li {
  margin: 6px 0;
}

/* === Подвал === */
.charter-footer {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px dashed var(--four-color);
  text-align: right;
  font-style: italic;
  color: var(--accent-color-average);
}

/* === Адаптивность === */

@media (max-width: 768px) {
  .charter-content {
    padding: 30px 20px;
  }

  .charter-title {
    /* font-size: 1.9rem; */
  }

  .charter-subtitle {
    /* font-size: 1.1rem; */
  }

  .charter-content h2 {
    /* font-size: 1.5rem; */
  }

  .charter-content p,
  .charter-content li {
    /* font-size: 0.95rem; */
    line-height: 1.7;
  }
}

@media (max-width: 480px) {
  .charter-section {
    padding: 0 15px;
  }

  .charter-content {
    padding: 25px 15px;
  }

  .charter-title {
    /* font-size: 1.7rem; */
  }

  .charter-content h2 {
    /* font-size: 1.4rem; */
  }

  .charter-content p,
  .charter-content li {
    /* font-size: 0.9rem; */
  }

  .charter-footer {
    text-align: center;
  }
}

/* === Шапка документа: печать слева, текст справа === */
.charter-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 30px;
  max-width: 1200px;
  margin: 40px auto 20px;
  padding: 0 20px;
  box-sizing: border-box;
}

.charter-header__seal {
  width: 397px;
  height: auto;
  flex-shrink: 0;
  opacity: 0.98;
}

.charter-header__text {
  flex: 1;
  max-width: 400px;
  text-align: right;

  line-height: 1.8;
  color: var(--accent-color);
  font-weight: 500;
}

.charter-header__text strong {
  color: var(--accent-color);
  font-weight: 600;
}

/* === Адаптивность === */

/* Планшеты и маленькие десктопы */
@media (max-width: 1024px) {
  .charter-header {
    gap: 20px;
  }

  .charter-header__seal {
    width: 320px;
  }

  .charter-header__text {
    /* font-size: 1.05rem; */
  }
}

/* Мобильные: вертикальное расположение */
@media (max-width: 768px) {
  .charter-header {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 15px;
  }

  .charter-header__seal {
    width: 100%;
    max-width: 300px;
    margin-bottom: 20px;
  }

  .charter-header__text {
    max-width: none;
  }

  .charter-header__text p {
    margin: 8px 0;
  }
}

/* === Основной контейнер === */
.projects-section {
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 20px;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  text-align: center;
}

/* === Заголовок === */
.section-title {
  /* font-size: 2rem; */
  color: var(--accent-color);
  margin-bottom: 40px;
  font-weight: 600;
  text-align: center;
}

/* === Сетка проектов === */
.projects-grid {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

/* === Карточка проекта === */
.project-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 280px;
  padding: 25px;
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}

.project-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

/* === Иконка проекта === */
.project-icon {
  width: 120px;
  height: 120px;
  object-fit: contain;
  margin-bottom: 16px;
}

/* === Название проекта === */
.project-title {
  /* font-size: 1.3rem; */
  color: var(--accent-color);
  margin: 12px 0;
  font-weight: 600;
}

/* === Кнопка проекта === */
.project-button {
  display: inline-block;
  margin-top: 12px;
  padding: 10px 24px;
  /* font-size: 1rem; */
  font-weight: 500;
  text-transform: uppercase;
  text-decoration: none;
  color: #FFFFFF;
  background-color: #A6DE30;
  /* Цвет из Elementor */
  border-radius: 25px;
  transition: all 0.3s ease;
}

.project-button:hover {
  background-color: #95c92e;
  transform: scale(1.05);
}

/* === Слайдер направлений === */
.directions-slider {
  display: flex;
  gap: 30px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 20px 0;
  scrollbar-width: thin;
  -webkit-overflow-scrolling: touch;
}

.directions-slider::-webkit-scrollbar {
  height: 6px;
}

.directions-slider::-webkit-scrollbar-thumb {
  background-color: var(--primary-color);
  border-radius: 3px;
}

/* === Один слайд направления === */
.direction-slide {
  min-width: 300px;
  max-width: 320px;
  text-align: center;
  flex-shrink: 0;
}

.direction-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 12px;
}

.direction-title {
  /* font-size: 1.4rem; */
  color: var(--accent-color);
  margin: 0 0 16px;
  font-weight: 600;
  text-transform: lowercase;
  font-variant: small-caps;
}

.direction-button {
  display: inline-block;
  padding: 10px 24px;
  /* font-size: 1.4rem; */
  font-weight: 500;
  text-transform: uppercase;
  text-decoration: none;
  color: #FFFFFF;
  background-color: #5C7130;
  border-radius: 25px;
  transition: all 0.3s ease;
}

.direction-button:hover {
  background-color: #95c92e;
  transform: scale(1.05);
}

/* === Адаптивность === */

/* Планшеты и маленькие десктопы */
@media (max-width: 1024px) {
  .projects-grid {
    gap: 30px;
  }

  .project-card {
    width: 240px;
    padding: 20px;
  }

  .project-icon {
    width: 100px;
    height: 100px;
  }

  .project-title {
    /* font-size: 1.2rem; */
  }
}

/* Мобильные: вертикальная сетка проектов */
@media (max-width: 768px) {
  .projects-grid {
    flex-direction: column;
    align-items: center;
    max-width: 400px;
    margin: 0 auto 40px;
  }

  .project-card {
    width: 100%;
    max-width: 300px;
  }

  .directions-slider {
    gap: 20px;
  }

  .direction-slide {
    min-width: 260px;
  }

  .direction-image {
    height: 200px;
  }
}

/* Очень маленькие экраны */
@media (max-width: 480px) {
  .section-title {
    /* font-size: 1.8rem; */
  }

  .project-title {
    /* font-size: 1.1rem; */
  }

  .direction-title {
    /* font-size: 1.3rem; */
  }

  .project-button,
  .direction-button {
    padding: 9px 20px;
    /* font-size: 0.95rem; */
  }
}

/* === Блок "Польза для бизнеса" === */
.business-section {
  max-width: 1000px;
  margin: 60px auto;
  padding: 0;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--hi-color);
  line-height: 1.7;
}

.business-container {
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  padding: 40px;
}

/* === Заголовок === */
.section-title {
  text-align: center;
  /* font-size: 1.9rem; */
  color: var(--accent-color);
  margin: 0 0 30px;
  font-weight: 600;
}

/* === Текст === */
.business-content {
  max-width: 800px;
  margin: 0 auto;
  /* font-size: 1.05rem; */
}

.business-content p {
  margin: 16px 0;
  text-align: justify;
}

/* === Кнопка === */
.business-cta {
  text-align: center;
  margin: 40px 0 20px;
}

.business-button {
  display: inline-block;
  padding: 14px 32px;
  /* font-size: 1.1rem; */
  font-weight: 500;
  text-decoration: none;
  color: var(--accent-color);
  background-color: var(--primary-color);
  border-radius: var(--button-border-radius);
  transition: all 0.3s ease;
}

.business-button:hover {
  background-color: var(--accent-color-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(175, 211, 183, 0.4);
}

/* === Адаптивность === */

@media (max-width: 768px) {
  .business-container {
    padding: 30px 20px;
  }

  .section-title {
    /* font-size: 1.7rem; */
  }

  .business-content {
    /* font-size: 1rem;*/
  }

  .business-button {
    /* font-size: 1rem; */
    padding: 12px 28px;
  }
}

@media (max-width: 480px) {
  .business-container {
    padding: 25px 15px;
  }

  .section-title {
    /* font-size: 1.6rem; */
  }

  .business-content p {
    /* font-size: 1.35rem; */
  }
}

м

/* === Секция новостей === */
.news-section {
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 20px;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.news-container {
  display: flex;
  justify-content: center;
  align-items: stretch;
}

/* === Карточка новости === */
.news-card {
  display: flex;
  flex-direction: column;
  background-color: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  max-width: 662px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.news-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

/* === Изображение === */
.news-card__image {
  width: 100%;
  height: auto;
  display: block;
}

/* === Контент === */
.news-card__content {
  padding: 25px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* === Заголовок === */
.news-card__title {
  /* font-size: 1.4rem; */
  color: var(--accent-color);
  margin: 0;
  font-weight: 600;
  line-height: 1.3;
}

/* === Текст === */
.news-card__text {
  /* font-size: 1.05rem; */
  color: var(--hi-color);
  margin: 0;
  line-height: 1.6;
}

/* === Дата === */
.news-card__date {
  /* font-size: 0.95rem; */
  color: var(--accent-color-average);
  margin: 0;
  font-style: italic;
}

/* === Кнопка === */
.news-card__button {
  display: inline-block;
  margin-top: 8px;
  padding: 12px 24px;
  /* font-size: 1rem; */
  font-weight: 500;
  text-decoration: none;
  color: #FFFFFF;
  background-color: var(--primary-color);
  border-radius: var(--button-border-radius);
  align-self: flex-start;
  transition: all 0.3s ease;
}

.news-card__button:hover {
  background-color: var(--accent-color-light);
  transform: scale(1.05);
}

/* === Адаптивность === */

@media (max-width: 768px) {
  .news-container {
    flex-direction: column;
    align-items: center;
  }

  .news-card {
    max-width: 100%;
    margin: 0 10px;
  }

  .news-card__title {
    /* font-size: 1.3rem; */
  }

  .news-card__text,
  .news-card__date {
    /* font-size: 1rem; */
  }
}

@media (max-width: 480px) {
  .news-card__content {
    padding: 20px 18px;
  }

  .news-card__title {
    /* font-size: 1.25rem; */
  }

  .news-card__button {
    /* font-size: 0.95rem; */
    padding: 10px 20px;
  }
}

.news-container.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  justify-items: center;
}

.news-card {
  max-width: none;
  width: 100%;
}

/*

м<div class="news-container grid">
  <div class="news-card">...</div>
  <div class="news-card">...</div>
  <div class="news-card">...</div>
</div>

*/


/* === Кнопка в карточке СМИ О нас === */
.course-card__button {
  display: block;
  margin: 12px auto;
  /* Центрирует блок по горизонтали */
  padding: 10px 20px;
  /* font-size: 1.35rem; */
  font-weight: 500;
  text-align: center;
  background-color: var(--primary-color);
  color: var(--accent-color);
  border-radius: var(--button-border-radius);
  transition: all 0.3s ease;
}

.course-card__button:hover {
  background-color: var(--five-color);
  transform: scale(1.05);
}

/* === Карта на всю ширину экрана === */
.full-width-map {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.full-width-map iframe {
  width: 100%;
  height: 450px;
  border: none;
  display: block;
}

/* === Адаптивность === */
@media (max-width: 768px) {
  .full-width-map iframe {
    height: 350px;
  }
}

@media (max-width: 480px) {
  .full-width-map iframe {
    height: 300px;
  }
}


/* Стили сайта */
@media only screen and (min-width: 1200px) {
  .mainmenu__item {
    margin-right: 25px;
  }
}

.sh-gallery-wrapper {
  margin: 75px 20px;
}