

/* ----------------------------------------------------------------
   DESIGN TOKENS    
}
   ---------------------------------------------------------------- */
:root {
  --bg:       #ffffff;
  --bg2:      #f5f5f5; 
  --card:     #ffffff;
  --line:     #e5e5e5;
  --green:    #14773f;
  --green2:   #0f6f39;
  --dark:     #111111;
  --gold:     #d89b1d;
  --gold2:    #efb233;
  --text:     #151515;
  --muted:    #5f5f5f;
  --border:   #e5e5e5;
  --radius:   10px;
  --shadow:   0 12px 35px rgba(0,0,0,.18);
}

/* ----------------------------------------------------------------
   1. RESET & BASE
   ---------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { font-size: 25px; scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; height: auto; }
ul { list-style: none; }

/* ----------------------------------------------------------------
   2. CONTAO SEITENSTRUKTUR
   ---------------------------------------------------------------- */
#wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

#container {
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  padding: 2.5rem 1.5rem;
  display: grid;
  grid-template-columns: 1fr 300px;
  grid-template-areas: "main left";
  gap: 2rem;
  flex: 1;
}

/* Startseite: kein Sidebar */
.layout-home #container {
  grid-template-columns: 1fr;
  grid-template-areas: "main";
  padding: 0;
  max-width: none;
}

#main { grid-area: main; min-width: 0; }
#main .inside { width: 100%; }
#left  { grid-area: left;  min-width: 0; }
#left .inside { width: 100%; }
#footer { margin-top: auto; }

/* ----------------------------------------------------------------
   3. HEADER
   ---------------------------------------------------------------- */
#header {
  background: var(--dark);
  border-bottom: 1px solid rgba(255,255,255,.08);
  position: sticky;
  top: 0;
  z-index: 100;
}

#header .inside {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 68px;
  gap: 2rem;
}

/* Logo */
.site-logo { display: flex; align-items: center; gap: 0.6rem; flex-shrink: 0; }
.site-logo img { height: 42px; width: auto; }

.site-logo__name {
  font-size: 1.3rem;
  font-weight: 900;
  color: #fff;
}

.site-logo__name span { color: var(--gold); }

.site-logo__claim {
  display: block;
  font-size: 0.58rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted);
}

/* Hauptnavigation */
#header .mod_navigation ul.level_1 {
  display: flex;
  align-items: center;
  gap: 0.2rem;
}

#header .mod_navigation ul.level_1 > li > a {
  display: block;
  padding: 0.4rem 0.8rem;
  font-size: 0.82rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,.7);
  border-radius: 4px;
  transition: color .18s, background .18s;
}

#header .mod_navigation ul.level_1 > li > a:hover,
#header .mod_navigation ul.level_1 > li.active > a,
#header .mod_navigation ul.level_1 > li.trail  > a {
  color: #fff;
  background: rgba(255,255,255,.08);
}

/* Dropdown */
#header .mod_navigation ul.level_1 > li { position: relative; }

#header .mod_navigation ul.level_2 {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--dark);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 8px;
  min-width: 200px;
  z-index: 200;
  padding: 0.4rem 0;
  box-shadow: var(--shadow);
}

#header .mod_navigation ul.level_1 > li:hover > ul.level_2 { display: block; }

#header .mod_navigation ul.level_2 > li > a {
  display: block;
  padding: 0.55rem 1rem;
  font-size: 0.82rem;
  color: rgba(255,255,255,.65);
  transition: color .15s, background .15s;
}

#header .mod_navigation ul.level_2 > li > a:hover {
  color: #fff;
  background: rgba(20,119,63,.25);
}

/* Header CTA */
.header-cta { display: flex; align-items: center; gap: 0.6rem; flex-shrink: 0; }

/* ----------------------------------------------------------------
   4. BUTTONS
   ---------------------------------------------------------------- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--green);
  color: #fff;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 0.65rem 1.4rem;
  border-radius: 8px;
  transition: background .2s;
  white-space: nowrap;
}

.btn-primary:hover { background: var(--green2); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  border: 2px solid var(--dark);
  color: var(--dark);
  background: transparent;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.63rem 1.4rem;
  border-radius: 8px;
  transition: border-color .2s, color .2s;
  white-space: nowrap;
}

.btn-outline:hover { border-color: var(--green); color: var(--green); }

/* Outline auf dunklem Hintergrund */
.on-dark .btn-outline {
  border-color: rgba(255,255,255,.5);
  color: #fff;
}

.on-dark .btn-outline:hover {
  border-color: #fff;
  background: rgba(255,255,255,.08);
}

/* ----------------------------------------------------------------
   5. UTILITIES
   ---------------------------------------------------------------- */
.section-label {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

/* ----------------------------------------------------------------
   6. HERO
   ---------------------------------------------------------------- */
.mod_article.hero-section {
  position: relative;
  min-height: 80vh;
  overflow: hidden;
  background: var(--dark);
}

.hero-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,.65) 0%, rgba(0,0,0,.3) 60%, rgba(0,0,0,.08) 100%);
  z-index: 1;
}

.hero-section .inside {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1.5rem;
  min-height: 80vh;
  display: grid;
  grid-template-columns: 1fr 420px;
  align-items: center;
  gap: 3rem;
}

.hero-left { display: flex; flex-direction: column; padding: 4rem 0; }

.hero-badge {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.hero-section .ce_headline h1 {
  font-size: clamp(3rem, 8vw, 6.5rem);
  font-weight: 900;
  color: #fff;
  line-height: 0.92;
  letter-spacing: -0.02em;
  margin-bottom: 1.4rem;
}

.hero-section .ce_text p {
  font-size: 1rem;
  color: rgba(255,255,255,.8);
  max-width: 560px;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.hero-actions { display: flex; gap: 0.8rem; flex-wrap: wrap; }

/* Hero-Karte */
.hero-right { display: flex; align-items: center; }

.hero-card {
  background: var(--card);
  border-radius: var(--radius);
  overflow: hidden;
  width: 100%;
  box-shadow: 0 20px 60px rgba(0,0,0,.5);
}

.hero-card .image_container { aspect-ratio: 16 / 10; overflow: hidden; }
.hero-card .image_container img { width: 100%; height: 100%; object-fit: cover; }
.hero-card__body { padding: 1.5rem 1.6rem 1.8rem; }

.hero-card__badge {
  display: block;
  font-size: 0.63rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.hero-card__title {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--green);
  line-height: 1.2;
  margin-bottom: 0.6rem;
}

.hero-card__text { font-size: 0.85rem; color: var(--muted); line-height: 1.55; }

/* ----------------------------------------------------------------
   7. RUBRIKEN-GRID
   ---------------------------------------------------------------- */
.mod_article.rubriken-section { background: var(--bg2); padding: 4.5rem 0; border-bottom: 1px solid  #e5e5e5;}

.rubriken-section .inside {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.rubriken-section .ce_headline h2 {
  font-size: clamp(3.5rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 2.5rem;
  font-size: 28px;
    margin-bottom: 18px;
   
}

.rubriken-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }

.rubrik-card {
  display: block;
  background: var(--card);
  border: 1px solid var(--line);
  padding: 1.8rem 1.5rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  color: var(--text);
  transition: box-shadow .2s, transform .2s;
}

.rubrik-card:hover {
  box-shadow: 0 16px 45px rgba(20,119,63,.15);
  transform: translateY(-3px);
  border: 1px solid var(--green2);
}

.rubrik-card h3 { font-size: 1rem; font-weight: 700; color: var(--green2); margin-bottom: 0.5rem; }
.rubrik-card p  { font-size: 0.83rem; color: var(--muted); line-height: 1.55; }

/* ----------------------------------------------------------------
   8. NEWS-SECTION WRAPPER (mod_newslist Kontext)
   ---------------------------------------------------------------- */
.news-section {
  background: var(--bg);
  padding: 4.5rem 0;
}

.news-section .inside {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.news-section__label {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.news-section__headline {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 2.5rem;
}

/* ----------------------------------------------------------------
   9. NEWSLIST GRID
   ---------------------------------------------------------------- */
.newslist-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

/* Auf Innenseiten mit Sidebar */
#main .newslist-grid { grid-template-columns: repeat(3, 1fr); }

/* ----------------------------------------------------------------
   10. NEWS-CARD (news_latest.html5)
   ---------------------------------------------------------------- */
.news-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow);
  transition: box-shadow .2s, transform .2s;
}

.news-card:hover {
  box-shadow: 0 16px 45px rgba(20,119,63,.14);
  transform: translateY(-2px);
}

/* Bild */
.news-card__image { display: block; overflow: hidden; }

.news-card .image_container { aspect-ratio: 16 / 9; overflow: hidden; }

.news-card .image_container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s;
}

.news-card:hover .image_container img { transform: scale(1.04); }

/* Body */
.news-card__body {
  padding: 1.2rem 1.3rem 1.4rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

/* Info-Zeile: Datum | Autor */
.news-card .info {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--green);
  margin-bottom: 0.6rem;
}

.news-card__date   { color: var(--muted); font-weight: 400; }
.news-card__sep    { color: var(--line); }
.news-card__author { color: var(--muted); font-weight: 400; }

/* Titel */
.news-card__title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.35;
  margin-bottom: 0.6rem;
}

.news-card__title a          { color: inherit; }
.news-card__title a:hover    { color: var(--green); }

/* Teaser */
.news-card__teaser {
  font-size: 0.84rem;
  color: var(--muted);
  line-height: 1.55;
  flex: 1;
  margin-bottom: 1rem;
}

/* Weiterlesen */
.news-card .more {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--green);
  margin-top: auto;
  transition: gap .2s;
}

.news-card:hover .more { gap: 0.55rem; }

/* Sidebar: kompakte Newslist */
#left .newslist-grid {
  display: flex;
  flex-direction: column;
  gap: 0;
}

#left .news-card {
  flex-direction: row;
  border-radius: 10px;
  border: none;
  border-bottom: 1px solid var(--line);
  background: transparent;
  box-shadow: none;
  padding: 0.8rem 0;
  gap: 0.8rem;
  transform: none;
}

#left .news-card:hover { background: var(--bg2); transform: none; box-shadow: none; }

#left .news-card .image_container {
  width: 72px;
  height: 52px;
  flex-shrink: 0;
  aspect-ratio: unset;
  border-radius: 8px;
}

#left .news-card__body   { padding: 0; }
#left .news-card__title  { font-size: 0.82rem; }
#left .news-card__teaser,
#left .news-card .more   { display: none; }

/* ----------------------------------------------------------------
   11. NEWSREADER
   ---------------------------------------------------------------- */
.mod_newsreader { max-width: 860px; }

.news-header { margin-bottom: 2rem; }

.news-header .info {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--green);
  margin-bottom: 1rem;
}

.news-header .info .sep { color: var(--line); }

.news-title {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--dark);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 0.8rem;
}

.news-subheadline { font-size: 1.1rem; color: var(--muted); }

.news-hero { margin: 1.5rem 0 2rem; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }

.news-hero .caption { font-size: 0.78rem; color: var(--muted); padding: 0.5rem 0; }

.news-body { font-size: 1rem; line-height: 1.85; color: var(--text); }
.news-body h2, .news-body h3 { color: var(--dark); margin: 1.8rem 0 0.8rem; font-weight: 700; }
.news-body p   { margin-bottom: 1.2rem; }
.news-body a   { color: var(--green); text-decoration: underline; }
.news-body img { border-radius: 12px; margin: 1.5rem 0; }

.news-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.5rem;
  margin-top: 2rem;
  border-top: 1px solid var(--line);
  font-size: 0.83rem;
  color: var(--muted);
}

.back-link { color: var(--green); }
.back-link:hover { text-decoration: underline; }

/* ----------------------------------------------------------------
   12. VERANSTALTUNGEN
   ---------------------------------------------------------------- */
.mod_article.events-section { background: var(--bg2); padding: 4.5rem 0; border-bottom: 1px solid  #e5e5e5; }

.events-section .inside { max-width: 1400px; margin: 0 auto; padding: 0 1.5rem; }

.events-section .ce_headline h2 {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 2.5rem;
}

.mod_eventlist { display: flex; flex-direction: column; }

.event.layout_upcoming {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  padding: 1.2rem 0;
  border-bottom: 1px solid var(--line);
}

.event.layout_upcoming:first-child { border-top: 1px solid var(--line); }

.event__date {
  flex-shrink: 0;
  width: 56px;
  text-align: center;
  background: var(--green);
  border-radius: 10px;
  padding: 0.6rem 0.3rem;
}

.event__day   { display: block; font-size: 1.5rem; font-weight: 900; color: #fff; line-height: 1; }
.event__month { display: block; font-size: 0.62rem; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,.8); margin-top: 0.2rem; }

.event__title  { font-size: 1rem; font-weight: 700; color: var(--dark); margin-bottom: 0.3rem; }
.event__title a:hover { color: var(--green); }
.event__location { font-size: 0.78rem; color: var(--muted); margin-bottom: 0.3rem; }
.event__teaser   { font-size: 0.83rem; color: var(--muted); }

/* ----------------------------------------------------------------
   13. SIDEBAR (#left)
   ---------------------------------------------------------------- */
#left .mod_article { margin-bottom: 2rem; }

#left .ce_headline h3 {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted);
  padding-bottom: 0.6rem;
  border-bottom: 2px solid var(--green);
  margin-bottom: 1rem;
}

#left .mod_navigation ul.level_1 > li > a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.875rem;
  color: var(--text);
  transition: color .2s;
}

#left .mod_navigation ul.level_1 > li > a::after { content: '?'; color: var(--line); }
#left .mod_navigation ul.level_1 > li > a:hover,
#left .mod_navigation ul.level_1 > li.active > a { color: var(--green); }

.sidebar-ad {
  background: var(--bg2);
  border: 1px dashed var(--line);
  padding: 1.5rem;
  text-align: center;
  border-radius: var(--radius);
}

.sidebar-ad__label {
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted);
  margin-bottom: 0.3rem;
}

/* ----------------------------------------------------------------
   14. REICHWEITE-BANNER
   ---------------------------------------------------------------- */
.mod_article.reichweite-section { background: var(--green); padding: 4.5rem 0; }

.reichweite-section .inside { max-width: 1400px; margin: 0 auto; padding: 0 1.5rem; }

.reichweite-section .section-label { color: rgba(255,255,255,.6); }

.reichweite-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }

.reichweite-section .ce_headline h2 {
  font-size: clamp(1.6rem, 3vw, 2.5rem);
  font-weight: 900;
  color: #fff;
  margin-bottom: 1rem;
}

.reichweite-section .ce_text p { color: rgba(255,255,255,.8); margin-bottom: 2rem; }

/* ----------------------------------------------------------------
   15. MITMACHEN STEPS
   ---------------------------------------------------------------- */
.mod_article.mitmachen-section { background: var(--bg2); padding: 5rem 0; border-bottom: 1px solid  #e5e5e5; border-top: 1px solid  #e5e5e5;}

.mitmachen-section .inside { max-width: 1400px; margin: 0 auto; padding: 0 1.5rem; }

.mitmachen-section .ce_headline h2 {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 3rem;
}

.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; }

.step-item .step-number {
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--green);
  line-height: 1;
  margin-bottom: 0.8rem;
}



.step-item {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 34px;
    box-shadow: var(--shadow);
}



.step-item h3 { font-size: 1rem; font-weight: 700; color: var(--dark); margin-bottom: 0.5rem; }
.step-item p  { font-size: 0.83rem; color: var(--muted); line-height: 1.55; }

/* ----------------------------------------------------------------
   16. SOCIAL MEDIA
   ---------------------------------------------------------------- */
.mod_article.social-section { background: var(--bg2); padding: 4.5rem 0; }

.social-section .inside { max-width: 1400px; margin: 0 auto; padding: 0 1.5rem; }

.social-section .ce_headline h2 {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 2.5rem;
}

.social-media-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }

.social-media-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: box-shadow .2s, transform .2s;
}

.social-media-card:hover {
  box-shadow: 0 16px 45px rgba(20,119,63,.14);
  transform: translateY(-2px);
}

.social-media-card .image_container { aspect-ratio: 4 / 3; overflow: hidden; }
.social-media-card .image_container img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.social-media-card:hover .image_container img { transform: scale(1.04); }
.social-media-card .card-body { padding: 1.1rem 1.2rem; }
.social-media-card h3 { font-size: 0.95rem; font-weight: 700; color: var(--dark); margin-bottom: 0.3rem; }
.social-media-card p  { font-size: 0.83rem; color: var(--muted); }

/* ----------------------------------------------------------------
   17. KONTAKT
   ---------------------------------------------------------------- */
.mod_article.kontakt-section { background: var(--bg2); padding: 5rem 0; text-align: center; }

.kontakt-section .inside { max-width: 680px; margin: 0 auto; padding: 0 1.5rem; }

.kontakt-section .ce_headline h2 {
  font-size: clamp(1.5rem, 3vw, 2.3rem);
  font-weight: 900;
  color: var(--dark);
  margin-bottom: 0.8rem;
}

.kontakt-section .ce_text p { font-size: 1rem; color: var(--muted); margin-bottom: 2rem; }

.kontakt-actions { display: flex; justify-content: center; gap: 0.8rem; flex-wrap: wrap; }

/* ----------------------------------------------------------------
   18. PAGINATION
   ---------------------------------------------------------------- */
.pagination-wrapper { margin-top: 2.5rem; }

.pagination { display: flex; align-items: center; gap: 0.3rem; }

.pagination a,
.pagination strong {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  font-size: 0.83rem;
  border-radius: 8px;
  border: 1px solid var(--line);
  color: var(--text);
  background: var(--card);
  transition: border-color .2s, color .2s, background .2s;
}

.pagination strong,
.pagination a:hover {
  border-color: var(--green);
  color: var(--green);
  background: rgba(20,119,63,.06);
}

.pagination .previous a,
.pagination .next a { width: auto; padding: 0 0.8rem; }

/* ----------------------------------------------------------------
   19. BREADCRUMB
   ---------------------------------------------------------------- */
.mod_breadcrumb {
  font-size: 0.75rem;
  color: var(--muted);
  padding: 0.8rem 0;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid var(--line);
}

.mod_breadcrumb ul { display: flex; flex-wrap: wrap; gap: 0.4rem; align-items: center; }
.mod_breadcrumb li + li::before { content: '?'; color: var(--line); margin-right: 0.2rem; }
.mod_breadcrumb a { color: var(--muted); transition: color .2s; }
.mod_breadcrumb a:hover { color: var(--green); }
.mod_breadcrumb .last { color: var(--text); font-weight: 500; }

/* ----------------------------------------------------------------
   20. FOOTER
   ---------------------------------------------------------------- */
#footer {
  background: var(--dark);
  border-top: 1px solid rgba(255,255,255,.08);
  color: rgba(255,255,255,.6);
}

#footer .inside { max-width: 1400px; margin: 0 auto; padding: 3.5rem 1.5rem 1.5rem; }

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
  margin-bottom: 1.5rem;
}

.footer-brand__name { font-size: 1.15rem; font-weight: 900; color: #fff; margin-bottom: 0.6rem; }
.footer-brand__name span { color: var(--gold); }
.footer-brand__desc { font-size: 0.83rem; color: rgba(255,255,255,.4); line-height: 1.6; max-width: 290px; }

.footer-col__title {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(255,255,255,.35);
  margin-bottom: 1rem;
}

#footer .mod_navigation ul.level_1 { display: flex; flex-direction: column; gap: 0.5rem; }
#footer .mod_navigation ul.level_1 a { font-size: 0.83rem; color: rgba(255,255,255,.5); transition: color .2s; }
#footer .mod_navigation ul.level_1 a:hover { color: #fff; }
#footer .mod_navigation ul.level_1 .active a { color: rgba(255,255,255,.75); }

.footer-copyright { text-align: center; font-size: 0.72rem; color: rgba(255,255,255,.25); }
.footer-copyright a { color: rgba(255,255,255,.4); }
.footer-copyright a:hover { color: var(--gold); }

/* ----------------------------------------------------------------
   21. RESPONSIVE
   ---------------------------------------------------------------- */
@media (max-width: 1200px) {
  #container { grid-template-columns: 1fr 260px; }
  .rubriken-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  #container {
    grid-template-columns: 1fr;
    grid-template-areas: "main" "left";
  }
  .hero-section .inside { grid-template-columns: 1fr; min-height: auto; padding: 4rem 1.5rem; }
  .hero-right { display: none; }
  .newslist-grid { grid-template-columns: repeat(2, 1fr); }
  #main .newslist-grid { grid-template-columns: repeat(3, 1fr); }
  .social-media-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  #header .inside { flex-wrap: wrap; min-height: auto; padding: 0.8rem 1rem; }
  #header .mod_navigation { display: none; }
  .newslist-grid,
  #main .newslist-grid,
  .rubriken-grid,
  .social-media-grid,
  .steps-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-actions,
  .kontakt-actions { flex-direction: column; }
}

