/* ============================================
   Hilfe bei Problemen — Kompakt
   ============================================ */

/* ---- Page Hero (compact variant) ---- */
.page-hero--compact {
  padding-block: var(--space-3xl) var(--space-2xl);
}

/* ---- Layout ---- */
.hilfe-layout {
  padding-block: var(--space-5xl);
}

.hilfe-grid {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: var(--space-4xl);
  align-items: start;
}

/* ============================================
   Sidebar / Notfall-Card
   ============================================ */
.hilfe-sidebar {
  position: sticky;
  top: calc(96px + var(--space-xl));
}

.notfall-card {
  background-color: var(--color-primary);
  color: var(--color-white);
  padding: var(--space-2xl);
}

/* Titel gross und klar */
.notfall-card__title {
  font-size: var(--text-2xl);
  font-weight: var(--font-semibold);
  color: var(--color-white);
  margin-bottom: var(--space-md);
}

/* Telefon prominent */
.notfall-card__phone {
  display: block;
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  font-weight: var(--font-semibold);
  color: var(--color-white);
  margin-bottom: var(--space-xl);
  padding-bottom: var(--space-xl);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}



/* Fliesstext — gleiche Grösse wie normaler Text */
.notfall-card__text {
  font-size: var(--text-base);
  color: var(--color-white);
  margin-bottom: var(--space-xl);
}

/* Tipps-Box innerhalb der blauen Notfall-Card */
.notfall-tipps {
  background-color: var(--color-light-1);
  padding: var(--space-lg);
  margin-inline: calc(var(--space-lg) * -1);
  margin-bottom: var(--space-xl);
}

.notfall-tipps__title {
  font-family: var(--font-heading);
  font-size: var(--text-sm);
  font-weight: var(--font-semibold);
  color: var(--color-primary);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: var(--space-sm);
}

.notfall-tipps p {
  font-size: var(--text-base);
  color: var(--color-text-light);
  margin-bottom: var(--space-sm);
}

.notfall-tipps ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  margin: 0;
}

.notfall-tipps li {
  font-size: var(--text-base);
  color: var(--color-text-light);
  line-height: 1.5;
}

.notfall-tipps li strong {
  color: var(--color-primary);
  font-weight: var(--font-semibold);
}

.notfall-tipps__figure {
  margin: var(--space-md) 0 0;
}

.notfall-tipps__figure img {
  max-width: 50%;
  height: auto;
  display: block;
}

.notfall-tipps__figure figcaption {
  font-size: var(--text-xs);
  color: var(--color-text-light);
  margin-top: var(--space-xs);
  font-style: italic;
}

/* Öffnungszeiten */
.notfall-card__hours {
  margin-bottom: var(--space-lg);
}

.notfall-card__hours-title {
  font-family: var(--font-heading);
  font-size: var(--text-sm);
  font-weight: var(--font-semibold);
  color: var(--color-white);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: var(--space-sm);
}

.notfall-card__hours-row {
  display: flex;
  justify-content: space-between;
  gap: var(--space-md);
  padding-block: var(--space-xs);
  font-size: var(--text-base);
  color: var(--color-white);
  line-height: 1.5;
}

.notfall-card__hours-row + .notfall-card__hours-row {
  margin-top: var(--space-xs);
}

.notfall-card__hours-day {
  font-weight: var(--font-medium);
  white-space: nowrap;
}

.notfall-card__hours-time {
  text-align: left;
}


/* ============================================
   Accordion Content
   ============================================ */
.hilfe-content {
  display: flex;
  flex-direction: column;
  gap: var(--space-3xl);
}

/* Kategorie-Titel — klar grösser als Accordion-Items */
.hilfe-category__title {
  font-size: var(--text-2xl);
  font-weight: var(--font-semibold);
  color: var(--color-primary);
  margin-bottom: var(--space-sm);
}

/* ---- Accordion (hilfe-specific) ---- */
.hilfe-category .accordion:first-of-type {
  border-top: none;
}

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .hilfe-grid {
    grid-template-columns: 320px 1fr;
    gap: var(--space-3xl);
  }
}

@media (max-width: 768px) {
  .page-hero--compact {
    padding-block: var(--space-3xl);
  }

  .hilfe-layout {
    padding-block: var(--space-3xl) 0;
  }

  .hilfe-grid {
    grid-template-columns: 1fr;
  }

  .hilfe-sidebar {
    position: static;
  }

  .notfall-card {
    padding: var(--space-lg);
  }

  .notfall-card__phone {
    font-size: var(--text-lg);
  }
}
