/* =========================================================
   Tierarztpraxis Welk – bereinigtes & optimiertes CSS
   Konsolidierte Version aus css.rtf
   ========================================================= */

/* =========================================================
   1) RESET / BASIS
   ========================================================= */
*,
*::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, sans-serif;
  line-height: 1.5;
  color: #15202b;
  background: #f6f7f9;
  visibility: visible !important;
  opacity: 1 !important;
}

body,
main,
header,
footer,
section,
article,
nav {
  display: block;
}

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

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

h1,
h2,
h3,
h4 {
  margin: 0 0 0.6rem;
  line-height: 1.2;
}

p {
  margin: 0 0 1rem;
}

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

input,
select,
textarea,
button {
  font: inherit;
}

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

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

/* =========================================================
   2) TOKENS / UTILITIES
   ========================================================= */
:root {
  --bg: #f6f7f9;
  --surface: #ffffff;
  --surface-2: #fbfbfc;
  --text: #15202b;
  --muted: #4b5563;
  --border: rgba(17, 24, 39, 0.1);
  --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;
  --welk-gold: #ffd46a;
  --welk-gold-soft: rgba(255, 212, 106, 0.18);
  --welk-gold-line: rgba(180, 130, 20, 0.18);
  --welk-ink: #2b2416;
  --welk-ink-soft: #5a4a2b;
  --welk-card-bg: rgba(255, 255, 255, 0.74);
}

.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-size: 0.9rem;
  font-weight: 600;
}

.hr,
.welk-divider {
  height: 1px;
  border: 0;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0),
    rgba(180, 130, 20, 0.28),
    rgba(255, 255, 255, 0)
  );
  margin: 1.5rem 0;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
  min-height: 1px;
  padding: 28px 0 56px;
}

section {
  padding: 0;
}

/* =========================================================
   3) HEADER / NAVIGATION
   ========================================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 10px 0 !important;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(120, 90, 20, 0.1);
}

.site-header .inside-header,
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 10px 0 !important;
}

.site-logo img,
.custom-logo {
  width: auto !important;
  max-height: 78px !important;
}

.main-navigation {
  margin-top: 0;
}

.main-navigation .main-nav ul li a {
  position: relative;
  margin: 0 6px !important;
  padding: 10px 10px !important;
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  color: #3a2f1b;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: color 0.18s ease, opacity 0.18s ease;
}

.main-navigation .main-nav ul li a:hover {
  color: #b8922c;
  opacity: 0.92;
  text-decoration: none;
}

.main-navigation .main-nav ul li a::after {
  content: "";
  position: absolute;
  right: 10px;
  bottom: 6px;
  left: 10px;
  height: 2px;
  border-radius: 99px;
  background: rgba(255, 205, 70, 0);
  transform: scaleX(0.55);
  transform-origin: center;
  transition: background 0.18s ease, transform 0.18s ease;
}

.main-navigation .main-nav ul li a:hover::after,
.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);
}

.main-navigation .main-nav ul li.current-menu-item > a,
.main-navigation .main-nav ul li.current-menu-ancestor > a {
  color: #8f6a18;
}

/* =========================================================
   4) GENERISCHE KOMPONENTEN
   ========================================================= */
.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,
.box,
.content,
.welk-box,
.welk-card,
.welk-mini,
.welk-infobox {
  border: 1px solid var(--welk-gold-line);
  border-radius: var(--radius);
  background: var(--welk-card-bg);
  box-shadow: 0 14px 34px rgba(20, 18, 10, 0.1);
}

.card,
.box,
.content {
  padding: 18px;
}

.card {
  display: grid;
  gap: 10px;
  min-height: 120px;
}

.card h3 {
  margin: 0;
  font-size: 1.08rem;
}

.card p,
.content .lead {
  color: var(--muted);
}

.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);
}

.btn,
.welk-btn,
.welk-button,
.welk-article-box a.welk-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 11px 14px;
  border: 1px solid rgba(17, 24, 39, 0.14);
  border-radius: 14px;
  background: var(--surface);
  color: var(--text);
  font-weight: 700;
  text-decoration: none !important;
  cursor: pointer;
  box-shadow: 0 8px 18px rgba(17, 24, 39, 0.06);
  transition: transform 120ms ease, filter 120ms ease, box-shadow 120ms ease;
}

.btn:hover,
.welk-btn:hover,
.welk-button:hover,
.welk-article-box a.welk-button:hover {
  transform: translateY(-1px);
  text-decoration: none;
}

.btn-primary,
.welk-btn,
.welk-button,
.welk-article-box a.welk-button {
  background: linear-gradient(180deg, #e7c988 0%, #d2aa5a 100%);
  color: #2f3440 !important;
}

.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: #fff;
}

.btn-outline {
  background: transparent;
}

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

th,
td {
  padding: 12px;
  vertical-align: top;
  border-bottom: 1px solid var(--border);
}

th {
  background: rgba(17, 24, 39, 0.03);
  text-align: left;
  font-weight: 800;
}

tr:last-child td {
  border-bottom: 0;
}

.form,
.field {
  display: grid;
  gap: 12px;
}

.field {
  gap: 6px;
}

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

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

textarea {
  min-height: 120px;
  resize: vertical;
}

.help {
  font-size: 0.9rem;
  color: var(--muted);
}

.site-footer {
  background: #fff;
  border-top: 1px solid var(--border);
}

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

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-links a {
  padding: 8px 10px;
  border: 1px solid transparent;
  border-radius: 12px;
  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;
}

/* =========================================================
   6) HERO KISTEN
   ========================================================= */
.hero-kisten {
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  min-height: clamp(460px, 65vh, 680px);
  margin: 0 auto;
  border-radius: 22px;
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.12);
}

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

.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%
  );
  pointer-events: none;
}

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

.hero-kisten__headline {
  margin-bottom: 1rem;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.45);
}

.hero-kisten__subline {
  max-width: 640px;
  font-size: 1.1rem;
  line-height: 1.6;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.4);
}

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

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

/* =========================================================
   7) WELK SUBPAGES (ALLGEMEIN)
   ========================================================= */
.welk-subpage {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
  padding: 18px 0 56px;
  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, #fff 0%, #fffdf7 100%);
}

.welk-box {
  margin: 18px 0;
  padding: 22px;
}

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

.welk-magazin {
  max-width: 85ch;
  font-size: 1.02rem;
  line-height: 1.65;
  color: var(--welk-ink-soft);
}

.welk-magazin a {
  color: #8f6a18;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.welk-magazin a:hover {
  color: #b8922c;
  text-decoration-thickness: 2px;
}

.welk-lead {
  margin: 0 0 10px;
  font-size: 1.06rem;
  color: #3a2f1b;
}

.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;
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  color: var(--welk-ink);
}

.welk-sub-hero-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 18px;
  border: 1px solid var(--welk-gold-line);
}

.welk-sub-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
  margin-top: 14px;
  align-items: stretch;
}

.welk-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  min-height: 160px;
  padding: 18px;
  color: var(--welk-ink);
  overflow: hidden;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease, filter 0.18s ease;
}

.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, 0.4), rgba(255, 255, 255, 0) 70%);
  clip-path: polygon(100% 0, 0 0, 100% 100%);
  opacity: 0.7;
  pointer-events: none;
}

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

.welk-card h3 {
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: var(--welk-ink);
}

.welk-card p {
  margin: 0;
  line-height: 1.5;
  color: var(--welk-ink-soft);
}

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

.welk-sub-grid > div {
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface-2);
}

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

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

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

/* =========================================================
   8) 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, 0.1);
  --shadowHover: 0 16px 34px rgba(60, 50, 20, 0.14);
  width: 100%;
  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, #fff 0%, #fffdf7 100%);
}

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

.welk-startseite .welk-section {
  margin: 18px 0;
  padding: 26px;
  overflow: hidden;
  border: 1px solid rgba(220, 180, 80, 0.18);
  border-radius: 28px;
  background: linear-gradient(135deg, #fffef2 0%, #fff5c8 55%, #ffe8a6 100%);
  box-shadow: 0 18px 45px rgba(60, 50, 20, 0.1);
}

.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, 0.06);
}

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

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

.welk-startseite h1 {
  font-size: clamp(30px, 3.2vw, 44px);
  line-height: 1.06;
}

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

.welk-startseite p,
.welk-startseite li {
  line-height: 1.65;
  color: var(--muted);
}

.welk-startseite .welk-hero p {
  font-size: 16px;
}

.welk-startseite .welk-bullets {
  margin: 14px 0 0;
  padding-left: 18px;
}

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

.welk-startseite .welk-hero-image {
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}

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

.welk-startseite .welk-hero-image img {
  display: block !important;
  width: 100%;
  max-width: 420px;
  height: auto;
  border-radius: 20px;
  object-fit: cover;
  box-shadow: 0 14px 34px rgba(60, 50, 20, 0.18);
}

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

.welk-grid {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 18px !important;
  align-items: stretch !important;
  justify-content: center;
}

.welk-startseite .welk-grid > .welk-card,
.welk-startseite .welk-grid > a.welk-card {
  height: 100% !important;
}

.welk-startseite .welk-card {
  max-width: 360px;
  margin-inline: auto;
  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);
}

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

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

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

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

.welk-startseite .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, 0.28), rgba(255, 255, 255, 0) 70%);
  clip-path: polygon(100% 0, 0 0, 100% 100%);
  opacity: 0.65;
  pointer-events: none;
}

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

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

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

/* Editorial Hero */
.welk-hero-editorial {
  padding: 16px;
  margin: 0;
}

.welk-hero-editorial .welk-hero-image {
  height: clamp(220px, 32vw, 420px) !important;
  max-height: none;
  overflow: hidden;
  margin: 0 !important;
  padding: 0 !important;
  border-radius: 18px;
  background-position: center 18% !important;
  background-repeat: no-repeat !important;
  background-size: cover !important;
  background-color: transparent !important;
}

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

.welk-hero-editorial .welk-hero-text-editorial {
  margin-top: 14px;
}

.welk-hero-editorial .welk-hero-text-editorial h1 {
  margin: 0 0 10px;
  font-size: clamp(26px, 4.5vw, 40px);
  line-height: 1.15;
}

.welk-hero-editorial .welk-subline {
  margin: 0;
  font-size: clamp(15px, 2.2vw, 18px);
  line-height: 1.5;
}

.welk-hero-editorial .welk-trustline {
  margin-top: 10px;
  font-size: 14px;
  line-height: 1.4;
  opacity: 0.9;
}

.welk-trust-block {
  margin-top: 12px;
}

.welk-trust-block .welk-mini a {
  display: inline-block;
  margin-top: 6px;
}

/* =========================================================
   9) ENGAGEMENT
   ========================================================= */
body.page-engagement .welk-startseite,
body.page-engagement .welk-startseite * {
  box-sizing: border-box;
}

body.page-engagement .welk-startseite.welk-engagement {
  --welk-bg: #fff8dc;
  --welk-panel: #fff2bf;
  --welk-card-a: #fff9d6;
  --welk-card-b: #ffeaa6;
  --welk-ink: #2e2a1d;
  --welk-ink-soft: rgba(46, 42, 29, 0.72);
  --welk-line: rgba(170, 130, 40, 0.22);
  --welk-shadow: rgba(70, 55, 15, 0.14);
}

body.page-engagement .welk-startseite.welk-engagement {
  margin-inline: auto !important;
  color: var(--welk-ink);
}

body.page-engagement .welk-startseite.welk-engagement .welk-wrap {
  max-width: 1160px !important;
  margin: 0 auto !important;
  padding-inline: clamp(20px, 5vw, 64px) !important;
}

body.page-engagement .welk-startseite.welk-engagement .welk-section {
  padding: 34px 0 !important;
  background: linear-gradient(135deg, #fff8da 0%, #fff3c7 55%, #ffefb8 100%);
}

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

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

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

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

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

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

body.page-engagement .welk-startseite.welk-engagement .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, 0.06) !important;
}

body.page-engagement .welk-startseite.welk-engagement .welk-hero.welk-section {
  padding: 26px !important;
}

body.page-engagement .welk-startseite.welk-engagement .welk-hero-grid {
  display: grid !important;
  grid-template-columns: 1.15fr 0.85fr !important;
  align-items: center !important;
  gap: 32px !important;
  padding: 0 !important;
}

body.page-engagement .welk-startseite.welk-engagement .welk-hero-text {
  padding-left: 24px !important;
  padding-right: 12px !important;
}

body.page-engagement .welk-startseite.welk-engagement .welk-hero-image {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin: 0 !important;
  padding: 0 !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}

body.page-engagement .welk-startseite.welk-engagement .welk-hero-image::before,
body.page-engagement .welk-startseite.welk-engagement .welk-hero-image::after,
body.page-engagement .welk-startseite.welk-engagement .welk-card-logo::before,
body.page-engagement .welk-startseite.welk-engagement .welk-card-logo::after,
body.page-engagement .welk-startseite.welk-engagement .welk-card-logo-wrap::before,
body.page-engagement .welk-startseite.welk-engagement .welk-card-logo-wrap::after {
  content: none !important;
  display: none !important;
}

body.page-engagement .welk-startseite.welk-engagement .welk-hero-image img {
  display: block !important;
  width: 100% !important;
  max-width: 520px !important;
  height: auto !important;
  object-fit: cover !important;
  border: 1px solid rgba(170, 125, 40, 0.18) !important;
  border-radius: 22px !important;
  box-shadow: 0 18px 42px rgba(60, 50, 20, 0.18) !important;
}

body.page-engagement .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;
}

body.page-engagement .welk-startseite.welk-engagement a.welk-card {
  min-height: 190px !important;
  padding: 22px 22px 24px !important;
  border: 1px solid rgba(170, 130, 40, 0.18) !important;
  border-radius: 22px !important;
  background: linear-gradient(135deg, var(--welk-card-a) 0%, var(--welk-card-b) 100%) !important;
  box-shadow: 0 16px 34px rgba(70, 55, 15, 0.12), inset 0 0 0 1px rgba(255, 220, 130, 0.55) !important;
}

body.page-engagement .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, 0.18), inset 0 0 0 1px rgba(255, 215, 120, 0.65) !important;
}

body.page-engagement .welk-startseite.welk-engagement .welk-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 8px;
}

body.page-engagement .welk-startseite.welk-engagement .welk-card-logo,
body.page-engagement .welk-startseite.welk-engagement .welk-card-logo-wrap {
  padding: 0 !important;
  margin: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  outline: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

body.page-engagement .welk-startseite.welk-engagement .welk-card-logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 96px;
  margin-bottom: 12px !important;
}

body.page-engagement .welk-startseite.welk-engagement .welk-card-logo,
body.page-engagement .welk-startseite.welk-engagement .welk-card-logo-wrap img {
  display: block !important;
  width: auto !important;
  max-width: 160px !important;
  max-height: 78px !important;
  height: auto !important;
  object-fit: contain !important;
  filter: saturate(0.9) contrast(0.98) brightness(1.02) !important;
  opacity: 0.88 !important;
}

body.page-engagement .welk-startseite.welk-engagement .welk-card:hover .welk-card-logo-wrap img {
  filter: grayscale(0%) sepia(15%) saturate(110%) brightness(1.08) contrast(1) !important;
}

body.page-engagement .welk-startseite.welk-engagement .welk-card h3 {
  margin: 6px 0 8px !important;
  font-size: 18px !important;
  line-height: 1.2 !important;
  letter-spacing: -0.01em !important;
}

body.page-engagement .welk-startseite.welk-engagement .welk-card p {
  margin: 0 !important;
  opacity: 0.92 !important;
}

body.page-engagement .welk-startseite.welk-engagement .welk-card-cta {
  margin-top: auto;
  font-weight: 700;
  text-decoration: underline;
}

body.page-engagement .welk-startseite.welk-engagement .welk-infobox {
  margin-top: 26px !important;
  padding: 20px !important;
  border: 1px solid rgba(170, 130, 40, 0.18) !important;
  border-radius: 22px !important;
  background: rgba(255, 255, 255, 0.55) !important;
  box-shadow: 0 12px 30px rgba(70, 55, 15, 0.1) !important;
}

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

body.page-engagement .welk-startseite.welk-engagement .welk-infobox ul {
  margin: 0 !important;
  padding-left: 18px !important;
}

body.page-engagement .welk-startseite.welk-engagement .welk-infobox li {
  margin: 6px 0 !important;
  color: rgba(46, 42, 29, 0.74) !important;
}

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

.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: 1px solid rgba(170, 125, 40, 0.2);
  border-radius: 18px;
  background: linear-gradient(135deg, #fffdf2, #ffeec0);
  box-shadow: 0 10px 22px rgba(40, 35, 20, 0.1), 0 2px 0 rgba(255, 255, 255, 0.65) inset;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

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

.welk-logo-card img {
  width: auto;
  max-width: 160px;
  max-height: 60px;
  height: auto;
  object-fit: contain;
  filter: saturate(0.35) contrast(0.95) brightness(0.98);
  opacity: 0.85;
  transition: filter 0.15s ease, opacity 0.15s ease;
}

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

/* =========================================================
   10) TEAM
   ========================================================= */
.welk-hero-slider {
  position: relative;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 85%;
  gap: 12px;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 10px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: var(--surface);
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

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

.welk-hero-slider::-webkit-scrollbar {
  height: 10px;
}

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

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

body.page-team .welk-subpage,
.welk-subpage.welk-teampage {
  padding: 18px 0 52px;
  background: radial-gradient(1100px 620px at 18% -10%, rgba(255, 214, 106, 0.4), rgba(255, 255, 255, 0) 62%),
    radial-gradient(900px 520px at 85% 8%, rgba(255, 215, 90, 0.26), rgba(255, 255, 255, 0) 58%),
    linear-gradient(180deg, #fff 0%, #fff9e6 100%) !important;
}

body.page-team .welk-box,
.welk-subpage.welk-teampage .welk-box {
  max-width: 1120px;
  margin: 0 auto 22px;
  padding: 22px;
  border-color: rgba(190, 140, 25, 0.16) !important;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 245, 210, 0.9)) !important;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.08);
}

body.page-team .welk-hero-slider,
.welk-subpage.welk-teampage .welk-hero-slider {
  position: relative;
  height: 320px;
  overflow: hidden;
  border: 1px solid rgba(120, 90, 20, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.45);
  box-shadow: 0 14px 34px rgba(20, 18, 10, 0.1);
}

body.page-team .welk-hero-slider img,
.welk-subpage.welk-teampage .welk-hero-slider img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 0;
  object-fit: cover;
  object-position: center top;
  opacity: 0;
  filter: saturate(0.92) contrast(0.98);
  transition: opacity 1.4s ease, filter 0.35s ease, transform 0.35s ease;
}

body.page-team .welk-hero-slider img.is-active,
.welk-subpage.welk-teampage .welk-hero-slider img.is-active {
  z-index: 2;
  opacity: 1;
}

.welk-team-grid,
body.page-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;
}

.welk-team-card,
body.page-team .welk-team-card,
.welk-subpage.welk-teampage .welk-team-card {
  position: relative;
  display: flex !important;
  flex-direction: column !important;
  gap: 12px;
  height: 100% !important;
  min-height: 260px;
  padding: 1.6rem 1.6rem 1.8rem !important;
  overflow: hidden;
  border: 1px solid rgba(200, 150, 40, 0.24) !important;
  border-radius: 20px !important;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(255, 245, 215, 0.88)) !important;
  box-shadow: 0 18px 46px rgba(25, 20, 10, 0.14), 0 0 0 1px rgba(255, 205, 90, 0.22) inset !important;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.welk-team-card::after,
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, 214, 106, 0.55), rgba(255, 255, 255, 0) 70%);
  clip-path: polygon(100% 0, 0 0, 100% 100%);
  opacity: 0.85;
}

.welk-team-card:hover,
body.page-team .welk-team-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 60px rgba(20, 18, 10, 0.14), 0 0 0 6px rgba(255, 214, 106, 0.18) !important;
}

.welk-team-photo,
body.page-team .welk-team-photo,
.welk-teampage .welk-team-photo {
  position: relative;
  width: 100% !important;
  aspect-ratio: 3 / 4 !important;
  margin-bottom: 0.8rem !important;
  overflow: hidden !important;
  border: 1px solid rgba(200, 150, 40, 0.22) !important;
  border-radius: 22px !important;
  background: linear-gradient(180deg, rgba(255, 248, 225, 0.9), rgba(247, 233, 195, 0.9));
  box-shadow: 0 18px 40px rgba(80, 65, 30, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.6);
  padding: 6px;
}

.welk-team-photo::after,
body.page-team .welk-team-photo::after,
.welk-teampage .welk-team-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 22px;
  box-shadow: inset 0 0 0 1px rgba(185, 145, 60, 0.35);
  pointer-events: none;
}

.welk-team-photo img,
body.page-team .welk-team-photo img,
.welk-teampage .welk-team-photo img {
  width: 100% !important;
  height: 100% !important;
  min-height: 0 !important;
  max-height: none !important;
  border-radius: 16px;
  object-fit: cover !important;
  object-position: 50% 12% !important;
  filter: brightness(1.04) contrast(1.02) saturate(1.03);
  transition: filter 0.35s ease, transform 0.35s ease;
}

.welk-team-card:hover .welk-team-photo img,
body.page-team .welk-team-card:hover .welk-team-photo img {
  filter: brightness(1.07) contrast(1.05) saturate(1.08);
  transform: scale(1.015);
}

.welk-team-card h3,
.welk-teampage .welk-team-name {
  margin: 0 0 0.15em;
  color: #362815;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.2px;
}

.welk-team-role {
  margin: 0 0 0.6rem;
  color: #6f6a55;
  font-size: 0.95rem;
  font-style: italic;
  font-weight: 400;
}

.welk-team-statement {
  margin: 0.3em 0 0;
  padding-top: 6px;
  border-top: 1px solid var(--border);
  color: #4b473b;
  font-size: 1.02rem;
  line-height: 1.65;
  font-style: normal;
}

.welk-why-grid {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 16px !important;
  margin-top: 14px;
}

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

.welk-team-group {
  margin-top: 14px;
  overflow: hidden;
  border: 1px solid rgba(120, 90, 20, 0.12);
  border-radius: 18px;
  background: var(--surface);
  box-shadow: 0 18px 44px rgba(20, 18, 10, 0.12);
}

.welk-team-group img,
body.page-team .welk-team-group img {
  width: 100%;
  height: auto;
  border-radius: 18px;
}

/* =========================================================
   11) KONTAKT
   ========================================================= */
.kontakt-hero {
  min-height: 420px;
  border-radius: 18px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

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,
body.page-kontakt .wp-block-post-featured-image,
body.page-kontakt .wp-block-post-featured-image *,
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;
}

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

.welk-kontakt .welk-section.welk-hero {
  padding: 26px !important;
  border: 1px solid rgba(220, 180, 80, 0.22) !important;
  border-radius: 28px !important;
  background: linear-gradient(135deg, #fffef4 0%, #fff6bf 55%, #ffe59a 100%) !important;
  box-shadow: 0 8px 22px rgba(60, 50, 20, 0.06) !important;
}

.welk-kontakt .welk-hero-grid {
  display: grid !important;
  grid-template-columns: 1.15fr 0.85fr !important;
  align-items: stretch;
  gap: 26px !important;
  margin: 0 !important;
  padding: 0 !important;
}

.welk-kontakt .welk-hero-image,
.welk-startseite.welk-kontakt .welk-hero-image,
body.page-kontakt .welk-kontakt .welk-hero-image {
  position: relative !important;
  z-index: 5 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  height: 100%;
  margin: 0 !important;
  padding: 0 !important;
  overflow: visible !important;
  background: transparent !important;
  background-image: none !important;
  border: 0 !important;
  box-shadow: none !important;
}

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

.welk-kontakt .welk-hero-image > :not(img.welk-kontakt-heroimg) {
  display: none !important;
}

.welk-kontakt .welk-hero-image img,
.welk-startseite.welk-kontakt .welk-hero-image img,
body.page-kontakt .welk-kontakt .welk-hero-image img,
.welk-kontakt img.welk-kontakt-heroimg {
  display: block !important;
  width: 100% !important;
  max-width: 720px !important;
  height: 100% !important;
  max-height: 420px;
  object-fit: cover !important;
  border: 1px solid rgba(170, 125, 40, 0.18) !important;
  border-radius: 22px !important;
  box-shadow: 0 18px 42px rgba(60, 50, 20, 0.18) !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.welk-kontakt .wp-block-group,
.welk-kontakt .wp-block-image,
.welk-kontakt figure,
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;
  border: 0 !important;
  box-shadow: none !important;
}

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

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

body.page-template-default .inside-article {
  background: transparent !important;
}

.welk-gold .welk-section {
  padding: 3.5rem 0;
  background: transparent;
}

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

.welk-gold h1,
.welk-gold h2,
.welk-gold h3 {
  color: #5a4a22;
}

.welk-gold h1 {
  font-weight: 600;
  letter-spacing: 0.03em;
  line-height: 1.15;
}

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

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

.welk-gold .welk-card {
  padding: 2rem;
  border: 1px solid rgba(198, 160, 74, 0.25);
  border-radius: 26px;
  background: linear-gradient(135deg, #fffaf0 0%, #fff3da 100%);
  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;
}

.welk-gold .welk-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 26px rgba(120, 95, 30, 0.18), 0 0 0 1px rgba(198, 160, 74, 0.15);
}

.welk-gold .welk-infobox {
  padding: 2.5rem;
  border-left: 4px solid rgba(198, 160, 74, 0.55);
  border-radius: 26px;
  background: linear-gradient(135deg, #fff9ec 0%, #fff2d8 100%);
  box-shadow: 0 20px 45px rgba(180, 140, 30, 0.18);
}

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

.welk-gold .welk-sub-hero-media img,
.welk-gold .welk-hero-image img {
  width: 100%;
  max-width: 520px;
  margin-inline: auto;
  border-radius: 22px;
  box-shadow: 0 12px 30px rgba(60, 50, 20, 0.16);
  filter: saturate(0.92) contrast(0.98);
}

.welk-gold .welk-sub-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: center;
  gap: 14px;
}

.welk-gold .welk-sub-cta .welk-card {
  width: min(360px, 100%);
  border-radius: 18px;
  text-align: left;
  box-shadow: 0 10px 24px rgba(60, 50, 20, 0.12);
}

.welk-gold p,
.welk-gold li {
  color: #4a3e24;
  font-size: 1.02rem;
  line-height: 1.75;
}

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

.welk-gold .welk-eyebrow {
  color: #7a6430;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.75;
}

.welk-gold .welk-motto {
  margin-top: 3rem;
  color: #6b5726;
  text-align: center;
  font-style: italic;
  letter-spacing: 0.04em;
  opacity: 0.8;
}

/* =========================================================
   13) TV-BERICHTE
   ========================================================= */
body.page-tv-berichte {
  background: radial-gradient(1100px 600px at 18% -10%, rgba(255, 214, 106, 0.34), rgba(255, 255, 255, 0) 62%),
    radial-gradient(900px 520px at 85% 8%, rgba(255, 215, 90, 0.22), rgba(255, 255, 255, 0) 58%),
    linear-gradient(180deg, #fff 0%, #fffdf6 100%) !important;
}

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

body.page-tv-berichte .entry-content,
body.page-tv-berichte .site-header,
body.page-tv-berichte .page-hero,
body.page-tv-berichte .welk-hero-background {
  margin: 0 !important;
}

body.page-tv-berichte .site-header,
body.page-tv-berichte .page-hero,
body.page-tv-berichte .welk-hero-background {
  display: none !important;
}

.welk-tv-page {
  max-width: 1180px;
  margin: 0 auto;
  padding: 24px 18px 56px;
}

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

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

.welk-tv-hero p,
.welk-tv-page p,
.welk-tv-page li {
  max-width: 75ch;
  color: #5a4a2b;
  line-height: 1.65;
}

.welk-tv-hero .wp-block-buttons {
  gap: 12px;
  margin-top: 10px;
}

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

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

.welk-tv-page h2,
.welk-tv-page h3 {
  color: #2b2416;
}

.welk-tv-page h2 {
  margin: 0 0 12px !important;
  letter-spacing: -0.01em;
}

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

.welk-tv-page ul {
  padding-left: 18px;
}

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

.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: 0.48rem 0.78rem;
  border: 1px solid rgba(180, 130, 20, 0.18);
  border-radius: 999px;
  background: rgba(255, 212, 106, 0.16);
  color: #3a2f1b;
  font-weight: 650;
  text-decoration: none !important;
}

.welk-tv-page a {
  color: #8f6a18;
  text-underline-offset: 3px;
}

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

.welk-tvberichte .welk-hero-image {
  min-height: 0 !important;
  height: auto !important;
  padding: 0 !important;
  border: 0 !important;
  background: none !important;
  background-image: none !important;
  box-shadow: none !important;
}

.welk-tvberichte .tv-hero-image {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 !important;
  padding: 0 !important;
  background: transparent !important;
}

.welk-tvberichte .tv-hero-image img {
  display: block !important;
  width: 100% !important;
  max-width: 520px !important;
  height: auto !important;
  border: 1px solid rgba(170, 125, 40, 0.18) !important;
  border-radius: 22px !important;
  object-fit: cover !important;
  box-shadow: 0 18px 42px rgba(60, 50, 20, 0.18) !important;
}

/* =========================================================
   14) QUERY LOOP / POSTS / ARTIKEL
   ========================================================= */
.welk-query-cards {
  margin-top: 24px;
  margin-bottom: 24px;
}

.wp-block-post-template {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr)) !important;
  gap: 40px !important;
  margin-top: 40px !important;
}

.welk-post-card,
.welk-query-cards .wp-block-post {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
}

.welk-post-card {
  padding: 32px;
  transition: all 0.25s ease;
}

.welk-post-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.12);
}

.welk-post-card .wp-block-post-date,
.welk-query-cards .wp-block-post-date {
  margin: 0 0 14px;
  font-size: 0.95rem;
  opacity: 0.7;
}

.welk-query-cards .wp-block-post-template {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  margin: 0;
  padding: 0;
}

.welk-query-cards .wp-block-post {
  display: flex;
  flex-direction: column;
  min-height: 220px;
  padding: 28px;
  list-style: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.welk-query-cards .wp-block-post:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.1);
}

.welk-query-cards .wp-block-post-title {
  margin: 0 0 10px;
}

.welk-query-cards .wp-block-post-excerpt {
  display: -webkit-box;
  margin: 0;
  overflow: hidden;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
}

.welk-query-cards .wp-block-post-excerpt__more-link {
  display: inline-block;
  margin-top: 14px;
  font-weight: 600;
  text-decoration: none;
}

.single-post {
  --welk-post-max: 1100px;
  --welk-text-max: 860px;
  --welk-pad: 56px;
  --welk-pad-m: 22px;
  --welk-radius: 20px;
  --welk-shadow: 0 12px 32px rgba(0, 0, 0, 0.06);
  background: #f6f7f7 !important;
}

.single-post .wp-site-blocks,
.single-post .wp-block-post,
.single-post .wp-block-post-title,
.single-post .wp-block-post-date,
.single-post .wp-block-post-author,
.single-post .wp-block-post-content,
.single-post .entry-content,
.single-post .entry-title,
.single-post .post,
.single-post .hentry,
body.single-post main,
body.single-post .site-main,
body.single-post .content-area,
body.single-post .site-content,
body.single-post article {
  max-width: var(--welk-post-max) !important;
  margin-right: auto !important;
  margin-left: auto !important;
}

.single-post .wp-block-post-content,
.single-post .entry-content,
.single-post .post-content,
.single-post article .entry-content,
.single-post article .wp-block-post-content {
  margin-top: 24px !important;
  margin-bottom: 56px !important;
  padding: var(--welk-pad) !important;
  border-radius: var(--welk-radius) !important;
  background: #fff !important;
  box-shadow: var(--welk-shadow) !important;
}

.single-post .wp-block-post-title,
.single-post h1.entry-title,
.single-post .entry-title,
.single-post .wp-block-post-date,
.single-post .wp-block-post-author,
.single-post .post-meta,
.single-post .entry-meta {
  padding-right: var(--welk-pad) !important;
  padding-left: var(--welk-pad) !important;
}

.single-post .wp-block-post-title,
.single-post h1.entry-title,
.single-post .entry-title {
  margin-top: 28px !important;
  margin-bottom: 10px !important;
}

.single-post .wp-block-post-date,
.single-post .wp-block-post-author,
.single-post .post-meta,
.single-post .entry-meta {
  opacity: 0.75 !important;
}

.single-post .wp-block-post-content > :not(.alignwide):not(.alignfull),
.single-post .entry-content > :not(.alignwide):not(.alignfull),
.welk-article-box > * {
  max-width: var(--welk-text-max) !important;
  margin-right: auto !important;
  margin-left: auto !important;
}

.single-post .wp-block-post-content > p:first-of-type {
  font-size: 1.06em;
  line-height: 1.55;
}

.single-post .wp-block-post-content h2,
.single-post .entry-content h2 {
  margin-top: 28px !important;
}

.single-post .wp-block-post-content h3,
.single-post .entry-content h3 {
  margin-top: 22px !important;
}

.single-post .wp-block-post-content p,
.single-post .entry-content p {
  line-height: 1.6 !important;
}

.single-post .wp-block-post-content ul,
.single-post .wp-block-post-content ol {
  padding-left: 1.2em;
}

.single-post .wp-block-post-content a {
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

.welk-article-box {
  max-width: 1100px;
  margin-right: auto;
  margin-left: auto;
  padding: 56px;
}

.welk-article-title {
  max-width: 860px;
  margin-top: 0;
  margin-right: auto;
  margin-left: auto;
}

/* =========================================================
   15) NEWSLETTER / BANNER / SPEZIALFÄLLE
   ========================================================= */
.welk-newsletter .welk-card {
  position: relative;
  overflow: hidden;
}

.welk-newsletter .welk-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(1200px 420px at 12% 0%, rgba(231, 201, 136, 0.35), transparent 55%),
    radial-gradient(800px 340px at 92% 10%, rgba(231, 201, 136, 0.18), transparent 60%);
  pointer-events: none;
}

.welk-newsletter .welk-card > * {
  position: relative;
}

.welk-newsletter #sib-container {
  border: 1px solid rgba(231, 201, 136, 0.7) !important;
  border-radius: 16px !important;
}

.welk-newsletter #sib-container input.input {
  padding: 12px !important;
  border-radius: 12px !important;
}

.welk-newsletter .sib-form-block__button {
  border-radius: 14px !important;
  background: linear-gradient(180deg, #e7c988 0%, #d2aa5a 100%) !important;
  color: #2f3440 !important;
}

#praxis-banner-bar {
  width: 100%;
  padding: 12px 20px;
  border-top: 3px solid #c8a96a;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  background: linear-gradient(90deg, #efe3c2, #f5ebd3);
  text-align: center;
  font-size: 15px;
  line-height: 1.5;
}

#praxis-banner-bar img {
  height: 26px;
  margin-right: 10px;
  vertical-align: middle;
}

.welk-grid a[href="/engagement"] {
  border: 2px solid rgba(200, 169, 106, 0.35);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.05), 0 0 0 2px rgba(200, 169, 106, 0.08);
  transition: all 0.25s ease;
}

.welk-grid a[href="/engagement"]:hover {
  border-color: #c8a96a;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.08), 0 0 0 3px rgba(200, 169, 106, 0.18);
  transform: translateY(-2px);
}

/* =========================================================
   16) RESPONSIVE
   ========================================================= */
@media (min-width: 720px) {
  .welk-hero-slider {
    grid-auto-columns: 65%;
  }
}

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

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

  .welk-startseite .welk-hero-grid,
  body.page-engagement .welk-startseite.welk-engagement .welk-hero-grid,
  .welk-kontakt .welk-hero-grid {
    grid-template-columns: 1fr !important;
  }

  .welk-startseite .welk-hero-image,
  body.page-engagement .welk-startseite.welk-engagement .welk-hero-image {
    justify-content: center !important;
  }
}

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

  .welk-sub-hero,
  .welk-sub-grid {
    grid-template-columns: 1fr;
  }

  .welk-startseite .welk-cards,
  body.page-engagement .welk-startseite.welk-engagement .welk-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 900px) {
  .single-post .wp-block-post-content,
  .single-post .entry-content,
  .single-post .post-content,
  .single-post article .entry-content,
  .single-post article .wp-block-post-content,
  .welk-article-box {
    padding: var(--welk-pad-m) !important;
    border-radius: 16px !important;
  }

  .single-post .wp-block-post-title,
  .single-post h1.entry-title,
  .single-post .entry-title,
  .single-post .wp-block-post-date,
  .single-post .wp-block-post-author,
  .single-post .post-meta,
  .single-post .entry-meta {
    padding-right: var(--welk-pad-m) !important;
    padding-left: var(--welk-pad-m) !important;
  }

  .single-post .wp-block-post-content > :not(.alignwide):not(.alignfull),
  .single-post .entry-content > :not(.alignwide):not(.alignfull),
  .welk-article-box > * {
    max-width: 100% !important;
  }

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

  .welk-query-cards .wp-block-post-template {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 768px) {
  .site-header {
    padding: 8px 0 !important;
  }

  .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 {
    right: 8px;
    bottom: 7px;
    left: 8px;
  }

  .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;
  }

  .welk-startseite .welk-wrap {
    padding: 22px 14px 38px;
  }

  .welk-startseite .welk-section,
  .welk-kontakt .welk-section.welk-hero,
  body.page-engagement .welk-startseite.welk-engagement .welk-hero.welk-section {
    padding: 18px !important;
  }

  .welk-startseite .welk-grid,
  .welk-startseite .welk-cards,
  .welk-subpage .welk-sub-cards,
  .welk-subpage .welk-sub-cta,
  body.page-engagement .welk-startseite.welk-engagement .welk-cards,
  .welk-team-grid,
  .welk-why-grid {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }

  .welk-startseite .welk-hero-grid,
  .welk-startseite .welk-mini-grid {
    grid-template-columns: 1fr !important;
  }

  .welk-startseite .welk-hero-image img {
    max-width: 420px;
  }

  .welk-hero-editorial {
    padding: 14px;
  }

  .welk-hero-editorial .welk-hero-image {
    height: 240px !important;
    max-height: 52vh !important;
    border-radius: 16px;
    background-position: center 14% !important;
  }

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

  .welk-hero-editorial .welk-hero-text-editorial h1 {
    font-size: 28px;
    letter-spacing: -0.2px;
  }

  .welk-hero-editorial .welk-subline {
    font-size: 16px;
  }

  .welk-kontakt .welk-hero-grid {
    gap: 14px !important;
  }

  .welk-kontakt .welk-hero-image img,
  .welk-startseite.welk-kontakt .welk-hero-image img,
  body.page-kontakt .welk-kontakt .welk-hero-image img {
    max-height: 260px;
    border-radius: 16px !important;
  }

  .welk-kontakt .welk-hero-text h1 {
    margin-bottom: 8px;
  }

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

  .welk-kontakt .welk-cta-row,
  .welk-startseite.welk-kontakt .welk-cta-row {
    gap: 10px;
  }

  .welk-kontakt .welk-cta-row .welk-btn,
  .welk-startseite.welk-kontakt .welk-cta-row .welk-btn {
    width: 100%;
    text-align: center;
  }

  .kontakt-hero {
    min-height: 260px;
  }

  .welk-tv-page {
    padding: 18px 14px 46px;
  }

  .welk-tv-hero {
    margin-top: 10px;
  }

  .welk-tv-page .welk-tv-box ul {
    gap: 8px 10px;
  }

  .welk-tvberichte .tv-hero-image img {
    max-width: 420px !important;
  }

  .welk-gold {
    background: linear-gradient(180deg, #fff1b8 0%, #ffe59a 45%, #fff6da 100%);
  }

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

  .welk-gold .welk-hero {
    margin: 1.2rem 0 2rem;
    border-radius: 26px;
    box-shadow: 0 18px 40px rgba(170, 130, 30, 0.22);
  }

  .welk-gold h1 {
    font-size: 2rem;
    line-height: 1.15;
  }

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

  .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, 0.22);
  }

  .welk-gold .welk-card:hover {
    transform: none;
  }

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

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

  .welk-gold .welk-motto {
    margin-top: 2.2rem;
    font-size: 0.95rem;
  }

  .welk-team-card:hover .welk-team-photo img {
    transform: none;
  }
}

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

  .welk-startseite .welk-section {
    padding: 18px;
  }

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

  .welk-magazin-grid,
  .welk-grid,
  .welk-mini-grid {
    grid-template-columns: 1fr !important;
  }

  .welk-magazin-card-media img {
    height: 160px;
  }

  .welk-hero-editorial .welk-hero-image {
    height: 240px;
  }

  .welk-teampage .welk-team-photo,
  .welk-team-photo {
    aspect-ratio: 4 / 5 !important;
  }
}

@media (max-width: 640px) {
  main {
    padding: 18px 0 42px;
  }

  .grid.cols-2,
  .grid.cols-3,
  .grid.cols-4 {
    grid-template-columns: 1fr;
  }

  .welk-subpage {
    width: calc(100% - 28px);
  }

  .welk-box {
    padding: 18px;
  }

  .welk-hero-editorial .welk-hero-image {
    border-radius: 16px;
  }
}

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

  .welk-logo-card img {
    max-height: 50px;
  }
}

@media (max-width: 420px) {
  .welk-hero-editorial .welk-hero-image {
    height: 220px;
  }
}

/* =========================================================
   17) PRINT
   ========================================================= */
@media print {
  .site-header,
  .site-footer,
  .nav,
  .hero-actions {
    display: none !important;
  }

  body {
    background: #fff;
  }

  .surface,
  .content,
  .card,
  .box,
  .welk-box,
  .welk-card {
    box-shadow: none !important;
  }
}
/* =========================================
   STARTSEITE – HERO GRUPPENBILD FIX
   stellt Praxisgruppenbild wieder her
   ========================================= */

/* Hero-Bild auf der Startseite wieder aktivieren */
body.home .welk-hero-image{
  background-image: url("https://welk.vet/wp-content/uploads/Praxisgruppenbild.png") !important;
  background-repeat: no-repeat !important;
  background-position: center center !important;
  background-size: cover !important;

  min-height: 320px !important;
  border-radius: 20px;
}

/* Falls ein img-Element im Container liegt */
body.home .welk-hero-image img{
  display: none !important;
}

/* Hero-Layout auf Startseite stabilisieren */
body.home .welk-hero-grid{
  align-items: center;
  gap: 32px;
}

/* Mobile Optimierung */
@media (max-width: 900px){

  body.home .welk-hero-image{
    min-height: 240px !important;
    background-position: center 20% !important;
  }

}
/* =========================================
   STARTSEITE – HERO GRUPPENBILD (alle sichtbar)
   ========================================= */

body.home .welk-hero-image{
  background-image: url("https://welk.vet/wp-content/uploads/Praxisgruppenbild.png") !important;
  background-repeat: no-repeat !important;
  background-position: center center !important;

  /* zeigt das komplette Bild */
  background-size: contain !important;

  background-color: #fff6cf; /* ruhiger Hintergrund hinter dem Bild */

  min-height: 360px !important;
  border-radius: 20px;

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

/* Falls ein img im Container steckt */
body.home .welk-hero-image img{
  display:none !important;
}

/* Mobile */
@media (max-width: 900px){

  body.home .welk-hero-image{
    min-height: 240px !important;
    background-size: contain !important;
  }

}
/* =================================
   FOOTER SPRECHZEITEN – ruhiges Layout
   ================================= */

.welk-footer-times{
  margin-top:10px;
  display:flex;
  flex-direction:column;
  gap:6px;
}

.welk-time-row{
  display:grid;
  grid-template-columns:40px 1fr;
  gap:10px;
  font-size:14px;
}

.welk-day{
  font-weight:700;
  color:#3b2d12;
}

.welk-hours{
  color:#5a4521;
}

.welk-footer-quiet{
  margin-top:6px;
  opacity:0.85;
}