/* TEAM Slider – ruhiger Fade */
.welk-hero-slider{
  position: relative !important;
  height: 320px !important;
  overflow: hidden !important;
  border-radius: 18px !important;
}

.welk-hero-slider img{
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;

  /* wichtig für Köpfe */
  object-fit: cover !important;
  object-position: center 20% !important;

  opacity: 0 !important;
  transition: opacity 1.4s ease !important;
  display: block !important;
}
/* =========================================
   KONTAKT – Hero: unerwünschtes Background-Bild entfernen
   Scope: nur Kontaktseite (wrapper .welk-kontakt)
   ========================================= */

.welk-startseite.welk-kontakt .welk-hero-image{
  background: none !important;
  background-image: none !important;
  box-shadow: none !important;
  border: 0 !important;
}

/* Falls das fremde Bild über Pseudoelemente kommt */
.welk-startseite.welk-kontakt .welk-hero-image::before,
.welk-startseite.welk-kontakt .welk-hero-image::after{
  content: none !important;
  display: none !important;
}

/* Bild wirklich sichtbar/sauber */
.welk-startseite.welk-kontakt .welk-hero-image img{
  display: block !important;
  width: 100% !important;
  height: auto !important;
  max-width: 520px;
  border-radius: 22px;
  object-fit: cover;
}

/* Optional: auf Mobile etwas kompakter */
@media (max-width: 768px){
  .welk-startseite.welk-kontakt .welk-section.welk-hero{
    padding-top: 14px !important;
    padding-bottom: 14px !important;
  }
  .welk-startseite.welk-kontakt .welk-hero-grid{
    gap: 14px !important;
  }
  .welk-startseite.welk-kontakt .welk-hero-image img{
    max-height: 240px;
    border-radius: 16px;
  }
  .welk-startseite.welk-kontakt .welk-cta-row{
    gap: 10px;
  }
  .welk-startseite.welk-kontakt .welk-cta-row .welk-btn{
    width: 100%;
    text-align: center;
  }
}
.welk-hero-slider img.is-active{
  opacity: 1 !important;
  z-index: 2 !important;
}
/* =========================================================
   Tierarztpraxis Welk – Basis CSS (bereinigt + stabil)
   Ziel: keine "weißen Seiten", robuste Defaults, geordnete Layouts
   ========================================================= */

/* ---------- Reset / Base ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji",
    "Segoe UI Emoji";
  line-height: 1.5;
  color: #15202b;
  background: #f6f7f9;
}

/* WICHTIG: Falls irgendwo aus Versehen Content ausgeblendet wird */
body, main, header, footer, section, article, nav {
  display: block;
}

/* Falls in alter CSS sowas wie "body { visibility:hidden }" o.ä. war */
body {
  visibility: visible !important;
  opacity: 1 !important;
}

/* Medien */
img, svg, video {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Links */
a {
  color: inherit;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

/* Typografie */
h1, h2, h3, h4 {
  line-height: 1.2;
  margin: 0 0 0.6rem 0;
}
p {
  margin: 0 0 1rem 0;
}

/* Listen */
ul, ol {
  margin: 0 0 1rem 1.25rem;
  padding: 0;
}

/* Form Controls */
input, select, textarea, button {
  font: inherit;
}

/* Fokus sichtbar */
:focus-visible {
  outline: 3px solid rgba(255, 179, 0, 0.55);
  outline-offset: 2px;
  border-radius: 8px;
}

/* ---------- Design Tokens ---------- */
:root {
  --bg: #f6f7f9;
  --surface: #ffffff;
  --surface-2: #fbfbfc;
  --text: #15202b;
  --muted: #4b5563;
  --border: rgba(17, 24, 39, 0.10);
  --shadow: 0 10px 30px rgba(17, 24, 39, 0.08);
  --shadow-soft: 0 6px 18px rgba(17, 24, 39, 0.08);

  --brand: #f5b301;
  --brand-2: #1f8a70;
  --brand-3: #275dad;
  --danger: #b42318;

  --radius: 18px;
  --radius-sm: 12px;

  --container: 1120px;
  --pad: 20px;
}

/* ---------- Utilities ---------- */
.container {
  width: min(var(--container), calc(100% - (var(--pad) * 2)));
  margin-inline: auto;
}

.surface {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.muted {
  color: var(--muted);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: rgba(245, 179, 1, 0.16);
  border: 1px solid rgba(245, 179, 1, 0.35);
  color: #3a2a00;
  font-weight: 600;
  font-size: 0.9rem;
}

.hr {
  height: 1px;
  background: var(--border);
  border: 0;
  margin: 1.25rem 0;
}

/* ---------- Layout Grundgerüst ---------- */
.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
  display: block;
  padding: 28px 0 56px;
}

/* WICHTIG: globales Section-Padding NICHT pauschal setzen,
   sonst wirken .welk-box Subpages "auseinandergezogen" */
section {
  padding: 0;
}

/* ---------- Header / Navigation ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 220px;
}

.brand-logo {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(245,179,1,0.35), rgba(31,138,112,0.25));
  border: 1px solid var(--border);
  box-shadow: 0 10px 20px rgba(17, 24, 39, 0.08);
}

.brand-title {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.brand-title strong {
  font-size: 1.05rem;
  letter-spacing: 0.2px;
}
.brand-title span {
  font-size: 0.9rem;
  color: var(--muted);
}

.nav {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav a {
  display: inline-flex;
  align-items: center;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid transparent;
  color: var(--text);
  font-weight: 600;
  font-size: 0.95rem;
}

.nav a:hover {
  text-decoration: none;
  background: rgba(17, 24, 39, 0.04);
  border-color: rgba(17, 24, 39, 0.06);
}

.nav a.is-active {
  background: rgba(245, 179, 1, 0.16);
  border-color: rgba(245, 179, 1, 0.35);
}

.nav-toggle {
  display: none;
  border: 1px solid var(--border);
  background: var(--surface);
  padding: 10px 12px;
  border-radius: 12px;
  cursor: pointer;
}

/* ---------- Hero (generisch) ---------- */
.hero {
  padding: 34px 0 22px;
}

.hero-card {
  border-radius: calc(var(--radius) + 6px);
  border: 1px solid var(--border);
  background: radial-gradient(1200px 600px at 10% 10%, rgba(245,179,1,0.20), transparent 60%),
              radial-gradient(1000px 500px at 90% 20%, rgba(31,138,112,0.18), transparent 60%),
              var(--surface);
  box-shadow: var(--shadow);
  padding: 28px;
  display: grid;
  gap: 18px;
}

.hero h1 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  margin: 0;
}

.hero .subtitle {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 70ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 6px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 11px 14px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 8px 18px rgba(17, 24, 39, 0.06);
}

.btn:hover {
  transform: translateY(-1px);
  transition: transform 120ms ease;
  text-decoration: none;
}

.btn-primary {
  background: linear-gradient(135deg, rgba(245,179,1,1), rgba(245,179,1,0.86));
  border-color: rgba(245,179,1,0.55);
  color: #2b2200;
}

.btn-secondary {
  background: linear-gradient(135deg, rgba(31,138,112,1), rgba(31,138,112,0.86));
  border-color: rgba(31,138,112,0.55);
  color: #ffffff;
}

.btn-outline {
  background: transparent;
  border-color: rgba(17, 24, 39, 0.14);
}

/* ---------- Cards / Grids (generisch) ---------- */
.grid {
  display: grid;
  gap: 18px;
}
.grid.cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid.cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid.cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  padding: 18px;
  display: grid;
  gap: 10px;
  min-height: 120px;
}

.card h3 { margin: 0; font-size: 1.08rem; }
.card p { margin: 0; color: var(--muted); }

/* ---------- Info Box / Soforthilfe ---------- */
.box {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  padding: 18px;
}

.box-emergency {
  border-color: rgba(180, 35, 24, 0.25);
  background: linear-gradient(0deg, rgba(180,35,24,0.06), rgba(180,35,24,0.02)), var(--surface);
}
.box-emergency strong { color: var(--danger); }

/* ---------- Content Blocks ---------- */
.content {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  padding: 22px;
}

.content .lead {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 80ch;
}

/* ---------- Tables ---------- */
table {
  width: 100%;
  border-collapse: collapse;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
}

th, td {
  padding: 12px 12px;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}
th {
  text-align: left;
  background: rgba(17, 24, 39, 0.03);
  font-weight: 800;
}
tr:last-child td { border-bottom: 0; }

/* ---------- Forms ---------- */
.form { display: grid; gap: 12px; }
.field { display: grid; gap: 6px; }

label {
  font-weight: 700;
  font-size: 0.95rem;
}

input[type="text"],
input[type="email"],
input[type="tel"],
textarea,
select {
  width: 100%;
  border: 1px solid rgba(17, 24, 39, 0.16);
  background: var(--surface);
  padding: 11px 12px;
  border-radius: 14px;
  color: var(--text);
}

textarea { min-height: 120px; resize: vertical; }
.help { font-size: 0.9rem; color: var(--muted); }

/* ---------- Footer ---------- */
.site-footer {
  border-top: 1px solid var(--border);
  background: #ffffff;
}

.footer-inner {
  padding: 22px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-links a {
  padding: 8px 10px;
  border-radius: 12px;
  border: 1px solid transparent;
  color: var(--muted);
}
.footer-links a:hover {
  background: rgba(17, 24, 39, 0.04);
  border-color: rgba(17, 24, 39, 0.06);
  color: var(--text);
  text-decoration: none;
}

/* ---------- Failsafes ---------- */
main, .container, .page {
  min-height: 1px;
}

/* Falls global text auf weiß gesetzt war (begrenzt sinnvoll, aber ok) */
* { color: inherit; }

[hidden] { display: none !important; }
.hidden, .is-hidden { display: none !important; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .grid.cols-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .grid.cols-3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .brand { min-width: unset; }
}

@media (max-width: 720px) {
  main { padding: 18px 0 42px; }
  .grid.cols-2, .grid.cols-3, .grid.cols-4 { grid-template-columns: 1fr; }
  .header-inner { align-items: flex-start; }
  .nav { width: 100%; justify-content: flex-start; }
  .hero-card { padding: 20px; }
}

/* ---------- Print ---------- */
@media print {
  .site-header, .site-footer, .nav, .hero-actions { display: none !important; }
  body { background: #ffffff; }
  .surface, .content, .card, .box { box-shadow: none !important; }
}

/* =========================================================
   WELK – Subpages (Kacheln, Grid, Hero, CTA)
   passt zu: .welk-subpage / .welk-box / .welk-sub-hero / .welk-sub-cards / .welk-card / .welk-sub-grid
   ========================================================= */

.welk-subpage {
  width: min(var(--container, 1120px), calc(100% - 40px));
  margin: 0 auto;
  padding: 18px 0 56px;
}

.welk-box {
  background: var(--surface, #fff);
  border: 1px solid var(--border, rgba(17, 24, 39, 0.10));
  border-radius: var(--radius, 18px);
  box-shadow: var(--shadow-soft, 0 6px 18px rgba(17, 24, 39, 0.08));
  padding: 22px;
  margin: 18px 0;
}

.welk-divider {
  height: 1px;
  background: var(--border, rgba(17, 24, 39, 0.10));
  margin-top: 22px;
}

.welk-magazin {
  color: var(--muted, #4b5563);
  font-size: 1.02rem;
  line-height: 1.65;
  max-width: 85ch;
}

.welk-lead {
  margin: 0 0 10px 0;
  color: var(--text, #15202b);
}

.welk-sub-hero {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 18px;
  align-items: start;
}

.welk-sub-hero-text h1 {
  margin: 0 0 10px 0;
  font-size: clamp(1.6rem, 3vw, 2.3rem);
}

.welk-sub-hero-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: calc(var(--radius, 18px) - 4px);
  border: 1px solid var(--border, rgba(17, 24, 39, 0.10));
}

/* KACHELN */
.welk-sub-cards {
  display: grid;
  gap: 16px;
  margin-top: 14px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
}

.welk-card {
  background: var(--surface, #fff);
  border: 1px solid var(--border, rgba(17, 24, 39, 0.10));
  border-radius: var(--radius, 18px);
  box-shadow: var(--shadow-soft, 0 6px 18px rgba(17, 24, 39, 0.08));
  padding: 18px;
  display: grid;
  gap: 10px;
  text-decoration: none;
  color: var(--text, #15202b);
  min-height: 160px;
}

.welk-card h3 {
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.25;
}

.welk-card p {
  margin: 0;
  color: var(--muted, #4b5563);
}

.welk-card:hover {
  transform: translateY(-1px);
  transition: transform 120ms ease;
  text-decoration: none;
}

.welk-btn {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(17, 24, 39, 0.14);
  background: rgba(17, 24, 39, 0.03);
  font-weight: 800;
  width: fit-content;
}

.welk-btn.is-disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

/* Orientierung 2-spaltig */
.welk-sub-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 14px;
}

.welk-sub-grid > div {
  background: var(--surface-2, #fbfbfc);
  border: 1px solid var(--border, rgba(17, 24, 39, 0.10));
  border-radius: var(--radius, 18px);
  padding: 18px;
}

.welk-sub-grid h3 { margin: 0 0 10px 0; }

.welk-magazin a {
  text-decoration: underline;
  text-underline-offset: 3px;
}
.welk-magazin a:hover { text-decoration-thickness: 2px; }

.welk-sub-cta {
  margin-top: 12px;
  display: grid;
  gap: 10px;
  padding: 16px;
  border-radius: var(--radius, 18px);
  border: 1px solid rgba(245, 179, 1, 0.35);
  background: rgba(245, 179, 1, 0.12);
}

.welk-sub-cta h3 { margin: 0; }

.welk-motto {
  margin-top: 14px;
  font-weight: 900;
}

.welk-box > h2 { margin-top: 0; }

/* =========================================================
   WELK – TEAM Seite (Slider + Team Cards + Gruppenfoto)
   passt zu: .welk-hero-slider / .welk-team-grid / .welk-team-card / .welk-team-photo / .welk-team-group
   ========================================================= */

.welk-hero-slider {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 85%;
  gap: 12px;

  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;

  padding: 10px;
  border-radius: calc(var(--radius, 18px) - 4px);
  border: 1px solid var(--border, rgba(17, 24, 39, 0.10));
  background: var(--surface, #fff);
}

.welk-hero-slider img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 14px;
  scroll-snap-align: start;
  border: 1px solid var(--border, rgba(17, 24, 39, 0.10));
}

@media (min-width: 720px) {
  .welk-hero-slider { grid-auto-columns: 65%; }
}
@media (min-width: 980px) {
  .welk-hero-slider { grid-auto-columns: 55%; }
}

.welk-hero-slider::-webkit-scrollbar { height: 10px; }
.welk-hero-slider::-webkit-scrollbar-thumb {
  background: rgba(17, 24, 39, 0.18);
  border-radius: 999px;
}
.welk-hero-slider::-webkit-scrollbar-track {
  background: rgba(17, 24, 39, 0.06);
  border-radius: 999px;
}

.welk-team-grid { margin-top: 14px; }

.welk-team-card {
  padding: 18px;
  gap: 12px;
  min-height: 260px;
}

.welk-team-photo {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border, rgba(17, 24, 39, 0.10));
  background: rgba(17, 24, 39, 0.03);
}

.welk-team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.welk-team-role {
  font-weight: 800;
  color: var(--muted, #4b5563);
  margin-top: -4px;
}

.welk-team-statement {
  margin: 0;
  color: var(--text, #15202b);
  font-style: italic;
  line-height: 1.55;
  padding-top: 6px;
  border-top: 1px solid var(--border, rgba(17, 24, 39, 0.10));
}

.welk-why-grid .welk-card { min-height: 140px; }

.welk-team-group {
  margin: 14px 0 0 0;
  border-radius: var(--radius, 18px);
  overflow: hidden;
  border: 1px solid var(--border, rgba(17, 24, 39, 0.10));
  box-shadow: var(--shadow-soft, 0 6px 18px rgba(17, 24, 39, 0.08));
  background: var(--surface, #fff);
}

.welk-team-group img {
  width: 100%;
  height: auto;
  display: block;
}

/* ---------- Responsive für Welk Subpages ---------- */
@media (max-width: 980px) {
  .welk-sub-hero { grid-template-columns: 1fr; }
  .welk-sub-cards { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 720px) {
  .welk-subpage { width: calc(100% - 28px); }
  .welk-box { padding: 18px; }
  .welk-sub-cards { grid-template-columns: 1fr; }
  .welk-sub-grid { grid-template-columns: 1fr; }
}
/* =========================================================
   WELK – STARTSEITE (GeneratePress kompatibel)
   Nur Klassen mit .welk-startseite
   ========================================================= */

.welk-startseite{
  --sun-0:#fffef6;
  --sun-1:#fff7cf;
  --sun-2:#ffeaa8;
  --sun-3:#ffe08a;
  --line: rgba(220, 180, 80, 0.28);
  --text: #3b2d12;
  --muted:#5a4521;
  --shadow: 0 10px 24px rgba(60,50,20,.10);
  --shadowHover: 0 16px 34px rgba(60,50,20,.14);
}

.welk-startseite .welk-wrap{
  max-width: 1180px;
  margin: 0 auto;
  padding: 28px 18px 46px;
}

/* Sections */
.welk-startseite .welk-section{
  border-radius: 28px;
  padding: 26px;
  margin: 18px 0;
  background: linear-gradient(135deg, #fffef2 0%, #fff5c8 55%, #ffe8a6 100%);
  border: 1px solid rgba(220,180,80,0.18);
}

.welk-startseite .welk-hero{
  background: linear-gradient(135deg, #fffef4 0%, #fff6bf 55%, #ffe59a 100%);
  border: 1px solid rgba(220,180,80,0.22);
  box-shadow: 0 8px 22px rgba(60,50,20,.06);
}

/* Hero Layout */
.welk-startseite .welk-hero-grid{
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 26px;
  align-items: center;
}

.welk-startseite h1{
  margin: 0 0 10px;
  font-size: clamp(30px, 3.2vw, 44px);
  line-height: 1.06;
  color: var(--text);
}

.welk-startseite .welk-sub{
  margin: 0 0 14px;
  font-weight: 650;
  color: var(--text);
}

.welk-startseite .welk-hero p{
  margin: 0 0 12px;
  color: var(--muted);
  line-height: 1.6;
  font-size: 16px;
}

.welk-startseite .welk-bullets{
  margin: 14px 0 0;
  padding-left: 18px;
  color: var(--muted);
}
.welk-startseite .welk-bullets li{ margin: 6px 0; }

/* Bild richtig positioniert */
.welk-startseite .welk-hero-image{
  display:flex;
  justify-content:center;
  align-items:center;
}
.welk-startseite .welk-hero-image img{
  width: 100%;
  max-width: 360px;
  border-radius: 18px;
  display:block;
  box-shadow: 0 14px 34px rgba(60,50,20,.18);
  object-fit: cover;
}

/* Titles */
.welk-startseite .welk-h2{
  margin: 0 0 14px;
  font-size: clamp(22px, 2.2vw, 30px);
  color: var(--text);
}

/* GRID */
.welk-startseite .welk-grid{
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  justify-content: center;
}

/* CARD */
.welk-startseite .welk-card{
  position: relative;
  display:flex;
  flex-direction: column;
  text-decoration:none;
  color: var(--text);

  border-radius: 18px;
  padding: 18px 18px 16px;
  border: 1px solid var(--line);
  background: linear-gradient(135deg, var(--sun-0) 0%, var(--sun-1) 50%, var(--sun-2) 100%);
  box-shadow: var(--shadow);
  transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
  overflow:hidden;

  max-width: 360px;
  width: 100%;
  margin-left:auto;
  margin-right:auto;
}

.welk-startseite .welk-card:after{
  content:"";
  position:absolute;
  top:0;
  right:0;
  width: 34px;
  height: 34px;
  background: radial-gradient(circle at 0% 100%, rgba(255,255,255,0) 55%, rgba(255,255,255,.55) 56%);
  opacity:.55;
  pointer-events:none;
}

.welk-startseite .welk-card:hover{
  transform: translateY(-2px);
  box-shadow: var(--shadowHover);
  filter: saturate(1.04);
}

.welk-startseite .welk-card:before{
  content:"";
  display:block;
  height: 3px;
  border-radius: 999px;
  margin-bottom: 10px;
  background: linear-gradient(90deg, rgba(210,160,70,0) 0%, rgba(210,160,70,.40) 50%, rgba(210,160,70,0) 100%);
}

.welk-startseite .welk-card h3{
  margin: 0 0 8px;
  font-size: 16px;
  font-weight: 800;
  color: var(--text);
}

.welk-startseite .welk-card p{
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
  font-size: 14px;
  flex-grow: 1;
}

/* Mini Grid */
.welk-startseite .welk-mini-grid{
  display:grid;
  gap: 14px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  justify-content:center;
}

.welk-startseite .welk-mini{
  border-radius: 16px;
  padding: 14px 14px 12px;
  border: 1px solid rgba(220,180,80,0.22);
  background: linear-gradient(135deg, #ffffff 0%, #fff7d8 60%, #ffeab1 100%);
  box-shadow: 0 8px 18px rgba(60,50,20,.08);
}

.welk-startseite .welk-mini strong{
  display:block;
  margin-bottom: 6px;
  color: var(--text);
}

.welk-startseite .welk-mini span{
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.welk-startseite .welk-motto{
  margin: 8px 0 0;
  text-align:center;
  color: rgba(70,55,20,.70);
  font-style: italic;
  padding: 18px 10px 6px;
}

/* Responsive */
@media (max-width: 1024px){
  .welk-startseite .welk-hero-grid{ grid-template-columns: 1fr; }
  .welk-startseite .welk-hero-image{ order: 2; }
  .welk-startseite .welk-grid{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .welk-startseite .welk-card{ max-width: 100%; }
  .welk-startseite .welk-mini-grid{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 680px){
  .welk-startseite .welk-wrap{ padding: 22px 14px 38px; }
  .welk-startseite .welk-section{ padding: 18px; }
  .welk-startseite .welk-grid{ grid-template-columns: 1fr; }
  .welk-startseite .welk-mini-grid{ grid-template-columns: 1fr; }
  .welk-startseite .welk-hero-image img{ max-width: 420px; }
}
/* =========================================================
   WELK – ENGAGEMENT / MAGAZIN-STIL
   Gilt nur für .welk-magazin-page
   Sicher für Customizer
   ========================================================= */

.welk-magazin-page {
  --bg-soft: #fffdf6;
  --bg-card: #ffffff;
  --accent: #f5b301;
  --text: #1f2933;
  --muted: #5b6470;
  --border: rgba(0, 0, 0, 0.08);
  --shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
  --radius: 20px;

  max-width: 1180px;
  margin: 0 auto;
  padding: 40px 20px 60px;
}

/* ---------- HERO ---------- */

.welk-magazin-hero {
  background: linear-gradient(
    135deg,
    #fffef6 0%,
    #fff6cf 55%,
    #ffe9aa 100%
  );
  border-radius: 28px;
  padding: 42px 36px;
  margin-bottom: 40px;
  border: 1px solid rgba(245, 179, 1, 0.25);
  box-shadow: var(--shadow);
}

.welk-magazin-hero-inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 36px;
  align-items: center;
}

.welk-magazin-hero h1 {
  margin: 0 0 12px;
  font-size: clamp(30px, 3vw, 44px);
  line-height: 1.05;
}

.welk-hero-subline {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 16px;
}

.welk-hero-note {
  margin-top: 14px;
  font-style: italic;
  color: #6b5a2a;
}

.welk-magazin-hero-media img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.18);
}

/* ---------- ARTIKEL ---------- */

.welk-magazin-article {
  max-width: 820px;
  margin: 0 auto 50px;
  font-size: 17px;
  line-height: 1.7;
}

.welk-magazin-article h2 {
  font-size: 28px;
  margin-bottom: 18px;
}

/* ---------- GRID ---------- */

.welk-magazin-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
  margin-bottom: 60px;
}

/* ---------- CARDS ---------- */

.welk-magazin-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.welk-magazin-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.12);
}

.welk-magazin-card-head {
  padding: 18px 20px 10px;
}

.welk-magazin-card-head h3 {
  margin: 0 0 4px;
  font-size: 18px;
}

.welk-magazin-card-sub {
  font-size: 14px;
  color: var(--muted);
}

.welk-magazin-card-media img {
  width: 100%;
  height: 190px;
  object-fit: contain;
  background: #fafafa;
  padding: 14px;
}

.welk-magazin-card-body {
  padding: 18px 20px 22px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--text);
}

.welk-magazin-card-body p {
  margin-bottom: 12px;
}

.welk-leise {
  font-size: 14px;
  color: var(--muted);
}

/* warme Karte (Vetline) */
.welk-magazin-card.is-warm {
  background: linear-gradient(
    180deg,
    #fffdf4 0%,
    #fff7da 100%
  );
}

/* ---------- ABSCHLUSS ---------- */

.welk-magazin-abschluss {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
  padding-top: 10px;
}

.welk-magazin-abschluss p {
  font-size: 17px;
  margin-bottom: 14px;
}

.welk-magazin-abschluss .welk-motto {
  font-style: italic;
  color: #6b5a2a;
}

/* ---------- RESPONSIVE ---------- */

@media (max-width: 1024px) {
  .welk-magazin-hero-inner {
    grid-template-columns: 1fr;
  }

  .welk-magazin-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .welk-magazin-page {
    padding: 26px 14px 46px;
  }

  .welk-magazin-hero {
    padding: 28px 20px;
  }

  .welk-magazin-grid {
    grid-template-columns: 1fr;
  }

  .welk-magazin-card-media img {
    height: 160px;
  }
}
/* FIX: Engagement-Kacheln bündig ausrichten */

.welk-magazin-grid {
  align-items: stretch;
}

.welk-magazin-card {
  height: 100%;
}
/* =========================================
   ENGAGEMENT – GRID & KACHELN (PATCH)
   ========================================= */

.welk-engagement .welk-cards{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  align-items: stretch;
}

@media (max-width: 980px){
  .welk-engagement .welk-cards{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 640px){
  .welk-engagement .welk-cards{
    grid-template-columns: 1fr;
  }
}

/* Kachel klickbar & wie Startseite */
.welk-engagement .welk-card{
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 170px;
  text-decoration: none;
}

/* CTA optisch wie „Link“, aber als Teil der Kachel */
.welk-engagement .welk-card-cta{
  margin-top: 12px;
  font-weight: 700;
  text-decoration: underline;
}

/* Logo ruhig einbinden */
.welk-engagement .welk-card-head{
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
}

.welk-engagement .welk-card-logo{
  width: 56px;
  height: 56px;
  object-fit: cover;
  border-radius: 14px;
  filter: saturate(.55) contrast(.95);
  opacity: .9;
  box-shadow: 0 10px 20px rgba(31,35,40,0.10);
}

/* Sonniger (ohne grell) – nur Engagement-Hintergründe minimal wärmer */
.welk-engagement .welk-hero{
  background: linear-gradient(135deg, #fff7cc 0%, #fff3bf 55%, #fff0b0 100%);
}

.welk-engagement .welk-section{
  background: linear-gradient(135deg, #fff8da 0%, #fff3c7 55%, #ffefb8 100%);
}

/* Infobox harmonisch */
.welk-engagement .welk-infobox{
  margin-top: 26px;
  padding: 18px 18px 16px;
  border-radius: 18px;
  border: 1px solid rgba(167,118,45,0.20);
  background: rgba(255,255,255,0.62);
  box-shadow: 0 10px 22px rgba(31,35,40,0.08);
}

.welk-engagement .welk-infobox h3{
  margin: 0 0 10px;
}

.welk-engagement .welk-infobox ul{
  margin: 0;
  padding-left: 18px;
}

.welk-engagement .welk-motto{
  text-align: center;
  padding: 26px 14px;
  font-style: italic;
  opacity: .85;
}
/* ===============================
   MAGAZIN-STIL – ENGAGEMENT
   Scoped: wirkt nur innerhalb .welk-startseite
   =============================== */

.welk-startseite{
  --welk-ink:#3b2d12;
  --welk-ink2:#5a4521;

  /* sonniger, weniger creme, mehr gelb – aber weich */
  --welk-bg1:#fff7d6;
  --welk-bg2:#ffeaa8;

  /* Kartenfarbe hebt sich vom Hintergrund ab */
  --welk-card1:#fffdf2;
  --welk-card2:#ffeec0;

  --welk-border: rgba(170,125,40,.22);
  --welk-shadow: 0 14px 32px rgba(60,50,20,.14);
  --welk-shadow-soft: 0 10px 22px rgba(31,35,40,.10);

  color: var(--welk-ink);
}

.welk-startseite .welk-wrap{
  max-width: 1180px;
  margin: 0 auto;
  padding: 40px 24px;
}

/* Abschnitte (Karten/Container) */
.welk-startseite .welk-section{
  margin: 26px auto;
  border-radius: 28px;
  background: linear-gradient(135deg,var(--welk-bg1),var(--welk-bg2));
  border: 1px solid rgba(170,125,40,.18);
  box-shadow: 0 18px 45px rgba(60,50,20,.10);
  overflow: hidden;
}

.welk-startseite h1,
.welk-startseite h2{
  margin: 0 0 10px;
  letter-spacing: .2px;
  color: var(--welk-ink);
}

.welk-startseite p{
  color: var(--welk-ink2);
}

.welk-startseite .welk-lead{
  margin: 0 0 18px;
  max-width: 72ch;
}

.welk-startseite .welk-eyebrow{
  margin: 0 0 10px;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(90,69,33,.80);
}

/* HERO */
.welk-startseite .welk-hero .welk-wrap{
  padding-top: 44px;
  padding-bottom: 44px;
}

.welk-startseite .welk-hero-grid{
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 34px;
  align-items: center;
}

.welk-startseite .welk-hero-image{
  display: flex;
  justify-content: flex-end;
}

.welk-startseite .welk-hero-image img{
  width: 100%;
  max-width: 520px;
  border-radius: 20px;
  display: block;
  box-shadow: 0 18px 42px rgba(60,50,20,.18);
}

/* KACHELN – Grid */
.welk-startseite .welk-cards{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr)); /* 3 pro Reihe */
  gap: 18px;
  margin-top: 18px;
}

/* Kachel */
.welk-startseite .welk-card{
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  color: var(--welk-ink);

  border-radius: 18px;
  padding: 18px 18px 16px;

  background: linear-gradient(135deg,var(--welk-card1) 0%, var(--welk-card2) 100%);
  border: 1px solid var(--welk-border);

  box-shadow: var(--welk-shadow-soft), 0 2px 0 rgba(255,255,255,0.65) inset;
  transition: transform .15s ease, box-shadow .15s ease, filter .15s ease;
}

.welk-startseite .welk-card:hover{
  transform: translateY(-2px);
  box-shadow: var(--welk-shadow), 0 2px 0 rgba(255,255,255,0.70) inset;
  filter: brightness(1.01);
}

/* Überschriften & Text */
.welk-startseite .welk-card h3{
  margin: 0 0 8px;
  font-size: 16px;
  font-weight: 780;
  color: var(--welk-ink);
}

.welk-startseite .welk-card p{
  margin: 0;
  font-size: 14px;
  line-height: 1.45;
  color: var(--welk-ink2);
  flex-grow: 1;
}

/* CTA ausblenden: "anklickbar ohne Text" */
.welk-startseite .welk-card-cta{
  display: none;
}

/* Kachel-Header mit Logo */
.welk-startseite .welk-card-head{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
}

.welk-startseite .welk-card-logo{
  width: auto;
  height: 38px;
  max-width: 140px;
  object-fit: contain;
  border-radius: 10px;
  /* ruhiger / entsättigt */
  filter: saturate(.35) contrast(.95) brightness(.98);
  opacity: .88;
}

/* INFOBOX */
.welk-startseite .welk-infobox{
  margin-top: 22px;
  border-radius: 18px;
  padding: 18px 18px 16px;
  background: rgba(255,255,255,.55);
  border: 1px solid rgba(170,125,40,.20);
  box-shadow: 0 10px 22px rgba(31,35,40,.08);
}

.welk-startseite .welk-infobox h3{
  margin: 0 0 10px;
  font-size: 16px;
  font-weight: 800;
}

.welk-startseite .welk-infobox ul{
  margin: 0;
  padding-left: 18px;
  color: var(--welk-ink2);
}

.welk-startseite .welk-infobox li{
  margin: 6px 0;
}

/* MOTTO */
.welk-startseite .welk-motto{
  text-align: center;
  padding: 28px 10px;
  font-style: italic;
  color: rgba(59,45,18,.70);
}

/* RESPONSIVE */
@media (max-width: 980px){
  .welk-startseite .welk-hero-grid{
    grid-template-columns: 1fr;
  }
  .welk-startseite .welk-hero-image{
    justify-content: center;
  }
  .welk-startseite .welk-cards{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px){
  .welk-startseite .welk-wrap{
    padding: 26px 16px;
  }
  .welk-startseite .welk-cards{
    grid-template-columns: 1fr;
  }
}
/* ===============================
   ENGAGEMENT LOGO GRID
   ruhig • hochwertig • magazinig
   =============================== */

.welk-logo-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 22px;
  margin-top: 24px;
}

.welk-logo-card{
  display: flex;
  align-items: center;
  justify-content: center;

  padding: 22px;
  border-radius: 18px;

  background: linear-gradient(135deg,#fffdf2,#ffeec0);
  border: 1px solid rgba(170,125,40,.20);

  box-shadow:
    0 10px 22px rgba(40,35,20,.10),
    0 2px 0 rgba(255,255,255,.65) inset;

  transition: transform .15s ease, box-shadow .15s ease;
}

.welk-logo-card:hover{
  transform: translateY(-2px);
  box-shadow:
    0 16px 34px rgba(40,35,20,.18),
    0 2px 0 rgba(255,255,255,.75) inset;
}

.welk-logo-card img{
  max-height: 60px;
  max-width: 160px;
  width: auto;
  height: auto;

  object-fit: contain;

  /* ruhig & professionell */
  filter: saturate(.35) contrast(.95) brightness(.98);
  opacity: .85;

  transition: filter .15s ease, opacity .15s ease;
}

.welk-logo-card:hover img{
  filter: saturate(.7) brightness(1.02);
  opacity: 1;
}

/* Mobile Feinschliff */
@media (max-width: 600px){
  .welk-logo-card{
    padding: 18px;
  }

  .welk-logo-card img{
    max-height: 50px;
  }
}
/* ===============================
   ENGAGEMENT MAGAZIN GRID
   =============================== */

.welk-engagement .welk-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
  margin-top: 40px;
}

.welk-engagement .welk-card {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 14px;

  padding: 26px 26px 30px;
  border-radius: 22px;

  background: linear-gradient(
    135deg,
    #fffbe6 0%,
    #fff2b8 100%
  );

  box-shadow:
    0 18px 40px rgba(120, 90, 20, 0.18),
    inset 0 0 0 1px rgba(255, 210, 120, 0.45);

  text-decoration: none;
  color: #3a3320;

  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.welk-engagement .welk-card:hover {
  transform: translateY(-4px);
  box-shadow:
    0 26px 60px rgba(120, 90, 20, 0.25);
}

/* ===============================
   LOGOS IN DEN KACHELN
   =============================== */

.welk-engagement .welk-card-logo {
  max-width: 130px;
  max-height: 70px;
  object-fit: contain;

  margin-bottom: 10px;

  filter: grayscale(60%) brightness(0.95);
  opacity: 0.85;
}

/* ===============================
   TEXT-HIERARCHIE
   =============================== */

.welk-engagement .welk-card h3 {
  font-size: 1.15rem;
  margin: 0;
}

.welk-engagement .welk-card p {
  font-size: 0.95rem;
  line-height: 1.45;
  margin: 0;
}

/* ===============================
   RESPONSIVE
   =============================== */

@media (max-width: 768px) {
  .welk-engagement .welk-cards {
    gap: 20px;
  }
}
/* ==========================================================
   WELK – MAGAZIN (ENGAGEMENT) – Theme-safe Overrides
   Ziel: exakt wie Startseite, Kacheln NEBENEINANDER, klickbar
   ========================================================== */

/* Scope sicher (falls Theme Wrapper dazwischen hängt) */
body .welk-startseite.welk-engagement{
  --welk-bg: #fff8dc;       /* weniger creme, mehr gelb */
  --welk-panel: #fff2bf;    /* sonniger Panelton */
  --welk-card-a: #fff9d6;   /* Kartenverlauf oben */
  --welk-card-b: #ffeaa6;   /* Kartenverlauf unten */
  --welk-ink: #2e2a1d;
  --welk-ink-soft: rgba(46,42,29,.72);
  --welk-line: rgba(170,130,40,.22);
  --welk-shadow: rgba(70,55,15,.14);
}

/* Grundlayout */
body .welk-startseite.welk-engagement,
body .welk-startseite.welk-engagement *{
  box-sizing: border-box;
}

body .welk-startseite.welk-engagement{
  color: var(--welk-ink);
}

/* Sections & Wrap (wie Magazin-Kästen) */
body .welk-startseite.welk-engagement .welk-section{
  padding: 34px 0 !important;
}

body .welk-startseite.welk-engagement .welk-wrap{
  max-width: 1160px !important;
  margin: 0 auto !important;
  padding: 0 22px !important;
}

body .welk-startseite.welk-engagement .welk-section > .welk-wrap{
  background: linear-gradient(180deg, rgba(255, 245, 205, .92), rgba(255, 236, 170, .82)) !important;
  border-radius: 28px !important;
  padding: 34px 30px !important;
  box-shadow: 0 18px 45px var(--welk-shadow) !important;
  border: 1px solid var(--welk-line) !important;
}

/* Headings */
body .welk-startseite.welk-engagement h1{
  font-size: clamp(34px, 4vw, 54px) !important;
  line-height: 1.05 !important;
  margin: 6px 0 14px !important;
  letter-spacing: -0.02em !important;
}

body .welk-startseite.welk-engagement h2{
  font-size: clamp(24px, 2.4vw, 34px) !important;
  line-height: 1.15 !important;
  margin: 0 0 10px !important;
  letter-spacing: -0.01em !important;
}

body .welk-startseite.welk-engagement p{
  color: var(--welk-ink-soft) !important;
  line-height: 1.6 !important;
}

body .welk-startseite.welk-engagement .welk-eyebrow{
  display: inline-block !important;
  font-weight: 700 !important;
  font-size: 14px !important;
  letter-spacing: .08em !important;
  text-transform: uppercase !important;
  color: rgba(46,42,29,.62) !important;
  margin: 0 0 10px !important;
}

body .welk-startseite.welk-engagement .welk-lead{
  max-width: 70ch !important;
  margin: 0 0 22px !important;
}

/* HERO Grid (Text links, Bild rechts) */
body .welk-startseite.welk-engagement .welk-hero .welk-hero-grid{
  display: grid !important;
  grid-template-columns: 1.15fr .85fr !important;
  gap: 26px !important;
  align-items: center !important;
}

@media (max-width: 900px){
  body .welk-startseite.welk-engagement .welk-hero .welk-hero-grid{
    grid-template-columns: 1fr !important;
  }
}

/* Hero Bild */
body .welk-startseite.welk-engagement .welk-hero-image img{
  width: 100% !important;
  height: auto !important;
  border-radius: 22px !important;
  display: block !important;
  box-shadow: 0 18px 42px rgba(70,55,15,.18) !important;
  border: 1px solid var(--welk-line) !important;
}

/* ==========================================================
   KACHELN: GRID ERZWINGEN (hier war dein Problem)
   ========================================================== */

/* Wichtig: sehr spezifisch + !important, damit Theme nicht gewinnt */
body .welk-startseite.welk-engagement .welk-cards{
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 22px !important;
  align-items: stretch !important;
  margin-top: 22px !important;
}

@media (max-width: 980px){
  body .welk-startseite.welk-engagement .welk-cards{
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}
@media (max-width: 620px){
  body .welk-startseite.welk-engagement .welk-cards{
    grid-template-columns: 1fr !important;
  }
}

/* Karte anklickbar (ganze Fläche) */
body .welk-startseite.welk-engagement a.welk-card{
  display: flex !important;
  flex-direction: column !important;
  justify-content: flex-start !important;
  text-decoration: none !important;
  color: var(--welk-ink) !important;

  padding: 22px 22px 24px !important;
  border-radius: 22px !important;

  background: linear-gradient(135deg, var(--welk-card-a) 0%, var(--welk-card-b) 100%) !important;
  border: 1px solid rgba(170,130,40,.18) !important;

  box-shadow:
    0 16px 34px rgba(70,55,15,.12),
    inset 0 0 0 1px rgba(255, 220, 130, .55) !important;

  transition: transform .2s ease, box-shadow .2s ease, filter .2s ease !important;
  min-height: 190px !important;
}

/* Hover: leichtes Leuchten */
body .welk-startseite.welk-engagement a.welk-card:hover{
  transform: translateY(-4px) !important;
  filter: brightness(1.02) !important;
  box-shadow:
    0 26px 54px rgba(70,55,15,.18),
    inset 0 0 0 1px rgba(255, 215, 120, .65) !important;
}

/* Logo ruhig + entsättigt (SVG/PNG/JPG) */
body .welk-startseite.welk-engagement .welk-card-logo{
  width: auto !important;
  max-width: 160px !important;
  height: 64px !important;
  object-fit: contain !important;
  display: block !important;

  margin: 0 0 12px !important;
  padding: 10px 12px !important;
  border-radius: 14px !important;

  background: rgba(255,255,255,.55) !important;
  border: 1px solid rgba(170,130,40,.16) !important;

  opacity: .88 !important;
  filter: saturate(.55) contrast(.98) !important;
}

/* Text in der Karte */
body .welk-startseite.welk-engagement a.welk-card h3{
  margin: 6px 0 8px !important;
  font-size: 18px !important;
  line-height: 1.2 !important;
  letter-spacing: -0.01em !important;
}

body .welk-startseite.welk-engagement a.welk-card p{
  margin: 0 !important;
  color: rgba(46,42,29,.72) !important;
}

/* Infobox */
body .welk-startseite.welk-engagement .welk-infobox{
  margin-top: 26px !important;
  padding: 20px 20px !important;
  border-radius: 22px !important;

  background: rgba(255,255,255,.55) !important;
  border: 1px solid rgba(170,130,40,.18) !important;
  box-shadow: 0 12px 30px rgba(70,55,15,.10) !important;
}

body .welk-startseite.welk-engagement .welk-infobox h3{
  margin: 0 0 10px !important;
  font-size: 18px !important;
}

body .welk-startseite.welk-engagement .welk-infobox ul{
  margin: 0 !important;
  padding-left: 18px !important;
}
body .welk-startseite.welk-engagement .welk-infobox li{
  margin: 6px 0 !important;
  color: rgba(46,42,29,.74) !important;
}

/* Motto */
body .welk-startseite.welk-engagement .welk-motto{
  text-align: center !important;
  font-style: italic !important;
  color: rgba(46,42,29,.62) !important;
  padding: 22px 0 6px !important;
}

/* Sicherheit: falls Theme Links „platt“ macht */
body .welk-startseite.welk-engagement a.welk-card:link,
body .welk-startseite.welk-engagement a.welk-card:visited{
  color: var(--welk-ink) !important;
}
/* =========================================
   GOLD-SEITE – gleiche Farben wie Startseite
   URL: /gold
========================================= */

body.page-id-0 .welk-gold,
body.page-template-default .welk-gold {
  background: linear-gradient(
    180deg,
    #fff7da 0%,
    #fff3c6 40%,
    #fffaf0 100%
  );
}

/* Falls GeneratePress den weißen Hintergrund erzwingt */
.page-id-0 .inside-article,
.page-template-default .inside-article {
  background: transparent !important;
}

/* Sektionen wie Startseite */
.welk-gold .welk-section {
  background: transparent;
  padding: 3.5rem 0;
}

/* Karten im Sonnen-Gelb */
.welk-gold .welk-card {
  background: linear-gradient(
    135deg,
    #fff8e1 0%,
    #ffe9b0 100%
  );
  border-radius: 26px;
  padding: 2rem;
  box-shadow:
    0 20px 40px rgba(180, 140, 30, 0.18),
    inset 0 0 0 1px rgba(255, 220, 120, 0.55);
  transition: all 0.25s ease;
}

/* Hover wie Startseite */
.welk-gold .welk-card:hover {
  transform: translateY(-4px);
  box-shadow:
    0 28px 60px rgba(180, 140, 30, 0.28);
}

/* Infobox warm & ruhig */
.welk-gold .welk-infobox {
  background: linear-gradient(
    135deg,
    #fffbe8 0%,
    #ffeebf 100%
  );
  border-radius: 26px;
  padding: 2.5rem;
  box-shadow:
    0 20px 45px rgba(180, 140, 30, 0.18);
}

/* Hero ruhiger Goldverlauf */
.welk-gold .welk-hero {
  background: linear-gradient(
    135deg,
    #fff4c9 0%,
    #ffe7a3 100%
  );
  border-radius: 40px;
  margin: 2rem auto 3rem;
  box-shadow:
    0 30px 70px rgba(180, 140, 30, 0.25);
}

/* Überschriften warm */
.welk-gold h1,
.welk-gold h2,
.welk-gold h3 {
  color: #5b4600;
}

/* Fließtext */
.welk-gold p,
.welk-gold li {
  color: #5c5130;
}

/* Motto */
.welk-gold .welk-motto {
  text-align: center;
  font-style: italic;
  opacity: 0.9;
  margin-top: 3rem;
}
/* ===================================
   GOLD – MOBILE FEINTUNING
   =================================== */

@media (max-width: 768px){

  /* Hintergrund etwas satter, weniger weiß */
  .welk-gold {
    background: linear-gradient(
      180deg,
      #fff1b8 0%,
      #ffe59a 45%,
      #fff6da 100%
    );
  }

  /* Hero kompakter & ruhiger */
  .welk-gold .welk-hero {
    margin: 1.2rem 0 2rem;
    border-radius: 26px;
    box-shadow:
      0 18px 40px rgba(170,130,30,.22);
  }

  /* Text besser lesbar */
  .welk-gold p,
  .welk-gold li {
    font-size: 1rem;
    line-height: 1.65;
  }

  /* Überschriften minimal kleiner */
  .welk-gold h1 {
    font-size: 2rem;
    line-height: 1.15;
  }

  .welk-gold h2 {
    font-size: 1.45rem;
  }

  /* Karten enger, nicht so flächig */
  .welk-gold .welk-card {
    padding: 1.4rem;
    border-radius: 22px;
    background: linear-gradient(
      135deg,
      #fff7cd 0%,
      #ffe19a 100%
    );
    box-shadow:
      0 14px 30px rgba(160,120,25,.22);
  }

  /* CTA-Karten etwas stärker hervorheben */
  .welk-gold .welk-card:hover {
    transform: none;
  }

  /* Infobox ruhiger */
  .welk-gold .welk-infobox {
    padding: 1.6rem;
    border-radius: 22px;
    background: linear-gradient(
      135deg,
      #fff9df 0%,
      #ffefbf 100%
    );
  }

  /* Buttons besser greifbar */
  .welk-gold .welk-btn,
  .welk-gold .welk-btn-ghost {
    width: 100%;
    text-align: center;
    padding: 0.9rem 1.1rem;
    font-size: 1rem;
  }

  /* Motto etwas luftiger */
  .welk-gold .welk-motto {
    margin-top: 2.2rem;
    font-size: 0.95rem;
  }
}
/* =========================================
   WELK – GRID FIX (Startseite + Unterseiten)
   Ziel: keine Leer-Kacheln, sauberes Grid
   ========================================= */

/* 1) Grid wirklich als Grid erzwingen */
.welk-startseite .welk-cards,
.welk-subpage .welk-sub-cards,
.welk-engagement .welk-cards{
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 18px !important;
  align-items: stretch !important;
}

/* Tablet */
@media (max-width: 980px){
  .welk-startseite .welk-cards,
  .welk-subpage .welk-sub-cards,
  .welk-engagement .welk-cards{
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

/* Handy */
@media (max-width: 640px){
  .welk-startseite .welk-cards,
  .welk-subpage .welk-sub-cards,
  .welk-engagement .welk-cards{
    grid-template-columns: 1fr !important;
    gap: 14px !important;
  }
}

/* 2) Karten als „Block“ und mit voller Höhe */
.welk-startseite .welk-card,
.welk-subpage .welk-card,
.welk-engagement .welk-card{
  display: block !important;
  width: 100% !important;
  min-height: unset !important;
  height: auto !important;
}

/* 3) WICHTIG: leere Platzhalter-Karten ausblenden
   - Variante A: wirklich komplett leer
*/
.welk-startseite .welk-cards > .welk-card:empty,
.welk-engagement .welk-cards > .welk-card:empty,
.welk-subpage .welk-sub-cards > .welk-card:empty{
  display: none !important;
}
/* =========================================
   WELK – GRID FIX v2
   -> keine schmalen Spacer-Kacheln
   -> Grid füllt automatisch (auto-fit)
   ========================================= */

/* Grid: auto-fit statt fester 3 Spalten */
.welk-startseite .welk-cards,
.welk-engagement .welk-cards,
.welk-subpage .welk-sub-cards{
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)) !important;
  gap: 18px !important;
  align-items: stretch !important;
}

/* Tablet: etwas kleinere Mindestbreite */
@media (max-width: 980px){
  .welk-startseite .welk-cards,
  .welk-engagement .welk-cards,
  .welk-subpage .welk-sub-cards{
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)) !important;
  }
}

/* Handy: eine Spalte */
@media (max-width: 640px){
  .welk-startseite .welk-cards,
  .welk-engagement .welk-cards,
  .welk-subpage .welk-sub-cards{
    grid-template-columns: 1fr !important;
    gap: 14px !important;
  }
}

/* Karten: sauber block */
.welk-startseite .welk-card,
.welk-engagement .welk-card,
.welk-subpage .welk-card{
  display: block !important;
  width: 100% !important;
  height: auto !important;
}

/* -----------------------------------------
   Spacer / Platzhalter entfernen
   (bei euch sind die NICHT :empty, sondern enthalten Deko)
   -> wenn KEIN echter Inhalt, dann weg
------------------------------------------ */

/* 1) wirklich leere */
.welk-startseite .welk-cards > .welk-card:empty,
.welk-engagement .welk-cards > .welk-card:empty,
.welk-subpage .welk-sub-cards > .welk-card:empty{
  display: none !important;
}

/* 2) “optisch leere” ohne echte Inhalte (h3/p/list/img/ol) */
.welk-startseite .welk-cards > .welk-card:not(:has(h3)):not(:has(p)):not(:has(ul)):not(:has(ol)):not(:has(img)),
.welk-engagement .welk-cards > .welk-card:not(:has(h3)):not(:has(p)):not(:has(ul)):not(:has(ol)):not(:has(img)),
.welk-subpage .welk-sub-cards > .welk-card:not(:has(h3)):not(:has(p)):not(:has(ul)):not(:has(ol)):not(:has(img)){
  display: none !important;
}

/* 3) Sicherheitsnetz: wenn nur ein einzelnes Deko-Element drin ist, ebenfalls raus */
.welk-startseite .welk-cards > .welk-card:has(*):not(:has(h3)):not(:has(p)):not(:has(ul)):not(:has(ol)):not(:has(img)){
  display: none !important;
}

/* Links in Cards sichtbar */
.welk-startseite .welk-card,
.welk-engagement .welk-card{
  text-decoration: none !important;
}
/* =========================================
   WELK – Cards/Grid Fix: leere Kacheln weg
   ========================================= */

/* 1) Grid erzwingen + dicht packen */
.welk-startseite .welk-cards,
.welk-subpage .welk-sub-cards,
.welk-subpage .welk-sub-cta {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px !important;
  align-items: stretch;
  grid-auto-flow: row dense; /* füllt Lücken */
}

/* 2) Karten sollen echte "Blocks" sein (nicht schmal/komisch) */
.welk-startseite .welk-cards > *,
.welk-subpage .welk-sub-cards > *,
.welk-subpage .welk-sub-cta > * {
  min-width: 0;
}

/* 3) LEERE Elemente ausblenden (die verursachen die "Ghost-Kacheln") */
.welk-startseite .welk-cards a:empty,
.welk-startseite .welk-cards div:empty,
.welk-startseite .welk-cards p:empty,
.welk-startseite .welk-cards figure:empty,
.welk-startseite .welk-cards .wp-block-spacer,
.welk-startseite .welk-cards .wp-block-separator:empty {
  display: none !important;
  height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
}

/* Falls "leere Kacheln" nur aus einem leeren Inneren bestehen */
.welk-startseite .welk-cards a:not([href]) {
  display: none !important;
}

/* 4) Manche Themes fügen leere Link-Wrapper ein – unsichtbar machen */
.welk-startseite .welk-cards a {
  text-decoration: none;
}
.welk-startseite .welk-cards a:where(:not(.welk-card)) {
  background: transparent !important;
  box-shadow: none !important;
  border: 0 !important;
}

/* 5) Mobile/Tablet Breakpoints */
@media (max-width: 980px) {
  .welk-startseite .welk-cards,
  .welk-subpage .welk-sub-cards,
  .welk-subpage .welk-sub-cta {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}
/* =========================
   WELK – Grid Fix + Mobile/Tablet
   (ohne :has(), WP-sicher)
   ========================= */

/* 1) Schwerpunkt-Grid: 3 / 2 / 1 Spalten */
.welk-startseite .welk-grid{
  display: grid !important;
  gap: 18px !important;
  align-items: stretch !important;
}

/* Desktop: 3 */
@media (min-width: 1024px){
  .welk-startseite .welk-grid{
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }
}

/* Tablet: 2 */
@media (min-width: 640px) and (max-width: 1023px){
  .welk-startseite .welk-grid{
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

/* Handy: 1 */
@media (max-width: 639px){
  .welk-startseite .welk-grid{
    grid-template-columns: 1fr !important;
  }
}

/* 2) „Leere“ Absätze (nur Platzhalter) ausblenden */
.welk-startseite .welk-grid > p{
  margin: 0 !important;
}
.welk-startseite .welk-grid > p:empty{
  display: none !important;
}

/* 3) Falls .welk-card im Grid steht: gleich hohe Karten */
.welk-startseite .welk-grid > .welk-card,
.welk-startseite .welk-grid > a.welk-card{
  height: 100% !important;
}

/* 4) Mini-Grid („Unsere Haltung“) 3 / 2 / 1 */
.welk-startseite .welk-mini-grid{
  display: grid !important;
  gap: 14px !important;
}

@media (min-width: 1024px){
  .welk-startseite .welk-mini-grid{
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }
}

@media (min-width: 640px) and (max-width: 1023px){
  .welk-startseite .welk-mini-grid{
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 639px){
  .welk-startseite .welk-mini-grid{
    grid-template-columns: 1fr !important;
  }
}

/* 5) Hero auf Handy untereinander */
@media (max-width: 767px){
  .welk-startseite .welk-hero-grid{
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }
  .welk-startseite .welk-hero-text h1{
    line-height: 1.08 !important;
  }
  .welk-startseite .welk-sub{
    margin-top: 8px !important;
  }
  .welk-startseite .welk-bullets{
    margin-top: 12px !important;
  }
}

/* 6) Kartenlinks ohne Unterstreichung */
.welk-startseite a.welk-card{
  text-decoration: none !important;
}
.welk-startseite a.welk-card:hover{
  text-decoration: none !important;
}
@media (max-width: 680px) {
  .welk-startseite .welk-cards,
  .welk-subpage .welk-sub-cards,
  .welk-subpage .welk-sub-cta {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }
}
/* ============================
   GOLD-SEITE – INNENABSTAND
   ============================ */

.welk-gold .welk-wrap {
  padding-left: 1.2rem;
  padding-right: 1.2rem;
}

/* Handy etwas mehr Luft */
@media (max-width: 768px) {
  .welk-gold .welk-wrap {
    padding-left: 1.4rem;
    padding-right: 1.4rem;
  }
}
/* =========================================
   /gold – Feinschliff: edler, ruhiger, CTA zentriert
   ========================================= */

/* 1) Allgemein: etwas edler (leichter Schatten, mehr Luft) */
.welk-gold .welk-box{
  border-radius: 22px;
  box-shadow: 0 10px 28px rgba(60, 50, 20, 0.10);
}
.welk-gold .welk-magazin{
  line-height: 1.7;
}

/* 2) HERO-BILD am PC kleiner/ruhiger */
.welk-gold .welk-sub-hero-media img{
  width: 100%;
  max-width: 520px;              /* <- macht es am PC kleiner */
  height: auto;
  display: block;
  margin-left: auto;             /* zentriert im Bildbereich */
  margin-right: auto;
  border-radius: 22px;
  box-shadow: 0 12px 30px rgba(60, 50, 20, 0.16);
  filter: saturate(0.92) contrast(0.98); /* ruhiger */
}

/* Optional: wenn der Bildbereich selbst zu breit ist */
@media (min-width: 900px){
  .welk-gold .welk-sub-hero{
    gap: 26px;
    align-items: center;
  }
}

/* 3) HERO-BILD auf Handy: ruhiger + nicht so dominant */
@media (max-width: 768px){
  .welk-gold .welk-sub-hero-media img{
    max-width: 92%;
    border-radius: 18px;
    box-shadow: 0 8px 18px rgba(60, 50, 20, 0.14);
    filter: saturate(0.88) contrast(0.98) brightness(1.02);
  }
}

/* 4) CTA-Karten unten zentrieren (auch wenn es 2 sind) */
.welk-gold .welk-sub-cta{
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;  /* <- zentriert */
  align-items: stretch;
}

/* CTA-Karten: gleiche Breite, edler Hover */
.welk-gold .welk-sub-cta .welk-card{
  width: min(360px, 100%);
  text-align: left;
  border-radius: 18px;
  box-shadow: 0 10px 24px rgba(60, 50, 20, 0.12);
  transition: transform .18s ease, box-shadow .18s ease;
}
.welk-gold .welk-sub-cta .welk-card:hover{
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(60, 50, 20, 0.16);
}

/* 5) Innenabstand (falls noch nötig) */
.welk-gold .welk-wrap{
  padding-left: 1.2rem;
  padding-right: 1.2rem;
}
@media (max-width: 768px){
  .welk-gold .welk-wrap{
    padding-left: 1.4rem;
    padding-right: 1.4rem;
  }
}
/* =====================================
   GOLD – HERO-BILD AM PC SCHMALER
   ===================================== */

@media (min-width: 900px){
  .welk-gold .welk-hero-image img{
    max-width: 420px;      /* ← das ist der entscheidende Wert */
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
}
.welk-gold .welk-hero-image img{
  transition: transform .3s ease;
}
.welk-gold .welk-hero-image img:hover{
  transform: scale(1.01);
}
/* =====================================
   GOLD – LUXURIÖSE TYPOGRAFIE
   ===================================== */

/* Überschrift H1 */
.welk-gold h1{
  font-weight: 600;
  letter-spacing: 0.03em;
  line-height: 1.15;
}

/* Abschnittsüberschriften */
.welk-gold h2{
  font-weight: 600;
  letter-spacing: 0.025em;
  margin-top: 2.2rem;
  margin-bottom: 1rem;
}

/* Karten-Überschriften */
.welk-gold .welk-card h3{
  font-weight: 600;
  letter-spacing: 0.02em;
}

/* Fließtext ruhiger */
.welk-gold p,
.welk-gold li{
  font-size: 1.02rem;
  line-height: 1.75;
  color: #4a3e24;
}

/* Lead-Text edler */
.welk-gold .welk-lead{
  font-size: 1.08rem;
  letter-spacing: 0.01em;
  color: #3f351d;
}

/* kleine Eyebrow-Zeile */
.welk-gold .welk-eyebrow{
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.72rem;
  opacity: 0.75;
}

/* Motto zarter */
.welk-gold .welk-motto{
  font-style: italic;
  letter-spacing: 0.04em;
  opacity: 0.8;
}
/* =====================================
   GOLD – DEZENTE GOLDWÄRME
   ===================================== */

/* Überschriften minimal goldener */
.welk-gold h1,
.welk-gold h2,
.welk-gold h3{
  color: #5a4a22; /* warmes, gedecktes Goldbraun */
}

/* feine goldene Linie unter Abschnittsüberschriften */
.welk-gold h2::after{
  content:"";
  display:block;
  width:48px;
  height:2px;
  margin-top:10px;
  background: linear-gradient(
    90deg,
    rgba(198,160,74,0.55),
    rgba(198,160,74,0.15)
  );
  border-radius:2px;
}

/* Karten leicht wärmer */
.welk-gold .welk-card{
  background: linear-gradient(
    135deg,
    #fffaf0 0%,
    #fff3da 100%
  );
  border: 1px solid rgba(198,160,74,0.25);
}

/* ganz zarter Glow beim Hover */
.welk-gold .welk-card:hover{
  box-shadow:
    0 12px 26px rgba(120,95,30,0.18),
    0 0 0 1px rgba(198,160,74,0.15);
}

/* Infobox edler Goldrahmen */
.welk-gold .welk-infobox{
  background: linear-gradient(
    135deg,
    #fff9ec 0%,
    #fff2d8 100%
  );
  border-left: 4px solid rgba(198,160,74,0.55);
}

/* Eyebrow noch etwas wärmer */
.welk-gold .welk-eyebrow{
  color: #7a6430;
}

/* dezente goldige Abschlusslinie */
.welk-gold .welk-motto{
  color:#6b5726;
}
/* ===============================
   TEAM – KACHELOPTIK & BILDER
   =============================== */

.welk-team-page .welk-team-cards{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 18px;
}

@media (max-width: 980px){
  .welk-team-page .welk-team-cards{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 640px){
  .welk-team-page .welk-team-cards{
    grid-template-columns: 1fr;
  }
}

/* Kartenoptik (dezent goldig, wie Startseite) */
.welk-team-page .welk-team-card{
  background: linear-gradient(135deg,#fff9f0 0%,#fff1dc 45%,#f6e2b8 100%);
  border: 1px solid rgba(167,118,45,0.22);
  border-radius: 18px;
  padding: 18px 18px 16px;
  box-shadow: 0 10px 22px rgba(31,35,40,0.10),
              0 2px 0 rgba(255,255,255,0.6) inset;
  transition: transform .15s ease, box-shadow .15s ease;
  height: 100%;
}

.welk-team-page .welk-team-card:hover{
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(31,35,40,0.14),
              0 2px 0 rgba(255,255,255,0.65) inset;
}

/* Bild: immer gleich groß, nicht riesig */
.welk-team-page .welk-team-photo{
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 12px;
  background: rgba(255,255,255,0.6);
}

.welk-team-page .welk-team-photo img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.02);
  transition: transform .2s ease, filter .2s ease;
}

.welk-team-page .welk-team-card:hover .welk-team-photo img{
  transform: scale(1.06);
  filter: saturate(1.05);
}

/* Typo */
.welk-team-page .welk-team-card h3{
  margin: 0 0 6px;
  font-size: 16px;
  font-weight: 750;
  color: #3b2d12;
}

.welk-team-page .welk-team-role{
  font-size: 13px;
  color: #5a4521;
  margin-bottom: 10px;
  font-weight: 600;
}

.welk-team-page .welk-team-statement{
  margin: 0;
  font-size: 14px;
  line-height: 1.45;
  color: #5a4521;
}

/* Warum-Kacheln: gleiche Grid-Logik */
.welk-team-page .welk-why-cards{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 14px;
}
@media (max-width: 980px){
  .welk-team-page .welk-why-cards{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 640px){
  .welk-team-page .welk-why-cards{ grid-template-columns: 1fr; }
}

/* Gruppenfoto: ruhig & edel */
.welk-team-page .welk-team-group img{
  width: 100%;
  max-width: 980px;
  margin: 10px auto 0;
  display: block;
  border-radius: 22px;
}
/* ===============================
   TEAM – HERO SLIDER RUHIGER
   =============================== */

.welk-team-page .welk-hero-slider{
  position: relative;
  border-radius: 26px;
  overflow: hidden;
  background: #f6f2e8;
  box-shadow: 0 18px 40px rgba(0,0,0,0.12);
}

/* Bilder beruhigen */
.welk-team-page .welk-hero-slider img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.9) contrast(0.95) brightness(1.02);
  transition: filter .3s ease, transform .4s ease;
}

/* leichtes "Atmen" beim Wechsel */
.welk-team-page .welk-hero-slider img:hover{
  filter: saturate(1) contrast(1);
  transform: scale(1.02);
}

/* mobile ruhiger – weniger Höhe */
@media (max-width: 768px){
  .welk-team-page .welk-hero-slider{
    max-height: 320px;
  }
}

/* sehr kleine Geräte */
@media (max-width: 480px){
  .welk-team-page .welk-hero-slider{
    max-height: 260px;
    border-radius: 20px;
  }
}
/* ===============================
   HEADER – flacher & professioneller
   =============================== */

/* gesamter Header */
.site-header {
  padding-top: 6px !important;
  padding-bottom: 6px !important;
}

/* Innenbereich */
.site-header .inside-header {
  padding-top: 6px !important;
  padding-bottom: 6px !important;
  min-height: unset;
}

/* Logo */
.site-logo img,
.custom-logo {
  max-height: 52px;
  width: auto;
}

/* Navigation */
.main-navigation a {
  padding-top: 10px !important;
  padding-bottom: 10px !important;
  font-weight: 600;
}

/* Abstand zwischen Menü & Header */
.main-navigation {
  margin-top: 0;
}

/* mobile */
@media (max-width: 768px) {
  .site-header {
    padding-top: 8px !important;
    padding-bottom: 8px !important;
  }

  .site-logo img {
    max-height: 46px;
  }
}
/* 
    padding: 12px 12px !important;
    border-r
		/* =========================================
   HEADER / NAV – Editorial (edel, ohne Buttons)
   GeneratePress
   ========================================= */

/* Header flach, aber "wertig" */
.site-header{
  padding: 10px 0 !important;
}
.site-header .inside-header{
  padding: 10px 0 !important;
}

/* Logo: deutlich größer, aber elegant */
.site-logo img,
.custom-logo{
  max-height: 78px !important;
  width: auto !important;
}

/* Navigation: KEINE Kästen, KEINE Rundungen */
.main-navigation .main-nav ul li a{
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  padding: 10px 10px !important;
  margin: 0 6px !important;

  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: none;      /* wirkt seriöser als ALL CAPS */
  color: #2b2416;

  position: relative;
  transition: color .18s ease, opacity .18s ease;
}

/* Hover: nur Farbe + feine Linie (magazinig) */
.main-navigation .main-nav ul li a:hover{
  color: #1f190f;
  opacity: .92;
}
.main-navigation .main-nav ul li a::after{
  content:"";
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 6px;
  height: 2px;
  border-radius: 99px;
  background: rgba(255, 205, 70, 0.0);
  transform: scaleX(.55);
  transform-origin: center;
  transition: background .18s ease, transform .18s ease;
}
.main-navigation .main-nav ul li a:hover::after{
  background: rgba(255, 205, 70, 0.65);
  transform: scaleX(1);
}

/* Aktiver Menüpunkt: Linie bleibt (sehr edel) */
.main-navigation .main-nav ul li.current-menu-item > a::after,
.main-navigation .main-nav ul li.current-menu-ancestor > a::after{
  background: rgba(255, 205, 70, 0.75);
  transform: scaleX(1);
}

/* Optional: sehr feine Trennlinie unter dem Header (Print-Feeling) */
.site-header{
  border-bottom: 1px solid rgba(120,90,20,.10);
}

/* Mobile: Logo etwas kleiner, Links weiterhin gut klickbar */
@media (max-width: 768px){
  .site-logo img,
  .custom-logo{
    max-height: 60px !important;
  }
  .main-navigation .main-nav ul li a{
    margin: 0 !important;
    padding: 12px 8px !important;
  }
  .main-navigation .main-nav ul li a::after{
    left: 8px;
    right: 8px;
    bottom: 7px;
  }
}
/* =========================================
   NAVIGATION – wärmer & edler
   ========================================= */

/* Grundfarbe: warmes Dunkelbraun (statt hartes Schwarz) */
.main-navigation .main-nav ul li a{
  color: #3a2f1b;   /* warm, hochwertig */
}

/* Hover: sanftes Gold, nicht gelb */
.main-navigation .main-nav ul li a:hover{
  color: #b8922c;
}

/* Aktive Seite: tiefer Goldton */
.main-navigation .main-nav ul li.current-menu-item > a,
.main-navigation .main-nav ul li.current-menu-ancestor > a{
  color: #8f6a18;
}
/* =========================================
   MAGAZIN-HINTERGRUND – sonnig & ruhig
   ========================================= */

.welk-startseite,
.welk-subpage{
  background:
    radial-gradient(
      1200px 600px at 20% -10%,
      rgba(255, 220, 120, 0.28),
      rgba(255,255,255,0) 60%
    ),
    radial-gradient(
      900px 520px at 80% 0%,
      rgba(255, 215, 90, 0.18),
      rgba(255,255,255,0) 55%
    ),
    linear-gradient(
      180deg,
      #ffffff 0%,
      #fffdf7 100%
    );
}
/* =========================================
   PREMIUM-KARTEN – ruhiger Schatten + Glow
   ========================================= */

/* Basis für alle Welk-Karten */
.welk-card,
.welk-infobox,
.welk-mini{
  border: 1px solid rgba(120, 90, 20, .14);
  background: rgba(255,255,255,.74);
  box-shadow: 0 14px 34px rgba(20,18,10,.10);
  border-radius: 18px;
}

/* Karten: sanfte Bewegung + edler Hover */
.welk-card{
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease, filter .18s ease;
  position: relative;
  overflow: hidden;
}

.welk-card:hover{
  transform: translateY(-2px);
  box-shadow: 0 18px 44px rgba(20,18,10,.14);
  border-color: rgba(180,130,20,.22);
  filter: saturate(1.02);
}

/* zarter Glow-Ring (Premium-Feeling, nicht grell) */
.welk-card:hover::before{
  content:"";
  position:absolute;
  inset: 10px;
  border-radius: 16px;
  box-shadow: 0 0 0 6px rgba(255, 212, 106, .14);
  pointer-events:none;
}

/* Typo in Karten etwas "knackiger" */
.welk-card h3{
  margin-top: 0;
  letter-spacing: -0.01em;
  color: #2b2416;
}

.welk-card p{
  color: #5a4a2b;
}
/* =========================================
   TYPOGRAFIE – ruhiger, hochwertiger
   ========================================= */

.welk-startseite h1,
.welk-subpage h1{
  letter-spacing: -0.02em;
  line-height: 1.06;
  color: #2b2416;
}

.welk-startseite h2,
.welk-subpage h2{
  letter-spacing: -0.015em;
  line-height: 1.15;
  color: #2b2416;
  margin-bottom: 10px;
}

.welk-startseite p,
.welk-subpage p,
.welk-startseite li,
.welk-subpage li{
  line-height: 1.65;
  color: #5a4a2b;
}

.welk-lead{
  font-size: 1.06rem;
  color: #3a2f1b;
}
/* =========================================
   MAGAZIN-ECKE – dezent & edel
   ========================================= */

.welk-card{
  position: relative;
  overflow: hidden;
}

/* kleine, warme Ecke oben rechts */
.welk-card::after{
  content:"";
  position:absolute;
  top:0;
  right:0;
  width: 54px;
  height: 54px;
  background:
    radial-gradient(circle at 30% 30%,
      rgba(255, 212, 106, .40),
      rgba(255,255,255,0) 70%);
  clip-path: polygon(100% 0, 0 0, 100% 100%);
  opacity: .70;
  pointer-events:none;
}

/* Kacheln (mini) ebenfalls ganz sanft */
.welk-mini{
  position: relative;
  overflow: hidden;
}
.welk-mini::after{
  content:"";
  position:absolute;
  top:0;
  right:0;
  width: 38px;
  height: 38px;
  background:
    radial-gradient(circle at 30% 30%,
      rgba(255, 212, 106, .28),
      rgba(255,255,255,0) 70%);
  clip-path: polygon(100% 0, 0 0, 100% 100%);
  opacity: .65;
  pointer-events:none;
}
/* =========================================
   ABSTÄNDE – luftiger, aber kontrolliert
   ========================================= */

/* Wrap: etwas mehr Luft, vor allem oben */
.welk-wrap{
  max-width: 1120px;
  margin: 0 auto;
  padding: 52px 22px;
}

/* Überschriften bekommen etwas mehr Raum */
.welk-startseite h2,
.welk-subpage h2{
  margin-top: 0;
  margin-bottom: 12px;
}

/* Standard-Abschnittsabstand */
.welk-section + .welk-section{
  margin-top: 26px;
}

/* Grids etwas großzügiger */
.welk-cards{
  gap: 18px;
}
.welk-mini-grid{
  gap: 14px;
}

/* Mobil: kompakter, aber nicht gequetscht */
@media (max-width: 640px){
  .welk-wrap{ padding: 36px 14px; }
  .welk-section + .welk-section{ margin-top: 18px; }
}
/* =========================================
   AKZENTFARBEN – einheitliches Gold-System
   ========================================= */

:root{
  /* Hauptgold (freundlich, nicht grell) */
  --welk-gold: #FFD46A;
  /* Lichtgold (für Flächen/Verläufe) */
  --welk-gold-soft: rgba(255, 212, 106, .18);
  /* Liniengold (fein) */
  --welk-gold-line: rgba(180, 130, 20, .18);

  /* Textfarben (warm & hochwertig) */
  --welk-ink: #2b2416;
  --welk-ink-soft: #5a4a2b;

  /* Weißkarte (Material-Look) */
  --welk-card-bg: rgba(255,255,255,.74);
}

/* Karten/Boxen bekommen jetzt exakt gleiche Linienfarbe */
.welk-card,
.welk-infobox,
.welk-mini{
  border-color: var(--welk-gold-line);
  background: var(--welk-card-bg);
}

/* Hover-Farbe harmonisch einheitlich */
.welk-card:hover{
  border-color: rgba(180,130,20,.26);
}

/* Glow einheitlich */
.welk-card:hover::before{
  box-shadow: 0 0 0 6px var(--welk-gold-soft);
}

/* Corner-Akzent nutzt das gleiche Gold */
.welk-card::after{
  background: radial-gradient(circle at 30% 30%,
    rgba(255, 212, 106, .40),
    rgba(255,255,255,0) 70%);
}
.welk-mini::after{
  background: radial-gradient(circle at 30% 30%,
    rgba(255, 212, 106, .28),
    rgba(255,255,255,0) 70%);
}

/* Typo überall gleich warm */
.welk-startseite h1,
.welk-startseite h2,
.welk-subpage h1,
.welk-subpage h2{
  color: var(--welk-ink);
}
.welk-startseite p,
.welk-subpage p,
.welk-startseite li,
.welk-subpage li{
  color: var(--welk-ink-soft);
}

/* Links (magazinig, nicht knallig) */
.welk-startseite a,
.welk-subpage a{
  color: #8f6a18;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}
.welk-startseite a:hover,
.welk-subpage a:hover{
  color: #b8922c;
}
/* =========================================
   MAGAZIN-TRENNER – weich & hochwertig
   ========================================= */

/* ersetzt harte Divider */
.welk-divider{
  height: 1px;
  margin: 36px 0;
  background: linear-gradient(
    90deg,
    rgba(255,255,255,0),
    rgba(180,130,20,.28),
    rgba(255,255,255,0)
  );
  border: none;
}

/* sanfter Lichtabstand zwischen Boxen */
.welk-box + .welk-box{
  padding-top: 6px;
}

/* Alternativer Trenner für große Übergänge */
.welk-section + .welk-section{
  position: relative;
}

.welk-section + .welk-section::before{
  content:"";
  display:block;
  width: 100%;
  height: 1px;
  margin: 28px 0 24px;
  background: linear-gradient(
    90deg,
    rgba(255,255,255,0),
    rgba(255, 212, 106, .35),
    rgba(255,255,255,0)
  );
}
/* =========================================
   TEAMSEITE – Magazin-Look + Karten zurück
   (scoped über URL /team/)
   ========================================= */

/* Scope nur auf Teamseite */
body.page-id-0 .welk-subpage {} /* Platzhalter falls du später per ID arbeiten willst */
body[class*="page"] .welk-subpage{
  /* nichts global kaputt machen */
}

/* Sicherer Scope über Body-Klasse mit Slug (WordPress setzt meist page-id + page-template + post-name)
   -> Wir greifen auf URL über: body[class*="team"] ist robust genug für /team */
body[class*="team"] .welk-subpage{
  background:
    radial-gradient(1200px 600px at 15% -5%, rgba(255, 220, 120, .26), rgba(255,255,255,0) 60%),
    radial-gradient(900px 520px at 85% 10%, rgba(255, 215, 90, .16), rgba(255,255,255,0) 55%),
    linear-gradient(180deg, #ffffff 0%, #fffdf7 100%);
  padding: 18px 0 44px;
}

/* Team-Abschnitte in „Box“-Optik, aber weich */
body[class*="team"] .welk-subpage .welk-box{
  background: rgba(255,255,255,.55);
  border: 1px solid rgba(120, 90, 20, .12);
  border-radius: 22px;
  box-shadow: 0 18px 50px rgba(0,0,0,.08);
  overflow: hidden;
  margin: 0 auto 20px;
  padding: 22px 22px;
  max-width: 1120px;
}

/* Divider auf Teamseite: weich */
body[class*="team"] .welk-divider{
  height: 1px;
  margin: 26px 0 0;
  background: linear-gradient(90deg, rgba(255,255,255,0), rgba(180,130,20,.22), rgba(255,255,255,0));
  border: 0;
}

/* =========================
   HERO + SLIDER ruhiger
   ========================= */

/* Slider-Container: ruhiger Rahmen */
body[class*="team"] .welk-hero-slider{
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(120,90,20,.12);
  background: rgba(255,255,255,.45);
  box-shadow: 0 14px 34px rgba(20,18,10,.10);
}

/* Bilder im Slider: etwas weicher/ruhiger */
body[class*="team"] .welk-hero-slider img{
  width: 100%;
  height: 320px;              /* Desktop ruhiger, nicht riesig */
  object-fit: cover;
  display: none;              /* falls Slider per JS rotiert und nur eines sichtbar sein soll */
  filter: saturate(.92) contrast(.98);
}
body[class*="team"] .welk-hero-slider img:first-child{
  display: block;
}

/* Mobil: Slider nicht zu hoch */
@media (max-width: 768px){
  body[class*="team"] .welk-hero-slider img{
    height: 220px;
  }
}

/* =========================
   TEAM-KARTEN: Optik sicher wiederherstellen
   ========================= */

/* Grid: 3 pro Reihe */
body[class*="team"] .welk-team-grid{
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 16px !important;
  align-items: stretch;
  margin-top: 14px;
}

/* 2 Spalten */
@media (max-width: 980px){
  body[class*="team"] .welk-team-grid{
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}
/* 1 Spalte */
@media (max-width: 640px){
  body[class*="team"] .welk-team-grid{
    grid-template-columns: 1fr !important;
  }
}

/* Karte: wieder „Kachel“ */
body[class*="team"] .welk-team-card{
  background: rgba(255,255,255,.74) !important;
  border: 1px solid rgba(180,130,20,.18) !important;
  border-radius: 18px !important;
  box-shadow: 0 14px 34px rgba(20,18,10,.10) !important;
  padding: 16px 16px 14px !important;
  display: flex !important;
  flex-direction: column !important;
  height: 100% !important;
  position: relative;
  overflow: hidden;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

/* Magazin-Ecke dezent */
body[class*="team"] .welk-team-card::after{
  content:"";
  position:absolute;
  top:0; right:0;
  width: 54px; height: 54px;
  background: radial-gradient(circle at 30% 30%, rgba(255, 212, 106, .35), rgba(255,255,255,0) 70%);
  clip-path: polygon(100% 0, 0 0, 100% 100%);
  opacity: .70;
  pointer-events:none;
}

/* Hover premium */
body[class*="team"] .welk-team-card:hover{
  transform: translateY(-2px);
  box-shadow: 0 18px 44px rgba(20,18,10,.14) !important;
  border-color: rgba(180,130,20,.26) !important;
}

/* Foto: gleiche Größe, ruhig */
body[class*="team"] .welk-team-photo{
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(120,90,20,.12);
  background: rgba(255,255,255,.55);
  box-shadow: 0 10px 22px rgba(0,0,0,.06);
  margin-bottom: 12px;
}

body[class*="team"] .welk-team-photo img{
  width: 100%;
  height: 220px;      /* Einheitliche Kartenhöhe */
  object-fit: cover;
  display: block;
  filter: saturate(.95) contrast(1.02);
}
@media (max-width: 640px){
  body[class*="team"] .welk-team-photo img{ height: 200px; }
}

/* Typo in Karten */
body[class*="team"] .welk-team-card h3{
  margin: 0 0 6px !important;
  letter-spacing: -0.01em;
  color: #2b2416;
}
body[class*="team"] .welk-team-role{
  font-weight: 650;
  color: #5a4a2b;
  opacity: .92;
  margin-bottom: 10px;
}
body[class*="team"] .welk-team-statement{
  margin-top: auto;
  color: #5a4a2b;
  line-height: 1.55;
  opacity: .92;
}

/* "Warum" Karten ebenfalls sauber */
body[class*="team"] .welk-why-grid{
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 16px !important;
  margin-top: 14px;
}
@media (max-width: 980px){
  body[class*="team"] .welk-why-grid{ grid-template-columns: repeat(2, minmax(0, 1fr)) !important; }
}
@media (max-width: 640px){
  body[class*="team"] .welk-why-grid{ grid-template-columns: 1fr !important; }
}

/* Gruppenfoto: edel eingebettet */
body[class*="team"] .welk-team-group img{
  width: 100%;
  height: auto;
  border-radius: 18px;
  border: 1px solid rgba(120,90,20,.12);
  box-shadow: 0 18px 44px rgba(20,18,10,.12);
  display:block;
}
/* =====================================================
   TEAMSEITE /team – Magazin-Stil
   sicher & ohne Layout-Verlust
   ===================================================== */

/* =========================
   SEITENHINTERGRUND
   ========================= */
body.page-team .welk-subpage{
  background:
    radial-gradient(1200px 600px at 20% -10%, rgba(255,220,120,.26), rgba(255,255,255,0) 60%),
    radial-gradient(900px 520px at 80% 0%, rgba(255,215,90,.16), rgba(255,255,255,0) 55%),
    linear-gradient(180deg, #ffffff 0%, #fffdf7 100%);
  padding: 18px 0 50px;
}

/* =========================
   BOXEN (Magazinflächen)
   ========================= */
body.page-team .welk-box{
  background: rgba(255,255,255,.55);
  border: 1px solid rgba(120,90,20,.12);
  border-radius: 22px;
  box-shadow: 0 18px 50px rgba(0,0,0,.08);
  margin: 0 auto 22px;
  padding: 22px 22px;
  max-width: 1120px;
}

/* =========================
   HERO SLIDER ruhiger
   ========================= */
body.page-team .welk-hero-slider{
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(120,90,20,.12);
  background: rgba(255,255,255,.45);
  box-shadow: 0 14px 34px rgba(20,18,10,.10);
}

body.page-team .welk-hero-slider img{
  width: 100%;
  height: 320px;
  object-fit: cover;
  filter: saturate(.92) contrast(.98);
}

@media (max-width: 768px){
  body.page-team .welk-hero-slider img{
    height: 220px;
  }
}

/* =========================
   TEAM-KARTEN (wichtig!)
   ========================= */
body.page-team .welk-team-grid{
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0,1fr)) !important;
  gap: 16px !important;
  align-items: stretch;
}

@media (max-width: 980px){
  body.page-team .welk-team-grid{
    grid-template-columns: repeat(2, minmax(0,1fr)) !important;
  }
}
@media (max-width: 640px){
  body.page-team .welk-team-grid{
    grid-template-columns: 1fr !important;
  }
}

/* Kartenoptik */
body.page-team .welk-team-card{
  background: rgba(255,255,255,.75) !important;
  border: 1px solid rgba(180,130,20,.18) !important;
  border-radius: 18px !important;
  box-shadow: 0 14px 34px rgba(20,18,10,.10) !important;
  padding: 16px !important;
  display: flex !important;
  flex-direction: column !important;
  height: 100% !important;
  position: relative;
  overflow: hidden;
  transition: transform .18s ease, box-shadow .18s ease;
}

/* Hover */
body.page-team .welk-team-card:hover{
  transform: translateY(-2px);
  box-shadow: 0 18px 44px rgba(20,18,10,.14) !important;
}

/* Magazin-Ecke */
body.page-team .welk-team-card::after{
  content:"";
  position:absolute;
  top:0; right:0;
  width: 52px; height: 52px;
  background: radial-gradient(circle at 30% 30%, rgba(255,212,106,.35), rgba(255,255,255,0) 70%);
  clip-path: polygon(100% 0, 0 0, 100% 100%);
  opacity:.7;
}

/* Fotos einheitlich */
body.page-team .welk-team-photo{
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(120,90,20,.12);
  margin-bottom: 12px;
}

body.page-team .welk-team-photo img{
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

@media (max-width: 640px){
  body.page-team .welk-team-photo img{
    height: 200px;
  }
}

/* Typo */
body.page-team .welk-team-card h3{
  margin: 0 0 6px;
  color: #2b2416;
}
body.page-team .welk-team-role{
  font-weight: 650;
  color: #5a4a2b;
  margin-bottom: 10px;
}
body.page-team .welk-team-statement{
  margin-top: auto;
  color: #5a4a2b;
  line-height: 1.55;
}

/* Gruppenfoto */
body.page-team .welk-team-group img{
  width: 100%;
  border-radius: 18px;
  border: 1px solid rgba(120,90,20,.12);
  box-shadow: 0 18px 44px rgba(20,18,10,.12);
}
/* =====================================================
   TEAMSEITE – sichtbares warmes Gold
   ===================================================== */

/* sanfter Goldschein im Hintergrund */
body.page-team .welk-subpage{
  background:
    radial-gradient(900px 480px at 20% -5%, rgba(255, 214, 106, .38), rgba(255,255,255,0) 60%),
    radial-gradient(800px 420px at 85% 5%, rgba(255, 214, 106, .26), rgba(255,255,255,0) 55%),
    linear-gradient(180deg, #ffffff 0%, #fffbea 100%);
}

/* Karten leicht wärmer hinterlegt */
body.page-team .welk-team-card{
  background:
    linear-gradient(
      180deg,
      rgba(255,255,255,.85),
      rgba(255,243,210,.75)
    ) !important;
}

/* dezenter goldener Rahmen */
body.page-team .welk-team-card{
  border-color: rgba(200,150,40,.28) !important;
}

/* Hover: warmer Lichtreflex */
body.page-team .welk-team-card:hover{
  box-shadow:
    0 18px 44px rgba(20,18,10,.14),
    0 0 0 6px rgba(255, 214, 106, .22) !important;
}

/* Magazin-Ecke sichtbar goldiger */
body.page-team .welk-team-card::after{
  background:
    radial-gradient(circle at 30% 30%,
      rgba(255, 214, 106, .55),
      rgba(255,255,255,0) 70%);
  opacity: .85;
}

/* Überschriften minimal wärmer */
body.page-team h2,
body.page-team h3{
  color: #3a2b12;
}
/* =========================================
   TEAM-SLIDER – ruhiger Fade
   ========================================= */

body.page-team .welk-hero-slider{
  position: relative;
}

body.page-team .welk-hero-slider img{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 320px;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.4s ease;
}
/* =========================================
   TEAM-SLIDER – ruhiger Fade (stabil)
   ========================================= */

body.page-team .welk-hero-slider{
  position: relative;
  height: 320px;
  overflow: hidden;
  border-radius: 18px;
}

body.page-team .welk-hero-slider img{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  opacity: 0;
  transition: opacity 1.4s ease;
}

/* aktives Bild */
body.page-team .welk-hero-slider img.is-active{
  opacity: 1;
  z-index: 2;
}
/* =========================================
   /team – sicherer Scope über .welk-teampage
   Hintergrund + Karten + Portraitfotos
   ========================================= */

/* 1) Sonniger Magazin-Hintergrund nur für Team */
.welk-subpage.welk-teampage{
  background:
    radial-gradient(1100px 560px at 18% -8%, rgba(255, 214, 106, .34), rgba(255,255,255,0) 62%),
    radial-gradient(900px 520px at 85% 6%, rgba(255, 215, 90, .22), rgba(255,255,255,0) 58%),
    linear-gradient(180deg, #ffffff 0%, #fffbe8 100%);
  padding: 18px 0 50px;
}

/* 2) Boxen auf Teamseite wie Magazinflächen */
.welk-subpage.welk-teampage .welk-box{
  background: rgba(255,255,255,.56);
  border: 1px solid rgba(120,90,20,.12);
  border-radius: 22px;
  box-shadow: 0 18px 50px rgba(0,0,0,.08);
  margin: 0 auto 22px;
  padding: 22px;
  max-width: 1120px;
}

/* 3) Team-Karten: premium, aber ruhig */
.welk-subpage.welk-teampage .welk-team-card{
  background: rgba(255,255,255,.76) !important;
  border: 1px solid rgba(180,130,20,.18) !important;
  border-radius: 20px !important;
  box-shadow: 0 14px 34px rgba(20,18,10,.10) !important;
  padding: 18px !important;
  overflow: hidden;
}

/* 4) WICHTIG: Fotos NICHT quadratisch -> Portrait */
.welk-subpage.welk-teampage .welk-team-photo{
  border-radius: 18px !important;
  overflow: hidden !important;
  border: 1px solid rgba(120,90,20,.12);
  background: rgba(255,255,255,.55);
}

/* Hier killen wir jede feste Höhe, die Quadrate macht */
.welk-subpage.welk-teampage .welk-team-photo img{
  width: 100% !important;
  height: auto !important;            /* nimmt Quadrate raus */
  min-height: 0 !important;
  max-height: none !important;

  aspect-ratio: 2 / 3 !important;     /* Hochformat */
  object-fit: cover !important;
  object-position: center top !important; /* Köpfe bleiben drin */

  display: block !important;
}

/* Mobil etwas weniger hoch */
@media (max-width: 640px){
  .welk-subpage.welk-teampage .welk-team-photo img{
    aspect-ratio: 3 / 4 !important;
  }
}

/* 5) (Optional) weicher Trenner */
.welk-subpage.welk-teampage .welk-divider{
  height: 1px;
  margin: 26px 0 0;
  background: linear-gradient(90deg, rgba(255,255,255,0), rgba(180,130,20,.22), rgba(255,255,255,0));
  border: 0;
}
/* =========================================
   /team – Portrait-Fotos stabil (Container steuert Format)
   ========================================= */

/* Der Foto-Container bestimmt das Hochformat */
.welk-subpage.welk-teampage .welk-team-photo{
  aspect-ratio: 2 / 3 !important;     /* echtes Hochformat */
  height: auto !important;
  border-radius: 18px !important;
  overflow: hidden !important;
}

/* Das Bild füllt den Container – jetzt klappt Portrait garantiert */
.welk-subpage.welk-teampage .welk-team-photo img{
  width: 100% !important;
  height: 100% !important;           /* wichtig! */
  max-height: none !important;
  object-fit: cover !important;
  object-position: 50% 12% !important; /* Köpfe drin, etwas nach oben fokussiert */
  display: block !important;

  /* WICHTIG: aspect-ratio am Bild ausschalten, sonst „kämpft“ es */
  aspect-ratio: auto !important;
}

/* Mobil etwas weniger hoch */
@media (max-width: 640px){
  .welk-subpage.welk-teampage .welk-team-photo{
    aspect-ratio: 3 / 4 !important;
  }
  .welk-subpage.welk-teampage .welk-team-photo img{
    object-position: 50% 10% !important;
  }
}
/* =====================================================
   TEAMSEITE – sonniger Magazin-Look (ohne grell)
   ===================================================== */

/* 1) Seitenhintergrund: warmes Sonnenlicht */
body.page-team .welk-subpage{
  background:
    radial-gradient(1100px 620px at 18% -10%, rgba(255, 214, 106, .38), rgba(255,255,255,0) 62%),
    radial-gradient(900px 520px at 85% 8%, rgba(255, 215, 90, .24), rgba(255,255,255,0) 58%),
    linear-gradient(180deg, #ffffff 0%, #fff9e6 100%) !important;
}

/* 2) Box-Flächen: weniger weiß, mehr warmes Papier */
body.page-team .welk-box{
  background: rgba(255, 252, 236, .74) !important;
  border-color: rgba(190, 140, 25, .16) !important;
}

/* 3) Karten: leichte goldene Tiefe */
body.page-team .welk-team-card{
  background: linear-gradient(180deg,
    rgba(255,255,255,.88),
    rgba(255,244,214,.82)
  ) !important;

  border-color: rgba(200,150,40,.24) !important;

  box-shadow:
    0 18px 48px rgba(20,18,10,.10),
    0 0 0 1px rgba(255, 214, 106, .10) inset !important;
}

/* 4) Hover: warmer Lichtreflex (sehr dezent) */
body.page-team .welk-team-card:hover{
  box-shadow:
    0 22px 60px rgba(20,18,10,.14),
    0 0 0 6px rgba(255, 214, 106, .18) !important;
}

/* 5) Foto-Rahmen: ein bisschen Goldkante */
body.page-team .welk-team-photo{
  border-color: rgba(200,150,40,.22) !important;
  box-shadow: 0 12px 26px rgba(20,18,10,.08) !important;
}

/* 6) Typo minimal wärmer */
body.page-team .welk-subpage h1,
body.page-team .welk-subpage h2,
body.page-team .welk-subpage h3{
  color: #362815;
}

body.page-team .welk-team-role,
body.page-team .welk-team-statement{
  color: #5a4521;
}

/* 7) Motto: wie ein kleines Print-Finish */
body.page-team .welk-motto{
  opacity: .92;
}
/* =====================================================
   TEAMSEITE – Sonniger Magazin-Look (sicherer Scope)
   Greift überall dort, wo .welk-team-grid existiert
   ===================================================== */

/* 1) Hintergrund der gesamten Seite (über den Eltern-Wrapper) */
.welk-team-grid{
  /* nur als Anker – nicht sichtbar */
}

.welk-team-grid{
  /* nichts */
}

/* Ziel: das umschließende .welk-subpage auf Teamseite treffen */
.welk-team-grid{
  /* wir nutzen :has, wenn vorhanden; fallback darunter */
}

/* Moderne Browser (Safari 15.4+, Chrome, Edge): */
.welk-subpage:has(.welk-team-grid){
  background:
    radial-gradient(1100px 620px at 18% -10%, rgba(255, 214, 106, .40), rgba(255,255,255,0) 62%),
    radial-gradient(900px 520px at 85% 8%, rgba(255, 215, 90, .26), rgba(255,255,255,0) 58%),
    linear-gradient(180deg, #ffffff 0%, #fff9e6 100%) !important;
  padding: 18px 0 52px !important;
}

/* Fallback (falls :has nicht greift): wir färben die Boxen/Karten direkt */
.welk-subpage .welk-team-grid{
  /* Anker */
}

/* 2) Box-Flächen auf Teamseite warmes Papier */
.welk-team-grid{
  /* wir treffen die Boxen über gemeinsame Eltern: */
}
.welk-team-grid{
  /* nichts */
}

.welk-team-grid{
  /* --- */
}

/* Boxen: wenn eine Box irgendwo in der Nähe vom Teamgrid ist */
.welk-team-grid,
.welk-team-grid *{
  /* keine globalen Änderungen */
}

/* Konkret: Jede .welk-box, die auf der Teamseite vorkommt */
.welk-team-grid{
  /* Anker */
}
.welk-team-grid{
  /* --- */
}

.welk-subpage .welk-box{
  /* NICHT global anfassen */
}

/* Nur Boxen, die auf derselben Seite wie .welk-team-grid sind (fallback ohne :has):
   Wir stylen gezielt die Team-Karten & typische Bereiche sonniger */
.welk-team-grid .welk-team-card{
  background: linear-gradient(180deg,
    rgba(255,255,255,.88),
    rgba(255,244,214,.84)
  ) !important;
  border: 1px solid rgba(200,150,40,.24) !important;
  border-radius: 20px !important;
  box-shadow:
    0 18px 48px rgba(20,18,10,.10),
    0 0 0 1px rgba(255, 214, 106, .10) inset !important;
}

.welk-team-grid .welk-team-card:hover{
  box-shadow:
    0 22px 60px rgba(20,18,10,.14),
    0 0 0 6px rgba(255, 214, 106, .18) !important;
}

/* Foto-Rahmen: warm/gold */
.welk-team-grid .welk-team-photo{
  border: 1px solid rgba(200,150,40,.22) !important;
  box-shadow: 0 12px 26px rgba(20,18,10,.08) !important;
}

/* Typo wärmer im Team-Bereich */
.welk-team-grid h3{
  color: #362815 !important;
}
.welk-team-grid .welk-team-role,
.welk-team-grid .welk-team-statement{
  color: #5a4521 !important;
}

/* 3) Optional: Team-Bereich bekommt eine sanfte Lichtfläche dahinter */
.welk-team-grid{
  position: relative;
}
.welk-team-grid::before{
  content:"";
  position:absolute;
  inset: -18px -12px;
  background:
    radial-gradient(700px 360px at 18% 0%, rgba(255, 214, 106, .18), rgba(255,255,255,0) 60%),
    radial-gradient(680px 360px at 82% 10%, rgba(255, 215, 90, .12), rgba(255,255,255,0) 58%);
  pointer-events:none;
  z-index: 0;
}
.welk-team-grid > *{
  position: relative;
  z-index: 1;
}
/* TEAM – Portrait fix (stabil, ohne abgeschnittene Köpfe) */
.welk-teampage .welk-team-photo{
  width: 100% !important;
  height: auto !important;          /* killt quer erzwungene Höhen */
  aspect-ratio: 3 / 4 !important;   /* Portrait */
  border-radius: 18px !important;
  overflow: hidden !important;
}

/* Bild füllt die Portrait-Box, Kopf bleibt drin */
.welk-teampage .welk-team-photo img{
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center top !important;  /* maximal kopfsicher */
  display: block !important;
}

/* Wenn irgendein altes CSS das Bild auf eine feste Höhe zwingt: */
.welk-teampage .welk-team-photo img{
  max-height: none !important;
  min-height: 0 !important;
}
/* =====================================================
   TEAM – Portrait-Fix (hochformat + kopfsicher)
   ===================================================== */

/* Teamseite eindeutig markieren */
.welk-teampage .welk-team-photo{
  width: 100% !important;
  height: auto !important;
  aspect-ratio: 3 / 4 !important;   /* echtes Hochformat */
  overflow: hidden !important;
  border-radius: 18px !important;
  background: #fff !important;
}

/* Bild korrekt einpassen */
.welk-teampage .welk-team-photo img{
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center top !important; /* Kopf bleibt sichtbar */
  display: block !important;
}

/* Theme-Zwangshöhen neutralisieren */
.welk-teampage .welk-team-photo img{
  max-height: none !important;
  min-height: 0 !important;
}

/* Mobile: minimal mehr Höhe für Gesichter */
@media (max-width: 680px){
  .welk-teampage .welk-team-photo{
    aspect-ratio: 4 / 5 !important;
  }
}
/* =========================================
   TEAM – edle Fotoveredelung
   ========================================= */

/* Grundlook: ruhiger, hochwertiger */
.welk-teampage .welk-team-photo img{
  filter:
    contrast(1.05)
    saturate(0.92)
    brightness(1.03);
  transition: filter .35s ease, transform .35s ease;
}

/* Sanfte Lichtkante im Bildrahmen */
.welk-teampage .welk-team-photo{
  box-shadow:
    0 14px 34px rgba(0,0,0,.10),
    0 0 0 1px rgba(255, 210, 90, .18) inset;
  background: linear-gradient(180deg, #fffdf5, #ffffff);
}

/* Hover: ganz dezentes „Licht-an“-Gefühl */
.welk-teampage .welk-team-card:hover .welk-team-photo img{
  filter:
    contrast(1.08)
    saturate(0.96)
    brightness(1.05);
  transform: scale(1.015);
}

/* Kein Zoom auf Mobile */
@media (max-width: 768px){
  .welk-teampage .welk-team-card:hover .welk-team-photo img{
    transform: none;
  }
}
/* =========================================
   TEAM – goldiger Hintergrund (edel & ruhig)
   ========================================= */

.welk-teampage{
  background:
    radial-gradient(900px 520px at 20% 0%,
      rgba(255, 214, 120, .35),
      rgba(255,255,255,0) 60%),
    radial-gradient(800px 480px at 85% 20%,
      rgba(255, 225, 145, .28),
      rgba(255,255,255,0) 58%),
    linear-gradient(180deg,
      #fffdf6 0%,
      #fff6dd 100%) !important;
}

/* Boxen wie warmes Papier */
.welk-teampage .welk-box{
  background:
    linear-gradient(180deg,
      rgba(255,255,255,.88),
      rgba(255,250,235,.86)) !important;

  border: 1px solid rgba(190,140,40,.18) !important;
  border-radius: 26px;
  box-shadow:
    0 18px 48px rgba(20,18,10,.10),
    0 0 0 1px rgba(255,215,120,.10) inset;
}

/* Karten minimal heller, heben sich ab */
.welk-teampage .welk-team-card{
  background:
    linear-gradient(180deg,
      rgba(255,255,255,.95),
      rgba(255,245,215,.88)) !important;
}

/* dezente Goldlinie als Magazin-Finish */
.welk-teampage .welk-divider{
  background: linear-gradient(
    90deg,
    transparent,
    rgba(220,170,60,.45),
    transparent
  );
  height: 1px;
  border: none;
}

/* Typografie minimal wärmer */
.welk-teampage h1,
.welk-teampage h2,
.welk-teampage h3{
  color: #3b2a12;
}

.welk-teampage p{
  color: #5a4521;
}
/* =========================================
   TEAM – intensiverer Goldton (warm & edel)
   ========================================= */

.welk-teampage{
  background:
    radial-gradient(1000px 600px at 18% -5%,
      rgba(255, 200, 85, .48),
      rgba(255,255,255,0) 62%),
    radial-gradient(900px 520px at 82% 18%,
      rgba(255, 215, 120, .36),
      rgba(255,255,255,0) 58%),
    linear-gradient(180deg,
      #fff9e3 0%,
      #ffefc4 100%) !important;
}

/* Boxen stärker abgesetzt */
.welk-teampage .welk-box{
  background:
    linear-gradient(180deg,
      rgba(255,255,255,.92),
      rgba(255,245,210,.90)) !important;

  border-color: rgba(200,150,45,.28) !important;
}

/* Karten leicht strahlend */
.welk-teampage .welk-team-card{
  box-shadow:
    0 18px 46px rgba(25,20,10,.14),
    0 0 0 1px rgba(255, 205, 90, .22) inset !important;
}
/* ===============================
   TEAM – mehr Luft in den Karten
   =============================== */

.welk-team-card h3 {
  margin-bottom: 0.35rem;
}

.welk-team-role {
  margin-bottom: 0.8rem;
  font-weight: 600;
  color: #7a6a3a;
}

.welk-team-statement {
  margin-top: 0.4rem;
  line-height: 1.55;
  font-style: italic;
}

/* etwas mehr Innenabstand für Premium-Gefühl */
.welk-team-card {
  padding: 1.6rem 1.6rem 1.8rem;
}
/* ===============================
   TEAM – Typografie feinjustieren
   =============================== */

/* Name deutlich, ruhig */
.welk-team-card h3 {
  font-weight: 700;
}

/* Aufgabenbereich dezent & kursiv */
.welk-team-role {
  font-style: italic;
  font-weight: 400;
  color: #6f6a55;
}
/* =================================
   TEAM – Magazin-Typografie Final
   ================================= */

/* Name: größer, ruhig, präsent */
.welk-team-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.15em;
  letter-spacing: 0.2px;
}

/* Aufgabenbereich: dezent, kursiv */
.welk-team-role {
  font-style: italic;
  font-size: 0.95rem;
  color: #6f6a55;
  margin-bottom: 0.6em;
}

/* Beschreibung: magazinig */
.welk-team-statement {
  font-size: 1.02rem;
  line-height: 1.65;
  color: #4b473b;
  margin-top: 0.3em;
  font-style: normal;
}

/* etwas mehr Luft in der Karte */
.welk-team-card {
  padding-bottom: 1.6rem;
}
/* Abstand zwischen Foto und Name */
.welk-team-photo {
  margin-bottom: 0.8rem;
}
/* TEAM – Portraits korrekt (Hochformat, keine abgeschnittenen Köpfe) */
body.page-team .welk-team-photo {
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: 18px;
  background: #f6f3ec;
}

body.page-team .welk-team-photo img {
  width: 100%;
  height: 100%;
  object-fit: contain; /* WICHTIG */
  background: #f6f3ec;
}
/* =====================================
   TEAM – PORTRAIT FIX (FINAL)
   ===================================== */

body.page-team .welk-team-photo {
  position: relative;
  width: 100%;
  height: 380px;
  overflow: hidden;
  border-radius: 18px;
  background: #f7f3e6;
}

body.page-team .welk-team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top !important;
  display: block;
}
/* =====================================
   TEAM – Portrait FINAL (erzwingt Hochformat)
   ===================================== */

.welk-teampage .welk-team-photo{
  width: 100% !important;
  aspect-ratio: 3 / 4 !important;
  overflow: hidden !important;
  border-radius: 18px !important;
  margin-bottom: .8rem !important;
  background: rgba(250,245,232,.9) !important;
}

.welk-teampage .welk-team-photo img{
  width: 100% !important;
  height: 100% !important;
  max-height: none !important;
  min-height: 0 !important;

  object-fit: cover !important;
  object-position: 50% 12% !important;  /* mehr Kopf */
  display: block !important;
}

/* Typografie: Name größer, Rolle kursiv, Text magazinig */
.welk-teampage .welk-team-name{
  font-size: 1.25rem !important;
  font-weight: 800 !important;
  margin: 0 0 .15rem 0 !important;
  letter-spacing: .2px;
}

.welk-teampage .welk-team-role{
  font-style: italic !important;
  font-weight: 400 !important;
  color: #6f6a55 !important;
  margin: 0 0 .6rem 0 !important;
}

.welk-teampage .welk-team-statement{
  font-size: 1.02rem !important;
  line-height: 1.65 !important;
  color: #4b473b !important;
  margin: .2rem 0 0 0 !important;
}
/* =====================================
   TEAMFOTOS – edle Magazinveredelung
   ===================================== */

.welk-teampage .welk-team-photo{
  position: relative;
  background: linear-gradient(
    180deg,
    rgba(255,248,225,0.9),
    rgba(247,233,195,0.9)
  );
  padding: 6px;
  border-radius: 22px;
  box-shadow:
    0 18px 40px rgba(80,65,30,0.18),
    inset 0 1px 0 rgba(255,255,255,0.6);
}

.welk-teampage .welk-team-photo img{
  border-radius: 16px;
  filter:
    brightness(1.04)
    contrast(1.02)
    saturate(1.03);
  transition: all 0.35s ease;
}

/* sanfter Hover – kein Springen */
.welk-teampage .welk-team-card:hover img{
  filter:
    brightness(1.07)
    contrast(1.05)
    saturate(1.08);
}

/* ganz feine Goldkante */
.welk-teampage .welk-team-photo::after{
  content:"";
  position:absolute;
  inset:0;
  border-radius:22px;
  pointer-events:none;
  box-shadow: inset 0 0 0 1px rgba(185,145,60,0.35);
}
.welk-infobox {
  background: linear-gradient(135deg, #fff7dd, #fff3c6);
  border-radius: 18px;
  padding: 22px 26px;
  margin: 28px 0;
  box-shadow: 0 10px 30px rgba(200,170,90,0.18);
  border: 1px solid rgba(210,180,90,0.35);
}

.welk-infobox strong {
  display: block;
  font-size: 1.05rem;
  margin-bottom: 8px;
  color: #7a5b1a;
}

.welk-infobox p {
  margin: 6px 0;
  line-height: 1.55;
}
:root{
  --gold:#c9a24f;
  --shadow: rgba(0,0,0,.22);
}

.hero-kisten{
  position: relative;
  min-height: clamp(520px, 64vh, 740px); /* seriös: nicht zu riesig */
  overflow: hidden;
  border-radius: 18px;
  box-shadow: 0 18px 60px rgba(0,0,0,.10);
}

.hero-kisten__bg{
  position:absolute; inset:0;
  background-image:
    radial-gradient(1100px 520px at 15% 20%, rgba(255,255,255,.35), transparent 55%),
    url("https://welk.vet/wp-content/uploads/Praxisgruppenbild.png");
  background-size: cover;
  background-position: center top; /* wichtig: Köpfe bleiben sichtbar */
  filter: saturate(1.03) contrast(1.03);
}

.hero-kisten__overlay{
  position:absolute; inset:0;
  background:
    linear-gradient(90deg,
      rgba(15,15,15,.62) 0%,
      rgba(15,15,15,.26) 55%,
      rgba(15,15,15,.10) 100%),
    radial-gradient(700px 420px at 18% 34%, rgba(201,162,79,.22), transparent 60%);
}

.hero-kisten__content{
  position: relative;
  z-index: 2;
  max-width: 760px;
  padding: clamp(28px, 5vw, 64px);
  color: #fff;
}

.hero-kisten__badge{
  display:inline-block;
  padding: .45rem .75rem;
  border-radius: 999px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.18);
  backdrop-filter: blur(6px);
  font-weight: 650;
  letter-spacing: .02em;
}

.hero-kisten__headline{
  margin: 14px 0 10px;
  font-size: clamp(2.1rem, 4.1vw, 3.4rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
  text-shadow: 0 10px 28px var(--shadow);
}

.hero-kisten__subline{
  margin: 0 0 20px;
  max-width: 62ch;
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  line-height: 1.55;
  color: rgba(255,255,255,.92);
}

.hero-kisten__actions{
  display:flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 18px 0 22px;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: .82rem 1.12rem;
  border-radius: 12px;
  font-weight: 750;
  text-decoration: none;
  transition: transform .15s ease, background .15s ease;
  box-shadow: 0 12px 28px rgba(0,0,0,.18);
}

.btn--primary{
  background: linear-gradient(135deg, var(--gold) 0%, #e2c27a 100%);
  color: #141414;
}

.btn--primary:hover{ transform: translateY(-1px); }

.btn--ghost{
  background: rgba(255,255,255,.10);
  color: #fff;
  border: 1px solid rgba(255,255,255,.22);
  backdrop-filter: blur(6px);
}

.btn--ghost:hover{ background: rgba(255,255,255,.15); }

.hero-kisten__highlights{
  list-style:none;
  padding:0;
  margin:0;
  display:flex;
  flex-wrap:wrap;
  gap: 10px 12px;
}

.hero-kisten__highlights li{
  padding: .42rem .68rem;
  border-radius: 999px;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.18);
  font-weight: 650;
  font-size: .95rem;
}

@media (max-width: 680px){
  .hero-kisten__overlay{
    background: linear-gradient(180deg, rgba(15,15,15,.66) 0%, rgba(15,15,15,.34) 62%, rgba(15,15,15,.18) 100%);
  }
}
.welk-hero-image {
  min-height: 70vh;
  background-image: url("https://welk.vet/wp-content/uploads/Praxisgruppenbild.png");
}
.welk-hero-image {
  background-image: url("https://welk.vet/wp-content/uploads/Praxisgruppenbild.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  background-color: #f6f4ef; /* ruhiger Hintergrund */
}
.welk-hero-text-editorial {
  margin-top: 3.5rem;
}
.hero-kisten__highlights {
  margin-top: 1.8rem;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  color: rgba(255,255,255,0.9);
  font-weight: 400;
}
/* HERO: Grundlayout */
.hero-kisten{
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  min-height: clamp(420px, 60vh, 620px);
  margin: 0 auto;
  box-shadow: 0 18px 55px rgba(0,0,0,.12);
}

/* Hintergrundbild */
.hero-kisten__bg{
  position: absolute;
  inset: 0;
  background-size: cover;
  background-repeat: no-repeat;

  /* Desktop: klassisch */
  background-position: center 35%;
  transform: scale(1.02);
}

/* Warmes Overlay + weicher Übergang nach unten */
.hero-kisten__overlay{
  position: absolute;
  inset: 0;

  /*
    1) oben fast klar, damit Gesichter nicht "zuschmieren"
    2) mittig leicht warm (Gold)
    3) unten stärker, damit Text gut lesbar + sanfter Übergang zur nächsten Sektion
  */
  background:
    linear-gradient(
      to bottom,
      rgba(0,0,0,.18) 0%,
      rgba(44,30,12,.28) 38%,
      rgba(110,78,26,.30) 60%,
      rgba(236,228,214,1) 100%
    );

  pointer-events: none;
}

/* Content-Block */
.hero-kisten__content{
  position: relative;
  z-index: 2;
  max-width: 980px;
  padding: clamp(22px, 4vw, 44px);
  color: #fff;

  /* Text in sicheren Bereich: nicht über Gesichter */
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: clamp(420px, 60vh, 620px);
}

/* Headline/Subline */
.hero-kisten__headline{
  margin: 0 0 12px 0;
  font-size: clamp(30px, 4vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  text-shadow: 0 10px 30px rgba(0,0,0,.35);
}

.hero-kisten__subline{
  margin: 0;
  max-width: 62ch;
  font-size: clamp(16px, 1.6vw, 20px);
  line-height: 1.45;
  text-shadow: 0 10px 30px rgba(0,0,0,.35);
}

/* ===== MOBILE OPTIMIERUNG =====
   Ziel: Gesichter oben mehr im Bild lassen.
   Wir schieben den Bildfokus etwas nach oben und
   setzen den Text tiefer/unten (safe zone).
*/
@media (max-width: 768px){
  .hero-kisten{
    border-radius: 18px;
    min-height: 520px; /* mehr Höhe: oben mehr Bild, unten Platz für Text */
  }

  .hero-kisten__bg{
    /* Fokus deutlich nach oben -> Gesichter bleiben sichtbar */
    background-position: center 18%;
  }

  .hero-kisten__content{
    padding: 18px 18px 26px 18px;
  }
}

/* Sehr kleine Phones: noch mehr Fokus auf Gesichter */
@media (max-width: 420px){
  .hero-kisten{
    min-height: 560px;
  }
  .hero-kisten__bg{
    background-position: center 12%;
  }
}

/* Optional: wenn du die Hero direkt an die nächste Sektion "ankleben" willst */
.hero-kisten + .welk-section{
  margin-top: clamp(18px, 3vw, 34px);
}
.hero-kisten{
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  min-height: clamp(460px, 65vh, 680px);
  margin: 0 auto;
  box-shadow: 0 18px 55px rgba(0,0,0,.12);
}

/* Hintergrundbild */
.hero-kisten__bg{
  position: absolute;
  inset: 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center 32%;
  transform: scale(1.02);
}

/* Warmes Gold-Overlay – KEIN heller Abschluss */
.hero-kisten__overlay{
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to bottom,
      rgba(0,0,0,.18) 0%,
      rgba(40,28,14,.28) 35%,
      rgba(92,66,24,.35) 60%,
      rgba(40,28,14,.55) 100%
    );
  pointer-events: none;
}

/* Textbereich */
.hero-kisten__content{
  position: relative;
  z-index: 2;
  max-width: 980px;
  padding: clamp(24px, 4vw, 48px);
  color: #fff;

  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: clamp(460px, 65vh, 680px);
}

.hero-kisten__headline{
  margin: 0 0 14px 0;
  font-size: clamp(30px, 4vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  text-shadow: 0 10px 30px rgba(0,0,0,.45);
}

.hero-kisten__subline{
  margin: 0;
  max-width: 62ch;
  font-size: clamp(16px, 1.6vw, 20px);
  line-height: 1.45;
  text-shadow: 0 10px 30px rgba(0,0,0,.45);
}

/* Scroll-Hinweis (dezent, kein Button) */
.hero-kisten__scroll{
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.45);
  opacity: .6;
}

.hero-kisten__scroll::after{
  content: "";
  position: absolute;
  left: 50%;
  top: 10px;
  width: 8px;
  height: 8px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: translateX(-50%) rotate(45deg);
}

.hero-kisten__scroll:hover{
  opacity: .9;
}

/* MOBILE: Gesichter schützen */
@media (max-width: 768px){
  .hero-kisten{
    min-height: 560px;
  }

  .hero-kisten__bg{
    background-position: center 14%;
  }

  .hero-kisten__content{
    padding: 20px 18px 32px;
  }
}

@media (max-width: 420px){
  .hero-kisten{
    min-height: 600px;
  }

  .hero-kisten__bg{
    background-position: center 10%;
  }
}
/* ================================
   HERO KARTONBILD
================================ */

.hero-kisten {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  min-height: 70vh;
  display: flex;
  align-items: center;
}

/* Bild */
.hero-kisten__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center top;
  z-index: 1;
}

/* WARMES GOLD-OVERLAY */
.hero-kisten__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;

  background: linear-gradient(
    to bottom,
    rgba(140, 115, 40, 0.55) 0%,
    rgba(140, 115, 40, 0.45) 40%,
    rgba(140, 115, 40, 0.25) 70%,
    rgba(140, 115, 40, 0.05) 100%
  );
}

/* Textbereich */
.hero-kisten__content {
  position: relative;
  z-index: 3;
  max-width: 760px;
  padding: clamp(2rem, 5vw, 4rem);
  color: #ffffff;
}

/* Headline */
.hero-kisten__headline {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;

  text-shadow:
    0 2px 10px rgba(0,0,0,0.45);
}

/* Subline */
.hero-kisten__subline {
  font-size: 1.1rem;
  max-width: 640px;
  line-height: 1.6;

  text-shadow:
    0 1px 8px rgba(0,0,0,0.4);
}

/* Scroll-Hinweis */
.hero-kisten__scroll {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: 32px;
  height: 32px;
  border: 2px solid rgba(255,255,255,0.7);
  border-radius: 50%;
  z-index: 4;
}

.hero-kisten__scroll::after {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border-right: 2px solid white;
  border-bottom: 2px solid white;
  transform: rotate(45deg);
  margin: 9px auto 0;
}

/* ================================
   MOBILOPTIMIERUNG
================================ */

@media (max-width: 768px) {

  .hero-kisten {
    min-height: 80vh;
  }

  .hero-kisten__bg {
    background-position: center top;
  }

  .hero-kisten__content {
    padding: 2rem 1.5rem;
  }

  .hero-kisten__headline {
    font-size: 1.8rem;
  }

  .hero-kisten__subline {
    font-size: 1rem;
  }
}
/* =========================================================
   STARTSEITE – WELK (GeneratePress) 
   Zusammengeführt: bestehendes .welk-* + neuer HERO .hero-kisten
   ========================================================= */

/* --- Grundlayout / Wrapper --- */
.welk-startseite {
  width: 100%;
}

.welk-wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(14px, 2vw, 24px);
}

/* --- Sektionen --- */
.welk-section {
  padding: clamp(22px, 3vw, 44px) 0;
}

.welk-h2 {
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  line-height: 1.2;
  margin: 0 0 18px;
}

/* --- Grid Karten (Schwerpunkte) --- */
.welk-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

@media (max-width: 1024px) {
  .welk-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 560px) {
  .welk-grid { grid-template-columns: 1fr; }
}

.welk-card {
  display: block;
  text-decoration: none;
  background: #fff;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 16px;
  padding: 16px 16px 14px;
  box-shadow: 0 10px 26px rgba(0,0,0,.06);
  transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
  color: inherit;
}

.welk-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(0,0,0,.09);
  border-color: rgba(0,0,0,.14);
}

.welk-card h3 {
  margin: 0 0 6px;
  font-size: 1.05rem;
  line-height: 1.2;
}

.welk-card p {
  margin: 0;
  opacity: .9;
  line-height: 1.45;
}

/* --- Mini-Grid (Haltung) --- */
.welk-mini-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

@media (max-width: 900px) {
  .welk-mini-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 560px) {
  .welk-mini-grid { grid-template-columns: 1
		/* ===============================
   ENGAGEMENT – FIX (nur diese Seite)
   =============================== */

/* verhindert "klebt links": sorgt für saubere Innenabstände */
.welk-engagement .welk-wrap{
  max-width: 1180px;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}

/* Logos in Kacheln immer sichtbar, auch SVG */
.welk-engagement .welk-card-logo-wrap{
  display: flex;
  align-items: center;
  justify-content: center;
  height: 96px;
  margin-bottom: 12px;
}

.welk-engagement .welk-card-logo-wrap img{
  max-height: 78px;
  width: auto;
  max-width: 100%;
  display: block;
  object-fit: contain;
}

/* Karten-Inhalt etwas luftiger und edler */
.welk-engagement .welk-card h3{
  margin-top: 6px;
}

.welk-engagement .welk-card p{
  margin-bottom: 10px;
}

/* Optional: CTA-Zeile immer "unten" in der Karte */
.welk-engagement .welk-card{
  display: flex;
  flex-direction: column;
}

.welk-engagement .welk-card .welk-card-cta{
  margin-top: auto;
}
	/* =========================================
   ENGAGEMENT – Logos dezent vergolden
   ========================================= */

.welk-engagement .welk-card-logo-wrap img {
  filter:
    grayscale(30%)
    sepia(25%)
    saturate(90%)
    brightness(1.05)
    contrast(0.95);
  transition: all 0.4s ease;
}

/* Beim Hover leicht lebendiger */
.welk-engagement .welk-card:hover .welk-card-logo-wrap img {
  filter:
    grayscale(0%)
    sepia(15%)
    saturate(110%)
    brightness(1.08)
    contrast(1);
}	
	/* =========================================
   ENGAGEMENT – Text nicht mehr links „klebend“
   (Fallback: greift nur in diesem Bereich)
   ========================================= */

.welk-engagement .welk-wrap{
  max-width: 1180px;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
  box-sizing: border-box;
}

@media (max-width: 768px){
  .welk-engagement .welk-wrap{
    padding-left: 16px;
    padding-right: 16px;
  }
	/* =========================================
   ENGAGEMENT – Logos dezent vergolden
   ========================================= */

.welk-engagement .welk-card-logo-wrap img{
  filter: grayscale(30%) sepia(25%) saturate(90%) brightness(1.05) contrast(0.95);
  transition: filter .35s ease;
}

.welk-engagement .welk-card:hover .welk-card-logo-wrap img{
  filter: grayscale(0%) sepia(15%) saturate(110%) brightness(1.08) contrast(1);
}
	/* =========================================
   ENGAGEMENT – Hero Text Abstand links
   ========================================= */

.welk-engagement .welk-hero-text{
  padding-left: 48px;
  padding-right: 32px;
}

@media (max-width: 900px){
  .welk-engagement .welk-hero-text{
    padding-left: 24px;
    padding-right: 24px;
  }
}
	/* =========================================
   ENGAGEMENT – Text klebt links: robust fix
   ====/* ======================================================
   ENGAGEMENT – edle Magazinoptik ohne Layout-Verschiebung
   ====================================================== */

.welk-engagement .welk-card{
  position: relative;
  overflow: hidden;
}

/* feine Magazin-Ecke */
.welk-engagement .welk-card::before{
  content:"";
  position:absolute;
  top:0;
  right:0;
  width:42px;
  height:42px;
  background:
    linear-gradient(135deg,
      transparent 0%,
      transparent 48%,
      rgba(190,140,60,.22) 50%,
      rgba(190,140,60,.12) 100%);
  border-top-right-radius:22px;
  pointer-events:none;
}

/* ruhiger Premium-Hover */
.welk-engagement .welk-card:hover{
  transform: translateY(-2px);
  box-shadow:
    0 18px 48px rgba(30,25,15,.14),
    inset 0 0 0 1px rgba(190,140,60,.18);
}

/* Logo leicht veredeln – kein Goldklotz */
.welk-engagement .welk-card-logo-wrap img{
  filter:
    saturate(.9)
    contrast(.98)
    brightness(1.02);
}

/* Text edler & luftiger */
.welk-engagement .welk-card h3{
  letter-spacing:.25px;
}

.welk-engagement .welk-card p{
  opacity:.92;
}

/* Sicherheit: niemals nach links ziehen */
.welk-engagement{
  margin-left: auto !important;
  margin-right: auto !important;
}==================================== */

/* 1) Sicherheit: Hero-Grid bekommt Innenabstand */
.welk-engagement .welk-hero-grid{
  padding: 48px 48px !important;
}

/* 2) Linke Spalte (Text) bekommt zusätzlich Luft */
.welk-engagement .welk-hero-grid .welk-hero-text{
  padding-left: 12px !important;
  padding-right: 12px !important;
}

/* 3) Mobile etwas weniger */
@media (max-width: 900px){
  .welk-engagement .welk-hero-grid{
    padding: 24px 18px !important;
  }
}
	/* ===== optische Zentrierung – kein echtes Verschieben ===== */

.welk-engagement .welk-wrap{
  padding-left: clamp(20px, 5vw, 64px);
  padding-right: clamp(20px, 5vw, 64px);
}
	/* ENGAGEMENT – Mini-Kacheln hinter Logos endgültig entfernen */
.welk-engagement .welk-card-logo,
.welk-engagement .welk-card-logo-wrap{
  background: transparent !important;
  border: 0 !important;
  outline: 0 !important;
  box-shadow: none !important;
  padding: 0 !important;
  margin: 0 !important;
  border-radius: 0 !important;
}

/* falls das Theme das „Badge“ als Pseudo-Element malt */
.welk-engagement .welk-card-logo::before,
.welk-engagement .welk-card-logo::after,
.welk-engagement .welk-card-logo-wrap::before,
.welk-engagement .welk-card-logo-wrap::after{
  content: none !important;
  display: none !important;
}

/* und falls der Hintergrund direkt am IMG hängt */
.welk-engagement .welk-card-logo img,
.welk-engagement .welk-card-logo-wrap img{
  background: transparent !important;
  border: 0 !important;
  outline: 0 !important;
  box-shadow: none !important;
  padding: 0 !important;
  margin: 0 !important;
  border-radius: 0 !important;
}
	/* STARTSEITE – HERO Bild: Mobile Abstand oben/unten entfernen */
@media (max-width: 768px){

  /* 1) Wenn das Bild in einer Figure liegt */
  .welk-hero figure{
    margin: 0 !important;
  }

  /* 2) Falls ein "Rahmen/Kachel" um das Bild zu hoch ist */
  .welk-hero .welk-hero-image,
  .welk-hero .welk-sub-hero-media,
  .welk-hero .welk-hero-media{
    padding: 0 !important;
    min-height: 0 !important;
    height: auto !important;
  }

  /* 3) Das Bild selbst: keine künstliche Höhe */
  .welk-hero img{
    display: block;
    width: 100%;
    height: auto !important;
    max-height: 55vh;        /* verhindert "riesige" Bildflächen */
    object-fit: contain;     /* zeigt das ganze Bild */
    margin: 0 !important;
  }

  /* 4) Falls dein Hero in einer Box/Karte sitzt: weniger Innenabstand */
  .welk-hero .welk-box,
  .welk-hero .welk-wrap,
  .welk-hero .welk-hero-grid{
    padding-top: 14px !important;
    padding-bottom: 14px !important;
  }
}
	/* =========================================
   STARTSEITE (Mobile) – Hero-Bild: Leerraum killen
   ========================================= */
@media (max-width: 768px){

  /* nur Startseite */
  body.home .welk-hero,
  body.home .welk-hero *{
    box-sizing: border-box;
  }

  /* Grid/Container nicht unnötig hoch */
  body.home .welk-hero .welk-hero-grid{
    align-items: start !important;
  }

  /* der Bild-Wrapper (das ist meist der Übeltäter) */
  body.home .welk-hero .welk-hero-image,
  body.home .welk-hero .welk-hero-image figure,
  body.home .welk-hero figure{
    margin: 0 !important;
    padding: 0 !important;
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;
    line-height: 0 !important;
  }

  /* falls ein „Rahmen/Slot“ mit fixer Höhe existiert */
  body.home .welk-hero .welk-hero-image{
    display: block !important;
  }

  /* das Bild selbst */
  body.home .welk-hero .welk-hero-image img,
  body.home .welk-hero figure img{
    display: block !important;
    width: 100% !important;
    height: auto !important;
    max-height: 60vh !important;   /* verhindert riesige Bildfläche */
    object-fit: contain !important; /* zeigt alles ohne Cropping */
    margin: 0 !important;
    padding: 0 !important;
  }

  /* der goldene „Kasten“ drumrum soll nicht wie ein leerer Rahmen wirken */
  body.home .welk-hero .welk-hero-image{
    background: transparent !important;
  }

  /* optional: etwas weniger Luft im Hero */
  body.home .welk-hero{
    padding-top: 10px !important;
    padding-bottom: 10px !important;
  }
}
	@media (max-width: 768px){
  body.home .welk-hero [class*="media"],
  body.home .welk-hero [class*="image"],
  body.home .welk-hero [class*="figure"]{
    min-height: 0 !important;
    height: auto !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
}
/* =========================================
   STARTSEITE – HERO (editorial) Fix
   Ursache: .welk-hero-image ist ein DIV mit Background
   ========================================= */

/* Desktop/Allgemein */
body.home .welk-hero-editorial{
  padding: 22px !important;
  min-height: 0 !important;
  height: auto !important;
}

/* Das Background-DIV ist das "Bild" -> HIER Größe steuern */
body.home .welk-hero-editorial .welk-hero-image{
  margin: 0 !important;
  padding: 0 !important;

  min-height: 0 !important;
  height: clamp(220px, 32vw, 420px) !important;

  border-radius: 18px !important;
  overflow: hidden !important;

  background-image: url("https://welk.vet/wp-content/uploads/Praxisgruppenbild.png") !important;
  background-position: center 18% !important;
  background-size: cover !important;
  background-repeat: no-repeat !important;
  background-color: transparent !important;
}

/* Falls irgendwo Pseudo-Elemente Höhe erzeugen */
body.home .welk-hero-editorial .welk-hero-image::before,
body.home .welk-hero-editorial .welk-hero-image::after{
  content: none !important;
  display: none !important;
}

/* Textblock: Abstand zum Bild kontrolliert */
body.home .welk-hero-editorial .welk-hero-text-editorial{
  margin-top: 14px !important;
}

body.home .welk-hero-text-editorial h1{
  margin-top: 0 !important;
}

body.home .welk-subline{
  margin-top: 10px !important;
}

/* Mobile */
@media (max-width: 768px){
  body.home .welk-hero-editorial{
    padding-top: 14px !important;
    padding-bottom: 14px !important;
    padding-left: 18px !important;
    padding-right: 18px !important;
  }

  body.home .welk-hero-editorial .welk-hero-image{
    height: 240px !important;      /* 220–280 nach Geschmack */
    max-height: 52vh !important;
    background-position: center 14% !important;
  }

  body.home .welk-hero-text-editorial{
    margin-top: 12px !important;
  }
}
/* =========================================
   ENGAGEMENT – Hero Design Restore (GeneratePress)
   Nur /engagement/ (robuster Scope)
   ========================================= */

body.page-engagement .welk-startseite,
body.page-engagement .welk-startseite *{
  box-sizing: border-box;
}

/* Hero-Section: wieder wie eine einheitliche Magazinfläche */
body.page-engagement .welk-startseite .welk-hero{
  background: linear-gradient(135deg, #fffef4 0%, #fff6bf 55%, #ffe59a 100%) !important;
  border: 1px solid rgba(220,180,80,0.22) !important;
  border-radius: 28px !important;
  box-shadow: 0 8px 22px rgba(60,50,20,.06) !important;
}

/* Falls deine Section-Regeln irgendwo “0 padding” erzwingen */
body.page-engagement .welk-startseite .welk-hero.welk-section{
  padding: 26px !important;
}

/* Grid: saubere 2-Spalten + keine riesigen Innenflächen */
body.page-engagement .welk-startseite .welk-hero-grid{
  display: grid !important;
  grid-template-columns: 1.15fr 0.85fr !important;
  gap: 26px !important;
  align-items: center !important;
  padding: 0 !important;            /* verhindert doppelte Innenrahmen */
}

/* Bildbereich: KEINE extra “weiße Karte” um das Bild */
body.page-engagement .welk-startseite .welk-hero-image{
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  padding: 0 !important;
  margin: 0 !important;

  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
}

/* Bild selbst */
body.page-engagement .welk-startseite .welk-hero-image img{
  width: 100% !important;
  max-width: 520px !important;
  height: auto !important;

  border-radius: 22px !important;
  border: 1px solid rgba(170,125,40,.18) !important;
  box-shadow: 0 18px 42px rgba(60,50,20,.18) !important;

  display: block !important;
  object-fit: cover !important;
}

/* Responsive */
@media (max-width: 1024px){
  body.page-engagement .welk-startseite .welk-hero-grid{
    grid-template-columns: 1fr !important;
  }
  body.page-engagement .welk-startseite .welk-hero-image{
    justify-content: center !important;
  }
}

@media (max-width: 680px){
  body.page-engagement .welk-startseite .welk-hero.welk-section{
    padding: 18px !important;
  }
  body.page-engagement .welk-startseite .welk-hero-image img{
    max-width: 420px !important;
  }
}
.kontakt-hero {
  background-image: url("https://welk.vet/wp-content/uploads/DEIN-BILD.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 420px;
  border-radius: 18px;
}
@media (max-width: 768px) {
  .kontakt-hero {
    min-height: 260px;
  }
}
	/* =========================================
   KONTAKTSEITE – doppeltes Bild entfernen
   ========================================= */

.welk-kontakt .welk-hero-image {
  background: none !important;
  background-image: none !important;
}

.welk-kontakt .welk-hero-image::before,
.welk-kontakt .welk-hero-image::after {
  content: none !important;
  display: none !important;
}

.welk-kontakt .welk-hero-image img {
  display: block;
  width: 100%;
  height: auto;
}
	/* =========================================
   KONTAKT – HERO mobil enger
   ========================================= */
@media (max-width: 768px){

  /* insgesamt weniger “Luft” im Hero */
  .welk-kontakt .welk-section.welk-hero{
    padding-top: 14px !important;
    padding-bottom: 14px !important;
  }

  /* Grid-Abstand kleiner */
  .welk-kontakt .welk-hero-grid{
    gap: 14px !important;
  }

  /* Bild: weniger Höhe + ruhiger */
  .welk-kontakt .welk-hero-image img{
    max-height: 240px;
    object-fit: cover;
    border-radius: 16px;
  }

  /* Textabstände etwas kompakter */
  .welk-kontakt .welk-hero-text h1{
    margin-bottom: 8px;
  }

  .welk-kontakt .welk-hero-text p{
    margin-bottom: 10px;
  }

  /* Buttons auf мобил: schön untereinander */
  .welk-kontakt .welk-cta-row{
    gap: 10px;
  }
  .welk-kontakt .welk-cta-row .welk-btn{
    width: 100%;
    text-align: center;
  }
}
	/* HERO-BILD: grauen Hintergrund entfernen */
.welk-hero,
.welk-hero *,
.welk-hero-image {
  background: transparent !important;
}

/* falls das Bild in einem WP-Block steckt */
.welk-hero .wp-block-cover,
.welk-hero .wp-block-group,
.welk-hero .wp-block-image {
  background-color: transparent !important;
  padding: 0 !important;
}
/* Grauen "Rahmen" um Hero-Bilder entfernen (Startseite + Schwerpunkte) */
.welk-startseite figure,
.welk-startseite .wp-block-image,
.welk-startseite figure.wp-block-image,
.welk-startseite .wp-block-group,
.welk-startseite .wp-block-cover,
.welk-startseite .wp-block-cover__inner-container {
  background: transparent !important;
  background-color: transparent !important;
  box-shadow: none !important;
  border: 0 !important;
}

/* Padding/Margins, die wie ein Rahmen wirken, rausnehmen */
.welk-startseite figure.wp-block-image,
.welk-startseite .wp-block-image,
.welk-startseite .wp-block-cover {
  padding: 0 !important;
  margin: 0 !important;
}
/* HERO volle Breite – grauen Seitenrand entfernen */
.welk-startseite .welk-hero {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  border-radius: 0;
}

/* Bild darf bis an den Rand gehen */
.welk-startseite .welk-hero-image img {
  border-radius: 0;
}
/* Hero-Bild: jeden Frame/Shadow/Border entfernen */
.welk-startseite .welk-hero-image,
.welk-startseite .welk-hero-image * {
  background: transparent !important;
  background-color: transparent !important;
  border: 0 !important;
  outline: 0 !important;
  box-shadow: none !important;
}

/* Falls ein "Rahmen" über ::before/::after kommt */
.welk-startseite .welk-hero-image::before,
.welk-startseite .welk-hero-image::after {
  content: none !important;
  display: none !important;
}

/* Bild sauber ohne Inline-Gaps */
.welk-startseite .welk-hero-image img {
  display: block !important;
  max-width: 100%;
  height: auto;
}
/* Falls der Rahmen vom Hero-Container kommt */
.welk-startseite .welk-section.welk-hero,
.welk-startseite .welk-hero-grid {
  background: transparent !important;
  background-color: transparent !important;
  border: 0 !important;
  outline: 0 !important;
  box-shadow: none !important;
}

.welk-startseite .welk-section.welk-hero::before,
.welk-startseite .welk-section.welk-hero::after,
.welk-startseite .welk-hero-grid::before,
.welk-startseite .welk-hero-grid::after {
  content: none !important;
  display: none !important;
}
/* =========================================
   TV-BERICHTE – Design wie Welk (golden, luftiger)
   Scope: nur /tv-berichte/
   ========================================= */

body.page-tv-berichte .inside-article{
  background: transparent !important;
  box-shadow: none !important;
}

body.page-tv-berichte .entry-content{
  margin: 0 !important;
}

/* Seitenhintergrund (warm, nicht grau) */
body.page-tv-berichte{
  background:
    radial-gradient(1100px 600px at 18% -10%, rgba(255, 214, 106, .34), rgba(255,255,255,0) 62%),
    radial-gradient(900px 520px at 85% 8%, rgba(255, 215, 90, .22), rgba(255,255,255,0) 58%),
    linear-gradient(180deg, #ffffff 0%, #fffdf6 100%) !important;
}

/* Wrapper (zentriert, wie eure Welk-Seiten) */
.welk-tv-page{
  max-width: 1180px;
  margin: 0 auto;
  padding: 24px 18px 56px;
}

/* HERO-Kasten */
.welk-tv-hero{
  border-radius: 28px;
  padding: clamp(18px, 3.2vw, 34px);
  background: linear-gradient(135deg, #fffef4 0%, #fff6bf 55%, #ffe59a 100%);
  border: 1px solid rgba(200,150,40,.20);
  box-shadow: 0 18px 45px rgba(60,50,20,.10);
  margin: 18px 0 22px;
}

.welk-tv-hero h1{
  margin: 0 0 10px !important;
  font-size: clamp(28px, 3.2vw, 46px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: #2b2416;
}

.welk-tv-hero p{
  margin: 0 0 14px !important;
  color: #5a4a2b;
  line-height: 1.65;
  max-width: 75ch;
}

/* Buttons / Links im Hero (falls als Buttons angelegt) */
.welk-tv-hero .wp-block-buttons{
  gap: 12px;
  margin-top: 10px;
}

.welk-tv-hero .wp-block-button__link{
  border-radius: 14px !important;
  font-weight: 750;
  padding: 12px 14px !important;
  box-shadow: 0 12px 28px rgba(20,18,10,.12);
}

/* Inhalt-Boxen */
.welk-tv-box{
  border-radius: 26px;
  padding: clamp(18px, 2.8vw, 28px);
  background: rgba(255,255,255,.74);
  border: 1px solid rgba(180,130,20,.16);
  box-shadow: 0 14px 34px rgba(20,18,10,.10);
  margin: 18px 0;
}

/* Typo */
.welk-tv-page h2{
  margin: 0 0 12px !important;
  color: #2b2416;
  letter-spacing: -0.01em;
}

.welk-tv-page h3{
  margin: 18px 0 8px !important;
  color: #2b2416;
}

.welk-tv-page p,
.welk-tv-page li{
  color: #5a4a2b;
  line-height: 1.65;
}

/* Schnellzugriff-Liste als “Pills” */
.welk-tv-page ul{
  padding-left: 18px;
}

.welk-tv-page .welk-tv-box ul{
  list-style: none;
  padding: 0;
  margin: 10px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 12px;
}

.welk-tv-page .welk-tv-box ul li{
  margin: 0;
}

.welk-tv-page .welk-tv-box ul li a{
  display: inline-flex;
  align-items: center;
  padding: .48rem .78rem;
  border-radius: 999px;
  background: rgba(255, 212, 106, .16);
  border: 1px solid rgba(180,130,20,.18);
  text-decoration: none !important;
  color: #3a2f1b;
  font-weight: 650;
}

/* Externe “Zum Beitrag” Links etwas wie CTA */
.welk-tv-page a{
  color: #8f6a18;
  text-underline-offset: 3px;
}

.welk-tv-page a:hover{
  color: #b8922c;
}

/* Mobile */
@media (max-width: 768px){
  .welk-tv-page{ padding: 18px 14px 46px; }
  .welk-tv-hero{ margin-top: 10px; }
  .welk-tv-page .welk-tv-box ul{
    gap: 8px 10px;
  }
}
	body.page-tv-berichte .site-header,
body.page-tv-berichte .page-hero,
body.page-tv-berichte .welk-hero-background{
  display: none !important;
}
	/* =========================================
   TV-BERICHTE – Seite im „Leistungen“-Stil
   Scope: nur innerhalb .welk-tvberichte
   ========================================= */

/* Falls global irgendwo .welk-hero-image als Background gesetzt ist:
   Auf der TV-Seite neutralisieren wir das komplett. */
.welk-tvberichte .welk-hero-image{
  background: none !important;
  background-image: none !important;
  min-height: 0 !important;
  height: auto !important;
  padding: 0 !important;
  border: 0 !important;
  box-shadow: none !important;
}

/* Neues Hero-Bild (eigene Klasse) */
.welk-tvberichte .tv-hero-image{
  display: flex;
  justify-content: center;
  align-items: center;
  background: transparent !important;
  padding: 0 !important;
  margin: 0 !important;
}

.welk-tvberichte .tv-hero-image img{
  width: 100% !important;
  max-width: 520px !important;
  height: auto !important;

  border-radius: 22px !important;
  border: 1px solid rgba(170,125,40,.18) !important;
  box-shadow: 0 18px 42px rgba(60,50,20,.18) !important;

  display: block !important;
  object-fit: cover !important;
}

/* Mobile: Bild etwas kompakter */
@media (max-width: 680px){
  .welk-tvberichte .tv-hero-image img{
    max-width: 420px !important;
  }
}
	/* =========================================
   KONTAKT – Featured Image/Beitragsbild ausblenden (GeneratePress)
   ========================================= */
body.page-kontakt .inside-article > .featured-image,
body.page-kontakt .inside-article .post-image,
body.page-kontakt .inside-article img.wp-post-image{
  display: none !important;
}

/* =========================================
   KONTAKT – Hero-Bild: kein Rahmen/kein doppelter Layer
   ========================================= */
body.page-kontakt .welk-kontakt .welk-hero-image{
  background: transparent !important;
  background-image: none !important;
  border: 0 !important;
  box-shadow: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

body.page-kontakt .welk-kontakt .welk-hero-image::before,
body.page-kontakt .welk-kontakt .welk-hero-image::after{
  content: none !important;
  display: none !important;
}

/* Wichtig: Bild wirklich anzeigen (falls irgendwo display:none greift) */
body.page-kontakt .welk-kontakt .welk-hero-image img{
  display: block !important;
  width: 100% !important;
  height: auto !important;
  object-fit: cover !important;

  border-radius: 22px !important;
  border: 1px solid rgba(170,125,40,.18) !important;
  box-shadow: 0 18px 42px rgba(60,50,20,.18) !important;
}

/* Falls ein WP-Block rund ums Bild “weiß/grau” macht */
body.page-kontakt .welk-kontakt .wp-block-group,
body.page-kontakt .welk-kontakt .wp-block-image,
body.page-kontakt .welk-kontakt figure{
  background: transparent !important;
  box-shadow: none !important;
  border: 0 !important;
}
	/* =========================================
   /kontakt – alle möglichen GP/Block "Hero/Featured"-Bilder ausblenden
   (wenn Featured Image nicht aktiv ist, steckt es meist in einem Element/Header)
   ========================================= */

/* 1) Block-Theme / Editor Featured Image */
body.page-kontakt .wp-block-post-featured-image,
body.page-kontakt .wp-block-post-featured-image *{
  display:none !important;
}

/* 2) Classic/GeneratePress Featured Image Varianten */
body.page-kontakt .inside-article > .featured-image,
body.page-kontakt .inside-article .featured-image,
body.page-kontakt .inside-article .post-image,
body.page-kontakt .inside-article img.wp-post-image{
  display:none !important;
}

/* 3) GeneratePress Page Hero / Header Element (sehr häufige Ursache) */
body.page-kontakt .gp-page-header,
body.page-kontakt .page-hero,
body.page-kontakt .page-header-image,
body.page-kontakt .generate-page-header,
body.page-kontakt .generate-page-header *{
  display:none !important;
}

/* =========================================
   /kontakt – DEIN Hero-Bild erzwingen (sichtbar, oben, keine Überlagerung)
   ========================================= */

body.page-kontakt .welk-kontakt .welk-hero-image{
  position: relative !important;
  z-index: 5 !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

body.page-kontakt .welk-kontakt .welk-hero-image::before,
body.page-kontakt .welk-kontakt .welk-hero-image::after{
  content: none !important;
  display: none !important;
}

body.page-kontakt .welk-kontakt .welk-hero-image img{
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;

  width: 100% !important;
  height: auto !important;
  max-width: 520px !important;

  object-fit: cover !important;
  border-radius: 22px !important;
  border: 1px solid rgba(170,125,40,.18) !important;
  box-shadow: 0 18px 42px rgba(60,50,20,.18) !important;
}
	/* KONTAKT – Hero-Bild korrekt einpassen */
.welk-kontakt .welk-hero-image img {
  max-height: 420px;
  width: 100%;
  object-fit: cover;
  display: block;
  border-radius: 22px;
}

/* Mobil etwas niedriger */
@media (max-width: 768px) {
  .welk-kontakt .welk-hero-image img {
    max-height: 260px;
  }/* =========================================
   KONTAKT – robustes Hero Styling + Bild-Fix
   Scope: nur .welk-kontakt
   ========================================= */

.welk-kontakt,
.welk-kontakt *{
  box-sizing: border-box;
}

/* HERO: Magazinfläche wie bei Leistungen */
.welk-kontakt .welk-section.welk-hero{
  background: linear-gradient(135deg, #fffef4 0%, #fff6bf 55%, #ffe59a 100%) !important;
  border: 1px solid rgba(220,180,80,0.22) !important;
  border-radius: 28px !important;
  box-shadow: 0 8px 22px rgba(60,50,20,.06) !important;

  padding: 26px !important;
}

/* Grid: 2 Spalten */
.welk-kontakt .welk-hero-grid{
  display: grid !important;
  grid-template-columns: 1.15fr 0.85fr !important;
  gap: 26px !important;
  align-items: center !important;

  padding: 0 !important;
  margin: 0 !important;
}

/* Bildbereich: ALLES an Hintergründen/Overlays aus */
.welk-kontakt .welk-hero-image{
  background: transparent !important;
  background-image: none !important;
  border: 0 !important;
  box-shadow: none !important;
  padding: 0 !important;
  margin: 0 !important;

  display: flex !important;
  justify-content: center !important;
  align-items: center !important;

  position: relative !important;
  overflow: visible !important;
}

/* Falls GeneratePress/WP irgendwas über Pseudo-Elemente reinlegt */
.welk-kontakt .welk-hero-image::before,
.welk-kontakt .welk-hero-image::after{
  content: none !important;
  display: none !important;
}

/* WICHTIG: Nur unser Hero-IMG anzeigen (verhindert “falsches Bild”) */
.welk-kontakt .welk-hero-image > :not(img.welk-kontakt-heroimg){
  display: none !important;
}

/* Unser Hero-Bild */
.welk-kontakt img.welk-kontakt-heroimg{
  width: 100% !important;
  max-width: 720px !important;
  height: auto !important;

  display: block !important;
  object-fit: cover !important;

  border-radius: 22px !important;
  border: 1px solid rgba(170,125,40,.18) !important;
  box-shadow: 0 18px 42px rgba(60,50,20,.18) !important;
}

/* Buttons Reihe */
.welk-kontakt .welk-cta-row{
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 14px;
}

/* Mobile */
@media (max-width: 1024px){
  .welk-kontakt .welk-hero-grid{
    grid-template-columns: 1fr !important;
  }
  .welk-kontakt .welk-section.welk-hero{
    padding: 18px !important;
  }
}

@media (max-width: 768px){
  .welk-kontakt .welk-cta-row{
    gap: 10px;
  }
  .welk-kontakt .welk-cta-row .welk-btn{
    width: 100%;
    text-align: center;
  }
  .welk-kontakt img.welk-kontakt-heroimg{
    max-width: 520px !important;
  }
}
}
	/* KONTAKT – Hero Grid zwingend gleich hoch */
.welk-kontakt .welk-hero-grid {
  align-items: stretch;
}

/* Bild-Wrapper füllt die Grid-Höhe */
.welk-kontakt .welk-hero-image {
  height: 100%;
  display: flex;
  align-items: center;
}

/* Bild bleibt im gelben Bereich */
.welk-kontakt .welk-hero-image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: 22px;
}
	/* =========================================
   STARTSEITE – Editorial Hero Rahmen zu hoch
   -> Höhe & Padding korrigieren
   ========================================= */

/* Nur Startseite, nur Editorial Hero */
.welk-startseite .welk-hero-editorial{
  padding-top: 28px !important;
  padding-bottom: 28px !important;
  min-height: unset !important;
}

/* Falls das Bild selbst unnötig Höhe erzwingt */
.welk-startseite .welk-hero-editorial .welk-hero-image{
  min-height: 320px;           /* Desktop – ruhig, nicht riesig */
  height: auto;
}

/* Mobile: noch kompakter */
@media (max-width: 768px){
  .welk-startseite .welk-hero-editorial{
    padding-top: 18px !important;
    padding-bottom: 18px !important;
  }

  .welk-startseite .welk-hero-editorial .welk-hero-image{
    min-height: 220px;
  }
}
	/* =========================================
   STARTSEITE – Editorial Hero
   MOBIL: oben & unten deutlich weniger Höhe
   ========================================= */

@media (max-width: 768px){

  /* Rahmen enger */
  .welk-startseite .welk-hero-editorial{
    padding-top: 10px !important;
    padding-bottom: 10px !important;
    min-height: unset !important;
  }

  /* Bild nicht künstlich hochziehen */
  .welk-startseite .welk-hero-editorial .welk-hero-image{
    min-height: 180px !important;
  }

  /* Textblock nicht zusätzlich Abstand erzeugen */
  .welk-startseite .welk-hero-text-editorial{
    margin-top: 8px !important;
    margin-bottom: 0 !important;
  }

  .welk-startseite .welk-hero-text-editorial h1{
    margin-bottom: 6px;
  }

  .welk-startseite .welk-hero-text-editorial p{
    margin-bottom: 0;
  }
}
	/* =========================================
   STARTSEITE – Editorial Hero
   MOBIL: feste Höhe KOMPLETT entfernen
   ========================================= */

@media (max-width: 768px){

  /* 1. Hero selbst darf KEINE Mindesthöhe haben */
  .welk-hero-editorial{
    min-height: 0 !important;
    height: auto !important;
    padding: 0 !important;
  }

  /* 2. Falls Höhe über ::before / ::after erzeugt wird → KILL */
  .welk-hero-editorial::before,
  .welk-hero-editorial::after{
    content: none !important;
    display: none !important;
  }

  /* 3. Bildcontainer darf NICHT strecken */
  .welk-hero-editorial .welk-hero-image{
    min-height: 0 !important;
    height: auto !important;
    padding: 0 !important;
  }

  /* 4. Bild bestimmt die Höhe */
  .welk-hero-editorial .welk-hero-image img{
    display: block !important;
    width: 100% !important;
    height: auto !important;
    max-height: none !important;
  }

  /* 5. Text rückt sauber direkt unter das Bild */
  .welk-hero-text-editorial{
    margin-top: 14px !important;
    padding-bottom: 8px !important;
  }
}
	/* ================================
   STARTSEITE – HERO HÖHE FIX (MOBIL)
   ================================ */

/* Hero selbst darf nicht riesig sein */
.welk-hero-home{
  padding: 24px !important;
}

/* Bildcontainer: keine Magazin-Mindesthöhe */
.welk-hero-home .welk-hero-image{
  min-height: 0 !important;
  height: auto !important;
  padding: 0 !important;
}

/* Das eigentliche Bild (Background im DIV) */
.welk-hero-home .welk-hero-image{
  aspect-ratio: 4 / 3;          /* stabil & ruhig */
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #f7f7f3;
  border-radius: 18px;
}

/* MOBIL: deutlich kompakter */
@media (max-width: 768px){

  .welk-hero-home{
    padding: 12px !important;
  }

  .welk-hero-home .welk-hero-image{
    aspect-ratio: 3 / 2;        /* weniger Höhe */
    border-radius: 14px;
  }

  .welk-hero-home .welk-hero-text-editorial{
    margin-top: 10px !important;
  }
}