/* ================================================================
   TERMIN / APPOINTMENT PAGE
   Fonts and colours come from home.css tokens / shared page classes.
   ================================================================ */
.sh-termin .sh-page-hero .sh-eyebrow {
  display: block;
}

.sh-termin-book {
  background: var(--cream);
  padding-block: 72px;
  border-bottom: 1px solid var(--border);
}
.sh-termin-book__panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px 40px;
  align-items: center;
  padding: 36px 40px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-sm);
  overflow: hidden;
}
.sh-termin-book__panel::before {
  content: '';
  position: absolute;
  inset-inline: 0;
  top: 0;
  height: 3px;
  background: var(--accent);
}
.sh-termin-book__copy .sh-eyebrow {
  display: block;
}
.sh-termin-book__copy h2 {
  font-family: var(--font-h);
  font-size: var(--fs-section);
  font-weight: 700;
  color: var(--text-h);
  line-height: var(--lh-section);
  margin: 10px 0 12px;
}
.sh-termin-book__copy p {
  margin: 0;
  max-width: 46ch;
  font-size: 1.02rem;
  line-height: 1.7;
  color: var(--text-m);
}
.sh-termin-book__actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 280px;
}
.sh-termin-book__actions .sh-btn {
  justify-content: center;
}

.sh-termin-paths {
  background: var(--white);
  border-top: 1px solid var(--border);
  padding-block: 80px 96px;
}
.sh-termin-paths .sh-section-header {
  margin-bottom: 48px;
}
.sh-termin-paths__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.sh-termin-path {
  overflow: hidden;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-sm);
  transition: transform .26s ease, box-shadow .26s ease;
}
.sh-termin-path:hover {
  transform: translateY(-3px);
  box-shadow: var(--sh-md);
}
.sh-termin-path__media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--light);
}
.sh-termin-path__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 22%;
  transition: transform .6s ease;
}
.sh-termin-path:nth-child(3) .sh-termin-path__img {
  object-position: 45% 35%;
}
.sh-termin-path:hover .sh-termin-path__img {
  transform: scale(1.035);
}
.sh-termin-path__body {
  padding: 24px 26px 28px;
}
.sh-termin-path__index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  margin-bottom: 16px;
  border: 1px solid var(--accent-line);
  border-radius: 50%;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .08em;
  color: var(--accent-dk);
  background: var(--accent-lite);
}
.sh-termin-path h3 {
  font-family: var(--font-h);
  font-size: 1.5rem;
  color: var(--text-h);
  margin: 0 0 10px;
}
.sh-termin-path p {
  margin: 0;
  color: var(--text-b);
  line-height: 1.7;
}
.sh-termin-other {
  background: linear-gradient(180deg, var(--primary) 0%, var(--primary-dk) 100%);
  border-top: 1px solid var(--accent-line);
  padding-block: 80px;
}
.sh-termin-other__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.sh-termin-other h2 {
  font-family: var(--font-h);
  font-size: var(--fs-section);
  color: var(--white);
  margin: 0;
  line-height: var(--lh-section);
}
.sh-termin-other__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  flex-shrink: 0;
}

@media (max-width: 980px) {
  .sh-termin-paths__grid {
    grid-template-columns: 1fr 1fr;
  }
  .sh-termin-book {
    padding-block: 56px;
  }
  .sh-termin-book__panel {
    grid-template-columns: 1fr;
    padding: 28px 24px;
  }
  .sh-termin-book__actions {
    min-width: 0;
  }
  .sh-termin-book__actions .sh-btn {
    width: 100%;
  }
  .sh-termin .sh-page-hero__title {
    max-width: none;
  }
}

@media (max-width: 640px) {
  .sh-termin-paths__grid {
    grid-template-columns: 1fr;
  }
  .sh-termin-other__actions {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }
  .sh-termin-other__actions .sh-btn {
    width: 100%;
    justify-content: center;
  }
  .sh-termin-other__inner {
    flex-direction: column;
    text-align: center;
  }
}
