/* =========================================================
   О клинике — page-specific blocks
   ========================================================= */

/* ---------- About head doctor ---------- */
.about-doctor {
  padding-top: 8px;
}
.about-doctor-wrap {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: clamp(32px, 4vw, 64px);
  align-items: start;
}
.about-doctor-photo-col {
  position: sticky;
  top: var(--cat-top, 120px);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.about-doctor-photo {
  border-radius: var(--r-2xl);
  overflow: hidden;
  background: var(--bg-gray-card);
}
.about-doctor-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.about-doctor-info h2 {
  margin: 0 0 18px;
  font-size: clamp(24px, 2.4vw, 30px);
  font-weight: 700;
  letter-spacing: -0.02em;
}
.about-doctor-meta {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 30px;
}
.about-doctor-meta p {
  margin: 0;
  font-size: 18px;
  color: var(--text);
}
.about-doctor-info h3 {
  margin: 0 0 16px;
  font-size: clamp(20px, 2vw, 24px);
  font-weight: 700;
  letter-spacing: -0.01em;
}
.about-edu {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
  border-top: 1px solid var(--line, #ECE8F3);
}
.about-doctor-btn { width: 100%; justify-content: center; }
/* образование: показываем 3 ряда, остальное под «Показать больше» */
.about-edu .edu-item.edu-collapsed { display: none; }
.about-edu-toggle {
  display: block;
  background: none; border: 0; padding: 4px 2px; margin: -8px 0 24px;
  color: var(--violet); font-family: inherit; font-size: 15px; font-weight: 600; cursor: pointer;
}
.about-edu-toggle:hover { color: var(--violet-hover); text-decoration: underline; }

/* ---------- ABOUT INTRO ---------- */
.about-intro-prose {
  font-size: 15px;
  line-height: 1.65;
  color: var(--text);
}
.about-intro-prose p {
  margin: 0 0 12px;
  color: var(--text);
}
.about-intro-prose p:last-child {
  margin-bottom: 0;
}

/* ---------- WHO CHOOSES US ---------- */
.choice-section .section-title {
  margin-bottom: var(--title-gap);
}
.choice-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(320px, 0.75fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: stretch;
}
.choice-list {
  display: flex;
  flex-direction: column;
}
.choice-card {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 20px;
  align-items: start;
  padding: 24px 8px;
  border-bottom: 1px solid var(--line, #ECE8F3);
  transition: background 0.25s ease, padding 0.25s ease;
}
.choice-card:hover {
  padding-right: 18px;
  padding-left: 18px;
  background: linear-gradient(90deg, var(--violet-soft, #F1ECFB), transparent 85%);
  border-radius: 16px;
}
.choice-number {
  color: var(--violet);
  font-size: clamp(32px, 3vw, 46px);
  font-weight: 600;
  line-height: 0.9;
  letter-spacing: -0.06em;
  font-variant-numeric: tabular-nums;
}
.choice-card h3 {
  margin: 0 0 12px;
  color: var(--text);
  font-size: clamp(19px, 1.5vw, 23px);
  font-weight: 600;
  line-height: 1.25;
}
.choice-card p {
  margin: 0;
  color: var(--text);
  font-size: 15px;
  line-height: 1.6;
}
.choice-visual {
  position: sticky;
  top: var(--cat-top, 120px);
  align-self: start;
  overflow: hidden;
  border-radius: var(--r-2xl, 32px);
  box-shadow: var(--shadow-card);
}
.choice-visual::before {
  content: none;
}
.choice-visual img {
  display: block;
  width: 100%;
  height: auto;
}
.choice-visual-caption {
  position: absolute;
  z-index: 2;
  top: 28px;
  left: 28px;
  max-width: 190px;
  color: var(--violet-deep);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.35;
}

/* ---------- HOW WE WORK ---------- */
.work-approach-section .section-title {
  margin-bottom: var(--title-gap);
}
.work-approach-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
.work-approach-card {
  position: relative;
  min-height: 310px;
  padding: 30px;
  overflow: hidden;
  border: 1px solid var(--line, #ECE8F3);
  border-radius: var(--r-2xl, 32px);
  background: #fff;
  box-shadow: var(--shadow-card);
}
.work-approach-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin-bottom: 34px;
  border-radius: 16px;
  background: var(--violet-soft, #F1ECFB);
  color: var(--violet);
}
.work-approach-icon svg {
  width: 26px;
  height: 26px;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.work-approach-kicker {
  margin: 0 0 5px;
  color: var(--violet);
  font-size: 13px;
  font-weight: 600;
}
.work-approach-card h3 {
  margin: 0 0 16px;
  color: var(--text);
  font-size: clamp(20px, 1.7vw, 24px);
  font-weight: 600;
  line-height: 1.25;
}
.work-approach-card > p:last-child {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--text);
  font-size: 15px;
  line-height: 1.6;
}
.edu-item {
  position: relative;
  display: grid;
  grid-template-columns: 116px 1fr;
  gap: 20px;
  align-items: baseline;
  padding: 16px 14px 16px 14px;
  border-bottom: 1px solid var(--line, #ECE8F3);
  border-radius: 8px;
  transition: background 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}
.edu-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  bottom: 8px;
  width: 2px;
  border-radius: 2px;
  background: var(--violet);
  transform: scaleY(0);
  transform-origin: top center;
  opacity: 0;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.45s ease;
}
.edu-item:hover {
  background: linear-gradient(90deg, color-mix(in srgb, var(--violet) 6%, transparent), transparent 70%);
}
.edu-item:hover::before {
  transform: scaleY(1);
  opacity: 1;
}
.edu-period {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: var(--violet);
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
  padding-top: 1px;
}
.edu-desc {
  font-size: 15px;
  line-height: 1.55;
  color: var(--text);
  text-wrap: pretty;
}

/* ---------- Gallery ---------- */
.gallery-section .section-title { margin-bottom: var(--title-gap); }
.gallery-stage {
  position: relative;
  border-radius: var(--r-2xl);
  overflow: hidden;
  background: var(--bg-gray-card);
  aspect-ratio: 16 / 9;
  box-shadow: var(--shadow-card);
}
.gallery-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.45s ease;
  cursor: zoom-in;
}
.gallery-slide.is-active { opacity: 1; }
.gallery-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* striped placeholder */
.gallery-ph {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #EFEAF6;
  background-image: repeating-linear-gradient(
    -45deg,
    rgba(96, 84, 177, 0.07) 0 14px,
    rgba(96, 84, 177, 0.02) 14px 28px
  );
}
.gallery-ph span {
  font-family: ui-monospace, "SF Mono", Menlo, Consolas, monospace;
  font-size: 14px;
  letter-spacing: 0.02em;
  color: var(--violet);
  background: rgba(255, 255, 255, 0.72);
  padding: 8px 16px;
  border-radius: 999px;
}
.gallery-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 0;
  background: rgba(255, 255, 255, 0.92);
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-soft);
  z-index: 3;
  transition: transform 0.18s ease, background 0.18s ease;
}
.gallery-arrow:hover { background: #fff; transform: translateY(-50%) scale(1.06); }
.gallery-arrow.prev { left: 18px; }
.gallery-arrow.next { right: 18px; }
.gallery-counter {
  position: absolute;
  bottom: 16px;
  right: 18px;
  z-index: 3;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  background: rgba(31, 31, 37, 0.55);
  padding: 6px 14px;
  border-radius: 999px;
  backdrop-filter: blur(6px);
}
.gallery-thumbs {
  display: flex;
  gap: 14px;
  margin-top: 18px;
  overflow-x: auto;
  padding-bottom: 4px;
  scrollbar-width: thin;
}
.gallery-thumb {
  flex: 0 0 132px;
  height: 84px;
  border-radius: var(--r-md);
  overflow: hidden;
  border: 2px solid transparent;
  background: var(--bg-gray-card);
  cursor: pointer;
  padding: 0;
  transition: border-color 0.18s ease;
}
.gallery-thumb.is-active { border-color: var(--violet); }
.gallery-thumb .gallery-ph span { font-size: 11px; padding: 4px 8px; }
.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; }

/* gallery lightbox reuses lic-lightbox styles; nothing extra needed */

/* =========================================================
   ГАЛЕРЕЯ (3-up carousel) — как на странице «Контакты»
   ========================================================= */
.kgal-stage {
  position: relative;
  display: flex;
  align-items: center;
  margin-top: var(--title-gap);
}
.kgal-viewport {
  overflow: hidden;
  border-radius: var(--r-2xl);
  width: 100%;
}
.kgal-track {
  display: flex;
  gap: 20px;
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}
.kgal-track image-slot {
  flex: 0 0 calc((100% - 40px) / 3);
  height: clamp(260px, 21vw, 360px);
  border-radius: var(--r-2xl);
  background: var(--bg-gray-card);
}
.kgal-track image-slot[data-filled] { cursor: zoom-in; }
.kgal-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 0;
  background: rgba(255, 255, 255, 0.94);
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-soft);
  z-index: 4;
  cursor: pointer;
  transition: transform 0.18s ease, background 0.18s ease, opacity 0.2s ease;
}
.kgal-arrow:hover { background: #fff; transform: translateY(-50%) scale(1.07); }
.kgal-arrow:disabled { opacity: 0.35; cursor: default; }
.kgal-arrow:disabled:hover {
  background: rgba(255, 255, 255, 0.94);
  transform: translateY(-50%);
}
.kgal-arrow.prev { left: -10px; }
.kgal-arrow.next { right: -10px; }

@media (max-width: 1180px) {
  .kgal-track image-slot { flex-basis: calc((100% - 20px) / 2); }
  .kgal-arrow.prev { left: 6px; }
  .kgal-arrow.next { right: 6px; }
}
@media (max-width: 720px) {
  .kgal-track image-slot { flex-basis: 100%; height: 260px; }
  .kgal-arrow { width: 44px; height: 44px; }
}

/* ГАЛЕРЕЯ — просмотр фото (lightbox) */
.kgal-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  background: rgba(16, 18, 30, 0.92);
  opacity: 0;
  transition: opacity 0.2s ease;
}
.kgal-lightbox.is-open { opacity: 1; }
.kgal-lightbox[hidden] { display: none; }
.kgal-lb-stage {
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  max-width: 100%;
  max-height: 100%;
}
.kgal-lb-stage img {
  max-width: min(960px, 100%);
  max-height: calc(100vh - 140px);
  border-radius: var(--r-xl);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
  object-fit: contain;
}
.kgal-lb-stage figcaption {
  color: rgba(255, 255, 255, 0.85);
  font-size: 15px;
  text-align: center;
}
.kgal-lb-close,
.kgal-lb-nav {
  position: absolute;
  background: rgba(255, 255, 255, 0.12);
  border: 0;
  color: #fff;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.18s ease, transform 0.18s ease;
  padding: 0;
}
.kgal-lb-close:hover,
.kgal-lb-nav:hover { background: rgba(255, 255, 255, 0.24); transform: scale(1.06); }
.kgal-lb-close { top: 20px; right: 20px; }
.kgal-lb-prev  { left: 24px; top: 50%; transform: translateY(-50%); }
.kgal-lb-next  { right: 24px; top: 50%; transform: translateY(-50%); }
.kgal-lb-prev:hover,
.kgal-lb-next:hover { transform: translateY(-50%) scale(1.06); }
.kgal-lb-counter {
  position: absolute;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  letter-spacing: 0.04em;
}
@media (max-width: 720px) {
  .kgal-lightbox { padding: 24px 12px; }
  .kgal-lb-close { top: 12px; right: 12px; width: 40px; height: 40px; }
  .kgal-lb-prev  { left: 8px; width: 40px; height: 40px; }
  .kgal-lb-next  { right: 8px; width: 40px; height: 40px; }
  .kgal-lb-stage img { max-height: calc(100vh - 120px); }
}

/* ---------- Анализы banner (Гастроэнтеролог hero style + heart) ---------- */
.analyz-section .section-title { margin-bottom: var(--title-gap); }
.analyz-banner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: clamp(24px, 3vw, 48px);
  align-items: center;
  border-radius: var(--r-2xl);
  padding: clamp(32px, 4vw, 56px);
  background: linear-gradient(135deg, #FFD9D5 0%, #F1EAFC 100%);
  overflow: hidden;
}
.analyz-figure {
  position: relative;
  min-height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.analyz-heart {
  position: absolute;
  width: 96%;
  max-width: 480px;
  left: 50%;
  top: 50%;
  transform: translate(-52%, -50%);
  z-index: 1;
  pointer-events: none;
}
.analyz-tube {
  position: relative;
  z-index: 2;
  width: min(62%, 290px);
  filter: drop-shadow(0 24px 40px rgba(213, 72, 54, 0.22));
  animation: analyz-float 6s ease-in-out infinite;
}
@keyframes analyz-float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-14px) rotate(-1.5deg); }
}
@media (prefers-reduced-motion: reduce) {
  .analyz-tube { animation: none; }
}
.analyz-content h3 {
  margin: 0 0 28px;
  font-size: 40px;
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.02em;
}
.analyz-feats {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-bottom: 32px;
}
.analyz-feat {
  display: flex;
  align-items: center;
  gap: 14px;
}
.analyz-feat-ico {
  width: 56px;
  height: 56px;
  flex: 0 0 56px;
  border-radius: var(--r-md);
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--violet);
  box-shadow: var(--shadow-card);
}
.analyz-feat-txt strong {
  display: block;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.analyz-feat-txt span {
  font-size: 13px;
  color: var(--text-muted);
}

/* category cards — "Направления" / service-card style */
.analyz-cats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 28px;
}
.analyz-cat {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 36px;
  min-height: 178px;
  border-radius: var(--r-lg);
  padding: 24px;
  background: var(--pink-card);
  color: var(--text);
  cursor: pointer;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.analyz-cat::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(155deg, #9B85ED 0%, #6F5DD8 45%, #4A3CB8 100%);
  opacity: 0;
  z-index: -1;
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.analyz-cat:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 48px rgba(96, 84, 177, 0.28);
}
.analyz-cat:hover::before { opacity: 1; }
.analyz-cat-cap {
  font-size: 13px;
  line-height: 1.4;
  color: var(--text);
  opacity: 0.72;
  transition: color 0.65s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}
.analyz-cat:hover .analyz-cat-cap { color: rgba(255, 255, 255, 0.85); opacity: 1; }
.analyz-cat-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.analyz-cat-name {
  font-size: 19px;
  font-weight: 600;
  line-height: 1.22;
  letter-spacing: -0.01em;
  transition: color 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}
.analyz-cat:hover .analyz-cat-name { color: #fff; }
.analyz-cat-arrow {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  border-radius: 999px;
  background: #F9C9C7;
  color: var(--coral-deep);
  display: grid;
  place-items: center;
  box-shadow: 0 4px 12px rgba(249, 201, 199, 0.55);
  transition: transform 0.7s cubic-bezier(0.34, 1.4, 0.64, 1), background 0.65s cubic-bezier(0.22, 1, 0.36, 1), color 0.65s ease, box-shadow 0.65s ease;
}
.analyz-cat-arrow svg { transition: transform 0.65s cubic-bezier(0.22, 1, 0.36, 1); }
.analyz-cat:hover .analyz-cat-arrow {
  background: #fff;
  color: var(--violet);
  transform: rotate(45deg) scale(1.05);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}
.analyz-cat:hover .analyz-cat-arrow svg { transform: rotate(-45deg); }

/* hidden cards revealed by "Показать все" */
.analyz-cat--hidden { display: none; }
.analyz-cats.is-expanded .analyz-cat--hidden {
  display: flex;
  animation: analyz-cat-in 0.5s cubic-bezier(0.22, 1, 0.36, 1) both;
}
@keyframes analyz-cat-in {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}
.analyz-more {
  text-align: center;
  margin-top: 36px;
}
.analyz-more-btn {
  background: none;
  border: 0;
  padding: 6px 8px;
  font-size: 15px;
  font-weight: 500;
  color: var(--violet);
  cursor: pointer;
}
.analyz-more-btn:hover { color: var(--violet-hover); text-decoration: underline; }

/* Контентные ссылки и анимированное подчёркивание — канон в styles.css
   (.link-underline / .link-arrow / .link-muted). Крошки больше НЕ подчёркиваются.
   Ниже — только подчёркивание ссылок внутри FAQ-ответов этой страницы. */
.faq-answer a {
  position: relative;
  display: inline-block;
  color: var(--violet);
  transition: color 0.2s ease;
}
.faq-answer a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 2px;
  background: var(--violet);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.25s cubic-bezier(0.22, 1, 0.36, 1);
}
.faq-answer a:hover { color: var(--violet); }
.faq-answer a:hover::after { transform: scaleX(1); }

/* ---------- FAQ before footer: add breathing room ---------- */
.faq-section--end { padding-bottom: var(--section-pad); }

/* ---------- Responsive ---------- */
/* 981–1440: фото врача компактнее, текст справа шире */
@media (max-width: 1440px) and (min-width: 981px) {
  .about-doctor-wrap { grid-template-columns: 340px 1fr; gap: 40px; }
}
@media (max-width: 980px) {
  .about-doctor-wrap { grid-template-columns: 320px 1fr; gap: 32px; }
  .about-doctor-photo { position: static; }
  .choice-layout { grid-template-columns: 1fr; }
  .choice-visual { position: relative; top: auto; width: 100%; }
  .choice-visual img { width: 100%; }
  .work-approach-grid { grid-template-columns: 1fr; }
  .work-approach-card { min-height: 0; }
  .analyz-banner { grid-template-columns: 1fr; }
  .analyz-figure { min-height: 260px; order: -1; }
  .analyz-cats { grid-template-columns: repeat(2, 1fr); }
}
/* ~768 (планшет): фото ещё компактнее, текст шире */
@media (max-width: 900px) and (min-width: 681px) {
  .about-doctor-wrap { grid-template-columns: 240px 1fr; gap: 28px; }
}
@media (max-width: 680px) {
  .about-doctor-wrap { grid-template-columns: 1fr; }
  .about-doctor-photo { max-width: 360px; }
  .choice-layout { gap: 26px; }
  .choice-card { grid-template-columns: 54px 1fr; gap: 14px; padding: 20px 4px; }
  .choice-card:hover { padding-right: 10px; padding-left: 10px; }
  .choice-number { font-size: 32px; }
  .work-approach-grid { gap: 14px; }
  .work-approach-card { padding: 24px; border-radius: 24px; }
  .work-approach-icon { margin-bottom: 24px; }
  .choice-visual-caption { top: 22px; left: 22px; }
  .edu-item { grid-template-columns: 1fr; gap: 4px; }
  /* компактная типографика на мобильном */
  .analyz-content h3 { font-size: 21px; line-height: 1.25; margin-bottom: 16px; }
  .about-doctor-info h2 { font-size: 22px; margin-bottom: 12px; }
  .about-doctor-meta { gap: 8px; margin-bottom: 20px; }
  .about-doctor-meta p { font-size: 15px; }
  .about-doctor-info h3 { font-size: 19px; margin-bottom: 12px; }
  .analyz-content .btn { width: 100%; }
  .about-edu-toggle { text-align: center; width: 100%; }
  .about-doctor-btn { width: 100%; justify-content: center; }
  .analyz-cats { grid-template-columns: 1fr 1fr; gap: 12px; }
  .analyz-cat { padding: 18px; min-height: 130px; gap: 24px; }
  .analyz-cat-name { font-size: 16px; }
  .gallery-arrow { width: 44px; height: 44px; }
}
@media (max-width: 600px) {
  /* категории анализов — по одной в ряд, компактная строка (как карточки услуг) */
  .analyz-cats { grid-template-columns: 1fr !important; gap: 10px; }
  .analyz-cat,
  .analyz-cats.is-expanded .analyz-cat--hidden {
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-areas:
      "name arrow"
      "cap  arrow";
    align-items: center;
    column-gap: 14px;
    row-gap: 3px;
    min-height: 0;
    padding: 14px 16px;
  }
  .analyz-cat-foot { display: contents; }
  .analyz-cats:not(.is-expanded) .analyz-cat--hidden { display: none; }
  .analyz-cat-name { grid-area: name; align-self: end; font-size: 16px; line-height: 1.2; }
  .analyz-cat-cap { grid-area: cap; align-self: start; font-size: 12.5px; margin: 0; }
  .analyz-cat-arrow { grid-area: arrow; align-self: center; width: 36px; height: 36px; flex: 0 0 auto; }
}
