/* ============================================================
   Schlaraffia CMS – Haupt-Stylesheet v1.0
   Design: Dunkelblau #1a2e5a / Gold #e8b84b / Weiß
   Orientierung: lions.de (modern, seriös, warm)
   ============================================================ */

/* ─── CSS Custom Properties ─────────────────────────────── */
:root {
  --blue-dark:   #1a2e5a;
  --blue-mid:    #1e3a73;
  --blue-light:  #2a4d9c;
  --gold:        #e8b84b;
  --gold-dark:   #c99a30;
  --gold-light:  #f5d070;
  --white:       #ffffff;
  --off-white:   #f8f8f6;
  --gray-light:  #e8e8e8;
  --gray-mid:    #888888;
  --gray-dark:   #333333;
  --text:        #2c2c2c;
  --radius:      8px;
  --radius-lg:   16px;
  --shadow:      0 4px 20px rgba(26,46,90,.15);
  --shadow-hover:0 8px 32px rgba(26,46,90,.25);
  --transition:  0.25s ease;
  --max-width:   1200px;
  --header-h:    80px;
}

/* ─── Reset & Base ───────────────────────────────────────── */
*, *::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: 'Segoe UI', system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
}

img { max-width: 100%; height: auto; display: block; }
a   { color: var(--blue-light); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold-dark); }
h1,h2,h3,h4,h5 { font-weight: 700; line-height: 1.25; color: var(--blue-dark); }

/* ─── Skip Link ──────────────────────────────────────────── */
.skip-link {
  position: absolute; top: -100px; left: 1rem; z-index: 9999;
  background: var(--gold); color: var(--blue-dark); padding: .5rem 1rem;
  border-radius: var(--radius); font-weight: 700;
  transition: top var(--transition);
}
.skip-link:focus { top: 1rem; }

/* ─── Header ─────────────────────────────────────────────── */
#site-header {
  background: var(--blue-dark);
  position: sticky; top: 0; z-index: 1000;
  box-shadow: 0 2px 12px rgba(0,0,0,.4);
}

.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

/* Logo-Bereich */
.site-logo {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-uhu {
  height: 52px;
  width: auto;
  filter: drop-shadow(0 0 6px rgba(232,184,75,.4));
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.logo-title {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: .02em;
}

.logo-subtitle {
  font-size: .85rem;
  font-weight: 400;
  color: var(--gold);
  letter-spacing: .05em;
}

/* Navigation */
#main-nav ul {
  list-style: none;
  display: flex;
  gap: .25rem;
  align-items: center;
}

#main-nav a {
  color: var(--white);
  padding: .5rem .9rem;
  border-radius: var(--radius);
  font-size: .95rem;
  font-weight: 500;
  transition: background var(--transition), color var(--transition);
  white-space: nowrap;
}

#main-nav a:hover,
#main-nav a.active {
  background: rgba(232,184,75,.15);
  color: var(--gold);
}

/* Hamburger */
#nav-toggle {
  display: none;
  background: none;
  border: 2px solid var(--gold);
  border-radius: var(--radius);
  padding: .4rem .55rem;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
}
#nav-toggle span {
  display: block;
  width: 22px; height: 2px;
  background: var(--gold);
  transition: all .3s;
}
#nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
#nav-toggle.open span:nth-child(2) { opacity: 0; }
#nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─── Hero / Banner ──────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--blue-dark);
}

.hero-bg {
  position: absolute; inset: 0;
  background: url('/assets/images/hero-sippung.webp') center/cover no-repeat;
  z-index: 0;
}
/* Fallback für ältere Browser ohne WebP-Support */
.no-webp .hero-bg {
  background-image: url('/assets/images/hero-sippung.jpg');
}

.hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(13,22,50,.72) 0%, rgba(26,46,90,.55) 50%, rgba(13,31,64,.75) 100%);
  z-index: 1;
}

.hero-content {
  position: relative; z-index: 2;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 4rem 1.5rem;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: center;
  width: 100%;
}

.hero-text h1 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  color: var(--white);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.hero-text h1 span { color: var(--gold); }

.hero-lead {
  font-size: 1.15rem;
  color: rgba(255,255,255,.88);
  max-width: 560px;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-wappen {
  width: 160px;
  filter: drop-shadow(0 0 20px rgba(232,184,75,.3));
  animation: float 4s ease-in-out infinite;
}

@keyframes float {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-10px); }
}

/* ─── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .75rem 1.75rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: .95rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  text-decoration: none;
}

.btn-primary {
  background: var(--gold);
  color: var(--blue-dark);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-dark);
  color: var(--blue-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(232,184,75,.4);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.6);
}
.btn-outline:hover {
  background: rgba(255,255,255,.1);
  border-color: var(--white);
  color: var(--white);
}

.btn-blue {
  background: var(--blue-dark);
  color: var(--white);
  border-color: var(--blue-dark);
}
.btn-blue:hover {
  background: var(--blue-mid);
  transform: translateY(-2px);
}

/* ─── Abschnitt-Layout ────────────────────────────────────── */
section { padding: 5rem 1.5rem; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
}

.section-label {
  display: inline-block;
  color: var(--gold-dark);
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: .75rem;
}

.section-title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: var(--blue-dark);
  margin-bottom: 1.25rem;
}

.section-lead {
  font-size: 1.05rem;
  color: var(--gray-mid);
  max-width: 640px;
  margin-bottom: 3rem;
  line-height: 1.75;
}

/* ─── Feature-Karten (Warum Schlaraffia?) ────────────────── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.75rem;
}

.feature-card {
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--blue-light));
  opacity: 0;
  transition: opacity var(--transition);
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: var(--gold-light);
}
.feature-card:hover::before { opacity: 1; }

.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.feature-card h3 {
  font-size: 1.15rem;
  color: var(--blue-dark);
  margin-bottom: .75rem;
}

.feature-card p {
  color: var(--gray-mid);
  font-size: .95rem;
  line-height: 1.65;
}

/* ─── Artikel-Karten ─────────────────────────────────────── */
.articles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.75rem;
}

.article-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}

.article-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.article-card-img {
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--gray-light);
}

.article-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .4s;
}
.article-card:hover .article-card-img img {
  transform: scale(1.05);
}

.article-card-body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.article-card-meta {
  font-size: .8rem;
  color: var(--gray-mid);
  margin-bottom: .5rem;
  display: flex;
  align-items: center;
  gap: .5rem;
}

.article-card h3 {
  font-size: 1.1rem;
  color: var(--blue-dark);
  margin-bottom: .75rem;
  line-height: 1.35;
}

.article-card p {
  color: #666;
  font-size: .92rem;
  flex: 1;
  margin-bottom: 1.25rem;
}

.article-card .link-more {
  color: var(--blue-light);
  font-weight: 600;
  font-size: .9rem;
  display: inline-flex;
  align-items: center;
  gap: .35rem;
}
.article-card .link-more::after { content: '→'; }
.article-card .link-more:hover { color: var(--gold-dark); }

/* ─── Veranstaltungen ────────────────────────────────────── */
.events-list { display: flex; flex-direction: column; gap: 1rem; }

.event-item {
  display: grid;
  grid-template-columns: 72px 1fr auto;
  gap: 1rem;
  align-items: start;
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.5rem;
  transition: all var(--transition);
}

.event-item:hover {
  border-color: var(--gold-light);
  box-shadow: var(--shadow);
}

.event-date {
  text-align: center;
  background: var(--blue-dark);
  color: var(--white);
  border-radius: var(--radius);
  padding: .5rem;
  line-height: 1.2;
}
.event-date .day   { font-size: 1.5rem; font-weight: 800; display: block; color: var(--gold); }
.event-date .month { font-size: .7rem; text-transform: uppercase; letter-spacing: .05em; }

.event-info h4 { color: var(--blue-dark); margin-bottom: .25rem; }
.event-info p  { font-size: .9rem; color: var(--gray-mid); }

.event-time {
  font-size: .85rem;
  color: var(--gray-mid);
  white-space: nowrap;
  padding-top: .25rem;
}
.event-detail {
  display: none;
  margin-top: .6rem;
  padding: .75rem;
  background: #f0f4ff;
  border-radius: 8px;
  font-size: .9rem;
  color: #333;
  line-height: 1.65;
}
.event-detail.open { display: block; }

/* ─── Info-Banner (Schlaraffia weltweit) ──────────────────── */
.info-banner {
  background: linear-gradient(135deg, var(--blue-dark), var(--blue-mid));
  color: var(--white);
  padding: 4rem 1.5rem;
  text-align: center;
}

.info-banner h2 { color: var(--white); font-size: clamp(1.5rem,3vw,2.2rem); margin-bottom: 1rem; }
.info-banner h2 em { color: var(--gold); font-style: normal; }
.info-banner p { color: rgba(255,255,255,.8); max-width: 720px; margin: 0 auto 2rem; font-size: 1.05rem; line-height: 1.75; }

.stats-row {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.stat { text-align: center; }
.stat-num { font-size: 2.5rem; font-weight: 800; color: var(--gold); display: block; }
.stat-lbl { font-size: .85rem; color: rgba(255,255,255,.7); text-transform: uppercase; letter-spacing: .05em; }

/* ─── Kontaktbereich ─────────────────────────────────────── */
.contact-section { background: var(--off-white); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.contact-info h3 { color: var(--blue-dark); margin-bottom: 1rem; }
.contact-info p  { color: #666; margin-bottom: 1.5rem; line-height: 1.75; }

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  margin-bottom: .75rem;
  color: #555;
}
.contact-detail .icon { font-size: 1.2rem; color: var(--blue-light); flex-shrink: 0; margin-top: .1rem; }

/* ─── Formular ────────────────────────────────────────────── */
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-size: .9rem;
  font-weight: 600;
  color: var(--blue-dark);
  margin-bottom: .4rem;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: .75rem 1rem;
  border: 1.5px solid var(--gray-light);
  border-radius: var(--radius);
  font-size: .95rem;
  font-family: inherit;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--blue-light);
  box-shadow: 0 0 0 3px rgba(42,77,156,.12);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-hint { font-size: .8rem; color: var(--gray-mid); margin-top: .3rem; }

/* ─── Modal ───────────────────────────────────────────────── */
.modal-overlay {
  display: none;
  position: fixed; inset: 0;
  background: rgba(0,0,0,.55);
  z-index: 9000;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  backdrop-filter: blur(3px);
}
.modal-overlay.open { display: flex; }

.modal {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  max-width: 480px;
  width: 100%;
  position: relative;
  animation: modal-in .25s ease;
}
@keyframes modal-in {
  from { opacity:0; transform: scale(.9) translateY(20px); }
  to   { opacity:1; transform: scale(1) translateY(0); }
}

.modal-close {
  position: absolute; top: 1rem; right: 1rem;
  background: none; border: none;
  font-size: 1.5rem; cursor: pointer;
  color: var(--gray-mid); line-height: 1;
  padding: .25rem;
}
.modal-close:hover { color: var(--text); }

.modal h3 { color: var(--blue-dark); margin-bottom: .5rem; }
.modal .modal-lead { color: #666; font-size: .95rem; margin-bottom: 1.5rem; }

/* ─── Inhaltsseiten ───────────────────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, var(--blue-dark), var(--blue-mid));
  padding: 4rem 1.5rem;
  text-align: center;
}
.page-hero h1 { color: var(--white); margin-bottom: .5rem; }
.page-hero p  { color: var(--gold); font-size: 1.05rem; }

.page-content {
  max-width: 860px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
}
.page-content h2 {
  color: var(--blue-dark);
  margin: 2rem 0 .75rem;
  font-size: 1.4rem;
}
.page-content h3 { color: var(--blue-mid); margin: 1.5rem 0 .5rem; }
.page-content p  { margin-bottom: 1rem; color: #444; line-height: 1.8; }
.page-content ul { margin: 0 0 1rem 1.5rem; }
.page-content ul li { margin-bottom: .4rem; color: #444; }

/* Glossar-Begriff (Schlaraffenlatein-Erklärung) */
.term {
  border-bottom: 1px dashed var(--gold);
  cursor: help;
  color: var(--blue-light);
}

/* ─── Schlaraffenlatein-Box ───────────────────────────────── */
.info-box {
  background: linear-gradient(135deg, #f0f4ff, #fff8e7);
  border-left: 4px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1.25rem 1.5rem;
  margin: 1.5rem 0;
}
.info-box strong { color: var(--blue-dark); }
.info-box p { margin: 0; color: #555; font-size: .95rem; }

/* ─── Footer ──────────────────────────────────────────────── */
#site-footer {
  background: var(--blue-dark);
  color: rgba(255,255,255,.75);
  padding: 3rem 1.5rem 1.5rem;
}

.footer-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2rem;
}

.footer-about .footer-logo {
  display: flex; align-items: center; gap: .75rem;
  margin-bottom: 1rem;
}
.footer-about .footer-logo img { height: 36px; }
.footer-about .footer-logo span { color: var(--white); font-weight: 700; font-size: 1.1rem; }
.footer-about p { font-size: .9rem; line-height: 1.7; max-width: 320px; }

.footer-nav h4 {
  color: var(--gold);
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 1rem;
}
.footer-nav ul { list-style: none; }
.footer-nav li { margin-bottom: .5rem; }
.footer-nav a { color: rgba(255,255,255,.7); font-size: .9rem; }
.footer-nav a:hover { color: var(--gold); }

.footer-bottom {
  max-width: var(--max-width);
  margin: 0 auto;
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 1.25rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: .85rem;
}
.footer-bottom a { color: rgba(255,255,255,.6); }
.footer-bottom a:hover { color: var(--gold); }

/* ─── Alerts / Benachrichtigungen ────────────────────────── */
.alert {
  padding: .9rem 1.25rem;
  border-radius: var(--radius);
  margin-bottom: 1rem;
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  font-size: .95rem;
}
.alert-success { background: #ecfdf5; color: #065f46; border: 1px solid #6ee7b7; }
.alert-error   { background: #fef2f2; color: #991b1b; border: 1px solid #fca5a5; }
.alert-info    { background: #eff6ff; color: #1d4ed8; border: 1px solid #93c5fd; }
.alert-warning { background: #fffbeb; color: #92400e; border: 1px solid #fcd34d; }

/* ─── Breadcrumb ──────────────────────────────────────────── */
.breadcrumb {
  padding: .75rem 1.5rem;
  background: var(--off-white);
  border-bottom: 1px solid var(--gray-light);
}
.breadcrumb-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  gap: .5rem;
  align-items: center;
  font-size: .85rem;
  color: var(--gray-mid);
}
.breadcrumb a { color: var(--blue-light); }
.breadcrumb .sep { color: var(--gray-light); }
.breadcrumb .current { color: var(--text); font-weight: 600; }

/* ─── Cookie-Banner ───────────────────────────────────────── */
#cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--blue-dark);
  color: rgba(255,255,255,.9);
  padding: 1.25rem 1.5rem;
  z-index: 8000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  box-shadow: 0 -4px 20px rgba(0,0,0,.3);
  transform: translateY(100%);
  transition: transform .4s ease;
}
#cookie-banner.show { transform: translateY(0); }
#cookie-banner p { font-size: .9rem; flex: 1; }
#cookie-banner a { color: var(--gold); }
.cookie-btns { display: flex; gap: .75rem; flex-wrap: wrap; }

/* ─── Responsive ──────────────────────────────────────────── */
@media (max-width: 900px) {
  :root { --header-h: 65px; }

  #nav-toggle { display: flex; }

  #main-nav {
    display: none;
    position: absolute;
    top: var(--header-h);
    left: 0; right: 0;
    background: var(--blue-dark);
    padding: 1rem 1rem 1.5rem;
    border-top: 1px solid rgba(255,255,255,.1);
    box-shadow: 0 8px 20px rgba(0,0,0,.3);
    max-height: calc(100dvh - var(--header-h));
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    z-index: 200;
  }
  #main-nav.open { display: block; }
  #main-nav ul { flex-direction: column; gap: .25rem; }
  #main-nav a { display: block; padding: .75rem 1rem; border-radius: var(--radius); font-size: 1rem; }

  .hero-content { grid-template-columns: 1fr; }
  .hero-wappen  { display: none; }

  .contact-grid  { grid-template-columns: 1fr; }
  .footer-grid   { grid-template-columns: 1fr 1fr; }}

@media (max-width: 600px) {
  section { padding: 3.5rem 1rem; }
  .logo-title    { font-size: 1.1rem; }
  .logo-subtitle { font-size: .75rem; }
  .logo-uhu      { height: 40px; }
  .features-grid { grid-template-columns: 1fr; }
  .footer-grid   { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .event-item    { grid-template-columns: 60px 1fr; }
  .event-time    { display: none; }
  .stats-row     { gap: 1.5rem; }
  .hero { min-height: 460px; }
}

/* ─── Utility Classes ────────────────────────────────────── */
.text-center { text-align: center; }
.text-gold   { color: var(--gold); }
.text-blue   { color: var(--blue-dark); }
.mb-0 { margin-bottom: 0; }
.mt-3 { margin-top: 3rem; }
.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap;
}

/* ─── Placeholder-Bild-Stil ──────────────────────────────── */
.img-placeholder {
  background: linear-gradient(135deg, var(--gray-light) 0%, #d8dde8 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-mid);
  font-size: .85rem;
  aspect-ratio: 16/9;
  border-radius: var(--radius);
}

/* ─── Print ───────────────────────────────────────────────── */
@media print {
  #site-header, #site-footer, #cookie-banner, #nav-toggle, .hero-cta { display: none; }
  body { color: #000; font-size: 12pt; }
}

/* ── REYCH-SUCHE (v2.0) ────────────────────────────────────── */
.suche-section { padding: 3rem 1.5rem; background: #f4f6fb; }
.suche-box { background: #fff; border-radius: 14px; box-shadow: 0 2px 16px rgba(26,46,90,.1); padding: 2rem; max-width: 860px; margin: 0 auto; }
.suche-input-row { display: flex; gap: .75rem; margin-bottom: 0; flex-wrap: wrap; }
.suche-input { flex: 1; min-width: 200px; padding: .85rem 1.25rem; border: 2px solid #d0d7e6; border-radius: 10px; font-size: 1rem; font-family: inherit; transition: border-color .2s; }
.suche-input:focus { outline: none; border-color: #2a4d9c; box-shadow: 0 0 0 3px rgba(42,77,156,.1); }
#suche-map { height: 340px; border-radius: 10px; border: 1px solid #d0d7e6; margin-top: 1.5rem; display: none; }
.suche-results { margin-top: 1.5rem; display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 1rem; }
.reych-card { background: #fff; border-radius: 10px; border: 1px solid #e0e4ef; padding: 1.25rem; position: relative; transition: box-shadow .2s, border-color .2s; }
.reych-card:hover { box-shadow: 0 4px 18px rgba(26,46,90,.12); border-color: #2a4d9c; }
.reych-dist { position: absolute; top: .75rem; right: .75rem; background: #1a2e5a; color: #e8b84b; font-size: .72rem; font-weight: 700; padding: .2rem .6rem; border-radius: 99px; }
.reych-nr   { font-size: .72rem; font-weight: 700; color: #999; text-transform: uppercase; letter-spacing: .05em; margin-bottom: .2rem; }
.reych-name { font-size: .95rem; font-weight: 700; color: #1a2e5a; margin-bottom: .2rem; }
.reych-city { font-size: .85rem; color: #666; margin-bottom: .6rem; }
.reych-type { display: inline-block; font-size: .7rem; font-weight: 700; padding: .15rem .5rem; border-radius: 99px; background: rgba(42,77,156,.1); color: #2a4d9c; margin-bottom: .65rem; }
.reych-links { display: flex; gap: .4rem; flex-wrap: wrap; }
.reych-links a { font-size: .78rem; color: #2a4d9c; border: 1px solid #d0d7e6; padding: .2rem .6rem; border-radius: 99px; transition: all .2s; text-decoration: none; }
.reych-links a:hover { background: #1a2e5a; color: #fff; border-color: #1a2e5a; }
.suche-empty { text-align: center; padding: 2rem; color: #999; }
.map-icon { font-size: 20px; display: flex; align-items: center; justify-content: center; background: transparent; border: none; }
