/* =============================================================
   SONJAS TIERTHERAPIE – MAIN STYLESHEET
   Statisches CSS mit CSS Custom Properties für dynamische Werte.
   Die Custom Properties (--st-*) werden inline per PHP gesetzt.
   ============================================================= */

/* ============================================================
   RESET & BASIS
   ============================================================ */
body.st-page {
  margin: 0; padding: 0 !important;
  background-color: var(--st-page-bg);
  font-family: var(--st-body-font);
  color: var(--st-body-color);
  font-size: var(--st-body-size);
  line-height: 1.65;
}
.st-page *, .st-page *::before, .st-page *::after { box-sizing: border-box; }
.st-page a { text-decoration: none; }
.st-page img { max-width: 100%; height: auto; display: block; }
.st-page ul { list-style: none; padding: 0; margin: 0; }
.st-page p { margin: 0; }
.st-page h1, .st-page h2, .st-page h3, .st-page h4 {
  font-family: var(--st-heading-font);
  color: var(--st-h-color); line-height: 1.2; margin: 0;
}
/* Astra-Elemente ausblenden */
.st-page .site-header, .st-page #masthead,
.st-page .ast-primary-header-bar,
.st-page .site-footer, .st-page #colophon,
.st-page .wp-site-blocks > header,
.st-page .wp-site-blocks > footer { display: none !important; }

/* ============================================================
   LAYOUT
   ============================================================ */
.st-container {
  max-width: 1180px; margin-left: auto; margin-right: auto;
  padding-left: 1.25rem; padding-right: 1.25rem;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.st-btn {
  display: inline-flex; align-items: center; gap: 0.35rem;
  padding: 0.8rem 1.6rem; border-radius: 0.375rem;
  font-family: var(--st-body-font); font-weight: 700;
  font-size: 0.9375rem; cursor: pointer; border: 2px solid transparent;
  transition: background-color 0.2s, border-color 0.2s, color 0.2s, transform 0.15s;
  line-height: 1; white-space: nowrap;
}
.st-btn:hover { transform: translateY(-1px); }
.st-btn--orange { background-color: var(--st-btn-accent-bg); color: var(--st-btn-accent-text); border-color: var(--st-btn-accent-bg); }
.st-btn--orange:hover { background-color: var(--st-btn-accent-hover); border-color: var(--st-btn-accent-hover); color: var(--st-btn-accent-text); }
.st-btn--white { background-color: #fff; color: var(--st-btn-white-text); border-color: #fff; }
.st-btn--white:hover { background-color: var(--st-btn-white-hover); border-color: var(--st-btn-white-hover); color: var(--st-btn-white-text); }
.st-btn--ghost { background-color: transparent; color: #fff; border-color: rgba(255,255,255,.55); }
.st-btn--ghost:hover { border-color: #fff; background-color: rgba(255,255,255,.1); }
.st-btn--outline { background-color: transparent; color: var(--st-btn-outline); border-color: var(--st-btn-outline); }
.st-btn--outline:hover { background-color: var(--st-btn-outline); color: #fff; }

/* ============================================================
   TOPBAR
   ============================================================ */
.st-topbar {
  background-color: var(--st-tb-bg); padding: 0.55rem 0;
  font-family: var(--st-body-font); font-size: 0.8125rem;
  color: rgba(255,255,255,.82);
}
.st-topbar__inner {
  display: flex; align-items: center; justify-content: var(--st-tb-layout);
  gap: 1rem; flex-wrap: wrap;
}
.st-topbar__left { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; }
.st-topbar__contact { display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap; }
.st-topbar__contact a {
  color: rgba(255,255,255,.82); display: flex; align-items: center;
  gap: 0.4rem; transition: color 0.2s;
}
.st-topbar__contact a:hover { color: var(--st-accent); }
.st-topbar__social { display: flex; align-items: center; gap: 0.75rem; }
.st-topbar__social a { color: var(--st-tb-social); display: flex; align-items: center; transition: color 0.2s; }
.st-topbar__social a:hover { color: var(--st-tb-social-hover); }
.st-page .st-topbar__logo { max-width: var(--st-logo-width); height: auto; display: block; }

/* ============================================================
   NAVBAR
   ============================================================ */
.st-navbar {
  background: var(--st-nav-bg); box-shadow: 0 1px 3px rgba(0,0,0,.1);
  position: sticky; top: 0; z-index: 200;
  font-family: var(--st-body-font); transition: box-shadow 0.3s;
}
.st-navbar.is-scrolled { box-shadow: 0 3px 14px rgba(0,0,0,.15); }
.st-navbar__inner { display: flex; align-items: center; justify-content: var(--st-nav-align); height: 62px; }
.st-navbar__menu { list-style: none; margin: 0; padding: 0; display: flex; align-items: center; gap: 0; }
.st-navbar__menu > li { position: relative; }
.st-navbar__menu > li > a {
  display: block; padding: 0 1.05rem; height: 62px; line-height: 62px;
  color: var(--st-nav-text); font-size: 0.9375rem; font-weight: 600;
  text-decoration: none; white-space: nowrap; transition: color 0.2s;
}
.st-navbar__menu > li > a:hover,
.st-navbar__menu > li.current-menu-item > a,
.st-navbar__menu > li.current-menu-ancestor > a { color: var(--st-nav-hover); }
.st-navbar__menu > li > .sub-menu {
  display: none; position: absolute; top: 100%; left: 0;
  background: var(--st-nav-sub-bg); box-shadow: 0 6px 20px rgba(0,0,0,.12);
  border-top: 3px solid var(--st-nav-sub-border); width: 260px;
  list-style: none; margin: 0; padding: 0.4rem 0; z-index: 201; border-radius: 0 0 6px 6px;
}
.st-navbar__menu > li:hover > .sub-menu,
.st-navbar__menu > li:focus-within > .sub-menu { display: block; }
.st-navbar__menu > li > .sub-menu > li > a {
  display: block; padding: 0.65rem 1.25rem; color: var(--st-nav-sub-text); font-size: 0.875rem;
  font-weight: 500; text-decoration: none; transition: background 0.15s, color 0.15s;
  white-space: normal; line-height: 1.4;
}
.st-navbar__menu > li > .sub-menu > li > a:hover { background: var(--st-nav-sub-hover-bg); color: var(--st-nav-sub-hover-text); }
.st-navbar__menu > li > .sub-menu > li.current-menu-item > a { color: #FBBC42; font-weight: 600; }
/* 3. Ebene – Flyout (Desktop: nach rechts aufklappen) */
.st-navbar__menu .sub-menu .menu-item-has-children > a {
  display: flex; align-items: center;
}
.st-navbar__menu .sub-menu .menu-item-has-children > a::after {
  content: '›'; margin-left: auto; padding-left: 0.75rem;
  font-size: 1.1em; font-weight: 700; opacity: 0.5;
}
.st-navbar__menu .sub-menu .sub-menu {
  display: none; position: absolute; top: 0; left: 100%;
  background: var(--st-nav-sub-bg); box-shadow: 0 6px 20px rgba(0,0,0,.12);
  border-left: 3px solid var(--st-nav-sub-border); width: 260px;
  list-style: none; margin: 0; padding: 0.4rem 0; z-index: 202;
  border-radius: 0 6px 6px 0;
}
.st-navbar__menu .sub-menu li:hover > .sub-menu,
.st-navbar__menu .sub-menu li:focus-within > .sub-menu { display: block; }
.st-navbar__menu .sub-menu .sub-menu > li > a {
  display: block; padding: 0.65rem 1.25rem; color: var(--st-nav-sub-text);
  font-size: 0.875rem; font-weight: 500; text-decoration: none;
  transition: background 0.15s, color 0.15s; white-space: normal; line-height: 1.4;
}
.st-navbar__menu .sub-menu .sub-menu > li > a:hover { background: var(--st-nav-sub-hover-bg); color: var(--st-nav-sub-hover-text); }
.st-navbar__menu .sub-menu .sub-menu > li.current-menu-item > a { color: #FBBC42; font-weight: 600; }
.st-navbar__burger {
  display: none; flex-direction: column; justify-content: center;
  align-items: center; gap: 5px; width: 44px; height: 44px;
  background: none; border: none; cursor: pointer; padding: 0;
}
.st-navbar__burger span {
  display: block; width: 24px; height: 2px;
  background: var(--st-nav-burger); border-radius: 2px; transition: transform 0.3s, opacity 0.3s;
}
/* ── Topbar – Mobile ─────────────────────────── */
@media (max-width: 860px) {
  .st-topbar__inner {
    flex-direction: column; align-items: center;
    justify-content: center !important; text-align: center;
    gap: 0.4rem;
  }
  .st-topbar__left {
    flex-direction: column; align-items: center; gap: 0.5rem;
  }
  .st-topbar__contact {
    justify-content: center; gap: 1rem;
  }
  .st-topbar__social { justify-content: center; }
}


.st-navbar__burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.st-navbar__burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.st-navbar__burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
@media (max-width: 860px) {
  .st-navbar__inner { justify-content: flex-end; }
  .st-navbar__burger { display: flex; margin: 0 auto; }
  .st-navbar__nav {
    display: none; position: absolute; top: 62px; left: 0; right: 0;
    background: var(--st-nav-bg); box-shadow: 0 8px 20px rgba(0,0,0,.12);
    padding: 0.5rem 0 1.25rem; z-index: 199;
  }
  .st-navbar__nav.is-open { display: block; }
  .st-navbar__menu { flex-direction: column; align-items: stretch; padding: 0; }
  .st-navbar__menu > li { width: 100%; }
  .st-navbar__menu > li > a {
    height: auto; line-height: 1.5;
    padding: 0.875rem 1.5rem;
    border-bottom: 1px solid #f0f0f0;
  }
  .st-navbar__menu > li:last-child > a { border-bottom: none; }
  .st-navbar__menu > li > .sub-menu {
    display: none !important; position: static; box-shadow: none;
    border-top: none; padding: 0; min-width: 0;
  }
  .st-navbar__menu > li.mob-open > .sub-menu { display: block !important; }
  .st-navbar__menu > li > .sub-menu > li > a {
    padding: 0.6rem 1.5rem 0.6rem 2.5rem;
    border-bottom: 1px solid #f5f5f5;
  }
  .st-navbar__menu > li > .sub-menu > li:last-child > a { border-bottom: none; }
  /* 3. Ebene – Mobile: eingeklappt, tiefer eingerückt */
  .st-navbar__menu .sub-menu .sub-menu {
    display: none !important; position: static; box-shadow: none;
    border-left: none; width: 100%; border-radius: 0; padding: 0;
  }
  .st-navbar__menu .sub-menu .mob-open > .sub-menu { display: block !important; }
  .st-navbar__menu .sub-menu .sub-menu > li > a {
    padding: 0.6rem 1.5rem 0.6rem 3.5rem;
    border-bottom: 1px solid #f5f5f5; font-size: 0.8125rem;
  }
  .st-navbar__menu .sub-menu .sub-menu > li:last-child > a { border-bottom: none; }
  .st-navbar__menu .sub-menu .menu-item-has-children > a::after {
    content: '+'; font-size: 1rem;
  }
  .st-navbar__menu .sub-menu .menu-item-has-children.mob-open > a::after {
    content: '−';
  }
}

/* ============================================================
   PAGE BANNER
   ============================================================ */
.st-banner {
  position: relative; min-height: var(--st-banner-height);
  display: flex; align-items: var(--st-banner-text-pos, center); justify-content: center;
  background-color: var(--st-banner-bg);
  background-image: var(--st-banner-image, none);
  background-size: cover; background-position: center;
  overflow: hidden;
}
.st-banner::before {
  content: ''; position: absolute; inset: 0;
  background: var(--st-banner-overlay-color);
  pointer-events: none;
}
.st-banner__content { position: relative; z-index: 1; text-align: center; padding: 3.5rem 1.25rem; }
.st-banner__subtitle {
  font-family: var(--st-banner-subtitle-font, var(--st-body-font));
  font-size: var(--st-banner-subtitle-size, 0.9375rem); font-weight: 400;
  letter-spacing: 0.04em; color: var(--st-banner-breadcrumb);
  margin: 0 0 0.75rem; opacity: 0.85;
}
.st-banner__subtitle:empty { display: none; }
.st-page .st-banner__h1 {
  font-family: var(--st-banner-h1-font, var(--st-heading-font));
  font-size: var(--st-banner-h1-size, clamp(1.75rem, 4vw, 2.75rem)); color: var(--st-banner-h1); line-height: 1.15; margin: 0;
}
.st-banner__line {
  display: block; width: 3rem; height: 3px;
  background: var(--st-banner-line); margin: 1rem auto 0;
}

/* ============================================================
   CONTENT AREA
   ============================================================ */
.st-content-wrap { padding: 4.5rem 0 5.5rem; }
.st-content-inner {
  max-width: 860px; margin: 0 auto;
  font-family: var(--st-body-font);
  font-size: var(--st-body-size);
  color: var(--st-body-color);
  line-height: 1.75;
}
.entry-content { font-size: var(--st-body-size); line-height: 1.75; }
.st-content-inner h2, .entry-content h2 {
  font-family: var(--st-heading-font);
  font-size: clamp(1.5rem, 3vw, var(--st-h2-size-sm));
  color: var(--st-h-color); margin: 2.75rem 0 1rem; line-height: 1.2;
}
.st-content-inner h2:first-child, .entry-content h2:first-child { margin-top: 0; }
.st-content-inner h3, .entry-content h3 {
  font-family: var(--st-heading-font);
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  color: var(--st-sub-h3); margin: 2rem 0 0.75rem; line-height: 1.25;
}
.st-content-inner h4, .entry-content h4 {
  font-family: var(--st-body-font);
  font-size: 1rem; font-weight: 700; color: var(--st-h-color);
  margin: 1.5rem 0 0.5rem;
}
.st-content-inner p, .entry-content p { margin-bottom: 1.25rem; }
.st-content-inner p:last-child, .entry-content p:last-child { margin-bottom: 0; }
.st-content-inner ul, .st-content-inner ol,
.entry-content ul, .entry-content ol {
  padding-left: 1.5rem; margin: 0.75rem 0 1.25rem;
}
.st-content-inner ul, .entry-content ul { list-style: disc; }
.st-content-inner ol, .entry-content ol { list-style: decimal; }
.st-content-inner li, .entry-content li { margin-bottom: 0.4rem; line-height: 1.65; list-style: inherit; }
.st-content-inner strong, .entry-content strong { color: var(--st-h-color); font-weight: 700; }
.st-content-inner a, .entry-content a { color: var(--st-sub-link); text-decoration: underline; }
.st-content-inner a:hover, .entry-content a:hover { color: var(--st-sub-link-hover); }
.st-content-inner hr, .entry-content hr { border: none; border-top: 1px solid #e8edf2; margin: 2.5rem 0; }
.st-content-inner blockquote, .entry-content blockquote {
  border-left: 4px solid var(--st-bq-border); padding: 1rem 1.5rem;
  margin: 1.75rem 0; background: var(--st-bq-bg); border-radius: 0 6px 6px 0;
  font-style: italic; color: #5a6a7a;
}
/* Gutenberg blocks */
.entry-content .wp-block-columns { gap: 2rem; }
.entry-content .wp-block-image img { border-radius: 0.5rem; }

/* Details / FAQ-Akkordeon */
.st-content-inner .wp-block-details,
.entry-content .wp-block-details {
  border: 1px solid #e8edf2;
  border-left: 3px solid var(--st-accent, #0777BF);
  border-radius: 0 6px 6px 0;
  padding: 0;
  margin-bottom: 0.75rem;
  transition: box-shadow 0.2s;
}
.st-content-inner .wp-block-details:hover,
.entry-content .wp-block-details:hover {
  box-shadow: 0 2px 12px rgba(4,74,119,.06);
}
.st-content-inner .wp-block-details summary,
.entry-content .wp-block-details summary {
  padding: 1rem 1.5rem;
  font-family: var(--st-heading-font, 'DM Serif Display', serif);
  font-size: 1.05rem;
  color: var(--st-h-color, #1a2b38);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  transition: color 0.2s;
}
.st-content-inner .wp-block-details summary::-webkit-details-marker,
.entry-content .wp-block-details summary::-webkit-details-marker { display: none; }
.st-content-inner .wp-block-details summary::before,
.entry-content .wp-block-details summary::before {
  content: '+';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  background: var(--st-teal-pale, #E0F4FB);
  color: var(--st-accent, #0777BF);
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
  transition: transform 0.2s, background 0.2s;
  font-family: system-ui, sans-serif;
  line-height: 1;
}
.st-content-inner .wp-block-details[open] summary::before,
.entry-content .wp-block-details[open] summary::before {
  content: '\2212';
  background: var(--st-accent, #0777BF);
  color: #fff;
}
.st-content-inner .wp-block-details[open] summary,
.entry-content .wp-block-details[open] summary {
  color: var(--st-accent, #0777BF);
  border-bottom: 1px solid #f0f0f0;
}
.st-content-inner .wp-block-details p,
.entry-content .wp-block-details p {
  padding: 1rem 1.5rem 1rem 3.75rem;
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--st-body-color, #4a5568);
}

/* Infobox */
.st-infobox {
  background: var(--st-infobox-bg); border-left: 4px solid var(--st-infobox-border);
  padding: 1.25rem 1.5rem; border-radius: 0 6px 6px 0; margin: 1.75rem 0;
}
.st-infobox p { margin: 0; }

/* Feature-Liste */
.st-feature-list { list-style: none !important; padding: 0 !important; margin: 1rem 0 1.5rem !important; }
.st-feature-list li {
  padding: 0.5rem 0 0.5rem 1.75rem; position: relative;
  border-bottom: 1px solid #f0f0f0; font-size: 0.95rem;
  list-style: none !important;
}
.st-feature-list li::before { content: '→'; position: absolute; left: 0; color: var(--st-feat-bullet); font-weight: 700; }
.st-feature-list li:last-child { border-bottom: none; }

/* Service-Cards auf Übersichtsseiten */
.st-service-grid {
  display: grid; grid-template-columns: 1fr;
  gap: 1.5rem; margin: 2rem 0;
}
@media (min-width: 640px) { .st-service-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px) { .st-service-grid { grid-template-columns: repeat(3, 1fr); } }
.st-service-card {
  background: #fff; border: 1px solid #e8edf2; border-top: 3px solid #FBBC42;
  padding: 1.75rem 1.5rem; transition: box-shadow 0.25s;
}
.st-service-card:hover { box-shadow: 0 8px 28px rgba(4,74,119,.09); }
.st-service-card h3 { font-size: 1.125rem; color: var(--st-sub-h3); margin-bottom: 0.6rem; margin-top: 0; }
.st-service-card p { font-size: 0.9rem; margin-bottom: 1rem; }
.st-service-card a { font-size: 0.8125rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--st-sub-link); font-weight: 700; text-decoration: none; }
.st-service-card a:hover { color: var(--st-sub-link-hover); }

/* Preise */
.st-price-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem; margin: 2rem 0;
}
.st-price-card {
  border: 1px solid #e8edf2; border-top: 3px solid var(--st-accent);
  padding: 1.75rem 1.5rem; background: #fff;
}
.st-price-card__title { font-family: var(--st-heading-font); font-size: 1.125rem; color: var(--st-primary); margin-bottom: 0.5rem; font-weight: 400; }
.st-price-card__price { font-size: 1.875rem; font-weight: 700; color: var(--st-secondary); margin-bottom: 0.2rem; }
.st-price-card__note { font-size: 0.8125rem; color: #aaa; margin-bottom: 1.25rem; }
.st-price-card__list { list-style: none !important; padding: 0 !important; margin: 0 !important; }
.st-price-card__list li {
  padding: 0.3rem 0; border-bottom: 1px solid #f0f0f0;
  font-size: 0.875rem; list-style: none !important;
}
.st-price-card__list li:last-child { border-bottom: none; }
.st-price-card__list li::before { content: '✓ '; color: var(--st-accent); font-weight: 700; }

/* Kontakt */
.st-contact-grid {
  display: grid; grid-template-columns: 1fr; gap: 2rem; margin-top: 2rem;
}
@media (min-width: 680px) { .st-contact-grid { grid-template-columns: 1fr 1fr; } }
.st-contact-card { background: #fff; border: 1px solid #e8edf2; border-top: 3px solid var(--st-accent); padding: 2rem 1.75rem; }
.st-contact-card__title { font-size: 1rem; font-weight: 700; color: var(--st-primary); margin-bottom: 1.25rem; font-family: var(--st-heading-font); }
.st-contact-item { display: flex; align-items: flex-start; gap: 0.75rem; margin-bottom: 0.85rem; font-size: 0.9375rem; }
.st-contact-item br { display: none; }
.st-contact-item a { color: var(--st-sub-link); text-decoration: none; transition: color 0.2s; }
.st-contact-item a:hover { color: var(--st-sub-link-hover); }
.st-contact-icon { width: 1.25rem; text-align: center; flex-shrink: 0; padding-top: 0.15rem; }

/* Über mich / Bio */
.st-bio-grid {
  display: grid; grid-template-columns: 1fr;
  gap: 3rem; align-items: start; margin: 2rem 0;
}
@media (min-width: 720px) { .st-bio-grid { grid-template-columns: 260px 1fr; } }
.st-bio-photo-wrap {
  position: relative; border-radius: 50%; aspect-ratio: 1/1;
  overflow: hidden; isolation: isolate; max-width: 260px;
}
.st-bio-photo {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover;
}
.st-bio-vignette {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, transparent 40%, rgba(0,0,0,.5) 100%);
  border-radius: 50%; pointer-events: none; z-index: 1;
}
.st-bio-quals {
  list-style: none !important; padding: 0 !important;
  margin: 1.5rem 0 0 !important; display: flex; flex-direction: column; gap: 0.5rem;
}
.st-bio-quals li {
  display: flex; align-items: center; gap: 0.65rem;
  font-size: 0.9375rem; font-weight: 600; color: var(--st-primary);
  list-style: none !important;
}
.st-bio-quals li::before { content: ''; display: inline-block; width: 0.5rem; height: 0.5rem; border-radius: 50%; background: var(--st-accent); flex-shrink: 0; }
.st-timeline { margin: 2rem 0; }
.st-timeline-item { display: flex; gap: 1.25rem; padding-bottom: 1.75rem; position: relative; }
.st-timeline-item::before { content: ''; position: absolute; left: 3.2rem; top: 1.5rem; bottom: 0; width: 2px; background: #e8edf2; }
.st-timeline-item:last-child::before { display: none; }
.st-timeline-year { font-weight: 700; color: var(--st-secondary); font-size: 0.9rem; min-width: 3.5rem; padding-top: 0.15rem; }
.st-timeline-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--st-accent); flex-shrink: 0; margin-top: 0.35rem; }
.st-timeline-text { font-size: 0.9375rem; }

/* Für Tierärzte */
.st-tierarzt-highlight {
  background: linear-gradient(135deg, #f0f8ff, #e8f4fb);
  border-left: 4px solid var(--st-secondary); padding: 1.5rem 1.75rem;
  border-radius: 0 8px 8px 0; margin: 2rem 0;
}

/* ============================================================
   ATM-ABSOLVENTENLOGOS
   ============================================================ */
.st-atm-logos {
  display: flex; flex-wrap: wrap; gap: 1rem; align-items: center;
  margin: 1.5rem 0;
}
.st-atm-logos__link {
  display: block; width: 80px; height: 80px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.st-atm-logos__link:hover { transform: scale(1.08); opacity: 0.85; }
.st-atm-logos__link img {
  width: 100%; height: 100%; object-fit: contain;
  border-radius: 0.25rem;
}

/* ============================================================
   VORBEREITUNG (Hinweise vor/nach Behandlung)
   Wird auf Unterseiten als Block-Content genutzt.
   ============================================================ */
.st-prep {
  padding: 5rem 0;
  background-color: var(--st-prep-bg, #ffffff);
}
section.st-prep h2 {
  font-family: var(--st-heading-font, 'DM Serif Display', serif);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  color: var(--st-prep-heading-color, var(--st-h-color, #044A77)); text-align: center; margin-bottom: 2.5rem;
}
.st-prep__list {
  max-width: 860px; margin: 0 auto;
  list-style: none; padding: 0;
  display: flex; flex-direction: column; gap: 1.25rem;
}
.st-prep__item {
  display: flex; gap: 1rem; align-items: flex-start;
  line-height: 1.7; font-size: 0.9375rem;
}
.st-prep__icon {
  flex-shrink: 0; width: 2.25rem; height: 2.25rem;
  display: flex; align-items: center; justify-content: center;
  background: var(--st-prep-icon-bg, #E0F4FB); border-radius: 50%;
  font-size: 1.05rem; margin-top: 0.1rem;
}
.st-prep__item strong { color: var(--st-prep-title-color, #044A77); display: block; margin-bottom: 0.15rem; }
.st-prep__item span { color: var(--st-prep-text-color, #7A7A7A); }

/* ============================================================
   CTA BEREICH
   ============================================================ */
.st-cta {
  background: var(--st-cta-gradient);
  padding: 5rem 1.25rem; text-align: center;
}
.st-cta h2 {
  font-family: var(--st-heading-font);
  font-size: clamp(1.5rem, 3vw, 2.5rem); color: #fff; margin-bottom: 0.75rem;
}
.st-cta p { color: rgba(255,255,255,.85); font-size: 1.0625rem; margin-bottom: 2rem; }
.st-cta__btns { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; }

/* ============================================================
   FOOTER
   ============================================================ */
.st-footer {
  background-color: var(--st-footer-bg); color: rgba(255,255,255,.7);
  padding: 3.5rem 0 0; font-size: 0.9rem; line-height: 1.65;
}
.st-footer__grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; }
@media (min-width: 600px) { .st-footer__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .st-footer__grid { grid-template-columns: 2fr 1fr 1fr 1.5fr; } }
.st-footer__col-title { font-weight: 700; font-size: 0.8125rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--st-footer-title); margin-bottom: 1.25rem; }
.st-footer__logo-text { font-family: var(--st-heading-font); font-size: 1.375rem; color: #fff; margin-bottom: 0.75rem; }
.st-footer__logo-text span { color: var(--st-footer-logo-ac); }
.st-footer__desc { color: rgba(255,255,255,.6); font-size: 0.875rem; line-height: 1.75; margin-bottom: 1rem; }
.st-footer__links { display: flex; flex-direction: column; gap: 0.5rem; }
.st-footer__links a { color: rgba(255,255,255,.68); font-size: 0.9rem; transition: color 0.2s; }
.st-footer__links a:hover { color: var(--st-footer-link-hover); }
.st-footer__contact-item { display: flex; align-items: flex-start; gap: 0.5rem; color: rgba(255,255,255,.68); font-size: 0.9rem; margin-bottom: 0.6rem; }
.st-footer__contact-item a { color: rgba(255,255,255,.68); transition: color 0.2s; }
.st-footer__contact-item a:hover { color: var(--st-footer-link-hover); }
.st-footer__contact-icon { flex-shrink: 0; }
.st-footer__bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 0.75rem; padding: 1.5rem 0; margin-top: 3rem;
  font-size: 0.8125rem; color: rgba(255,255,255,.35);
}
.st-footer__bottom-links { display: flex; gap: 1.5rem; }
.st-footer__bottom-links a { color: rgba(255,255,255,.45); transition: color 0.2s; }
.st-footer__bottom-links a:hover { color: var(--st-footer-link-hover); }
.st-page .st-footer__logo-img { max-width: var(--st-logo-width); height: auto; display: block; margin-bottom: 0.75rem; }

/* Contact Form 7 – Formular-Styling ─────────────────────────
   .st-cf7-grid   : 2-spaltig responsive
   .st-cf7-full   : volle Breite
   .st-cf7-privacy: Datenschutz-Checkbox-Zeile
   ─────────────────────────────────────────────────────────── */
.wpcf7 { width: 100%; margin-top: 2.5rem; }
.wpcf7 p { margin: 0; }
.st-cf7-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
@media (max-width: 600px) {
  .st-cf7-grid { grid-template-columns: 1fr; }
}
.st-cf7-field { display: flex; flex-direction: column; gap: 0.35rem; }
.st-cf7-full  { grid-column: 1 / -1; }
.st-cf7-field label {
  font-family: var(--st-body-font);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--st-h-color);
}
.wpcf7 input[type="text"],
.wpcf7 input[type="tel"],
.wpcf7 input[type="email"],
.wpcf7 select,
.wpcf7 textarea {
  width: 100%;
  padding: 0.7rem 0.9rem;
  border: 1.5px solid #d4dde6;
  border-radius: 0.375rem;
  font-family: var(--st-body-font);
  font-size: var(--st-body-size);
  color: #1a2b38;
  background: #fff;
  transition: border-color 0.2s, box-shadow 0.2s;
  box-sizing: border-box;
  -webkit-appearance: none;
  appearance: none;
}
.wpcf7 select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23044A77' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.8rem center;
  padding-right: 2.25rem;
}
.wpcf7 input:focus,
.wpcf7 select:focus,
.wpcf7 textarea:focus {
  outline: none;
  border-color: var(--st-secondary);
  box-shadow: 0 0 0 3px rgba(7,119,191,.12);
}
.wpcf7 input.wpcf7-not-valid,
.wpcf7 select.wpcf7-not-valid,
.wpcf7 textarea.wpcf7-not-valid {
  border-color: #e05050;
  box-shadow: 0 0 0 3px rgba(224,80,80,.1);
}
.wpcf7 textarea { resize: vertical; min-height: 150px; }
/* Acceptance / Datenschutz-Checkbox ([acceptance] tag) */
.st-cf7-privacy { margin-top: 0.25rem; }
.st-cf7-privacy .wpcf7-acceptance { display: flex; align-items: flex-start; gap: 0.6rem; }
.st-cf7-privacy .wpcf7-list-item {
  display: flex; align-items: flex-start; gap: 0.6rem;
  font-size: 0.875rem; color: var(--st-body-color);
  margin: 0; line-height: 1.55;
}
.st-cf7-privacy .wpcf7-list-item input[type="checkbox"] {
  width: 18px; height: 18px; min-width: 18px;
  margin-top: 2px; cursor: pointer;
  accent-color: var(--st-secondary); flex-shrink: 0;
}
.st-cf7-privacy .wpcf7-list-item-label {
  font-size: 0.875rem; color: var(--st-body-color); cursor: pointer;
}
.st-cf7-privacy a { color: var(--st-secondary); text-decoration: underline; }
.st-cf7-privacy .wpcf7-not-valid-tip { margin-top: 0.3rem; }
.wpcf7-response-output {
  margin-top: 1.25rem;
  padding: 0.85rem 1.1rem;
  border-radius: 0.375rem;
  font-size: 0.9rem;
  border: none !important;
}
.wpcf7-mail-sent-ok     { background: #edfaf3; color: #1a7a4a; border-left: 4px solid #2ecc71 !important; }
.wpcf7-validation-errors,
.wpcf7-spam-blocked,
.wpcf7-mail-sent-ng     { background: #fff0f0; color: #a03030; border-left: 4px solid #e05050 !important; }
.wpcf7-not-valid-tip {
  color: #e05050; font-size: 0.78rem; margin-top: 0.25rem; display: block;
}
.wpcf7-spinner {
  display: none; width: 20px; height: 20px;
  border: 2px solid rgba(7,119,191,.3);
  border-top-color: var(--st-secondary);
  border-radius: 50%;
  animation: cf7spin 0.7s linear infinite;
  vertical-align: middle; margin-left: 0.5rem;
}
.wpcf7-spinner.is-active { display: inline-block; }
@keyframes cf7spin { to { transform: rotate(360deg); } }
.st-cf7-submit {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.875rem 2rem;
  background: var(--st-btn-primary-bg);
  color: var(--st-btn-primary-text);
  border: none;
  border-radius: 0.375rem;
  font-family: var(--st-body-font);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: background-color 0.2s, transform 0.15s;
  margin-top: 0.5rem;
}
.st-cf7-submit:hover { background: var(--st-btn-primary-hover); transform: translateY(-1px); }
.st-cf7-submit:active { transform: translateY(0); }

/* Impressum / Datenschutz — schmalere Spalte */
.st-content-inner--legal { max-width: 720px; }
.st-content-inner--legal h2 { font-size: 1.375rem; margin-top: 2.5rem; color: var(--st-primary); }
.st-content-inner--legal h3 { font-size: 1.125rem; color: var(--st-secondary); margin-top: 1.75rem; }

/* ============================================================
   GUTENBERG – THERAPIE-SEITEN (Columns-Block Layouts)
   ============================================================ */
/* Allgemeine Spalten-Abstände */
.st-content-inner .wp-block-columns {
  gap: 3rem;
  align-items: flex-start;
}

/* ── Therapy-Card Darstellung (Blog-Card-Stil) ── */
.st-content-inner .wp-block-columns:has(.st-therapy-img) {
  background: #fff;
  border: 1px solid #e8edf2;
  border-top: 3px solid #FBBC42;
  overflow: hidden;
  flex-direction: column !important;
  gap: 0 !important;
  transition: box-shadow 0.25s;
}
.st-content-inner .wp-block-columns:has(.st-therapy-img):hover {
  box-shadow: 0 8px 28px rgba(4,74,119,.09);
}
/* Bild-Spalte: immer oben, volle Breite */
.st-content-inner .wp-block-columns:has(.st-therapy-img) > .wp-block-column:has(.st-therapy-img) {
  flex-basis: 100% !important;
  order: -1;
}
.st-content-inner .wp-block-columns:has(.st-therapy-img) .st-therapy-img {
  margin: 0;
  aspect-ratio: 16/9;
  overflow: hidden;
}
.st-content-inner .wp-block-columns:has(.st-therapy-img) .st-therapy-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
  box-shadow: none;
  transition: transform 0.4s;
}
.st-content-inner .wp-block-columns:has(.st-therapy-img):hover .st-therapy-img img {
  transform: scale(1.04);
}
/* Text-Spalte: Card-Body Padding */
.st-content-inner .wp-block-columns:has(.st-therapy-img) > .wp-block-column:not(:has(.st-therapy-img)) {
  flex-basis: 100% !important;
  padding: 1.75rem 2rem 2rem;
}

/* Therapie-Bilder (Fallback ohne :has-Kontext) */
.st-content-inner .wp-block-image.st-therapy-img img {
  border-radius: 0.875rem;
  box-shadow: 0 4px 24px rgba(0,0,0,.1);
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}
/* Trennlinie dezent */
.st-content-inner .wp-block-separator {
  border-color: var(--st-gray-light);
  margin: 2.5rem 0;
  opacity: 0.6;
}
/* Responsive: unter 680 px Spalten untereinander */
@media (max-width: 680px) {
  .st-content-inner .wp-block-columns { flex-direction: column; }
  .st-content-inner .wp-block-column  { flex-basis: 100% !important; }
}

/* ============================================================
   GUTENBERG – BIO-SPALTEN (Über mich)
   ============================================================ */
/* Columns-Block: Foto-Spalte auf feste 280 px begrenzen */
.st-bio-columns { align-items: flex-start !important; gap: 3rem !important; }
.st-bio-columns .wp-block-column:first-child { flex: 0 0 260px !important; max-width: 260px; }

/* Rundes Foto: is-style-rounded + object-fit */
.st-content-inner .wp-block-image.is-style-rounded img,
.st-content-inner .wp-block-image.is-style-rounded figure {
  border-radius: 50%;
  object-fit: cover;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}
.st-content-inner .wp-block-image.is-style-rounded img {
  width: 260px;
  height: 260px;
  display: block;
}

/* Responsive: ab <720 px Foto oben, volle Breite */
@media (max-width: 720px) {
  .st-bio-columns { flex-direction: column !important; }
  .st-bio-columns .wp-block-column:first-child { flex: unset !important; max-width: 100% !important; }
  .st-content-inner .wp-block-image.is-style-rounded img { width: 200px; height: 200px; margin: 0 auto; }
}

/* ============================================================
   SEITENBILD-LAYOUTS
   ============================================================ */
.st-pg-layout {
  display: flex;
  gap: 3rem;
  align-items: flex-start;
}
/* Bild rechts */
.st-pg-layout--image-right { flex-direction: row-reverse; }
/* Bild oben */
.st-pg-layout--image-top { flex-direction: column; }

.st-pg-layout__img {
  flex-shrink: 0;
}
.st-pg-layout__img img {
  width: 100%;
  border-radius: 0.875rem;
  display: block;
  object-fit: cover;
  max-height: 520px;
  box-shadow: 0 4px 24px rgba(0,0,0,.1);
}
.st-pg-layout--image-top .st-pg-layout__img {
  width: 100%;
  max-width: 100%;
  margin-bottom: 0.5rem;
}
.st-pg-layout--image-top .st-pg-layout__img img {
  max-height: 420px;
}
.st-pg-layout__text { flex: 1; min-width: 0; }

/* Responsive: ab <740px Bild immer oben */
@media (max-width: 740px) {
  .st-pg-layout { flex-direction: column; }
  .st-pg-layout__img { width: 100% !important; }
}

/* ============================================================
   ASTRA – Scroll-to-Top Überschreibung
   ============================================================ */
#ast-scroll-top { background-color: #63C0E3; }
#ast-scroll-top:hover { background-color: #4dafc8; }

/* ============================================================
   BLOG (home.php) – Body-Reset + Blog-spezifische Stile
   ============================================================ */
body.st-blog {
  margin: 0; padding: 0 !important;
  background-color: var(--st-page-bg);
  font-family: var(--st-body-font);
  color: var(--st-body-color);
  font-size: var(--st-body-size);
  line-height: 1.65;
}
.st-blog *, .st-blog *::before, .st-blog *::after { box-sizing: border-box; }
.st-blog a { text-decoration: none; }
.st-blog img { max-width: 100%; height: auto; display: block; }
.st-blog ul { list-style: none; padding: 0; margin: 0; }
.st-blog p { margin: 0; }
.st-blog h1, .st-blog h2, .st-blog h3, .st-blog h4 {
  font-family: var(--st-heading-font);
  color: var(--st-h-color); line-height: 1.2; margin: 0;
}
.st-blog .site-header, .st-blog #masthead,
.st-blog .ast-primary-header-bar,
.st-blog .site-footer, .st-blog #colophon,
.st-blog .wp-site-blocks > header,
.st-blog .wp-site-blocks > footer { display: none !important; }
.st-blog .st-topbar__logo { max-width: var(--st-logo-width); height: auto; display: block; }
.st-blog .st-banner__h1 { font-family: var(--st-banner-h1-font, var(--st-heading-font)); font-size: var(--st-banner-h1-size, clamp(1.75rem,4vw,2.75rem)); color: #fff; line-height: 1.15; margin: 0; }
.st-blog .st-footer__logo-img { max-width: var(--st-logo-width); height: auto; display: block; margin-bottom: 0.75rem; }

/* Blog-Grid */
.st-blog-wrap { padding: 4.5rem 0 5.5rem; }
.st-blog-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; max-width: 860px; margin: 0 auto; }
@media (min-width: 640px) { .st-blog-grid { grid-template-columns: repeat(2,1fr); max-width: 1000px; } }
@media (min-width: 960px) { .st-blog-grid { grid-template-columns: repeat(3,1fr); max-width: 1180px; } }

/* Post-Karte */
.st-post-card { background: var(--st-blog-card-bg); border: 1px solid #e8edf2; border-top: 3px solid var(--st-blog-card-accent); overflow: hidden; transition: box-shadow 0.25s; }
.st-post-card:hover { box-shadow: 0 8px 28px rgba(4,74,119,.09); }
.st-post-card__thumb { aspect-ratio: 16/9; overflow: hidden; background: #e8edf2; }
.st-post-card__thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.st-post-card:hover .st-post-card__thumb img { transform: scale(1.04); }
.st-post-card__thumb-placeholder { width: 100%; height: 100%; background: linear-gradient(135deg,#e8f4fb,#c8e6f5); display: flex; align-items: center; justify-content: center; font-size: 2.5rem; }
.st-post-card__body { padding: 1.5rem; }
.st-post-card__meta { font-size: 0.78rem; color: #aaa; margin-bottom: 0.6rem; font-family: var(--st-body-font); }
.st-post-card__title { font-family: var(--st-heading-font); font-size: 1.125rem; color: var(--st-blog-title); margin-bottom: 0.6rem; line-height: 1.3; }
.st-post-card__title a { color: inherit; text-decoration: none; }
.st-post-card__title a:hover { color: var(--st-blog-title-hover); }
.st-post-card__excerpt { font-size: 0.875rem; color: var(--st-body-color); line-height: 1.6; margin-bottom: 1.25rem; }
.st-post-card__more { font-size: 0.8125rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--st-blog-more); text-decoration: none; }
.st-post-card__more:hover { color: var(--st-blog-more-hover); }

/* Pagination */
.st-pagination { display: flex; justify-content: center; gap: 0.5rem; margin-top: 3rem; flex-wrap: wrap; }
.st-pagination a, .st-pagination span { display: inline-flex; align-items: center; justify-content: center; min-width: 2.5rem; height: 2.5rem; padding: 0 0.75rem; border: 1px solid #e8edf2; font-size: 0.875rem; font-weight: 600; color: var(--st-blog-pagi-text); border-radius: 0.25rem; transition: background 0.2s, border-color 0.2s, color 0.2s; }
.st-pagination a:hover { background: #f0f8ff; border-color: var(--st-blog-pagi-hover); color: var(--st-blog-pagi-hover); }
.st-pagination .current { background: var(--st-blog-pagi-active); border-color: var(--st-blog-pagi-active); color: #fff; }

/* Keine Beiträge */
.st-no-posts { max-width: 540px; margin: 0 auto; text-align: center; padding: 3rem 1.25rem; }
.st-no-posts h2 { font-family: var(--st-heading-font); font-size: 1.5rem; color: var(--st-primary); margin-bottom: 0.75rem; }
.st-no-posts p { font-size: 1rem; color: var(--st-body-color); }

/* ============================================================
   SINGLE POST (single.php) – Body-Reset + Post-Stile
   ============================================================ */
body.st-single {
  margin: 0; padding: 0 !important;
  background-color: var(--st-page-bg);
  font-family: var(--st-body-font);
  color: var(--st-body-color);
  font-size: var(--st-body-size);
  line-height: 1.65;
}
.st-single *, .st-single *::before, .st-single *::after { box-sizing: border-box; }
.st-single a { text-decoration: none; }
.st-single img { max-width: 100%; height: auto; display: block; }
.st-single ul { list-style: none; padding: 0; margin: 0; }
.st-single p { margin: 0; }
.st-single h1, .st-single h2, .st-single h3, .st-single h4 {
  font-family: var(--st-heading-font);
  color: var(--st-h-color); line-height: 1.2; margin: 0;
}
.st-single .site-header, .st-single #masthead,
.st-single .ast-primary-header-bar,
.st-single .site-footer, .st-single #colophon,
.st-single .wp-site-blocks > header,
.st-single .wp-site-blocks > footer { display: none !important; }
.st-single .st-topbar__logo { max-width: var(--st-logo-width); height: auto; display: block; }
.st-single .st-banner__h1 { font-family: var(--st-banner-h1-font, var(--st-heading-font)); font-size: var(--st-banner-h1-size, clamp(1.5rem,3.5vw,2.5rem)); color: #fff; line-height: 1.2; margin: 0; }
.st-single .st-footer__logo-img { max-width: var(--st-logo-width); height: auto; display: block; margin-bottom: 0.75rem; }

/* Post-Inhalt */
.st-single-wrap { padding: 4.5rem 0 5.5rem; }
.st-single-inner { max-width: 760px; margin: 0 auto; }
.st-post-meta { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; margin-bottom: 2.5rem; padding-bottom: 1.5rem; border-bottom: 1px solid #e8edf2; font-size: 0.875rem; color: #aaa; }
.st-post-meta__item { display: flex; align-items: center; gap: 0.35rem; }
.st-post-meta__item a { color: var(--st-single-meta-link); text-decoration: none; }
.st-post-meta__item a:hover { color: var(--st-primary); }
.st-post-thumb { margin-bottom: 2.5rem; border-radius: 0.5rem; overflow: hidden; }
.st-post-thumb img { width: 100%; height: auto; }

/* Entry-Content (Single-spezifische Überschreibungen) */
body.st-single .entry-content { font-size: var(--st-body-size); line-height: 1.8; color: var(--st-body-color); }
body.st-single .entry-content h2 { font-family: var(--st-heading-font); font-size: clamp(1.4rem,2.5vw,var(--st-h2-size-single)); color: var(--st-h-color); margin: 2.75rem 0 1rem; }
body.st-single .entry-content h2:first-child { margin-top: 0; }
body.st-single .entry-content h3 { font-family: var(--st-heading-font); font-size: clamp(1.1rem,2vw,1.4rem); color: var(--st-single-h3); margin: 2rem 0 0.75rem; }
body.st-single .entry-content h4 { font-family: var(--st-body-font); font-size: 1rem; font-weight: 700; color: var(--st-h-color); margin: 1.5rem 0 0.5rem; }
body.st-single .entry-content a { color: var(--st-single-link); text-decoration: underline; }
body.st-single .entry-content a:hover { color: var(--st-single-link-hover); }
body.st-single .entry-content blockquote { border-left: 4px solid var(--st-accent); padding: 1rem 1.5rem; margin: 1.75rem 0; background: #f8f9fc; border-radius: 0 6px 6px 0; font-style: italic; color: #5a6a7a; }
body.st-single .entry-content img { border-radius: 0.5rem; }
body.st-single .entry-content .wp-block-image { margin: 1.75rem 0; }

/* Post-Navigation */
.st-post-nav { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 3.5rem; padding-top: 2rem; border-top: 1px solid #e8edf2; }
@media (max-width: 540px) { .st-post-nav { grid-template-columns: 1fr; } }
.st-post-nav__item { display: block; padding: 1.25rem; background: var(--st-single-postnav-bg); border: 1px solid #e8edf2; border-radius: 0.375rem; transition: box-shadow 0.2s; text-decoration: none; }
.st-post-nav__item:hover { box-shadow: 0 4px 16px rgba(4,74,119,.09); }
.st-post-nav__label { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: #aaa; margin-bottom: 0.4rem; font-family: var(--st-body-font); }
.st-post-nav__title { font-size: 0.9375rem; font-weight: 600; color: var(--st-single-postnav-title); line-height: 1.3; font-family: var(--st-body-font); }
.st-post-nav__item--next { text-align: right; }

/* Zurück zum Blog */
.st-back-to-blog { margin-top: 2rem; }
.st-back-to-blog a { display: inline-flex; align-items: center; gap: 0.4rem; font-size: 0.875rem; font-weight: 700; color: var(--st-single-back-link); text-transform: uppercase; letter-spacing: 0.06em; }
.st-back-to-blog a:hover { color: var(--st-primary); }
