/* ============================================================================
   Hundeservice24 Design System v3
   Fonts: Plus Jakarta Sans (Headlines) + Inter (Body), self-hosted (DSGVO)
   Colors: Green #2D7A4F + Coral #E8642C
   ============================================================================ */

/* Fonts */
@font-face {
  font-family: 'Plus Jakarta Sans';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(/assets/fonts/PlusJakartaSans-latin.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Plus Jakarta Sans';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(/assets/fonts/PlusJakartaSans-latin-ext.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Plus Jakarta Sans';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(/assets/fonts/PlusJakartaSans-latin.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Plus Jakarta Sans';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(/assets/fonts/PlusJakartaSans-latin-ext.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Plus Jakarta Sans';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(/assets/fonts/PlusJakartaSans-latin.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Plus Jakarta Sans';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(/assets/fonts/PlusJakartaSans-latin-ext.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(/assets/fonts/Inter-latin.woff2) format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(/assets/fonts/Inter-latin.woff2) format('woff2');
}

/* Variables */
:root {
  --green: #2D7A4F;
  --green-hover: #225e3c;
  --green-light: #edf7f1;
  --coral: #E8642C;
  --coral-hover: #d4571f;
  --text: #111827;
  --text-sub: #4B5563;
  --text-muted: #9CA3AF;
  --bg: #FFFFFF;
  --bg-warm: #F8F7F5;
  --border: #E5E7EB;
  --border-light: #F3F4F6;
  --radius: 8px;
  --shadow: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-lg: 0 10px 40px rgba(0,0,0,0.08);
  --font-display: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  --max-w: 1040px;
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
button, select, input { font-family: inherit; }

/* Layout */
.wrap { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }

/* ============================================================================
   Header
   ============================================================================ */

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  height: 60px;
  gap: 32px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--text);
  flex-shrink: 0;
}
.logo:hover { color: var(--green); }
.logo svg { flex-shrink: 0; }

.nav { display: flex; align-items: center; gap: 28px; margin-left: auto; }
.nav a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-sub);
  transition: color 0.15s;
}
.nav a:hover { color: var(--text); }

.nav-cta {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--green);
  border: 1.5px solid var(--green);
  border-radius: 6px;
  padding: 6px 14px;
  transition: all 0.15s;
  margin-left: 4px;
}
.nav-cta:hover { background: var(--green); color: #fff; }

.mobile-menu { display: none; }

@media (max-width: 768px) {
  .nav { display: none; }
  .mobile-menu {
    display: flex;
    margin-left: auto;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    color: var(--text);
  }
}

/* ============================================================================
   Buttons
   ============================================================================ */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-body);
  font-weight: 600;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.15s;
  border: 1px solid transparent;
  text-align: center;
  white-space: nowrap;
}

.btn--green {
  background: var(--green);
  color: #fff;
  font-size: 0.875rem;
  padding: 10px 20px;
}
.btn--green:hover { background: var(--green-hover); color: #fff; }

.btn--coral {
  background: var(--coral);
  color: #fff;
  font-size: 0.9375rem;
  padding: 12px 24px;
}
.btn--coral:hover { background: var(--coral-hover); color: #fff; }

.btn--outline {
  background: transparent;
  color: var(--text-sub);
  border-color: var(--border);
  font-size: 0.8125rem;
  padding: 6px 12px;
}
.btn--outline:hover { border-color: var(--green); color: var(--green); }

.btn--sm { font-size: 0.8125rem; padding: 5px 10px; }

/* ============================================================================
   Hero (Homepage)
   ============================================================================ */

.hero {
  background: var(--bg-warm);
  padding: 72px 24px 64px;
}

.hero-inner {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: 2.75rem;
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 12px;
}

.hero-sub {
  font-size: 1.0625rem;
  color: var(--text-sub);
  margin-bottom: 32px;
  line-height: 1.5;
}

/* Search Bar */
.search-bar {
  display: flex;
  align-items: stretch;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  max-width: 560px;
  margin: 0 auto;
}

.search-bar select,
.search-bar input {
  border: none;
  outline: none;
  background: transparent;
  font-size: 0.9375rem;
  color: var(--text);
  padding: 14px 16px;
  flex: 1;
  min-width: 0;
}

.search-bar select {
  flex: 0 0 auto;
  width: 190px;
  border-right: 1px solid var(--border);
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%239CA3AF' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 32px;
}

.search-bar input::placeholder { color: var(--text-muted); }

.search-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: var(--green);
  color: #fff;
  border: none;
  font-weight: 600;
  font-size: 0.875rem;
  padding: 14px 20px;
  cursor: pointer;
  transition: background 0.15s;
  white-space: nowrap;
  font-family: var(--font-body);
}
.search-btn:hover { background: var(--green-hover); }

.trust-line {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-top: 20px;
  font-size: 0.8125rem;
  color: var(--text-muted);
  font-weight: 500;
}

.trust-line span {
  display: flex;
  align-items: center;
  gap: 5px;
}
.trust-line svg { color: var(--green); }

@media (max-width: 600px) {
  .hero { padding: 48px 16px 40px; }
  .hero h1 { font-size: 2rem; }
  .hero-sub { font-size: 0.9375rem; }
  .search-bar { flex-direction: column; }
  .search-bar select { width: 100%; border-right: none; border-bottom: 1px solid var(--border); }
  .search-bar input { border-bottom: 1px solid var(--border); }
  .search-btn { padding: 14px; border-radius: 0; }
  .trust-line { gap: 16px; flex-wrap: wrap; }
}

/* ============================================================================
   Page Hero (Category / City pages)
   ============================================================================ */

.page-hero {
  padding: 40px 0 32px;
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 8px;
}

.page-hero p {
  color: var(--text-sub);
  font-size: 0.9375rem;
  max-width: 600px;
  line-height: 1.55;
}

.page-hero__stats {
  display: flex;
  gap: 20px;
  margin-top: 12px;
  font-size: 0.8125rem;
  color: var(--text-muted);
  font-weight: 500;
}

@media (max-width: 600px) {
  .page-hero h1 { font-size: 1.625rem; }
}

/* ============================================================================
   Section Headers
   ============================================================================ */

.section-header {
  margin-bottom: 24px;
}

.section-header h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
}

.section-header p {
  color: var(--text-sub);
  font-size: 0.9375rem;
  margin-top: 4px;
}

h2 {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--text);
  margin: 2rem 0 0.75rem;
}

h3 { font-family: var(--font-display); font-size: 1rem; font-weight: 600; line-height: 1.4; margin-bottom: 0.25em; }

p { margin-bottom: 0.6em; color: var(--text-sub); line-height: 1.6; }

/* ============================================================================
   Category Cards (Homepage)
   ============================================================================ */

.categories { padding: 64px 24px; }

.cat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.cat-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 20px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color 0.15s, box-shadow 0.15s;
  cursor: pointer;
}

.cat-card:hover {
  border-color: var(--green);
  box-shadow: 0 2px 8px rgba(45,122,79,0.08);
}

.cat-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: var(--green-light);
  color: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cat-body h3 {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 2px;
}

.cat-body p {
  font-size: 0.8125rem;
  color: var(--text-sub);
  line-height: 1.45;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 8px;
}

.cat-price {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--green);
}

@media (max-width: 900px) { .cat-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .cat-grid { grid-template-columns: 1fr; } .categories { padding: 48px 16px; } }

/* ============================================================================
   City Tags (Homepage + Category pages)
   ============================================================================ */

.cities-section { background: var(--bg-warm); padding: 56px 24px; }

.city-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.city-tag {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-sub);
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 8px 14px;
  transition: all 0.15s;
}

.city-tag:hover {
  border-color: var(--green);
  color: var(--green);
  background: var(--green-light);
}

.city-tag span {
  color: var(--text-muted);
  font-size: 0.75rem;
  font-weight: 400;
  margin-left: 4px;
}

/* City Grid (for category pages without einwohner display) */
.city-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 8px;
  margin-top: 20px;
}

.city-grid-item {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-sub);
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 10px 14px;
  transition: all 0.15s;
}
.city-grid-item:hover { border-color: var(--green); color: var(--green); }

.city-grid-item .bl {
  display: block;
  font-size: 0.6875rem;
  font-weight: 400;
  color: var(--text-muted);
  margin-top: 1px;
}

/* ============================================================================
   CTA Section
   ============================================================================ */

.cta { padding: 80px 24px; }

.cta-box {
  background: var(--text);
  border-radius: 12px;
  padding: 56px 40px;
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.cta-box h2 {
  font-family: var(--font-display);
  font-size: 1.625rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
  margin: 0 0 8px;
}

.cta-box p {
  color: #9CA3AF;
  font-size: 0.9375rem;
  margin-bottom: 28px;
  line-height: 1.55;
}

@media (max-width: 600px) {
  .cta { padding: 48px 16px; }
  .cta-box { padding: 40px 24px; }
}

/* ============================================================================
   Service Cards
   ============================================================================ */

.services-list { margin: 24px 0; }
.services-list h2 { margin-top: 0; }

.service-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  margin-bottom: 10px;
  transition: border-color 0.15s;
}

.service-card:hover { border-color: #ccc; }

.service-card--premium {
  border-color: var(--coral);
  background: #FEF7F4;
}

.service-card__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 4px;
}

.service-card__name {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  margin: 0;
}

.service-card__badges { display: flex; gap: 6px; flex-shrink: 0; }

.badge {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 4px;
}
.badge--premium { background: #FEF3ED; color: var(--coral); }
.badge--verified { background: var(--green-light); color: var(--green); }

.service-card__address {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-bottom: 6px;
}
.service-card__address svg { flex-shrink: 0; }

.service-card__rating { margin-bottom: 8px; }

.rating { font-size: 0.8125rem; }
.rating__stars { color: #F59E0B; }
.rating__score { color: var(--text-sub); font-weight: 600; margin-left: 2px; }
.review-count { font-size: 0.75rem; color: var(--text-muted); margin-left: 4px; }

.service-card__footer {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  padding-top: 10px;
  border-top: 1px solid var(--border-light);
}

.service-card__price { font-weight: 600; color: var(--green); font-size: 0.875rem; }

/* ============================================================================
   Breadcrumbs
   ============================================================================ */

.breadcrumbs {
  font-size: 0.8125rem;
  color: var(--text-muted);
  padding: 16px 0 0;
}
.breadcrumbs a { color: var(--text-muted); transition: color 0.15s; }
.breadcrumbs a:hover { color: var(--green); }
.bc-sep { margin: 0 6px; }

/* ============================================================================
   FAQ
   ============================================================================ */

.faq-section { margin: 40px 0; }
.faq-section h2 { margin-top: 0; margin-bottom: 16px; }

.faq-item {
  border: 1px solid var(--border-light);
  border-radius: 6px;
  margin-bottom: 6px;
  overflow: hidden;
}

.faq-q {
  padding: 14px 16px;
  font-weight: 600;
  font-size: 0.875rem;
  cursor: pointer;
  background: var(--bg);
  list-style: none;
  transition: color 0.15s;
}
.faq-q:hover { color: var(--green); }
.faq-q::-webkit-details-marker { display: none; }
.faq-q::after { content: ' +'; color: var(--text-muted); float: right; }
details[open] .faq-q::after { content: ' \2212'; }

.faq-a {
  padding: 0 16px 14px;
  color: var(--text-sub);
  font-size: 0.875rem;
  line-height: 1.65;
}

/* ============================================================================
   Price Info (City-Service pages)
   ============================================================================ */

.price-info {
  background: var(--bg-warm);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin: 24px 0;
}
.price-info h2 { margin-top: 0; font-size: 1.125rem; }
.price-info p { margin-bottom: 0; }

/* ============================================================================
   Other Services Links
   ============================================================================ */

.other-services { margin: 32px 0; }

.other-links {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 8px;
  margin-top: 16px;
}

.other-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background: var(--bg-warm);
  border-radius: 6px;
  color: var(--text-sub);
  font-size: 0.8125rem;
  font-weight: 500;
  transition: color 0.15s, background 0.15s;
}
.other-link svg { color: var(--green); flex-shrink: 0; }
.other-link:hover { color: var(--green); background: var(--green-light); }

/* ============================================================================
   Empty State
   ============================================================================ */

.empty-state {
  text-align: center;
  padding: 48px 24px;
  background: var(--bg-warm);
  border-radius: var(--radius);
  border: 1px solid var(--border-light);
}
.empty-state p { color: var(--text-muted); margin-bottom: 16px; max-width: 400px; margin-left: auto; margin-right: auto; }

/* ============================================================================
   Pricing (Anbieter werden)
   ============================================================================ */

.pricing { margin: 40px 0; }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.pricing-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
}

.pricing-card--featured {
  border-color: var(--green);
  position: relative;
}
.pricing-card--featured::before {
  content: 'Empfohlen';
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--green);
  color: #fff;
  font-size: 0.6875rem;
  font-weight: 600;
  padding: 2px 12px;
  border-radius: 99px;
}

.pricing-card__price {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--text);
  margin: 8px 0;
}
.pricing-card__price span {
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--text-muted);
  font-family: var(--font-body);
}

.pricing-card ul { list-style: none; text-align: left; margin: 16px 0; }
.pricing-card li {
  padding: 4px 0;
  font-size: 0.8125rem;
  color: var(--text-sub);
  display: flex;
  align-items: center;
  gap: 8px;
}
.pricing-card li svg { flex-shrink: 0; }
.pricing-card li.muted { color: var(--text-muted); }

@media (max-width: 700px) { .pricing-grid { grid-template-columns: 1fr; max-width: 400px; } }

/* ============================================================================
   Legal Pages
   ============================================================================ */

.legal { padding: 40px 0 64px; max-width: 680px; }
.legal h1 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}
.legal h2 {
  font-size: 1.125rem;
  margin: 32px 0 8px;
}
.legal p { font-size: 0.9375rem; line-height: 1.7; }
.legal strong { color: var(--text); }

/* ============================================================================
   Footer
   ============================================================================ */

.footer {
  border-top: 1px solid var(--border);
  padding: 48px 24px 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 40px;
  max-width: var(--max-w);
  margin: 0 auto;
}

.footer-brand {
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.55;
}
.footer-brand .logo { margin-bottom: 12px; font-size: 1rem; }

.footer-col h4 {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text);
  margin-bottom: 12px;
}

.footer-col a {
  display: block;
  font-size: 0.8125rem;
  color: var(--text-sub);
  padding: 3px 0;
  transition: color 0.15s;
}
.footer-col a:hover { color: var(--green); }

.footer-bottom {
  max-width: var(--max-w);
  margin: 32px auto 0;
  padding-top: 24px;
  border-top: 1px solid var(--border-light);
  font-size: 0.75rem;
  color: var(--text-muted);
}

@media (max-width: 700px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 400px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ============================================================================
   Ratgeber
   ============================================================================ */

.ratgeber-list { margin: 24px 0; }
.ratgeber-item {
  display: block;
  padding: 16px 0;
  border-bottom: 1px solid var(--border-light);
  transition: color 0.15s;
}
.ratgeber-item:hover { color: var(--green); }
.ratgeber-item h3 { margin-bottom: 4px; }
.ratgeber-item p { font-size: 0.8125rem; margin: 0; }
