/* -------------------------------
   Fachgebiet – Single Layout
-------------------------------- */
.container {
  width: min(1100px, 92vw);
  margin-inline: auto;
}

/* Hero */
.fg-hero {
  position: relative;
  isolation: isolate;
  background: #e9ecef;
  padding: clamp(32px, 6vw, 72px) 16px;
  border-radius: 18px;
  margin: 24px auto 32px;
  width: min(1100px, 92vw);
  overflow: hidden;
}
.fg-hero::before {
  content: "";
  position: absolute; inset: 0;
  background-image: var(--fg-hero, none);
  background-size: cover; background-position: center;
  filter: blur(12px) saturate(1.05);
  opacity: .25;
  z-index: -2;
  transform: scale(1.1);
}
.fg-hero::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,.45), rgba(255,255,255,.65));
  z-index: -1;
}
.fg-hero__inner {
  display: grid; place-items: center;
  gap: 8px;
}
.fg-hero__icon svg { width: 40px; height: 40px; color: #3F5762; }
.fg-hero__title {
  margin: 0;
  font-size: clamp(26px, 3.6vw, 38px);
  color: #3F5762;
}

/* Intro */
.fg-intro { margin: 16px auto 32px; }
.fg-intro > *:first-child { margin-top: 0; }

/* Symptome (Cards) */
.fg-symptoms h2,
.fg-doctors  h2 {
  text-align: center;
  color: #3F5762;
  margin: 36px 0 18px;
}

.fg-symptom-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 18px;
}
.fg-symptom-card {
  display: grid;
  gap: 6px;
  background: #F9F6DE;
  color: #3F5762;
  text-decoration: none;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid rgba(63,87,98,.12);
  box-shadow: 0 6px 16px rgba(0,0,0,.06);
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
}
.fg-symptom-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(0,0,0,.10);
  background: #3F5762;
  color: #F9F6DE;
}
.fg-symptom-card__title { font-weight: 700; }
.fg-symptom-card__cta   { font-size: .92rem; opacity: .85; }

/* Doctors */
.fg-doc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 22px;
}
.fg-doc-card {
  background: #ffffff;
  border: 1px solid rgba(63,87,98,.12);
  border-radius: 16px;
  padding: 18px;
  text-align: center;
  color: #3F5762;
  box-shadow: 0 6px 16px rgba(0,0,0,.06);
  transition: transform .18s ease, box-shadow .18s ease;
}
.fg-doc-card:hover { transform: translateY(-2px); box-shadow: 0 10px 22px rgba(0,0,0,.10); }

.fg-doc-card__avatar {
  width: 88px; height: 88px;
  margin: 4px auto 10px;
  border-radius: 50%;
  overflow: hidden;
  background: #F9F6DE;
  display: grid; place-items: center;
}
.fg-doc-card__avatar img { width: 100%; height: 100%; object-fit: cover; }

.fg-doc-card__name { margin: 6px 0 6px; font-size: 1.05rem; }
.fg-doc-card__excerpt { font-size: .95rem; line-height: 1.45; min-height: 3em; }

.fg-doc-card__btn {
  display: inline-block;
  margin-top: 10px;
  padding: 10px 16px;
  border-radius: 999px;
  background: #3F5762;
  color: #F9F6DE;
  text-decoration: none;
  font-weight: 600;
  transition: background .18s ease;
}
.fg-doc-card__btn:hover { background: #2D3F47; }

.fg-empty {
  text-align: center;
  color: #6b7b83;
  margin: 12px 0 24px;
}