/* =========================================================
   JGV Bell – styles.css (REWORK) – CLEAN VERSION
   ========================================================= */

:root{
  --bg: #0b1220;
  --header: #004f0d;
  --footer: #004f0d;
  --panel: #0f1a2e;
  --text: #e6e6e6;
  --muted: rgba(230,230,230,.80);
  --line: rgba(255,255,255,.12);
  --accent: #ffe201;

  --max: 1100px;
  --header-h: 68px;
  --r: 14px;
  --pill: 999px;

  --shadow: 0 14px 40px rgba(0,0,0,.35);
}

/* =========================================================
   BASE / RESET
   ========================================================= */
*{ box-sizing:border-box; margin:0; padding:0; }
html,body{ height:100%; }
html{ scroll-behavior:smooth; }

body{
  font-family: system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,Cantarell,Noto Sans,Arial,sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

img{ max-width:100%; height:auto; display:block; }
a{ color:inherit; text-decoration:none; }
ul{ list-style:none; }

:focus-visible{
  outline: 2px solid rgba(255,226,1,.75);
  outline-offset: 3px;
  border-radius: 10px;
}

.container{
  max-width: var(--max);
  margin-inline:auto;
  padding-inline: 16px;
}

/* =========================================================
   HEADER / NAV (DESKTOP)
   ========================================================= */
.site-header{
  position: fixed;
  inset: 0 0 auto 0;
  height: var(--header-h);
  z-index: 1000;

  background: var(--header);
  border-bottom: 1px solid rgba(255,255,255,.10);
  box-shadow: 0 10px 26px rgba(0,0,0,.28);
}

.nav-container{
  height: 100%;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 14px;
}

/* Logo */
.logo{
  display:flex;
  align-items:center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: .3px;
}
.logo:hover{ color: var(--accent); }

.logo-img{
  width: 44px;
  height: 44px;
  border-radius: 12px;
  box-shadow: 0 10px 20px rgba(0,0,0,.25);
}

.main-nav{ position:relative; }

.main-nav .menu{
  display:flex;
  align-items:center;
  gap: 18px;
}

.menu-item{ position:relative; }

.menu-link{
  display:inline-flex;
  align-items:center;
  padding: 10px 12px;
  border-radius: 12px;
  color: var(--text);
  opacity: .92;
  transition: transform .12s ease, background .12s ease, color .12s ease, opacity .12s ease;
}
.menu-link:hover{
  background: rgba(0,0,0,.18);
  color: var(--accent);
  transform: translateY(-1px);
  opacity: 1;
}

/* Dropdown (Desktop hover) */
.dropdown{
  position:absolute;
  top: calc(100% + 10px);
  right: 0;
  min-width: 240px;

  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--r);
  box-shadow: var(--shadow);
  padding: 8px;

  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity .16s ease, transform .16s ease, visibility .16s ease;
}

.dropdown a{
  display:block;
  padding: 10px 12px;
  border-radius: 12px;
  color: var(--muted);
  transition: background .12s ease, color .12s ease, transform .12s ease;
}
.dropdown a:hover{
  background: rgba(255,255,255,.06);
  color: var(--accent);
  transform: translateY(-1px);
}

.has-dropdown:hover > .dropdown{
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Spacer for fixed header */
.header-spacer{ height: var(--header-h); }

/* =========================================================
   MAIN / FOOTER
   ========================================================= */
.site-main{ padding: 24px 0 90px; }
.flow > * + *{ margin-top: 18px; }

.site-footer{
  background: var(--footer);
  border-top: 1px solid rgba(255,255,255,.10);
  padding: 22px 0 10px;
  text-align:center;
}

.footer-text{
  color: var(--text);
  opacity: .88;
  margin-bottom: 12px;
}

/* Buttons */
.button-row{
  display:flex;
  flex-wrap:wrap;
  gap: 12px;
  margin: 16px 0 24px;
}
.footer-buttons{
  justify-content:center;
  margin-bottom: 0;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height: 38px;
  padding: 8px 14px;

  border-radius: var(--pill);
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(90,90,90,.85);
  color: #fff;
  font-weight: 750;

  transition: transform .12s ease, filter .12s ease, background .12s ease;
}
.btn:hover{
  transform: translateY(-1px);
  filter: brightness(1.06);
  background: rgba(255,255,255,.10);
}
.btn:active{ transform: translateY(0); }

/* =========================================================
   MOBILE NAV – Right Drawer + Overlay + Accordion
   ========================================================= */

.nav-toggle{
  position:absolute;
  opacity:0;
  pointer-events:none;
}

.nav-toggle-btn{
  display:none;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(0,0,0,.20);
  box-shadow: 0 10px 20px rgba(0,0,0,.20);
  cursor:pointer;
  align-items:center;
  justify-content:center;
}

.nav-toggle-btn span,
.nav-toggle-btn span::before,
.nav-toggle-btn span::after{
  content:"";
  display:block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 3px;
  position: relative;
  transition: transform .16s ease, top .16s ease, opacity .16s ease;
}
.nav-toggle-btn span::before{ position:absolute; top:-7px; left:0; }
.nav-toggle-btn span::after { position:absolute; top: 7px; left:0; }

.nav-toggle:checked + .nav-toggle-btn span{ background: transparent; }
.nav-toggle:checked + .nav-toggle-btn span::before{ top:0; transform: rotate(45deg); }
.nav-toggle:checked + .nav-toggle-btn span::after { top:0; transform: rotate(-45deg); }

@media (max-width: 760px){
  .nav-toggle-btn{ display:inline-flex; }

  .main-nav{ position: relative; }
  .main-nav:has(.nav-toggle:checked)::after{
    content:"";
    position: fixed;
    inset: var(--header-h) 0 0 0;
    background: rgba(0,0,0,.45);
    backdrop-filter: blur(3px);
    z-index: 0;
  }

  .main-nav .menu{
    position: fixed;
    top: var(--header-h);
    right: 0;
    bottom: 0;

    width: min(380px, 88vw);
    padding: 14px 14px 18px;

    display: flex;
    flex-direction: column;
    gap: 10px;

    background: rgba(15,26,46,.96);
    border-left: 1px solid rgba(255,255,255,.12);
    box-shadow: -22px 0 60px rgba(0,0,0,.45);

    transform: translateX(105%);
    opacity: 0.98;
    pointer-events: none;

    transition: transform .28s ease, opacity .28s ease;
    z-index: 1;
  }

  .nav-toggle:checked ~ .menu{
    transform: translateX(0);
    opacity: 1;
    pointer-events: auto;
  }

  .menu-item{ width: 100%; }

  .menu-link{
    width: 100%;
    justify-content: space-between;
    padding: 13px 12px;
    border-radius: 12px;

    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.10);
    box-shadow: 0 10px 18px rgba(0,0,0,.18);

    opacity: 1;
    transform: none;
  }

  .menu-link:hover{
    background: rgba(255,255,255,.07);
    color: var(--accent);
  }

  .has-dropdown > .menu-toggle{
    position: relative;
    padding-right: 44px;
  }

  .has-dropdown > .menu-toggle::after{
    content: "⌄";
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    opacity: .85;
    transition: transform .2s ease;
  }

  .has-dropdown.open > .menu-toggle::after{
    transform: translateY(-50%) rotate(180deg);
  }

  .dropdown{
    position: static;
    visibility: visible;
    transform: none;
    box-shadow: none;
    min-width: 0;
    border: none;
    padding: 0;

    margin: 6px 0 2px 8px;
    border-left: 2px solid rgba(255,226,1,.55);
    padding-left: 12px;

    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transform: translateY(-4px);

    transition: max-height .25s ease, opacity .2s ease, transform .2s ease;
  }

  .has-dropdown.open > .dropdown{
    max-height: 520px;
    opacity: 1;
    transform: translateY(0);
  }

  .dropdown a{
    display:block;
    margin-top: 8px;
    padding: 10px 12px;
    border-radius: 10px;

    background: rgba(0,0,0,.22);
    border: 1px solid rgba(255,255,255,.10);

    color: var(--muted);
    font-size: .95rem;
  }

  .dropdown a:hover{
    background: rgba(255,255,255,.06);
    color: var(--accent);
  }

  .logo span{
    font-size: 1.02rem;
    white-space: nowrap;
  }
}

/* =========================================================
   HOME: Slideshow + Kacheln (dark)
   ========================================================= */
.home-hero{ display: grid; gap: 14px; }

.slider{
  position: relative;
  border-radius: var(--r);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: rgba(0,0,0,.22);
}

.slides{
  display: flex;
  width: 300%;
  animation: sliderMove 18s infinite;
}

@keyframes sliderMove{
  0%, 28%   { transform: translateX(0%); }
  33%, 61%  { transform: translateX(-33.333%); }
  66%, 94%  { transform: translateX(-66.666%); }
  100%      { transform: translateX(0%); }
}

.slide{
  position: relative;
  width: 33.333%;
  max-height: 720px;
}

.slide img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.05) contrast(1.02);
}

.slide::after{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(90deg, rgba(11,18,32,.92) 0%, rgba(11,18,32,.60) 45%, rgba(11,18,32,.18) 100%),
    linear-gradient(180deg, rgba(0,0,0,.30) 0%, rgba(0,0,0,.05) 60%, rgba(0,0,0,.45) 100%);
}

.caption{
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  align-content: center;
  gap: 10px;
  padding: 22px;
  max-width: 720px;
}

.caption h1{
  font-size: clamp(1.6rem, 2.8vw, 2.3rem);
  line-height: 1.15;
}
.caption h2{
  font-size: clamp(1.4rem, 2.4vw, 2.0rem);
  line-height: 1.2;
}
.caption p{
  color: var(--muted);
  max-width: 60ch;
}

.caption-actions{
  display:flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 4px;
}

.btn-ghost{
  background: rgba(0,0,0,.18);
  border-color: rgba(255,255,255,.18);
}

.slider-dots{
  position:absolute;
  left: 18px;
  bottom: 14px;
  z-index: 3;
  display:flex;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(0,0,0,.22);
  border: 1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(6px);
}
.slider-dots span{
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(255,255,255,.35);
  display:block;
  animation: dotPulse 18s infinite;
}
.slider-dots span:nth-child(2){ animation-delay: 6s; }
.slider-dots span:nth-child(3){ animation-delay: 12s; }

@keyframes dotPulse{
  0%, 18% { background: var(--accent); }
  22%, 100% { background: rgba(255,255,255,.35); }
}

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

.tile{
  display: grid;
  gap: 8px;
  padding: 16px;
  border-radius: var(--r);
  border: 1px solid var(--line);
  background: rgba(255,255,255,.03);
  transition: transform .12s ease, background .12s ease, border-color .12s ease;
}

.tile:hover{
  transform: translateY(-1px);
  background: rgba(255,255,255,.05);
  border-color: rgba(255,255,255,.18);
}

.tile-kicker{
  font-size: .85rem;
  color: var(--muted);
  letter-spacing: .2px;
}

.tile h3{ font-size: 1.1rem; }

.tile p{
  color: var(--muted);
  font-size: .95rem;
}

.tile-link{
  color: var(--accent);
  font-weight: 750;
  margin-top: 2px;
}

@media (max-width: 900px){
  .slide{ min-height: 320px; }
  .tile-row{ grid-template-columns: 1fr; }
  .caption{ padding: 18px; }
}

/* =========================================================
   HERO FULL + TEXT
   ========================================================= */
.hero-full{
  position: relative;
  width: 100%;
  height: min(80vh, 720px);
  overflow: hidden;
  border-radius: var(--r);
}

.hero-full img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-full::after{
  content:"";
  position:absolute;
  inset:0;
  background: rgba(0,0,0,.45);
}

.hero-text{
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
}

.hero-text h1{
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.1;
}

.hero-text p{
  margin-top: 10px;
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  color: var(--muted);
}

@media (max-width: 720px){
  .hero-full{ height: 40vh; min-height: 240px; }
}

/* =========================================================
   TEXTBEREICH
   ========================================================= */
.unter-text{ margin-top: 40px; }

.unter-text h2{
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  margin-bottom: 18px;
}

.unter-text p{
  color: var(--muted);
  margin-bottom: 14px;
}

/* =========================================================
   JHV Info Box (Dark)
   ========================================================= */
.jhv-info{
  margin: 28px auto 0;
  padding: 16px 18px;
  max-width: 520px;
  width: 100%;

  border-radius: var(--r);
  background: rgba(255,255,255,.035);
  border: 1px solid var(--line);
  box-shadow: 0 14px 40px rgba(0,0,0,.25);

  position: relative;
}

.jhv-info::before{
  content:"";
  position:absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: rgba(255,226,1,.75);
}

.jhv-info h3{
  margin: 0 0 12px 0;
  font-size: 1.15rem;
  color: var(--text);
}

.jhv-info-grid{ display: grid; gap: 10px; }

.jhv-row{
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 12px;
  align-items: baseline;

  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(0,0,0,.18);
  border: 1px solid rgba(255,255,255,.10);
}

.jhv-label{ color: var(--muted); font-weight: 700; }
.jhv-value{ color: var(--text); }

@media (max-width: 520px){
  .jhv-row{ grid-template-columns: 1fr; gap: 6px; }
}

/* =========================================================
   CENTER HERO
   ========================================================= */
.center {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  overflow: hidden;
  border-radius: var(--r);
  width: 100%;
  height: max(70vh, 520px);
}

.center img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.center::after{
  content:"";
  position:absolute;
  inset:0;
  background: rgba(0,0,0,.45);
}

/* =========================================================
   TERMINE – TIMELINE
   ========================================================= */
.termin-liste.timeline{
  margin: 26px auto 18px;
  padding: 0;
  max-width: 760px;
  text-align: left;
  display: grid;
  gap: 12px;
  position: relative;
}

.termin-liste.timeline::before{
  content:"";
  position:absolute;
  left: 26px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: rgba(255,226,1,.28);
  border-radius: 10px;
}

.termin-item{
  position: relative;
  display: grid;
  grid-template-columns: 84px 1fr;
  align-items: center;
  gap: 12px;

  padding: 14px 16px 14px 72px;
  border-radius: 16px;
  background: rgba(255,255,255,.035);
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: 0 10px 22px rgba(0,0,0,.28);
}

.termin-item::before{
  content:"";
  position:absolute;
  left: 18px;
  top: 50%;
  width: 16px;
  height: 16px;
  transform: translateY(-50%);
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 6px rgba(255,226,1,.14);
}

.termin-date{
  font-weight: 900;
  color: var(--accent);
  letter-spacing: .3px;
}

.termin-title{
  font-weight: 700;
  color: var(--text);
}

.termin-download-wrapper{
  display: flex;
  justify-content: center;
  margin-top: 18px;
}

.termin-download{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;

  border-radius: 999px;
  font-weight: 900;

  color: #000;
  background: var(--accent);
  border: 1px solid rgba(0,0,0,.25);

  transition: transform .12s ease, filter .12s ease;
}

.termin-download:hover{
  transform: translateY(-1px);
  filter: brightness(1.05);
}

@media (max-width: 520px){
  .termin-liste.timeline::before{ left: 20px; }
  .termin-item{
    grid-template-columns: 74px 1fr;
    padding-left: 62px;
  }
}

/* =========================================================
   SATZUNG
   ========================================================= */
.satzung-subtitle {
  margin-top: .25rem;
  margin-bottom: 1.5rem;
  opacity: .85;
  line-height: 1.4;
}

.satzung-block {
  margin: 1.25rem 0 1.5rem;
  padding: 1.1rem 1.2rem;
  border-radius: 14px;
  background: rgba(255,255,255,.06);
}

.satzung-block h3 { margin: 0 0 .7rem; }

.satzung-roman { margin: 0; padding-left: 1.2rem; }

.satzung-roman > li{
  margin: .55rem 0;
  line-height: 1.6;
}

.satzung-list{ margin: .55rem 0 .75rem 1.2rem; }
.satzung-list li{ margin: .35rem 0; }

/* =========================================================
   CONTACT FORM (FIXED)
   ========================================================= */
.contact-section{ padding: 40px 0; }
.contact-form{ max-width: 720px; margin: 20px auto 0; }

.form-grid{ display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-field{ display: grid; gap: 6px; margin-bottom: 14px; }

.contact-form input,
.contact-form textarea{
  width: 100%;
  padding: 12px;
  border-radius: 10px;
  border: 1px solid rgba(0,0,0,.2);
  background-color: #e0e0e0;
  color: #333;
}

.contact-form input:focus,
.contact-form textarea:focus{
  background-color: #d6d6d6;
  border-color: #999;
  outline: none;
}

.form-status .status{ max-width: 720px; margin: 10px auto; padding: 12px; border-radius: 10px; }
.form-status .ok{ border: 1px solid rgba(0,150,0,.35); }
.form-status .err{ border: 1px solid rgba(180,0,0,.35); }
.hp{ display:none; }

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

/* =========================================================
   FORM ROW
   ========================================================= */
.form-row{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

@media (max-width: 768px){
  .form-row{ grid-template-columns: 1fr; }
}

.notice-success{
  background: #e6f7ec;
  border: 1px solid #b6e2c1;
  color: #1e6b3a;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  margin-bottom: 1rem;
}

/* =========================================================
   ARTIKEL EDITOR – DARK
   ========================================================= */
.article-editor{
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 22px;
  box-shadow: var(--shadow);
}

.editor-head{ margin-bottom: 18px; }

.editor-head h1{
  font-size: clamp(1.5rem, 3vw, 2rem);
}

.muted{ color: var(--muted); }
.small{ font-size: .9rem; }

.editor-form .form-field{
  display: grid;
  gap: 6px;
  margin-bottom: 14px;
}

.editor-form label{ font-weight: 700; }

.editor-form input,
.editor-form textarea{
  background: rgba(0,0,0,.35);
  border: 1px solid var(--line);
  color: var(--text);
  padding: 12px 14px;
  border-radius: 12px;
  font-family: inherit;
}

.editor-form input:focus,
.editor-form textarea:focus{
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(255,226,1,.18);
}

.editor-form textarea{
  resize: vertical;
  min-height: 180px;
}

/* Grid */
.grid-2{
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
@media (min-width: 820px){
  .grid-2{ grid-template-columns: 1fr 1fr; }
}

/* Status Box */
.status-box{
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  padding: 14px;
  border-radius: 14px;
  background: rgba(255,255,255,.04);
  border: 1px solid var(--line);
  margin-top: 10px;
}

.status-control{
  display: flex;
  align-items: center;
  gap: 12px;
}

.status-label{ font-weight: 800; }

/* Switch */
.switch{
  position: relative;
  width: 52px;
  height: 30px;
}
.switch input{ opacity: 0; }

.slider{
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,.25);
  border-radius: 999px;
  transition: .2s;
}

.slider::before{
  content:"";
  position: absolute;
  left: 4px;
  top: 4px;
  width: 22px;
  height: 22px;
  background: #fff;
  border-radius: 50%;
  transition: .2s;
}

.switch input:checked + .slider{ background: var(--accent); }
.switch input:checked + .slider::before{ transform: translateX(22px); }

.editor-actions{
  margin-top: 18px;
  display: flex;
  justify-content: flex-end;
}

/* =========================================================
   LATEST ARTICLES (LIST LINKS)
   ========================================================= */
.latest-articles{
  max-width: 820px;
  margin: 30px auto 0;
}

.latest-articles-title{
  font-size: 1.4rem;
  margin-bottom: 12px;
}

.latest-articles-empty{ color: var(--muted); }

.latest-articles-list{
  display: grid;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.latest-articles-link{
  display:flex;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.035);
}

.latest-articles-link:hover{
  border-color: rgba(255,226,1,.45);
}

.latest-articles-name{ font-weight: 800; }
.latest-articles-date{ color: var(--muted); white-space: nowrap; }

/* =========================================================
   ARTIKEL – Karten (FINAL)
   ========================================================= */
.articles-wrap{ padding: 34px 0 10px; }

.articles-head{
  max-width: 900px;
  margin: 0 auto 18px;
  text-align: center;
}

.articles-title{
  font-size: 2rem;
  margin: 0 0 8px;
  letter-spacing: .2px;
}

.articles-subtitle{
  margin: 0;
  color: var(--muted);
}

.articles-grid{
  display: grid;
  gap: 18px;
  max-width: 980px;
  margin: 0 auto;
}

/* Kasten um jeden Artikel */
.article-card{
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 18px;

  padding: 18px;
  border-radius: 20px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.04);
  box-shadow: 0 14px 40px rgba(0,0,0,.25);
}

.article-title{
  margin: 0 0 10px;
  font-size: 1.55rem;
  text-align: center;
}

.article-media{
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.03);
  min-height: 170px;
}

.article-img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-placeholder{
  width: 100%;
  height: 100%;
  min-height: 170px;
  display: grid;
  place-items: center;
  color: var(--muted);
  font-weight: 800;
  letter-spacing: .8px;
  text-transform: uppercase;
}

.article-body{ padding: 4px 4px 6px; }

.article-meta{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: .9rem;
  margin-bottom: 12px;
}

.article-dot{ opacity: .7; }

.article-content{ line-height: 1.65; }

.articles-empty{
  text-align: center;
  color: var(--muted);
  padding: 16px 0;
}

@media (max-width: 820px){
  .article-card{ grid-template-columns: 1fr; }
  .article-media{ min-height: 220px; }
}

/* =========================================================
   REDUCED MOTION
   ========================================================= */
@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior:auto; }
  *{ transition:none !important; animation:none !important; }
}



/* Artikel: Bild oben, Text unten */
.article-card{
  display: grid;
  grid-template-columns: 1fr !important; /* überschreibt "Bild links" */
  gap: 14px;
}

.article-media{
  min-height: 240px;
}

.article-img{
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* Optional: Titel bleibt mittig */
.article-title{
  text-align: center;
}
