/*
Theme Name: Eislöwen-Power
Theme URI: https://www.eisloewen-power.de
Author: Sven
Author URI: https://www.eisloewen-power.de
Description: Sportliches WordPress-Theme im Eishockey-Look. Navy/Eis/Rot-Design mit anpassbarem Hero-Bereich, Plugin-Karten direkt unter dem Hero, Newsbereich und vollständiger Gutenberg-/Block-Editor-Kompatibilität.
Version: 2.1.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 8.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: dercomputerladen
Tags: dark, sport, eishockey, gutenberg, block-editor, responsive
*/

/* ════════════════════════════════════════════
   WEBFONTS
   Barlow Condensed (Headlines, sportlich/kantig) + Inter (Fließtext)
   werden über Google Fonts geladen (siehe functions.php).
   AGENCYR bleibt als lokaler Fallback erhalten, falls Datei vorhanden.
════════════════════════════════════════════ */
@font-face {
  font-family: 'AGENCYR';
  src: url('assets/fonts/AGENCYR.woff2') format('woff2'),
       url('assets/fonts/AGENCYR.woff')  format('woff'),
       url('assets/fonts/AGENCYR.ttf')   format('truetype');
  font-weight: normal;
  font-style:  normal;
  font-display: swap;
}

/* ════════════════════════════════════════════
   CSS CUSTOM PROPERTIES – Eishockey-Palette
   Navy-Eis + kräftiges Trikot-Rot, kantig & sportlich
════════════════════════════════════════════ */
:root {
  --dcl-black:       #060b14;
  --dcl-anthracite:  #0e1c30;
  --dcl-anthracite2: #1a2f4a;
  --dcl-card:        #12233b;
  --dcl-border:      #23405f;
  --dcl-border-light:#e2e0dc;
  --dcl-accent:      #e0293f;
  --dcl-accent2:     #ff4d5e;
  --dcl-ice:         #cfe3f7;
  --dcl-silver:      #93a5bd;
  --dcl-text:        #eef3f9;
  --dcl-text-dark:   #0e1c30;
  --dcl-muted:       #93a5bd;
  --dcl-muted-dark:  #5b6c85;
  --dcl-white:       #ffffff;
  --dcl-radius:      6px;
  --dcl-font-head:   'Barlow Condensed', 'Agency FB', AGENCYR, sans-serif;
  --dcl-font-body:   'Inter', 'DM Sans', sans-serif;
}

/* ════════════════════════════════════════════
   RESET & BASE
════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
/* WordPress Admin-Bar Anpassung */
html { scroll-behavior: smooth; }
.admin-bar .site-header { top: 32px; }
@media (max-width: 782px) { .admin-bar .site-header { top: 46px; } }
#wpadminbar { position: fixed !important; }
body {
  background: var(--dcl-anthracite, #0e1c30);
  color: var(--dcl-text, #eef3f9);
  font-family: var(--dcl-font-body, 'DM Sans', sans-serif);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--dcl-accent); text-decoration: none; transition: color .2s; }
a:hover { color: var(--dcl-accent2); }
ul { list-style: none; }

/* ════════════════════════════════════════════
   TYPOGRAPHY
════════════════════════════════════════════ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--dcl-font-head);
  color: var(--dcl-white);
  line-height: 1.05;
  letter-spacing: 0.01em;
  font-weight: 700;
  text-transform: uppercase;
}
h1 { font-size: clamp(2.2rem, 5vw, 4.2rem); letter-spacing: 0.01em; font-weight: 800; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 700; }
h3 { font-size: 1.3rem; }
h4 { font-size: 1.05rem; }
p { margin-bottom: 1rem; color: var(--dcl-muted); line-height: 1.7; }
p:last-child { margin-bottom: 0; }

/* ════════════════════════════════════════════
   NAVIGATION
════════════════════════════════════════════ */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  height: 64px;
  background: rgba(15,15,15,0.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(224,41,63,0.2);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 0 0 0;
  box-shadow: 0 2px 20px rgba(0,0,0,0.4);
}
.site-branding a {
  font-family: var(--dcl-font-head);
  font-weight: normal; font-size: 1.1rem;
  color: var(--dcl-white); letter-spacing: 0.04em;
  display: flex; align-items: center;
}
.site-branding a span { color: var(--dcl-accent); }
.site-branding img { height: 36px; width: auto; }

.main-navigation ul { display: flex; gap: 28px; list-style: none; margin: 0; padding: 0; margin-left: -12px; }
.main-navigation ul a { color: #888; font-size: 0.88rem; font-weight: 500; white-space: nowrap; }
.main-navigation ul a:hover { color: var(--dcl-white); }
.main-navigation ul .current-menu-item > a,
.main-navigation ul .current-menu-ancestor > a { color: var(--dcl-white); }

/* ── Dropdown ── */
.main-navigation ul li { position: relative; }
.main-navigation ul li:hover > .sub-menu,
.main-navigation ul li:focus-within > .sub-menu { opacity: 1; visibility: visible; transform: translateY(0); pointer-events: all; }

.main-navigation .sub-menu {
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    min-width: 200px;
    background: #1a1a1a;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.4);
    padding: 6px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    transition: opacity .2s, transform .2s, visibility .2s;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 0;
}
.main-navigation .sub-menu li { width: 100%; }
.main-navigation .sub-menu a {
    display: block;
    padding: 9px 18px;
    font-size: 0.85rem;
    color: #93a5bd;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    white-space: nowrap;
}
.main-navigation .sub-menu li:last-child a { border-bottom: none; }
.main-navigation .sub-menu a:hover { color: #fff; background: rgba(255,255,255,0.05); }

/* Pfeil-Indikator bei Eltern-Links */
.main-navigation ul li.menu-item-has-children > a::after {
    content: '▾';
    margin-left: 4px;
    font-size: 10px;
    opacity: .6;
}

/* 2. Ebene Untermenü */
.main-navigation .sub-menu .sub-menu {
    top: 0;
    left: calc(100% + 4px);
}

@media(max-width:768px) {
    .main-navigation { display: none; }
    .main-navigation.is-open {
        display: block;
        position: fixed;
        top: 58px;
        left: 0; right: 0;
        background: #111;
        border-top: 1px solid rgba(255,255,255,0.08);
        z-index: 199;
        max-height: calc(100vh - 58px);
        overflow-y: auto;
    }
    .main-navigation.is-open ul {
        flex-direction: column;
        gap: 0;
        background: transparent;
        border-top: none;
        padding: 8px 0;
    }
    .main-navigation.is-open ul a {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 14px 24px;
        border-bottom: 1px solid rgba(255,255,255,0.06);
        color: #ddd;
        font-size: 1rem;
        font-weight: 500;
    }
    .main-navigation.is-open ul a:hover { color: #fff; background: rgba(255,255,255,0.04); }
    .main-navigation.is-open .current-menu-item > a { color: var(--dcl-accent); }

    /* Untermenü auf Mobile */
    .main-navigation.is-open .sub-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        border-radius: 0;
        background: rgba(224,41,63,0.06);
        padding: 0;
        display: none;
        min-width: unset;
    }
    .main-navigation.is-open .sub-menu.is-open { display: flex; }
    .main-navigation.is-open .sub-menu a {
        padding: 12px 24px 12px 42px;
        font-size: 0.9rem;
        color: #bbb;
        border-bottom: 1px solid rgba(255,255,255,0.04);
    }
    .main-navigation.is-open .sub-menu a:hover { color: var(--dcl-accent); }

    /* Pfeil-Icon auf Mobile */
    .main-navigation.is-open li.menu-item-has-children > a::after {
        content: '▾';
        font-size: 12px;
        margin-left: auto;
        padding-left: 8px;
        opacity: .7;
        transition: transform .2s;
    }
    .main-navigation.is-open li.menu-item-has-children > a.sub-open::after {
        transform: rotate(180deg);
    }
}

.header-cta { padding-right: 16px; }
.header-cta a {
  background: var(--dcl-accent); color: #fff !important;
  padding: 8px 18px; border-radius: 5px;
  font-weight: 700; font-size: 0.85rem;
  transition: background .2s, transform .2s;
}
.header-cta a:hover { background: var(--dcl-accent2); transform: translateY(-1px); }

.menu-toggle { display:none; background:none; border:none; cursor:pointer; flex-direction:column; gap:5px; padding:4px; }
.menu-toggle span { display:block; width:24px; height:2px; background:var(--dcl-white); border-radius:2px; transition:all .3s; }

/* ════════════════════════════════════════════
   HERO SECTION
════════════════════════════════════════════ */
.hero-section {
  min-height: 40vh;
  display: flex; align-items: center;
  padding: 84px 96px 64px;
  position: relative; overflow: hidden;
  background: var(--dcl-black);
  background-size: cover; background-position: center;
  clip-path: polygon(0 0, 100% 0, 100% 92%, 0 100%);
}
/* Optionales Hero-Hintergrundbild (dcl_hero_bg_image), wird als style="" inline gesetzt */
.hero-bg-image {
  position: absolute; inset: 0; z-index: 0;
  background-size: cover; background-position: center;
  opacity: 0.35;
}
.hero-bg-gradient {
  position: absolute; inset: 0; z-index: 0;
  background:
    linear-gradient(100deg, rgba(6,11,20,0.97) 0%, rgba(6,11,20,0.75) 45%, rgba(224,41,63,0.22) 100%),
    radial-gradient(ellipse 55% 70% at 85% 50%, rgba(224,41,63,0.22) 0%, transparent 65%);
}
/* Eisbahn-Streifen – diagonale "Speed Lines" wie auf einem Trikot/Eisbahnrand */
.hero-grid-bg {
  position: absolute; inset: 0; z-index: 0;
  background-image: repeating-linear-gradient(
    115deg,
    rgba(255,255,255,0.035) 0px, rgba(255,255,255,0.035) 2px,
    transparent 2px, transparent 46px
  );
  mask-image: linear-gradient(100deg, black 0%, transparent 70%);
}
/* Rote Diagonal-Kante am rechten Rand, typisch für Sport-Trikot-Cuts */
.hero-section::after {
  content: '';
  position: absolute; top: 0; right: -6%; bottom: 0; width: 34%;
  background: linear-gradient(100deg, transparent 0%, rgba(224,41,63,0.16) 100%);
  clip-path: polygon(30% 0, 100% 0, 100% 100%, 0% 100%);
  z-index: 0; pointer-events: none;
}
.hero-content { position: relative; z-index: 1; max-width: 680px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--dcl-accent); border: none;
  color: #fff; padding: 6px 16px 6px 12px;
  clip-path: polygon(0 0, 100% 0, 92% 100%, 0% 100%);
  font-size: 0.75rem; font-weight: 800; letter-spacing: 0.1em;
  text-transform: uppercase; margin-bottom: 18px;
  animation: fadeUp 0.6s ease both;
}
.hero-badge::before { content: '●'; font-size: 0.5rem; }
.hero-section h1 {
  animation: fadeUp 0.6s 0.1s ease both;
  color: var(--dcl-white);
  font-style: italic;
}
.hero-section h1 em { font-style: italic; color: var(--dcl-accent); }
.hero-sub {
  margin-top: 14px; font-size: 0.95rem; color: var(--dcl-silver);
  max-width: 480px; line-height: 1.7;
  text-transform: none;
  animation: fadeUp 0.6s 0.2s ease both;
}
.hero-actions {
  margin-top: 26px; display: flex; gap: 12px; flex-wrap: wrap;
  animation: fadeUp 0.6s 0.3s ease both;
}

/* ════════════════════════════════════════════
   BUTTONS
════════════════════════════════════════════ */
.btn-primary {
  background: var(--dcl-accent); color: #ffffff !important;
  padding: 15px 30px 15px 26px; border-radius: 3px;
  font-weight: 700; font-size: 0.92rem;
  text-transform: uppercase; letter-spacing: 0.04em;
  text-decoration: none; display: inline-block;
  clip-path: polygon(0 0, 100% 0, 100% 70%, 96% 100%, 0 100%);
  transition: transform .2s, box-shadow .2s;
  box-shadow: 0 2px 12px rgba(224,41,63,0.25);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(224,41,63,0.4);
  color: #ffffff !important;
}
.btn-ghost {
  border: 1.5px solid var(--dcl-border); color: var(--dcl-text) !important;
  padding: 15px 30px 15px 26px; border-radius: 3px;
  font-weight: 600; font-size: 0.92rem;
  text-transform: uppercase; letter-spacing: 0.04em;
  text-decoration: none; display: inline-block;
  clip-path: polygon(0 0, 100% 0, 100% 70%, 96% 100%, 0 100%);
  transition: border-color .2s, color .2s, background .2s;
  background: transparent;
}
.btn-ghost:hover {
  border-color: var(--dcl-accent);
  color: var(--dcl-accent) !important;
}
.btn-outline {
  border: 1.5px solid rgba(224,41,63,0.4); color: var(--dcl-accent) !important;
  padding: 10px 22px; border-radius: 3px;
  font-weight: 700; font-size: 0.85rem;
  text-transform: uppercase; letter-spacing: 0.03em;
  display: inline-block; transition: all .2s;
  background: transparent;
}
.btn-outline:hover { background: rgba(224,41,63,0.06); border-color: var(--dcl-accent); }

/* ════════════════════════════════════════════
   STATS BAND
════════════════════════════════════════════ */
.stats-band {
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 24px 96px;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
  background: var(--dcl-anthracite);
}
.stat { text-align: center; }
.stat-num { font-family: var(--dcl-font-head); font-weight: normal; font-size: 1.8rem; color: var(--dcl-white); letter-spacing: 0.04em; }
.stat-num sup { color: var(--dcl-accent); font-size: 1rem; }
.stat-label { font-size: 0.8rem; color: var(--dcl-muted); margin-top: 3px; }

/* ════════════════════════════════════════════
   INFO NOTICE
════════════════════════════════════════════ */
.info-notice {
  margin: 32px 48px 0;
  background: rgba(224,41,63,0.08); border: 1px solid rgba(224,41,63,0.2);
  border-left: 3px solid var(--dcl-accent);
  border-radius: 10px; padding: 20px 24px;
  display: flex; align-items: flex-start; gap: 14px;
}
.info-notice-icon { font-size: 1.2rem; min-width: 26px; margin-top: 2px; }
.info-notice h4 { font-size: 0.9rem; margin-bottom: 5px; color: var(--dcl-white); }
.info-notice p { font-size: 0.85rem; margin: 0; color: var(--dcl-muted); }
.info-notice-text { font-size: 0.85rem; color: var(--dcl-muted); }
.info-notice-text p { font-size: inherit; color: inherit; margin: 0 0 6px; }
.info-notice-text p:last-child { margin-bottom: 0; }
.info-notice-text a { color: var(--dcl-accent); }
.info-notice-text strong { color: var(--dcl-white); }
.info-notice-text ul, .info-notice-text ol { margin: 4px 0 0 1.2em; padding: 0; }

/* ════════════════════════════════════════════
   SECTION BASE
════════════════════════════════════════════ */
.section { padding: 80px 96px; background: var(--dcl-anthracite); content-visibility: auto; contain-intrinsic-size: 0 600px; }
.section--dark { background: #0a1526; }
.section-label { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--dcl-accent); margin-bottom: 8px; display: block; }
#products .section-header { max-width: 100%; }
.section-header { max-width: 560px; margin-bottom: 48px; }
.section-header p { margin-top: 10px; }


/* ════════════════════════════════════════════
   PRODUKT-KARTEN (Shop-Style)
════════════════════════════════════════════ */
.dcl-prod-card {
  transition: transform .2s, box-shadow .2s;
  display: flex;
  flex-direction: column;
}

/* Bild-Bereich: weißer Hintergrund, feste Höhe */
.dcl-prod-img-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  height: 240px;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  flex-shrink: 0;
}
.dcl-prod-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
}
.dcl-prod-badge {
  position: absolute; top: 10px; right: 10px;
  font-size: 11px; font-weight: 700;
  padding: 3px 10px; border-radius: 100px;
  z-index: 1;
}

/* Inhaltsbereich */
.dcl-prod-body {
  padding: 14px 16px 16px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.dcl-prod-name {
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 10px;
  font-family: 'DM Sans', var(--dcl-font-body), sans-serif;
  letter-spacing: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Specs-Tabelle (CPU/RAM/SSD/GPU/OS) */
.dcl-prod-specs {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 12px;
  flex: 1;
}
.dcl-prod-specs tr + tr td { padding-top: 3px; }
.dcl-spec-key {
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  width: 40px;
  vertical-align: top;
  padding-right: 8px;
  white-space: nowrap;
}
.dcl-spec-val {
  font-size: 0.8rem;
  vertical-align: top;
  line-height: 1.4;
}

/* Freier Beschreibungstext (Fallback) */
.dcl-prod-desc {
  font-size: 0.8rem;
  line-height: 1.5;
  margin-bottom: 10px;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Preis + Button-Bereich */
.dcl-prod-footer {
  padding-top: 10px;
  margin-top: auto;
}
.dcl-prod-price {
  font-size: 1.3rem;
  font-weight: 800;
  font-family: 'DM Sans', var(--dcl-font-body), sans-serif;
  margin-bottom: 2px;
  line-height: 1;
}
.dcl-prod-tax {
  font-size: 10px;
  opacity: .75;
  margin-bottom: 10px;
}
.dcl-prod-btn {
  display: block;
  text-align: center;
  padding: 12px 16px;
  font-size: 0.9rem;
  font-weight: 700;
  border-radius: 8px;
  width: 100%;
  box-sizing: border-box;
  margin: 0;
}

/* ════════════════════════════════════════════
   SERVICES GRID
════════════════════════════════════════════ */
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 14px; overflow: hidden;
}
.service-card {
  background: #12233b; padding: 32px 28px;
  transition: background .2s; position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--dcl-accent), transparent);
  opacity: 0; transition: opacity .3s;
}
.service-card:hover { background: #12233b; }
.service-card:hover::before { opacity: 1; }
.service-icon {
  width: 44px; height: 44px; border-radius: 8px;
  background: rgba(224,41,63,0.12); border: 1px solid rgba(224,41,63,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; margin-bottom: 16px;
  overflow: hidden; flex-shrink: 0;
}
.service-card h3 { font-size: 1rem; margin-bottom: 8px; color: var(--dcl-white); }
.service-card p { font-size: 0.85rem; color: var(--dcl-muted); }
.service-card .service-link {
  display: inline-flex; align-items: center; gap: 5px;
  color: var(--dcl-accent); font-size: 0.82rem; font-weight: 600;
  margin-top: 12px; transition: gap .2s;
}
.service-card .service-link:hover { gap: 9px; color: var(--dcl-accent2); }

/* ════════════════════════════════════════════
   PLUGINS-BAND (direkt unter dem Hero, nebeneinander)
════════════════════════════════════════════ */
.plugins-section {
  padding: 0 96px; margin-top: -1px; position: relative; z-index: 2;
  background: var(--dcl-anthracite);
}
/* Mobile-first: Basis = 1 Spalte. Mehr Spalten erst ab Breakpoint (siehe unten). */
.plugins-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px; padding: 40px 0 56px;
}
/* Tablet: max. 2 Spalten */
@media (min-width: 769px) {
  .plugins-grid.cols-2,
  .plugins-grid.cols-3 { grid-template-columns: repeat(2, 1fr); }
}
/* Desktop: volle Spaltenzahl */
@media (min-width: 1025px) {
  .plugins-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
  .plugins-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
}
.plugin-card {
  background: var(--dcl-card); border: 1px solid var(--dcl-border);
  border-top: 3px solid var(--dcl-accent);
  padding: 26px 24px; position: relative; overflow: hidden;
  min-width: 0; /* verhindert, dass breite Widgets das Grid sprengen */
  clip-path: polygon(0 0, 100% 0, 100% 92%, 94% 100%, 0 100%);
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.plugin-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(0,0,0,0.35);
  border-color: var(--dcl-accent);
}
.plugin-card-icon {
  width: 46px; height: 46px; border-radius: 6px;
  background: rgba(224,41,63,0.14); border: 1px solid rgba(224,41,63,0.25);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.35rem; margin-bottom: 14px; overflow: hidden; flex-shrink: 0;
}
.plugin-card-icon img { width: 100%; height: 100%; object-fit: contain; }
.plugin-card h3 {
  font-size: 1.05rem; margin-bottom: 8px; color: var(--dcl-white);
  letter-spacing: 0.02em;
}
.plugin-card p { font-size: 0.85rem; color: var(--dcl-muted); margin-bottom: 0; }
.plugin-card .plugin-link {
  display: inline-flex; align-items: center; gap: 5px;
  color: var(--dcl-accent); font-size: 0.82rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.03em;
  margin-top: 14px; transition: gap .2s;
}
.plugin-card .plugin-link:hover { gap: 9px; color: var(--dcl-accent2); }
.plugin-card-embed {
  margin-top: 14px;
  max-width: 100%;
  overflow-x: auto;                 /* breite Tabellen scrollen, statt abgeschnitten zu werden */
  -webkit-overflow-scrolling: touch;
}
.plugin-card-embed table { width: 100%; }
.plugin-card-embed img { max-width: 100%; height: auto; }
/* Eingebettete Fremd-Plugins nicht vom Theme-Headline-Stil überschreiben lassen */
.plugin-card-embed h1, .plugin-card-embed h2, .plugin-card-embed h3,
.plugin-card-embed h4, .plugin-card-embed h5, .plugin-card-embed h6 {
  text-transform: none;
  letter-spacing: normal;
  font-style: normal;
}

/* ════════════════════════════════════════════
   FOOTER-EMBLEM (mittiges Vereinslogo)
════════════════════════════════════════════ */
.footer-emblem {
  display: flex !important;
  align-items: center;
  justify-content: center !important;
  text-align: center;
  width: 100%;
  padding: 56px 48px;
}
.footer-emblem a {
  display: inline-block;
  margin: 0 auto;
  line-height: 0;
  transition: transform .25s ease;
}
.footer-emblem a:hover { transform: scale(1.04); }
.footer-emblem img {
  width: auto;
  max-width: 100%;
  display: block;
}
@media (max-width: 700px) {
  .footer-emblem { padding: 32px 20px; }
  .footer-emblem img { max-height: 160px; }
}

/* ════════════════════════════════════════════
   SEITEN-HERO (gemeinsam: Unterseiten, Beiträge,
   News-Archiv, Spielplan, Kader)
════════════════════════════════════════════ */
.dcl-page-hero {
  position: relative;
  overflow: hidden;
  padding: 72px 96px 56px;
  background: var(--dcl-page-hero-bg, var(--dcl-black));
  border-bottom: 3px solid var(--dcl-page-hero-accent, var(--dcl-accent));
}
.dcl-page-hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background-size: cover; background-position: center;
}
/* Eisbahn-Streifen */
.dcl-page-hero-lines {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background-image: repeating-linear-gradient(
    115deg,
    rgba(255,255,255,.035) 0px, rgba(255,255,255,.035) 2px,
    transparent 2px, transparent 46px
  );
  -webkit-mask-image: linear-gradient(100deg, #000 0%, transparent 70%);
          mask-image: linear-gradient(100deg, #000 0%, transparent 70%);
}
.dcl-page-hero-inner { position: relative; z-index: 2; }

.dcl-page-hero-label {
  display: inline-block;
  background: var(--dcl-page-hero-label-bg, var(--dcl-accent));
  color: var(--dcl-page-hero-label-color, #fff);
  padding: 5px 16px 5px 12px;
  clip-path: polygon(0 0, 100% 0, 92% 100%, 0% 100%);
  font-family: var(--dcl-font-body);
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  margin-bottom: 14px;
}
.dcl-page-hero h1 {
  font-family: var(--dcl-font-head);
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-weight: 800; font-style: italic;
  text-transform: uppercase; letter-spacing: 0.01em;
  color: var(--dcl-page-hero-title, #fff);
  margin: 0 0 10px; line-height: 1.05;
}
.dcl-page-hero p {
  color: var(--dcl-page-hero-text, var(--dcl-muted));
  font-size: 0.95rem; margin: 0;
  text-transform: none;
}

@media (max-width: 1024px) {
  .dcl-page-hero { padding: 56px 32px 44px; }
}
@media (max-width: 700px) {
  .dcl-page-hero { padding: 44px 20px 32px; }
  .dcl-page-hero h1 { font-size: clamp(1.6rem, 8vw, 2.3rem); }
  .dcl-page-hero-label { font-size: 11px; }
  .dcl-page-hero p { font-size: 0.86rem; }
}

/* ════════════════════════════════════════════
   SPOTIFY-SEKTION (über dem Footer)
════════════════════════════════════════════ */
.spotify-section {
  padding: 56px 96px 48px;
  background: var(--dcl-anthracite);
  border-top: 3px solid var(--dcl-accent);
  text-align: center;
}
.spotify-header { margin-bottom: 28px; }
.spotify-label {
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--dcl-accent);
  margin-bottom: 6px; display: block;
}
.spotify-header h2 { font-size: clamp(1.4rem, 2.5vw, 2rem); color: var(--dcl-white); }

/* Mobile-first: 1 Spalte, mehr erst ab Breakpoint */
.spotify-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  text-align: left;
}
@media (min-width: 769px) {
  .spotify-grid.cols-2,
  .spotify-grid.cols-3 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1025px) {
  .spotify-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
  .spotify-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
}

.spotify-item {
  background: var(--dcl-card);
  border: 1px solid var(--dcl-border);
  border-top: 3px solid var(--dcl-accent);
  padding: 18px;
  min-width: 0;
  transition: transform .2s, border-color .2s, box-shadow .2s;
}
.spotify-item:hover {
  transform: translateY(-3px);
  border-color: var(--dcl-accent);
  box-shadow: 0 14px 32px rgba(0,0,0,.35);
}
.spotify-item-title {
  font-family: var(--dcl-font-head);
  font-size: 1.05rem; font-weight: 700;
  letter-spacing: 0.02em; text-transform: uppercase;
  color: var(--dcl-white);
  margin: 0 0 12px;
}
.spotify-item iframe { display: block; max-width: 100%; }

/* ════════════════════════════════════════════
   PARTNER-SEKTION (über dem Footer)
════════════════════════════════════════════ */
.partners-section {
  padding: 56px 96px 48px;
  background: var(--dcl-black);
  border-top: 3px solid var(--dcl-accent);
  text-align: center;
}
.partners-header { margin-bottom: 32px; }
.partners-label {
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--dcl-accent);
  margin-bottom: 6px; display: block;
}
.partners-header h2 { font-size: clamp(1.4rem, 2.5vw, 2rem); color: var(--dcl-white); }
.partners-grid {
  display: flex; flex-wrap: wrap;
  align-items: center; justify-content: center;
  gap: 20px;
}
.partner-item {
  flex: 0 1 auto;
  display: flex; align-items: center; justify-content: center;
  min-width: 150px; min-height: 88px; padding: 16px 24px;
  background: var(--dcl-card); border: 1px solid var(--dcl-border);
  clip-path: polygon(0 0, 100% 0, 100% 88%, 93% 100%, 0 100%);
  transition: transform .2s, border-color .2s, background .2s;
}
a.partner-item:hover {
  transform: translateY(-3px);
  border-color: var(--dcl-accent);
  background: var(--dcl-anthracite2);
}
.partner-item img {
  width: auto; object-fit: contain;
  filter: grayscale(100%) brightness(1.6); opacity: 0.75;
  transition: filter .25s, opacity .25s;
}
a.partner-item:hover img { filter: grayscale(0%) brightness(1); opacity: 1; }
.partner-name {
  font-family: var(--dcl-font-head);
  font-size: 1.05rem; font-weight: 700; letter-spacing: 0.04em;
  text-transform: uppercase; color: var(--dcl-silver);
  transition: color .2s;
}
a.partner-item:hover .partner-name { color: var(--dcl-white); }

/* ════════════════════════════════════════════
   NEWS SECTION
════════════════════════════════════════════ */
.news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }

/* Sportliche Karte – gleicher Aufbau wie die Trikot-Karten */
.news-card {
  background: var(--dcl-card);
  border: 1px solid var(--dcl-border);
  border-top: 3px solid var(--dcl-accent);
  border-radius: 0;
  overflow: hidden;
  min-width: 0;
  display: flex; flex-direction: column;
  clip-path: polygon(0 0, 100% 0, 100% 95%, 96% 100%, 0 100%);
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.news-card:hover {
  transform: translateY(-4px);
  border-color: var(--dcl-accent);
  box-shadow: 0 16px 36px rgba(0,0,0,.42);
}

/* Bild */
.news-card-media { position: relative; overflow: hidden; }
.news-card-image {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  object-position: center;
  display: block;
  height: auto;
  transition: transform .35s ease;
}
.news-card:hover .news-card-image { transform: scale(1.05); }
.news-card-image-placeholder {
  width: 100%; aspect-ratio: 16/9;
  background: var(--dcl-anthracite2);
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem; opacity: .5;
}

/* Kategorie als kantiger Badge über dem Bild */
.news-card-media .news-category {
  position: absolute; top: 0; left: 0;
  background: var(--dcl-accent);
  color: #fff;
  padding: 5px 16px 5px 10px;
  border-radius: 0;
  clip-path: polygon(0 0, 100% 0, 88% 100%, 0% 100%);
  font-size: 10px; font-weight: 800;
  letter-spacing: .08em; text-transform: uppercase;
}

.news-card-body { padding: 16px 18px 18px; flex: 1; display: flex; flex-direction: column; }
.news-meta { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }

/* Fallback: Kategorie im Textteil (wenn kein Bild vorhanden) */
.news-card-body .news-category {
  background: transparent;
  border: 1px solid var(--dcl-accent);
  color: var(--dcl-accent);
  font-size: 0.66rem; font-weight: 700;
  padding: 2px 8px; border-radius: 100px;
  text-transform: uppercase; letter-spacing: 0.06em;
}
.news-date {
  font-size: 0.7rem; color: var(--dcl-muted);
  font-weight: 600; letter-spacing: .04em; text-transform: uppercase;
}

.news-card h3 {
  font-family: var(--dcl-font-head);
  font-size: 1.15rem;
  font-weight: 700;
  font-style: normal;
  letter-spacing: .02em;
  text-transform: uppercase;
  line-height: 1.15;
  margin-bottom: 8px;
}
.news-card h3 a { color: var(--dcl-white); }
.news-card h3 a:hover { color: var(--dcl-accent); }

.news-card p {
  font-size: 0.83rem; flex: 1;
  color: var(--dcl-muted);
  line-height: 1.6;
}
.news-card .read-more {
  color: var(--dcl-accent);
  font-size: 0.78rem; font-weight: 700;
  letter-spacing: .04em; text-transform: uppercase;
  margin-top: 14px;
  display: inline-flex; align-items: center; gap: 5px;
  transition: gap .2s;
}
.news-card .read-more:hover { gap: 9px; }
.news-section-footer { text-align: center; margin-top: 40px; }

/* ════════════════════════════════════════════
   OPENING HOURS
════════════════════════════════════════════ */
.hours-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
  margin-top: 48px;
}
.hours-card {
  background: #ffffff; border: 1px solid var(--dcl-border);
  border-radius: 14px; padding: 32px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.hours-card h3 {
  font-size: 1.05rem; font-weight: 700; color: var(--dcl-black);
  margin-bottom: 14px; display: flex; align-items: center; gap: 10px;
}
.hours-badge {
  background: rgba(224,41,63,0.08); color: var(--dcl-accent);
  font-size: 0.7rem; padding: 3px 10px; border-radius: 100px;
  font-family: var(--dcl-font-body);
  font-weight: 600; letter-spacing: 0.04em;
}
.hours-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 11px 0; border-bottom: 1px solid var(--dcl-border);
  font-size: 0.9rem;
}
.hours-row:last-child { border-bottom: none; padding-bottom: 0; }
.hours-day { color: var(--dcl-muted); }
.hours-time { color: var(--dcl-black); font-weight: 500; }
.hours-row.closed .hours-time { color: #bbb; }
.hours-contact { margin-top: 16px; padding-top: 14px; border-top: 1px solid var(--dcl-border); display: flex; flex-direction: column; gap: 8px; }
.hours-contact-item { display: flex; align-items: center; gap: 8px; color: var(--dcl-text); font-size: 0.85rem; text-decoration: none; transition: color .15s; }
.hours-contact-item:hover { color: var(--dcl-accent); }
.hours-contact-icon { width:16px; height:16px; min-width:16px; flex-shrink:0; display:block; }

/* ════════════════════════════════════════════
   JOBS
════════════════════════════════════════════ */
.jobs-list { margin-top: 40px; display: flex; flex-direction: column; gap: 10px; }
.job-item {
  background: #ffffff; border: 1px solid var(--dcl-border);
  border-radius: 10px; padding: 18px 24px;
  display: flex; align-items: center; justify-content: space-between;
  transition: border-color .2s, box-shadow .2s; text-decoration: none; color: inherit;
  box-shadow: 0 1px 4px rgba(0,0,0,0.04);
}
.job-item:hover { border-color: rgba(224,41,63,0.3); box-shadow: 0 4px 16px rgba(0,0,0,0.08); }
.job-title { font-weight: 600; color: var(--dcl-black); font-size: 0.95rem; }
.job-type { font-size: 0.78rem; color: var(--dcl-muted); margin-top: 3px; }
.job-arrow { color: var(--dcl-accent); font-size: 1.1rem; }

/* ════════════════════════════════════════════
   CTA STRIP
════════════════════════════════════════════ */
.cta-section {
  margin: 0 48px 96px;
  background: linear-gradient(135deg, #fff4ee 0%, #fff8f4 100%);
  border: 1px solid rgba(224,41,63,0.15);
  border-radius: 20px; padding: 80px 96px;
  text-align: center; position: relative; overflow: hidden;
}
.cta-section::before {
  content: ''; position: absolute;
  top: -100px; left: 50%; transform: translateX(-50%);
  width: 360px; height: 360px; border-radius: 50%;
  background: radial-gradient(circle, rgba(224,41,63,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.cta-section h2 { position: relative; margin-bottom: 16px; }
.cta-section p { position: relative; margin: 0 auto 32px; max-width: 440px; }
.cta-section .btn-primary { position: relative; }

/* ════════════════════════════════════════════
   SINGLE POST / PAGE
════════════════════════════════════════════ */
.site-main { margin-top: 68px; min-height: 40vh; }
.entry-header {
  background: #f4f4f2;
  padding: 80px 96px 60px;
  border-bottom: 1px solid var(--dcl-border);
}
.entry-meta { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.entry-content { max-width: 760px; margin: 0 auto; padding: 64px 96px; }
.entry-content p { color: var(--dcl-text); font-size: 1.02rem; line-height: 1.8; }
.entry-content h2, .entry-content h3 { margin: 2rem 0 1rem; }
.entry-content ul, .entry-content ol { padding-left: 1.5rem; margin-bottom: 1rem; color: var(--dcl-text); }
.entry-content li { margin-bottom: 0.5rem; }
.entry-thumbnail { width: 100%; max-height: 480px; object-fit: cover; border-radius: 14px; margin-bottom: 40px; }

/* ════════════════════════════════════════════
   ARCHIVE / BLOG
════════════════════════════════════════════ */
.archive-header {
  padding: 100px 96px 60px;
  background: #f4f4f2;
  border-bottom: 1px solid var(--dcl-border);
}
.archive-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; padding: 64px 96px;
}

/* ════════════════════════════════════════════
   PAGINATION
════════════════════════════════════════════ */
.pagination {
  display: flex; justify-content: center; gap: 8px;
  padding: 0 96px 64px;
}
.page-numbers {
  width: 40px; height: 40px; border-radius: 8px;
  border: 1px solid var(--dcl-border);
  display: flex; align-items: center; justify-content: center;
  color: var(--dcl-muted); font-size: 0.9rem; font-weight: 500;
  transition: all .2s;
}
.page-numbers:hover, .page-numbers.current {
  background: var(--dcl-accent); border-color: var(--dcl-accent);
  color: var(--dcl-black);
}

/* ════════════════════════════════════════════
   SIDEBAR
════════════════════════════════════════════ */
.content-sidebar-wrap {
  display: grid; grid-template-columns: 1fr 320px;
  gap: 40px; padding: 64px 96px;
}
.widget {
  background: #ffffff; border: 1px solid var(--dcl-border);
  border-radius: 12px; padding: 28px; margin-bottom: 24px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.widget-title {
  font-family: var(--dcl-font-head); font-size: 0.9rem; font-weight: 700;
  color: var(--dcl-black); margin-bottom: 16px;
  padding-bottom: 12px; border-bottom: 1px solid var(--dcl-border);
}
.widget ul li {
  padding: 8px 0; border-bottom: 1px solid var(--dcl-border);
  font-size: 0.88rem;
}
.widget ul li:last-child { border-bottom: none; }
.widget ul a { color: var(--dcl-muted); }
.widget ul a:hover { color: var(--dcl-accent); }

/* ════════════════════════════════════════════
   FOOTER
════════════════════════════════════════════ */
.site-footer {
  border-top: 1px solid var(--dcl-border);
  background: #f4f4f2;
}
.footer-widgets {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px; padding: 64px 96px;
  border-bottom: 1px solid var(--dcl-border);
}
.footer-brand p { margin-top: 12px; font-size: 0.88rem; max-width: 260px; }
.footer-logo {
  font-family: var(--dcl-font-head); font-weight: normal; font-size: 1.2rem;
  color: var(--dcl-black);
}
.footer-logo span { color: var(--dcl-accent); }
.footer-widget-title {
  font-family: var(--dcl-font-head); font-weight: 700;
  font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--dcl-black); margin-bottom: 16px;
}
.footer-widget ul li { margin-bottom: 8px; }
.footer-widget ul a { color: var(--dcl-muted); font-size: 0.88rem; }
.footer-widget ul a:hover { color: var(--dcl-accent); }
/* WordPress Widgets im Footer – gleicher Hintergrund */
.footer-widget .widget,
.footer-widget aside { background: transparent !important; box-shadow: none !important; }
.footer-bottom {
  padding: 20px 48px;
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px; flex-wrap: wrap;
  font-size: 0.82rem; color: var(--dcl-muted);
  background: #ebebea;
}
.footer-bottom .footer-legal {
  margin-left: auto;
}
.footer-bottom a { color: var(--dcl-muted); }
.footer-bottom a:hover { color: var(--dcl-black); }
.footer-legal { display: flex; gap: 24px; }

/* ════════════════════════════════════════════
   GUTENBERG BLOCK STYLES
════════════════════════════════════════════ */
.wp-block-group { padding: 2rem 0; }
.wp-block-separator { border: none; border-top: 1px solid var(--dcl-border); margin: 2rem 0; }
.wp-block-quote {
  border-left: 3px solid var(--dcl-accent);
  padding: 16px 24px; margin: 2rem 0;
  background: #fff8f4; border-radius: 0 8px 8px 0;
}
.wp-block-quote p { color: var(--dcl-text); font-size: 1.05rem; font-style: italic; }
.wp-block-quote cite { color: var(--dcl-muted); font-size: 0.85rem; margin-top: 8px; display: block; }
.wp-block-code {
  background: #f4f4f2; border: 1px solid var(--dcl-border);
  border-radius: 8px; padding: 20px 24px;
  font-size: 0.9rem; color: var(--dcl-accent); overflow-x: auto;
}
.wp-block-table { width: 100%; border-collapse: collapse; margin: 2rem 0; }
.wp-block-table td, .wp-block-table th { padding: 12px 16px; border: 1px solid var(--dcl-border); font-size: 0.9rem; }
.wp-block-table th { background: #f4f4f2; color: var(--dcl-black); font-weight: 600; }
.wp-block-table tr:hover td { background: rgba(224,41,63,0.03); }
.wp-block-button .wp-block-button__link {
  background: var(--dcl-accent); color: #ffffff !important;
  padding: 12px 24px; border-radius: 8px; font-weight: 700; border: none;
  transition: transform .2s, box-shadow .2s;
}
.wp-block-button .wp-block-button__link:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(224,41,63,0.3); }
.is-style-outline .wp-block-button__link { background: transparent !important; border: 1.5px solid var(--dcl-accent) !important; color: var(--dcl-accent) !important; }
.wp-block-image img { border-radius: 12px; }
.wp-block-cover { min-height: 400px; border-radius: 14px; overflow: hidden; }
.wp-block-pullquote {
  border-top: 3px solid var(--dcl-accent); border-bottom: 3px solid var(--dcl-accent);
  padding: 32px; text-align: center; margin: 2rem 0;
  background: #fff8f4;
}
.wp-block-pullquote blockquote p { font-family: var(--dcl-font-head); font-size: 1.4rem; color: var(--dcl-black); font-style: italic; }

/* ════════════════════════════════════════════
   ANIMATIONS
════════════════════════════════════════════ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* ════════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .footer-widgets { grid-template-columns: 1fr 1fr; gap: 32px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .plugins-section { padding: 0 32px; }
  .news-grid { grid-template-columns: repeat(2, 1fr); }
  .archive-grid { grid-template-columns: repeat(2, 1fr); }
  /* Produkte: 2 Spalten auf Tablet */
  #products > div[style*="grid-template-columns"],
  #products-embed > div[style*="grid-template-columns"],
  .dcl-prod-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media (max-width: 768px) {
  .site-header { padding: 0 24px; height: 58px; }
  .site-branding img { height: 28px !important; }
  /* Navigation mobile – siehe oben im Nav-Block */
  .menu-toggle { display: flex; }
  .header-cta { display: none; } /* Shop-Button auf Mobile ausblenden */

  /* Hero */
  .hero-section { padding: 80px 32px 56px; clip-path: polygon(0 0, 100% 0, 100% 96%, 0 100%); }
  .hero-section::after { display: none; }
  .hero-section h1 { font-size: clamp(1.6rem, 8vw, 2.4rem); }
  .hero-sub { font-size: 0.9rem; margin-top: 10px; }
  .hero-actions { flex-direction: column; gap: 10px; }
  .hero-actions .btn-primary,
  .hero-actions .btn-ghost { width: 100%; text-align: center; padding: 14px 20px; clip-path: none; }
  .hero-badge { font-size: 0.7rem; }

  /* Sections */
  .section { padding: 48px 32px; content-visibility: auto; }
  .section-header { margin-bottom: 32px; }
  .section-header h2 { font-size: 1.5rem; }

  /* Stats – 2x2 Grid */
  .stats-band { padding: 20px; grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .stat-num { font-size: 1.5rem; }

  /* Services – 1 Spalte */
  .services-grid { grid-template-columns: 1fr; }
  .service-card { padding: 24px 20px; }

  /* Plugins – 1 Spalte (Basis-CSS regelt die Spalten) */
  .plugins-section { padding: 0 20px; }
  .plugins-grid { gap: 12px; padding: 28px 0 36px; }
  .plugin-card { padding: 22px 20px; clip-path: none; }

  /* Spotify */
  .spotify-section { padding: 40px 20px 36px; }
  .spotify-header { margin-bottom: 22px; }
  .spotify-grid { gap: 12px; }
  .spotify-item { padding: 14px; }

  /* Partner – 2 pro Reihe */
  .partners-section { padding: 40px 20px 36px; }
  .partners-header { margin-bottom: 24px; }
  .partners-grid { gap: 12px; }
  .partner-item {
    flex: 0 1 calc(50% - 12px);
    min-width: 0; min-height: 72px; padding: 12px 16px;
    clip-path: none;
  }

  /* News – 1 Spalte */
  .news-grid { grid-template-columns: 1fr; }

  /* Öffnungszeiten */
  .hours-grid { grid-template-columns: 1fr; }

  /* Jobs */
  .jobs-list { gap: 8px; }
  .job-item { padding: 14px 16px; }

  /* Produkte – 1 Spalte auf Mobile */
  #products { padding: 48px 32px !important; }
  #products > div[style*="grid-template-columns"],
  #products-embed > div[style*="grid-template-columns"],
  .dcl-prod-grid {
    grid-template-columns: 1fr !important;
  }

  /* CTA */
  .cta-section { margin: 0; padding: 48px 20px; border-radius: 0; }
  .cta-section h2 { font-size: 1.6rem; }

  /* Footer */
  .info-notice { margin: 24px 20px 0; }
  .footer-widgets { grid-template-columns: 1fr; padding: 40px 20px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 12px; text-align: left; padding: 20px; }
  .entry-header { padding: 80px 20px 40px; }
  .entry-content { padding: 40px 20px; }
  .pagination { padding: 0 20px 48px; }
  .archive-grid { grid-template-columns: 1fr; }
  .content-sidebar-wrap { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  /* Stats – 2x2 aber noch kompakter */
  .stats-band { grid-template-columns: repeat(2, 1fr); gap: 12px; padding: 16px; }
  .stat-num { font-size: 1.3rem; }
  .stat-label { font-size: 0.72rem; }

  /* Hero noch kompakter */
  .hero-section { padding: 72px 16px 40px; }

  /* Sections */
  .section { padding: 40px 16px; }

  /* Produkte sicher 1 Spalte */
  #products { padding: 40px 32px !important; }
  #products > div[style*="grid-template-columns"] {
    grid-template-columns: 1fr !important;
    gap: 14px !important;
  }

  /* Service-Karten volle Breite */
  .services-grid { gap: 12px; }
}
