/* ===== ПОДКЛЮЧЕНИЕ ШРИФТОВ ===== */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600&family=Inter:wght@300;400;500&display=swap');

/* ===== ОБЩИЙ ФОН СТРАНИЦЫ ===== */
.t-body {
  background-color: #F3EDE0;
}

/* ===== HERO-БЛОК: ФОН ===== */
.hero-section {
  background-color: #F3EDE0;
  text-align: center;
  padding: 60px 24px 40px;
}

/* ===== ФОТО (скруглённое) ===== */
.hero-photo {
  width: 240px;
  height: 240px;
  border-radius: 28px;
  object-fit: cover;
  margin: 0 auto 32px;
  display: block;
  background: linear-gradient(145deg, #7A9E8A, #4A6B5A);
}

/* ===== ИМЯ ===== */
.hero-name {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 52px;
  font-weight: 500;
  color: #1A1A1A;
  line-height: 1.15;
  letter-spacing: -0.5px;
  text-align: center;
  margin: 0 0 12px;
}

/* ===== ПОДЗАГОЛОВОК (Психолог, педагог...) ===== */
.hero-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #6B6B6B;
  text-align: center;
  margin: 0;
}

/* ===== БОЛЬШОЙ ВОПРОС ===== */
.section-question {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 44px;
  font-weight: 500;
  color: #1A1A1A;
  line-height: 1.2;
  letter-spacing: -0.3px;
  text-align: center;
  padding: 48px 24px 16px;
  margin: 0;
}

/* ===== ПОДСКАЗКА ПОД ВОПРОСОМ ===== */
.section-hint {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: #888888;
  text-align: center;
  margin: 0 0 32px;
  padding: 0 24px;
}

/* ===== КАРТОЧКА ===== */
.card {
  background: #FFFFFF;
  border-radius: 20px;
  padding: 28px 24px 24px;
  margin: 0 16px 12px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

/* ===== ТЕГ КАРТОЧКИ (ЭМОЦИИ / САМОРЕГУЛЯЦИЯ...) ===== */
.card-tag {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 500;
  color: #888888;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  margin: 0 0 14px;
}

/* ===== ЗАГОЛОВОК КАРТОЧКИ ===== */
.card-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 22px;
  font-weight: 500;
  color: #1A1A1A;
  line-height: 1.35;
  margin: 0 0 12px;
}

/* ===== ОПИСАНИЕ КАРТОЧКИ ===== */
.card-desc {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: #4A4A4A;
  line-height: 1.6;
  margin: 0 0 28px;
}

/* ===== ССЫЛКА В КАРТОЧКЕ ===== */
.card-link {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: #5C7A5E;
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
}

.card-link:hover {
  color: #3D5C3F;
}

/* ===== CTA-БЛОК (низ страницы) ===== */
.cta-section {
  padding: 40px 24px;
  text-align: center;
}

.cta-text {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: #4A4A4A;
  line-height: 1.6;
  margin: 0 0 28px;
}

/* ===== ТЁМНАЯ КНОПКА «Подобрать группу» ===== */
.btn-primary {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #FFFFFF;
  background-color: #3D4A3E;
  border: none;
  border-radius: 50px;
  padding: 16px 32px;
  cursor: pointer;
  transition: background 0.2s ease;
  margin-right: 12px;
}

.btn-primary:hover {
  background-color: #2E3A2F;
}

/* ===== КОНТУРНАЯ КНОПКА «Все программы» ===== */
.btn-secondary {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #1A1A1A;
  background-color: transparent;
  border: 1.5px solid #1A1A1A;
  border-radius: 50px;
  padding: 16px 32px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-secondary:hover {
  background-color: #1A1A1A;
  color: #FFFFFF;
}

/* ===== БОКОВАЯ НАВИГАЦИЯ ===== */
.side-nav {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: #AAAAAA;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  position: fixed;
  left: 20px;
  top: 50%;
  transform: translateY(-50%) rotate(180deg);
  letter-spacing: 0.5px;
}