/* ── Сетка команды ── */
.psych-team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: stretch;
  gap: 24px;
  margin: 32px 0;
}

/* ── Развёрнутая панель ── */
.psych-team-panel {
  grid-column: 1 / -1;
  display: none;
  align-items: stretch;
  gap: 0;
  padding: 0;
  background: #ffffff;
  border: 1.5px solid #c5d0ee;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(107,124,184,0.12);
  box-sizing: border-box;
  overflow: hidden;
}
.psych-team-panel--opening {
  animation: psych-panel-open 0.38s cubic-bezier(0.22, 0.61, 0.36, 1) both;
}
@keyframes psych-panel-open {
  from { opacity: 0; transform: translateY(-14px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── Левая часть панели ── */
.psych-panel__left {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 24px;
  flex: 1;
  padding: 28px 28px 28px 28px;
  min-width: 0;
}
.psych-panel__photo {
  width: 300px;
  height: 400px;
  border-radius: 12px;
  object-fit: cover;
  object-position: top;
  flex-shrink: 0;
}
.psych-panel__photo--empty {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #c8d3f0;
  font-size: 3rem;
}
.psych-panel__left-text { flex: 1; min-width: 0; }
.psych-panel__name {
  font-family: 'Times New Roman', Times, serif;
  font-size: 1.3rem;
  font-weight: bold;
  color: #1a2340;
  margin: 0 0 6px;
}
.psych-panel__exp {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: #6b7cb8;
  font-weight: 600;
  margin-bottom: 12px;
}
.psych-panel__bio {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: #4a5568;
  line-height: 1.7;
  margin: 0;
}
.psych-panel__bio-wrap {
  line-height: 1.7;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: #4a5568;
}
.psych-panel__bio--short {
  display: inline;
}
.psych-panel__bio-more {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  font-size: 16.5px;
  font-weight: 700;
  text-decoration: underline;
  color: #1a1a1a;
  color: #6b7cb8;
  background: none;
  border: none;
  padding: 0;
  margin-left: 0;
  vertical-align: middle;
  line-height: 1;
}
.psych-panel__bio-icon {
  width: 11px !important;
  height: 11px !important;
  opacity: 0.55;
  border: none !important;
  border-radius: 0 !important;
  object-fit: contain !important;
}
.psych-panel__bio--full {
  display: block;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  margin-top: 0;
  transition: max-height 0.45s ease, opacity 0.35s ease, margin-top 0.35s ease;
}
.psych-panel__bio--full.is-open {
  max-height: 800px;
  opacity: 1;
  margin-top: 10px;
}

/* ── Вертикальный разделитель ── */
.psych-panel__divider {
  width: 1px;
  background: #e2e8f5;
  flex-shrink: 0;
  align-self: stretch;
}

/* ── Правая часть панели ── */
.psych-panel__right {
  flex: 0 0 240px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 28px 24px;
}
.psych-panel__row-label {
  font-family: 'Inter', sans-serif;
  font-size: 10.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #a0aec0;
  margin-bottom: 4px;
}
.psych-panel__row-value {
  font-family: 'Inter', sans-serif;
  font-size: 13.5px;
  font-weight: 600;
  color: #1a2340;
}
.psych-panel__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}
.psych-panel__tag {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  color: #5a6a9a;
  background: #f0f3fb;
  border-radius: 20px;
  padding: 3px 10px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.psych-panel__tag-price {
  font-weight: 600;
  color: #9aa0b4;
  white-space: nowrap;
}
.psych-panel__extra-block {
  margin-top: 14px;
}
.psych-panel__extra-label {
  font-family: 'Inter', sans-serif;
  font-size: 10.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #a0aec0;
  margin-bottom: 5px;
}
.psych-panel__extra-text {
  font-family: 'Inter', sans-serif;
  font-size: 13.5px;
  color: #4a5568;
  line-height: 1.6;
}

.psych-panel__licenses { margin-top: 16px; }
.psych-panel__licenses-divider {
  height: 1px;
  background: #e2e8f5;
  margin-bottom: 14px;
}
.psych-panel__licenses-title {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: #1a2340;
  margin-bottom: 12px;
}
.psych-panel__licenses-grid { display: flex; flex-wrap: wrap; gap: 12px; }
.psych-panel__license-thumb img {
  width: 90px; height: 70px; object-fit: cover;
  border-radius: 8px; border: 1.5px solid #c5d0ee; display: block;
  transition: border-color .15s, transform .15s;
}
.psych-panel__license-thumb:hover img { border-color: #6b7cb8; transform: scale(1.05); }

.psych-panel__licenses-wrap {
  position: relative;
}
.psych-panel__licenses-wrap--collapsed .psych-panel__licenses-grid {
  max-height: 100px;
  overflow: hidden;
  transition: max-height 0.45s ease;
}
.psych-panel__licenses-grid {
  transition: max-height 0.45s ease;
}
.psych-panel__licenses-fade {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 44px;
  background: linear-gradient(to bottom, rgba(255,255,255,0) 0%, rgba(255,255,255,0.96) 100%);
  cursor: pointer;
  transition: opacity 0.3s ease;
}

.psych-panel__row--next { }
.psych-panel__next-date {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #16a34a;
  display: flex;
  align-items: center;
  gap: 8px;
}
.psych-panel__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 3px rgba(34,197,94,0.25);
  flex-shrink: 0;
}
.psych-panel__btn {
  display: block;
  background: #22c55e;
  color: #ffffff;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  padding: 12px 16px;
  border-radius: 10px;
  text-decoration: none;
  text-align: center;
  transition: background .2s;
}
.psych-panel__btn:hover { background: #16a34a; color: #fff; }

/* ── Карточка ── */
.psych-team-card {
  background: #ffffff;
  border: 1.5px solid #dde3f5;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  cursor: pointer;
  transition: border-color .2s, box-shadow .2s, transform .15s;
  -webkit-tap-highlight-color: transparent;
  outline: none;
}
.psych-team-card:focus,
.psych-team-card:active {
  outline: none;
}
.psych-team-card:hover {
  border-color: #a4b4e3;
  box-shadow: 0 6px 24px rgba(107,124,184,0.14);
  transform: translateY(-2px);
}
.psych-team-card--selected {
  border-color: #6b7cb8;
  box-shadow: 0 6px 24px rgba(107,124,184,0.18);
}

/* __details скрыт — используется только JS */
.psych-team-card__details { display: none !important; }

/* ── Фото-обёртка ── */
.psych-team-card__collapsed {
  display: block;
  width: 100%;
}
.psych-team-card__photo-wrap {
  position: relative;
  width: 100%;
  height: 260px;
  background: linear-gradient(145deg, #c8d3f0 0%, #b0bcdf 100%);
  overflow: hidden;
  flex-shrink: 0;
}
.psych-team-card__photo-wrap .psych-team-card__photo {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  object-fit: cover !important;
  object-position: center top !important;
  border-radius: 0 !important;
  border: none !important;
  margin: 0 !important;
}
.psych-team-card__photo-ph {
  width: 100%;
  height: 100%;
}

/* ── Бейдж доступности ── */
.psych-team-card__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(6px);
  border-radius: 20px;
  padding: 5px 10px 5px 8px;
  font-family: 'Inter', sans-serif;
  font-size: 13.5px;
  font-weight: 600;
  color: #2a3550;
  white-space: nowrap;
}
.psych-team-card__badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #22c55e;
  flex-shrink: 0;
  box-shadow: 0 0 0 2px rgba(34,197,94,0.25);
}

/* ── Тело карточки ── */
.psych-team-card__body {
  padding: 8px 16px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
  text-align: left;
  width: 100%;
  box-sizing: border-box;
}

.psych-team-card__name {
  font-family: 'Times New Roman', Times, serif;
  font-size: 1.175rem;
  font-weight: bold;
  color: #1a2340;
  margin: 0 0 6px;
}
.psych-team-panel .psych-team-card__name {
  font-size: 1.35rem;
  margin-bottom: 12px;
}

.psych-team-card__services {
  font-family: 'Inter', 'Nunito', sans-serif;
  font-size: 14.5px;
  color: #5a6a9a;
  line-height: 1.55;
  margin: 0 0 14px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: calc(1.55em * 2);
}

/* ── Блок мета-информации ── */
.psych-team-card__meta {
  background: #f0f3fb;
  border-radius: 10px;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 16px;
  width: 100%;
  box-sizing: border-box;
}
.psych-team-card__meta-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 14.5px;
  color: #3a4870;
}
.psych-team-card__meta-icon {
  display: flex;
  align-items: center;
  color: #6b7cb8;
  flex-shrink: 0;
}

/* ── Bio-area в карточке ── */
.psych-team-card__bio-area {
  margin: 8px 0 8px;
}
/* Ложная кнопка «Подробнее» — только визуал */
.psych-card-fake-more {
  pointer-events: none;
  margin-bottom: 10px;
  display: inline-flex;
}
.psych-team-card--expanded .psych-card-fake-more {
  display: none;
}

/* ── Краткая биография в свёрнутой карточке ── */
.psych-team-card__bio-short {
  font-family: 'Inter', sans-serif;
  font-size: 14.5px;
  color: #6b7a90;
  line-height: 1.55;
  margin: 8px 0 8px;
}

/* ── Кнопка ── */
.psych-team-card__btn {
  display: block;
  width: 100%;
  box-sizing: border-box;
  background: #6b7cb8;
  color: #ffffff;
  font-family: 'Inter', 'Nunito', sans-serif;
  font-size: 13.5px;
  font-weight: 600;
  padding: 11px 16px;
  border-radius: 10px;
  text-decoration: none;
  text-align: center;
  margin-top: auto;
  transition: background .2s;
}
.psych-team-card__btn:hover {
  background: #4f5e96;
  color: #ffffff;
}

/* ── Кнопка на карточке ── */
.psych-team-card__book-btn {
  display: block;
  width: 100%;
  box-sizing: border-box;
  background: #6b7cb8;
  color: #ffffff;
  font-family: 'Inter', 'Nunito', sans-serif;
  font-size: 13px;
  font-weight: 600;
  padding: 10px 16px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  text-align: center;
  margin-top: 12px;
  transition: background .2s;
}
.psych-team-card__book-btn:hover { background: #4f5e96; }

/* ── Биография и лицензии (в развёрнутой панели) ── */
.psych-team-card__info { flex: 1; min-width: 0; }
.psych-team-card__bio {
  font-family: 'Times New Roman', Times, serif;
  font-size: 0.95rem;
  color: #4a6880;
  line-height: 1.7;
  margin: 0 0 20px;
}
.psych-team-card__placeholder {
  width: 140px; height: 140px; border-radius: 50%;
  background: #c8d3f0; display: flex; align-items: center;
  justify-content: center; font-size: 3.5rem; flex-shrink: 0;
}
.psych-team-card__placeholder--large { width: 160px; height: 160px; }
.psych-team-card__photo--large {
  width: 160px; height: 160px; border-radius: 50%;
  object-fit: cover; border: 3px solid #a4b4e3; flex-shrink: 0;
}
.psych-team-card__licenses { margin-bottom: 20px; }
.psych-team-card__licenses-title {
  font-size: 0.82rem; color: #6b7cb8; text-transform: uppercase;
  letter-spacing: .06em; margin: 0 0 10px;
}
.psych-team-card__licenses-grid { display: flex; flex-wrap: wrap; gap: 10px; }
.psych-team-card__license-thumb img {
  width: 90px; height: 90px; object-fit: cover;
  border-radius: 6px; border: 2px solid #c5d0ee; display: block;
  transition: border-color .15s, transform .15s;
}
.psych-team-card__license-thumb:hover img {
  border-color: #6b7cb8; transform: scale(1.05);
}

.psych-team-empty {
  color: #4a6880;
  font-family: 'Times New Roman', Times, serif;
  font-style: italic;
}

@media (max-width: 900px) {
  .psych-team-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ── Аккордеон в мобильной карточке ── */
.psych-card-accordion {
  display: none;
  margin-bottom: 4px;
}
.psych-team-card--expanded .psych-card-accordion {
  display: block;
}
.psych-acc-item {
  border-top: 1px solid #e8eaf2;
}
.psych-acc-item:last-child {
  border-bottom: 1px solid #e8eaf2;
}
.psych-acc-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 11px 2px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #3a4870;
  text-align: left;
  -webkit-tap-highlight-color: transparent;
}
.psych-acc-chevron {
  flex-shrink: 0;
  color: #6b7cb8;
  transition: transform 0.25s ease;
}
.psych-acc-btn.is-open .psych-acc-chevron {
  transform: rotate(180deg);
}
.psych-acc-content {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  font-family: 'Inter', sans-serif;
  font-size: 15.5px;
  color: #4a5568;
  line-height: 1.65;
  transition: max-height 0.4s ease, opacity 0.3s ease, padding 0.3s ease;
  padding: 0 2px;
}
.psych-acc-content.is-open {
  max-height: 3000px;
  opacity: 1;
  padding: 0 2px 12px;
  margin: 10px 0;
}

/* ── Мобильное расширение карточки ── */
.psych-team-card__mobile-expand {
  display: none;
  padding: 0 16px 16px;
}
.psych-team-card--expanded .psych-team-card__mobile-expand {
  display: block;
}

/* ── Кнопки навигации по психологам (только мобайл, только в expanded) ── */
.psych-panel-nav {
  display: none;
}
@media (max-width: 768px) {
  .psych-grid--expanded .psych-panel-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 130px;
    z-index: 20;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: rgba(255,255,255,0.88);
    backdrop-filter: blur(4px);
    box-shadow: 0 2px 10px rgba(0,0,0,0.15);
    cursor: pointer;
    color: #3a4870;
    padding: 0;
    transition: background .15s;
    -webkit-tap-highlight-color: transparent;
  }
  .psych-panel-nav:focus { outline: none; }
  .psych-panel-nav:focus:not(:focus-visible) { background: rgba(255,255,255,0.88); }
  .psych-panel-nav:hover { background: #fff; }
  .psych-panel-nav--prev { left: 10px; }
  .psych-panel-nav--next { right: 10px; }

  /* Скрыть трек карусели и стрелки карусели в expanded-режиме */
  .psych-grid--expanded .lp-mob-track { display: none; }
  .psych-grid--expanded .lp-team-carousel-btn { display: none; }
}

/* ── Мобильная версия панели (< 768px) ── */
@media (max-width: 768px) {

  /* Панель: вертикальный столбец */
  .psych-team-panel {
    flex-direction: column;
    align-items: stretch;
    border-radius: 12px;
  }

  /* Левая часть: фото сверху, текст снизу */
  .psych-panel__left {
    flex-direction: column;
    align-items: stretch;
    padding: 0;
    gap: 0;
  }

  /* Фото: на всю ширину */
  .psych-panel__photo {
    width: 100%;
    height: 260px;
    border-radius: 0;
    object-position: top center;
  }
  .psych-panel__photo--empty {
    width: 100%;
    height: 180px;
    border-radius: 0;
  }

  /* Текстовый блок под фото */
  .psych-panel__left-text {
    padding: 16px 16px 20px;
  }

  .psych-panel__name {
    font-size: 1.15rem;
    margin-bottom: 4px;
  }

  /* Разделитель: горизонтальный */
  .psych-panel__divider {
    width: 100%;
    height: 1px;
    background: #e2e8f5;
    flex-shrink: 0;
  }

  /* Правая часть: полная ширина */
  .psych-panel__right {
    flex: 1 1 auto;
    width: auto;
    padding: 16px 16px 20px;
    gap: 12px;
  }

  /* Лицензии: 2 в ряд */
  .psych-panel__licenses-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .psych-panel__license-thumb {
    width: 100%;
  }
  .psych-panel__license-thumb img {
    width: 100%;
    height: 70px;
  }
  .psych-panel__license-thumb--preview {
    width: 100%;
    height: 70px;
  }
  .psych-panel__license-thumb--preview img {
    width: 100%;
    height: 70px;
  }

  /* Кнопка "Записаться" на всю ширину */
  .psych-panel__btn {
    width: 100%;
    box-sizing: border-box;
  }
}

@media (max-width: 500px) {
  .psych-team-grid { grid-template-columns: 1fr; gap: 16px; }
}
