/*
Theme Name: KGV Rosengarten
Theme URI: https://kgv-rosengarten-mainz.de
Author: KGV Rosengarten e.V.
Author URI: https://kgv-rosengarten-mainz.de
Description: Modernes WordPress-Theme für den Kleingartenverein Rosengarten e.V. Mainz. Mitglied im Stadtverband Mainz der Kleingärtner e.V.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: kgv-rosengarten
Tags: kleingarten, verein, mainz, rosengarten
*/

/* ─── CSS VARIABLES ───────────────────────────────────── */
:root {
  --rose:        #C75B7A;
  --rose-dark:   #5B2A3C;
  --rose-deeper: #3E2028;
  --rose-light:  #E8A0B4;
  --rose-pale:   #F9EEF0;
  --cream:       #FDF5F3;
  --warm-white:  #FDFAF9;
  --gold:        #D4A843;
  --gold-light:  #E8C878;
  --earth:       #8B6F47;
  --green:       #4A7C2E;
  --green-light: #E8F0E4;
  --text:        #2C1E24;
  --text-muted:  #6B555E;
  --border:      #E8D5DA;
  --white:       #FFFFFF;
  --shadow-sm:   0 2px 12px rgba(0,0,0,0.04);
  --shadow-md:   0 8px 32px rgba(0,0,0,0.08);
  --shadow-lg:   0 12px 48px rgba(0,0,0,0.12);
  --radius:      10px;
  --transition:  0.25s ease;
}

/* ─── RESET & BASE ────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
  font-family: 'Lora', Georgia, serif;
  color: var(--text);
  background: var(--warm-white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--rose-dark); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--rose); }

/* ─── TYPOGRAPHY ──────────────────────────────────────── */
h1, h2, h3, h4 { font-family: 'Playfair Display', Georgia, serif; font-weight: 700; line-height: 1.2; color: var(--text); }
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.25rem); }
h3 { font-size: 1.15rem; }
p  { margin-bottom: 1em; }

/* ─── LAYOUT ──────────────────────────────────────────── */
.kgv-container { max-width: 1080px; margin: 0 auto; padding: 0 24px; }
.kgv-section { padding: 72px 0; }
.kgv-section--alt { background: var(--rose-pale); }
.kgv-section__header { text-align: center; margin-bottom: 44px; }
.kgv-section__header h2 { margin-bottom: 6px; }
.kgv-section__header p { color: var(--text-muted); font-size: 0.95rem; }
.kgv-section__divider {
  width: 50px; height: 3px; background: var(--gold); margin: 18px auto 0;
  border-radius: 2px;
}

/* ─── HEADER / NAVIGATION ─────────────────────────────── */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  transition: background var(--transition), border-color var(--transition), box-shadow var(--transition);
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(253,250,249,0.97);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--border);
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
}
.header-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  height: 68px; display: flex; align-items: center; justify-content: space-between;
}
.site-logo {
  font-family: 'Playfair Display', serif; font-size: 1.25rem; font-weight: 700;
  color: var(--cream); transition: color var(--transition); display: flex; align-items: center; gap: 8px;
}
.site-logo .logo-icon { font-size: 1.4rem; }
.scrolled .site-logo { color: var(--rose-dark); }

/* Desktop Nav */
.main-nav { display: flex; gap: 2px; align-items: center; }
.main-nav > li { position: relative; list-style: none; }
.main-nav > li > a, .main-nav > li > button {
  background: none; border: none; padding: 8px 14px; font-family: 'Lora', serif;
  font-size: 0.9rem; font-weight: 500; color: rgba(253,245,243,0.88);
  cursor: pointer; border-radius: 6px; transition: all var(--transition);
  display: flex; align-items: center; gap: 4px; text-decoration: none;
}
.scrolled .main-nav > li > a, .scrolled .main-nav > li > button { color: var(--text); }
.main-nav > li > a:hover, .main-nav > li > button:hover { background: rgba(255,255,255,0.12); }
.scrolled .main-nav > li > a:hover, .scrolled .main-nav > li > button:hover { background: var(--rose-pale); }
.dropdown-arrow { font-size: 0.6rem; margin-left: 2px; }

/* Dropdown */
.sub-menu {
  display: none; position: absolute; top: 100%; left: 0; min-width: 220px;
  background: var(--white); border-radius: var(--radius); border: 1px solid var(--border);
  box-shadow: var(--shadow-md); padding: 6px 0; z-index: 100;
  animation: fadeDown 0.15s ease-out;
}
.main-nav > li:hover > .sub-menu { display: block; }
.sub-menu li { list-style: none; }
.sub-menu li a {
  display: block; padding: 10px 20px; font-size: 0.9rem; color: var(--text);
  transition: background var(--transition);
}
.sub-menu li a:hover { background: var(--rose-pale); color: var(--rose-dark); }

@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Mobile burger */
.burger-toggle {
  display: none; background: none; border: none; font-size: 1.6rem;
  color: var(--cream); cursor: pointer; padding: 4px; transition: color var(--transition);
}
.scrolled .burger-toggle { color: var(--text); }
.mobile-menu {
  display: none; position: absolute; top: 68px; left: 0; right: 0;
  background: var(--white); border-top: 1px solid var(--border);
  box-shadow: var(--shadow-md); max-height: 75vh; overflow-y: auto; padding: 8px 0;
}
.mobile-menu.open { display: block; }
.mobile-menu a, .mobile-menu button {
  display: block; width: 100%; text-align: left; background: none; border: none;
  padding: 14px 28px; font-family: 'Lora', serif; font-size: 0.95rem;
  color: var(--text); cursor: pointer; border-bottom: 1px solid var(--border);
}
.mobile-menu a:hover, .mobile-menu button:hover { background: var(--rose-pale); }
.mobile-menu .mobile-sub a { padding-left: 48px; font-size: 0.9rem; color: var(--text-muted); background: var(--cream); }

@media (max-width: 960px) {
  .main-nav   { display: none; }
  .burger-toggle { display: block; }
}

/* ─── HERO ────────────────────────────────────────────── */
.hero {
  position: relative; min-height: 92vh; overflow: hidden;
  background: linear-gradient(165deg, var(--rose-dark) 0%, #7A3B52 40%, var(--rose-light) 100%);
  display: flex; align-items: center; justify-content: center; text-align: center;
}
.hero__circles {
  position: absolute; inset: 0; overflow: hidden; opacity: 0.1;
}
.hero__circle {
  position: absolute; border-radius: 50%; border: 2px solid var(--cream);
}
.hero__content { position: relative; z-index: 2; padding: 0 24px; }
.hero__kicker {
  font-size: 0.82rem; letter-spacing: 4px; text-transform: uppercase;
  color: var(--gold-light); margin-bottom: 20px; font-family: 'Lora', serif;
}
.hero h1 { color: var(--cream); margin-bottom: 6px; text-shadow: 0 2px 40px rgba(0,0,0,0.2); }
.hero__subtitle {
  font-family: 'Playfair Display', serif; font-size: clamp(1.4rem, 3.5vw, 2.6rem);
  color: var(--gold-light); font-weight: 400; font-style: italic; margin-bottom: 28px;
}
.hero__text { font-size: clamp(0.95rem, 1.6vw, 1.12rem); color: rgba(253,245,243,0.82); max-width: 540px; margin: 0 auto 36px; }
.hero__buttons { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; }
.hero__wave { position: absolute; bottom: -2px; left: 0; right: 0; }

/* Buttons */
.btn {
  display: inline-block; padding: 14px 32px; border-radius: 6px; font-family: 'Lora', serif;
  font-size: 0.95rem; font-weight: 600; cursor: pointer; transition: all var(--transition);
  border: none; letter-spacing: 0.3px; text-decoration: none;
}
.btn--primary { background: var(--gold); color: var(--rose-deeper); box-shadow: 0 4px 20px rgba(212,168,67,0.35); }
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 6px 28px rgba(212,168,67,0.5); color: var(--rose-deeper); }
.btn--outline { background: transparent; color: var(--cream); border: 2px solid rgba(253,245,243,0.4); }
.btn--outline:hover { border-color: var(--cream); background: rgba(255,255,255,0.1); color: var(--cream); }
.btn--forest { background: var(--rose-dark); color: var(--cream); border: none; }
.btn--forest:hover { background: #6E3449; transform: translateY(-1px); color: var(--cream); }
.btn--ghost { background: transparent; color: var(--rose-dark); border: 2px solid var(--rose-dark); }
.btn--ghost:hover { background: var(--rose-dark); color: var(--cream); }

/* ─── QUICK LINKS ─────────────────────────────────────── */
.quicklinks { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }
.quicklink {
  background: var(--white); border-radius: var(--radius); padding: 28px 18px;
  border: 1px solid var(--border); text-align: center; cursor: pointer;
  transition: all var(--transition); flex: 1 1 140px; min-width: 140px; max-width: 200px;
  text-decoration: none; color: var(--text);
}
.quicklink:hover { border-color: var(--rose-light); transform: translateY(-3px); box-shadow: var(--shadow-md); color: var(--text); }
.quicklink__icon { font-size: 2rem; margin-bottom: 10px; display: block; }
.quicklink__label { font-size: 0.88rem; font-weight: 600; }

/* ─── NEWS CARDS ──────────────────────────────────────── */
.news-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 22px; }
.news-card {
  background: var(--white); border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--border); box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}
.news-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.news-card--pinned { border-color: var(--gold); box-shadow: 0 4px 24px rgba(212,168,67,0.15); }
.news-card__body { padding: 22px 24px; }
.news-card__meta { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; flex-wrap: wrap; }
.news-card__badge {
  background: var(--gold); color: var(--white); font-size: 0.7rem; font-weight: 700;
  padding: 3px 8px; border-radius: 4px; text-transform: uppercase;
}
.news-card__date { font-size: 0.78rem; color: var(--text-muted); }
.news-card__tag  { font-size: 0.78rem; color: var(--rose); font-weight: 600; }
.news-card h3 { margin-bottom: 8px; }
.news-card p { font-size: 0.88rem; color: var(--text-muted); margin: 0; }
.news-card__more {
  display: inline-block; margin-top: 14px; font-size: 0.82rem;
  color: var(--rose-dark); font-weight: 600; border-bottom: 2px solid var(--rose-light);
  padding-bottom: 2px;
}

/* ─── TERMINE ─────────────────────────────────────────── */
.termine-list { max-width: 660px; margin: 0 auto; background: var(--white); border-radius: var(--radius); padding: 8px 24px; border: 1px solid var(--border); }
.termin-row { display: flex; gap: 16px; align-items: center; padding: 16px 0; border-bottom: 1px solid var(--border); }
.termin-row:last-child { border-bottom: none; }
.termin-date {
  min-width: 58px; height: 58px; border-radius: 8px; background: var(--rose-pale);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  border: 1px solid var(--border); flex-shrink: 0;
}
.termin-date__day { font-family: 'Playfair Display', serif; font-size: 1.25rem; font-weight: 700; color: var(--rose-dark); line-height: 1; }
.termin-date__month { font-size: 0.7rem; color: var(--rose); font-weight: 600; text-transform: uppercase; }
.termin-info h3 { font-size: 0.95rem; margin-bottom: 3px; }
.termin-info__detail { font-size: 0.82rem; color: var(--text-muted); }

/* ─── FREIE GÄRTEN ────────────────────────────────────── */
.garden-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 22px; }
.garden-card {
  background: var(--white); border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--border); transition: transform var(--transition);
}
.garden-card:hover { transform: translateY(-4px); }
.garden-card__image {
  height: 150px; background: linear-gradient(135deg, var(--rose-light) 0%, var(--rose) 100%);
  display: flex; align-items: center; justify-content: center; position: relative;
}
.garden-card__image .emoji { font-size: 3.2rem; filter: drop-shadow(0 2px 8px rgba(0,0,0,0.12)); }
.garden-card__available {
  position: absolute; top: 12px; right: 12px; background: var(--gold);
  color: var(--white); font-size: 0.72rem; font-weight: 700; padding: 4px 10px;
  border-radius: 4px; text-transform: uppercase;
}
.garden-card__body { padding: 18px 20px; }
.garden-card__header { display: flex; justify-content: space-between; align-items: baseline; }
.garden-card__size { font-size: 0.88rem; color: var(--earth); font-weight: 600; }
.garden-card__price { font-size: 1.35rem; color: var(--rose-dark); font-weight: 700; margin: 8px 0; }
.garden-card__price span { font-size: 0.82rem; font-weight: 400; color: var(--text-muted); }
.garden-card__tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 10px; }
.garden-card__tag {
  font-size: 0.75rem; background: var(--rose-pale); color: var(--rose-dark);
  padding: 3px 10px; border-radius: 20px;
}

/* ─── VORSTAND ────────────────────────────────────────── */
.vorstand-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 22px; }
.vorstand-card {
  background: var(--white); border-radius: var(--radius); padding: 26px 20px;
  border: 1px solid var(--border); text-align: center; transition: transform var(--transition);
}
.vorstand-card:hover { transform: translateY(-3px); }
.vorstand-card__avatar {
  width: 76px; height: 76px; border-radius: 50%; margin: 0 auto 14px;
  background: linear-gradient(135deg, var(--rose-dark), var(--rose-light));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; color: var(--cream); font-family: 'Playfair Display', serif; font-weight: 700;
  overflow: hidden;
}
.vorstand-card__avatar img { width: 100%; height: 100%; object-fit: cover; }
.vorstand-card__role {
  font-size: 0.72rem; color: var(--gold); font-weight: 700;
  text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 4px;
}
.vorstand-card__name { font-family: 'Playfair Display', serif; font-size: 1.05rem; font-weight: 600; margin-bottom: 6px; }
.vorstand-card__details { font-size: 0.82rem; color: var(--text-muted); line-height: 1.7; }

/* ─── TIMELINE (Geschichte) ───────────────────────────── */
.timeline { max-width: 680px; margin: 0 auto; position: relative; padding-left: 30px; }
.timeline::before {
  content: ''; position: absolute; left: 8px; top: 0; bottom: 0;
  width: 3px; background: var(--rose-light); border-radius: 2px;
}
.timeline__item { position: relative; margin-bottom: 30px; padding-left: 22px; }
.timeline__dot {
  position: absolute; left: -25px; top: 5px; width: 14px; height: 14px;
  border-radius: 50%; background: var(--gold); border: 3px solid var(--rose-pale);
}
.timeline__year { font-family: 'Playfair Display', serif; font-size: 1.15rem; font-weight: 700; color: var(--rose-dark); margin-bottom: 4px; }
.timeline__text { font-size: 0.9rem; color: var(--text-muted); }

/* ─── DOKUMENTE ───────────────────────────────────────── */
.doc-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 16px; }
.doc-item {
  display: flex; align-items: center; gap: 14px; padding: 16px 18px;
  background: var(--white); border-radius: 8px; border: 1px solid var(--border);
  cursor: pointer; transition: all var(--transition); text-decoration: none; color: var(--text);
}
.doc-item:hover { border-color: var(--rose-light); background: var(--rose-pale); color: var(--text); }
.doc-item__icon { font-size: 1.7rem; flex-shrink: 0; }
.doc-item__name { font-size: 0.88rem; font-weight: 600; }
.doc-item__size { font-size: 0.75rem; color: var(--text-muted); }
.doc-item__download { margin-left: auto; font-size: 1rem; color: var(--rose-light); }

/* ─── FACHBERATUNG ────────────────────────────────────── */
.tips-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 22px; }
.tip-card {
  background: var(--white); border-radius: var(--radius); padding: 26px;
  border: 1px solid var(--border);
}
.tip-card__icon { font-size: 2.2rem; margin-bottom: 14px; display: block; }
.tip-card h3 { margin-bottom: 8px; }
.tip-card p { font-size: 0.88rem; color: var(--text-muted); margin: 0; }

/* ─── VEREINSHAUS ─────────────────────────────────────── */
.vereinshaus-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 28px; align-items: start; }
.vereinshaus-image {
  height: 260px; border-radius: var(--radius); overflow: hidden;
  background: linear-gradient(135deg, rgba(139,111,71,0.2), rgba(199,91,122,0.15));
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--border);
}
.vereinshaus-image .emoji { font-size: 4.5rem; }
.vereinshaus-info h3 { font-size: 1.35rem; margin-bottom: 12px; }
.vereinshaus-info p { font-size: 0.9rem; color: var(--text-muted); }
.vereinshaus-details { margin-top: 16px; font-size: 0.9rem; line-height: 2; }
.vereinshaus-details strong { color: var(--text); }

/* ─── LAGEPLAN ────────────────────────────────────────── */
.lageplan-map {
  height: 320px; border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--border); background: var(--cream);
}
.lageplan-map iframe { width: 100%; height: 100%; border: 0; }
.lageplan-placeholder {
  height: 100%; display: flex; flex-direction: column; align-items: center;
  justify-content: center; gap: 12px; color: var(--text-muted);
}
.lageplan-placeholder .emoji { font-size: 3.5rem; }

/* ─── SELFSERVICE ─────────────────────────────────────── */
.service-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 16px; }
.service-card {
  background: var(--white); border-radius: var(--radius); padding: 24px 18px;
  border: 1px solid var(--border); cursor: pointer; text-align: center;
  transition: all var(--transition); text-decoration: none; color: var(--text);
}
.service-card:hover { border-color: var(--rose-dark); transform: translateY(-3px); box-shadow: var(--shadow-md); color: var(--text); }
.service-card__icon { font-size: 2rem; margin-bottom: 10px; display: block; }
.service-card__label { font-size: 0.88rem; font-weight: 600; margin-bottom: 4px; }
.service-card__desc  { font-size: 0.78rem; color: var(--text-muted); }

/* ─── GALERIE ─────────────────────────────────────────── */
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(170px, 1fr)); gap: 14px; }
.gallery-item {
  aspect-ratio: 1; border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--border); cursor: pointer; transition: transform var(--transition);
  position: relative;
}
.gallery-item:hover { transform: scale(1.03); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; }
.gallery-item__placeholder {
  width: 100%; height: 100%; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 8px;
  background: linear-gradient(135deg, rgba(199,91,122,0.08), rgba(91,42,60,0.06));
}
.gallery-item__placeholder .emoji { font-size: 2.6rem; }
.gallery-item__placeholder span { font-size: 0.82rem; color: var(--text); font-weight: 600; }

/* ─── KONTAKT ─────────────────────────────────────────── */
.kontakt-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 32px; }
.kontakt-form label { display: block; font-size: 0.82rem; color: var(--text-muted); margin-bottom: 4px; }
.kontakt-form .form-group { margin-bottom: 16px; }
.kontakt-form input, .kontakt-form textarea, .kontakt-form select {
  width: 100%; padding: 11px 14px; border: 1px solid var(--border);
  border-radius: 6px; font-size: 0.9rem; font-family: 'Lora', serif;
  background: var(--white); outline: none; transition: border-color var(--transition);
}
.kontakt-form input:focus, .kontakt-form textarea:focus { border-color: var(--rose); }
.kontakt-form textarea { resize: vertical; }
.kontakt-sidebar {
  background: var(--rose-pale); border-radius: var(--radius); padding: 30px;
}
.kontakt-sidebar h3 { font-size: 1.2rem; margin-bottom: 18px; }
.kontakt-sidebar p, .kontakt-sidebar address { font-size: 0.9rem; line-height: 1.9; font-style: normal; }

/* ─── FOOTER ──────────────────────────────────────────── */
.site-footer { background: var(--rose-deeper); padding: 52px 24px 28px; color: rgba(253,245,243,0.65); }
.footer-inner { max-width: 1080px; margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 32px; }
.footer-col h4 {
  font-family: 'Lora', serif; font-size: 0.78rem; font-weight: 700;
  color: var(--gold-light); text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 14px;
}
.footer-col .footer-brand { font-family: 'Playfair Display', serif; font-size: 1.2rem; color: var(--cream); margin-bottom: 12px; }
.footer-col p, .footer-col address { font-size: 0.82rem; line-height: 1.8; font-style: normal; }
.footer-col a { color: rgba(253,245,243,0.65); }
.footer-col a:hover { color: var(--cream); }
.footer-col ul { list-style: none; }
.footer-col ul li { padding: 3px 0; }
.footer-col ul li a { font-size: 0.82rem; }
.footer-bottom {
  max-width: 1080px; margin: 36px auto 0; border-top: 1px solid rgba(253,245,243,0.12);
  padding-top: 20px; text-align: center; font-size: 0.75rem; color: rgba(253,245,243,0.35);
}

/* ─── WORDPRESS SPECIFIC ──────────────────────────────── */
.wp-block-image img { border-radius: var(--radius); }
.entry-content { max-width: 780px; margin: 0 auto; }
.entry-content h2 { margin: 2em 0 0.5em; }
.entry-content ul, .entry-content ol { padding-left: 1.5em; margin-bottom: 1em; }
.page-header { padding: 120px 0 40px; background: var(--rose-pale); text-align: center; }
.page-header h1 { margin-bottom: 8px; }
.page-header p { color: var(--text-muted); }
.page-content { padding: 48px 0; }
.post-meta { font-size: 0.82rem; color: var(--text-muted); margin-bottom: 20px; }

/* ─── WIDGET AREA ─────────────────────────────────────── */
.widget { margin-bottom: 32px; }
.widget h3 { font-size: 1rem; margin-bottom: 12px; padding-bottom: 8px; border-bottom: 2px solid var(--rose-light); }
.widget ul { list-style: none; }
.widget ul li { padding: 6px 0; border-bottom: 1px solid var(--border); }
.widget ul li a { font-size: 0.9rem; }

/* ─── RESPONSIVE ──────────────────────────────────────── */
@media (max-width: 600px) {
  .kgv-section { padding: 48px 0; }
  .news-grid, .garden-grid, .tips-grid { grid-template-columns: 1fr; }
  .vorstand-grid { grid-template-columns: repeat(2, 1fr); }
  .hero { min-height: 80vh; }
  .quicklink { min-width: 110px; padding: 20px 14px; }
  .quicklink__icon { font-size: 1.6rem; }
}
