/* -----------------------------------------------------------------------------
 * Plugin-Default-Header + Default-Footer — minimaler Look.
 * Wird vom Plugin enqueued, wenn KEIN Inhalts-Paket eigene components/
 * mitbringt (= Plugin-Default-Chrome ist aktiv).
 * --------------------------------------------------------------------------- */

.sp-default-header {
  position: relative;
  border-bottom: 1px solid #e5e7eb;
  background: #fff;
}
.sp-default-header__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.sp-default-header__brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: #111;
}
.sp-default-header__brand img { display: block; max-height: 44px; width: auto; }
.sp-default-header__brand-text { font-weight: 700; font-size: 1.125rem; }

.sp-default-header__nav {
  flex: 1;
  display: flex;
  justify-content: center;
}
.sp-default-header__nav ul {
  list-style: none;
  margin: 0; padding: 0;
  display: flex;
  gap: 1.5rem;
}
.sp-default-header__nav a {
  color: #111;
  text-decoration: none;
  font-weight: 500;
  padding: 0.5rem 0;
  border-bottom: 2px solid transparent;
}
.sp-default-header__nav a:hover,
.sp-default-header__nav a:focus { border-bottom-color: currentColor; }
.sp-default-header__nav a[aria-current="page"] { border-bottom-color: currentColor; }

.sp-default-header__cta {
  display: inline-block;
  padding: 0.625rem 1.25rem;
  background: #111;
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
}
.sp-default-header__cta:hover,
.sp-default-header__cta:focus { background: #000; color: #fff; }

.sp-default-header__toggle {
  display: none;
  background: none;
  border: 1px solid #e5e7eb;
  border-radius: 6px;
  padding: 0.375rem 0.625rem;
  font-size: 1.25rem;
  cursor: pointer;
}

@media (max-width: 768px) {
  .sp-default-header__inner { flex-wrap: wrap; }
  .sp-default-header__toggle { display: inline-block; margin-left: auto; }
  .sp-default-header__nav { order: 99; flex-basis: 100%; display: none; }
  .sp-default-header__nav[data-open="true"] { display: block; }
  .sp-default-header__nav ul { flex-direction: column; gap: 0.5rem; }
  .sp-default-header__cta { display: none; }
  .sp-default-header__nav[data-open="true"] + .sp-default-header__cta { display: inline-block; margin-top: 0.5rem; }
}

/* -------------------------------------------------------------------------- */

.sp-default-footer {
  margin-top: 4rem;
  border-top: 1px solid #e5e7eb;
  background: #fafafa;
  color: #374151;
}
.sp-default-footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 1.25rem 2rem;
}
.sp-default-footer__tagline {
  font-size: 1.0625rem;
  color: #1f2937;
  margin: 0 0 2rem;
}
.sp-default-footer__cols {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
}
.sp-default-footer__col h2 {
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #6b7280;
  margin: 0 0 0.75rem;
}
.sp-default-footer__col ul {
  list-style: none;
  margin: 0; padding: 0;
  display: flex; flex-direction: column;
  gap: 0.375rem;
}
.sp-default-footer__col a { color: #111; text-decoration: none; }
.sp-default-footer__col a:hover,
.sp-default-footer__col a:focus { text-decoration: underline; }

.sp-default-footer__rating {
  margin: 2rem 0 0;
  font-weight: 600;
  color: #1f2937;
}
.sp-default-footer__copy {
  margin: 2rem 0 0;
  padding-top: 1.25rem;
  border-top: 1px solid #e5e7eb;
  color: #6b7280;
  font-size: 0.875rem;
}
