@import url('https://fonts.googleapis.com/css2?family=Syncopate:wght@400;700&family=Outfit:wght@300;400;500;600;700&display=swap');

:root {
  /* Brand colors from style guide */
  --brand-orange: #ff8300;
  --brand-orange-hsl: 31, 100%, 50%;
  --brand-blue: #2e62bb;
  --brand-blue-hsl: 218, 61%, 46%;
  
  /* Theme-specific variables (Default: Light Mode) */
  --bg-primary: #ffffff;
  --bg-outer: #e8ecf3; /* light grey/blue from brand guide */
  --bg-secondary: #e8ecf3;
  --bg-tertiary: #f1f4fa;
  --bg-glass: rgba(232, 236, 243, 0.8);
  --border-glass: rgba(46, 98, 187, 0.2);
  --border-subtle: rgba(46, 98, 187, 0.08);
  
  --text-main: #1c2340;
  --text-muted: #5a6280;
  --text-on-blue: #ffffff;
  
  --card-bg: #ffffff;
  --card-shadow: 0 10px 30px rgba(46, 98, 187, 0.06);
  --card-hover-shadow: 0 20px 50px rgba(46, 98, 187, 0.12);
  --glow-color: rgba(255, 131, 0, 0.15);

  --scroll-bar-bg: rgba(255, 131, 0, 0.2);
  --font-heading: 'Syncopate', sans-serif;
  --font-subheading: 'Outfit', sans-serif;
  --font-body: 'Outfit', 'Inter', system-ui, sans-serif;
  
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.2s ease;
}

/* Dark Mode Overrides */
[data-theme="dark"] {
  --bg-primary: #0b0f19;
  --bg-outer: #05070b;
  --bg-secondary: #121826;
  --bg-tertiary: #161d30;
  --bg-glass: rgba(18, 24, 38, 0.75);
  --border-glass: rgba(255, 131, 0, 0.25);
  --border-subtle: rgba(255, 255, 255, 0.06);
  
  --text-main: #f3f4f6;
  --text-muted: #9ca3af;
  --text-on-blue: #ffffff;
  
  --card-bg: #161d30;
  --card-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  --card-hover-shadow: 0 20px 50px rgba(255, 131, 0, 0.1);
  --glow-color: rgba(255, 131, 0, 0.4);
}

/* Reset and base styles */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: var(--brand-orange) transparent;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-outer);
  color: var(--text-main);
  overflow-x: hidden;
  transition: background-color 0.5s ease, color 0.3s ease;
  line-height: 1.6;
}

/* Boxed Widescreen Page Wrapper */
.page-wrapper {
  max-width: 1440px;
  margin: 0 auto;
  background-color: var(--bg-primary);
  box-shadow: 0 0 80px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  transition: background-color 0.5s ease;
}

/* Scroll Progress Bar */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--brand-blue) 0%, var(--brand-orange) 100%);
  width: 0%;
  z-index: 9999;
  transition: width 0.1s ease-out;
}

/* Ambient Background Blobs */
.bg-ambient-wrapper {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  overflow: hidden;
  z-index: 0;
  pointer-events: none;
}

.bg-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.15;
  animation: floatBlob 25s infinite alternate ease-in-out;
  mix-blend-mode: multiply;
  transition: opacity 0.5s ease;
}

[data-theme="dark"] .bg-blob {
  opacity: 0.1;
  mix-blend-mode: screen;
}

.blob-1 {
  width: 500px;
  height: 500px;
  background-color: var(--brand-orange);
  top: -100px;
  right: -50px;
  animation-duration: 20s;
}

.blob-2 {
  width: 600px;
  height: 600px;
  background-color: var(--brand-blue);
  top: 40%;
  left: -200px;
  animation-duration: 30s;
  animation-delay: -5s;
}

.blob-3 {
  width: 450px;
  height: 450px;
  background-color: var(--brand-orange);
  bottom: 10%;
  right: -100px;
  animation-duration: 25s;
  animation-delay: -10s;
}

@keyframes floatBlob {
  0% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(30px, -50px) scale(1.1);
  }
  66% {
    transform: translate(-20px, 20px) scale(0.95);
  }
  100% {
    transform: translate(0, 0) scale(1);
  }
}

/* Typography elements */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-subheading);
  font-weight: 700;
  line-height: 1.25;
}

h1, h2 {
  font-family: var(--font-heading);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}

/* Navigation bar */
header {
  position: fixed;
  top: 1.2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  width: min(1100px, calc(100% - 2.5rem));
  transition: var(--transition-smooth);
}

header.scrolled {
  top: 0.5rem;
  width: min(1050px, calc(100% - 1.5rem));
}

nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.55rem 0.6rem 0.55rem 1.4rem;
  background: var(--bg-glass);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-radius: 100px;
  border: 1px solid var(--border-glass);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  transition: var(--transition-smooth);
}

header.scrolled nav {
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.logo-nav {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
}

.logo-nav img {
  height: 38px;
  transition: var(--transition-smooth);
}

header.scrolled .logo-nav img {
  height: 32px;
}

.brand {
  line-height: 1.1;
}

.brand b {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--brand-orange);
  transition: var(--transition-fast);
}

[data-theme="dark"] .brand b {
  color: var(--brand-orange);
}

.brand small {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand-blue);
}

[data-theme="dark"] .brand small {
  color: #fff;
}

/* Nav links list */
.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0.15rem;
}

.nav-links li a {
  display: block;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-main);
  padding: 0.5rem 1.1rem;
  border-radius: 100px;
  transition: var(--transition-fast);
}

.nav-links li a:hover {
  background: rgba(247, 148, 29, 0.15);
  color: var(--brand-orange);
}

.nav-links li a.active {
  background: var(--brand-orange);
  color: #fff;
}

/* Buttons and Actions in Header */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-cta {
  background: var(--brand-blue) !important;
  color: #fff !important;
  box-shadow: 0 4px 14px rgba(30, 58, 138, 0.2);
}

.nav-cta:hover {
  background: var(--brand-orange) !important;
  box-shadow: 0 4px 14px rgba(247, 148, 29, 0.3);
  transform: translateY(-1px);
}

[data-theme="dark"] .nav-cta {
  background: var(--brand-orange) !important;
  box-shadow: 0 4px 14px rgba(247, 148, 29, 0.2);
}

[data-theme="dark"] .nav-cta:hover {
  background: var(--brand-blue) !important;
  box-shadow: 0 4px 14px rgba(30, 58, 138, 0.3);
}

/* Theme Toggle Button */
.theme-toggle {
  background: none;
  border: none;
  cursor: pointer;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-main);
  transition: var(--transition-fast);
}

.theme-toggle:hover {
  background: rgba(30, 58, 138, 0.08);
}

[data-theme="dark"] .theme-toggle:hover {
  background: rgba(255, 255, 255, 0.08);
}

.theme-toggle svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.theme-toggle:hover svg {
  transform: rotate(30deg);
}

/* Mobile Nav Button */
.burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 6px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

.burger:hover {
  background: rgba(30, 58, 138, 0.08);
}

[data-theme="dark"] .burger:hover {
  background: rgba(255, 255, 255, 0.08);
}

.burger span {
  display: block;
  width: 20px;
  height: 2px;
  background-color: var(--text-main);
  border-radius: 2px;
  transition: var(--transition-smooth);
}

.burger.open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.burger.open span:nth-child(2) {
  opacity: 0;
}

.burger.open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Mobile Menu Overlay */
.mobile-nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: var(--bg-glass);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  z-index: 900;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-smooth);
}

.mobile-nav-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-nav-links {
  list-style: none;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.mobile-nav-links li a {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 800;
  text-decoration: none;
  color: var(--text-main);
  transition: var(--transition-fast);
}

.mobile-nav-links li a:hover {
  color: var(--brand-orange);
  transform: scale(1.05);
}

/* Section Common Styles */
section {
  position: relative;
  z-index: 2;
  padding: 8rem 8vw;
}

.section-head {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem auto;
}

.label {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--brand-orange);
  margin-bottom: 0.75rem;
  display: inline-block;
  position: relative;
}

.label::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 2px;
  background-color: var(--brand-orange);
}

h2 {
  font-size: clamp(2rem, 4.5vw, 2.75rem);
  color: var(--brand-blue);
  margin-top: 0.5rem;
  letter-spacing: -0.02em;
}

[data-theme="dark"] h2 {
  color: #fff;
}

#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: radial-gradient(circle at 85% 15%, rgba(255, 131, 0, 0.07) 0%, rgba(255, 255, 255, 0) 50%), linear-gradient(180deg, #f5f7fa 0%, var(--bg-secondary) 100%);
  padding-top: 10rem;
  padding-bottom: 8rem;
  transition: background 0.5s ease, background-color 0.5s ease;
  position: relative;
}

/* Subtle blueprint/dotted grid background */
#hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(var(--text-main) 1px, transparent 1px);
  background-size: 32px 32px;
  opacity: 0.04;
  pointer-events: none;
  z-index: 1;
}

[data-theme="dark"] #hero::before {
  opacity: 0.05;
  background-image: radial-gradient(#ffffff 1px, transparent 1px);
}

[data-theme="dark"] #hero {
  background: radial-gradient(circle at 85% 15%, rgba(255, 131, 0, 0.08) 0%, rgba(11, 15, 25, 0) 55%), linear-gradient(180deg, #0b0f19 0%, var(--bg-secondary) 100%);
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 3rem;
  width: 100%;
  position: relative;
  z-index: 2;
}

.hero-text {
  max-width: 100%;
}

.hero-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(247, 148, 29, 0.12);
  color: var(--brand-orange);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.45rem 1.1rem;
  border-radius: 100px;
  border: 1px solid rgba(247, 148, 29, 0.25);
  margin-bottom: 1.8rem;
}

.hero-chip span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brand-orange);
  animation: pulseDot 1.8s infinite;
}

@keyframes pulseDot {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.3;
    transform: scale(0.6);
  }
}

#hero h1 {
  font-size: clamp(2.5rem, 5.5vw, 4.2rem);
  font-weight: 900;
  line-height: 1.05;
  color: var(--brand-blue);
  margin-bottom: 1.5rem;
  letter-spacing: -0.03em;
}

[data-theme="dark"] #hero h1 {
  color: #fff;
}

#hero h1 em {
  font-style: normal;
  background: linear-gradient(135deg, var(--brand-orange) 0%, #ffa033 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  position: relative;
  display: inline-block;
}

#hero h1 em::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 4px;
  width: 100%;
  height: 8px;
  background-color: rgba(247, 148, 29, 0.12);
  z-index: -1;
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 2.5rem;
}

.btn-row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.9rem 2.2rem;
  border-radius: 100px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  transition: var(--transition-smooth);
}

.btn-primary {
  background: var(--brand-orange);
  color: #fff;
  box-shadow: 0 8px 25px rgba(247, 148, 29, 0.25);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(247, 148, 29, 0.4);
}

.btn-ghost {
  background: transparent;
  color: var(--brand-blue);
  border: 2px solid var(--brand-blue);
}

[data-theme="dark"] .btn-ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.3);
}

.btn-ghost:hover {
  background: var(--brand-blue);
  color: #fff;
  border-color: var(--brand-blue);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(30, 58, 138, 0.15);
}

[data-theme="dark"] .btn-ghost:hover {
  background: #fff;
  color: var(--bg-primary);
  border-color: #fff;
  box-shadow: 0 10px 25px rgba(255, 255, 255, 0.1);
}

/* Hero Visual section with Pulse Animation */
.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}


.hero-visual-wrapper {
  position: relative;
  width: 100%;
  max-width: 440px;
  background: var(--bg-glass);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid var(--border-glass);
  padding: 3.5rem 3rem;
  border-radius: 36px;
  box-shadow: var(--card-shadow), 0 20px 50px rgba(46, 98, 187, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease, border-color 0.3s ease;
  z-index: 2;
}

.hero-visual-wrapper:hover {
  border-color: rgba(255, 131, 0, 0.4);
  box-shadow: var(--card-hover-shadow), 0 30px 60px rgba(255, 131, 0, 0.1);
}

.hero-visual img {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 3;
  filter: drop-shadow(0 10px 25px rgba(0, 0, 0, 0.05));
  animation: floatImage 6s ease-in-out infinite;
}

/* Glowing Aura behind logo inside card */
.logo-glow {
  position: absolute;
  width: 60%;
  height: 60%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 131, 0, 0.25) 0%, transparent 70%);
  z-index: 1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: pulseGlow 4s infinite alternate ease-in-out;
  pointer-events: none;
}

@keyframes pulseGlow {
  0% {
    transform: translate(-50%, -50%) scale(0.9);
    opacity: 0.5;
  }
  100% {
    transform: translate(-50%, -50%) scale(1.1);
    opacity: 1;
  }
}

/* Big ambient aura behind the whole card */
.hero-visual::before {
  content: '';
  position: absolute;
  width: 110%;
  height: 110%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(46, 98, 187, 0.1) 0%, transparent 70%);
  z-index: 1;
  top: -5%;
  left: -5%;
  animation: pulseBg 5s infinite alternate ease-in-out;
  pointer-events: none;
}

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

@keyframes pulseBg {
  0% {
    transform: scale(0.9);
    opacity: 0.6;
  }
  100% {
    transform: scale(1.1);
    opacity: 1;
  }
}

/* Section divider SVG waves */
.wave-divider {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  line-height: 0;
  z-index: 3;
}

.wave-divider svg {
  display: block;
  width: 100%;
  height: 50px;
}

.wave-divider.top {
  top: 0;
  bottom: auto;
  transform: rotate(180deg);
}

/* ── UEBER UNS SECTION ── */
#ueber {
  background: var(--bg-primary);
  padding-bottom: 6rem;
}

.ueber-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 5rem;
  align-items: center;
}

/* Wählergruppen & Fraktion Details styles */
.ueber-details-grid {
  max-width: 1200px;
  margin: 5rem auto 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
}

.details-card {
  background: var(--card-bg);
  border-radius: 24px;
  padding: 2.5rem;
  box-shadow: var(--card-shadow);
  border: 1px solid var(--border-subtle);
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.details-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--card-hover-shadow);
  border-color: var(--brand-orange);
}

.details-icon {
  font-size: 1.8rem;
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(46, 98, 187, 0.1);
  border-radius: 16px;
  margin-bottom: 1.5rem;
  color: var(--brand-blue);
  transition: var(--transition-smooth);
  align-self: flex-start;
}

[data-theme="dark"] .details-icon {
  background: rgba(255, 131, 0, 0.1);
  color: var(--brand-orange);
}

.details-card:hover .details-icon {
  background: var(--brand-blue);
  color: #fff;
  transform: scale(1.05);
}

[data-theme="dark"] .details-card:hover .details-icon {
  background: var(--brand-orange);
  color: #fff;
}

.details-svg {
  width: 26px;
  height: 26px;
  transition: var(--transition-smooth);
}

.details-card:hover .details-svg {
  transform: rotate(8deg) scale(1.05);
}

.details-card h3 {
  font-size: 1.25rem;
  color: var(--brand-blue);
  margin-bottom: 1rem;
  font-family: var(--font-subheading);
}

[data-theme="dark"] .details-card h3 {
  color: #fff;
}

.details-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1.2rem;
}

.details-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.2rem 0;
}

.details-list li {
  position: relative;
  padding-left: 1.5rem;
  color: var(--text-main);
  font-weight: 700;
  font-size: 0.95rem;
}

.details-list li a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-fast);
}

.details-list li a:hover {
  color: var(--brand-orange);
  text-decoration: underline;
}

.details-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--brand-orange);
  font-weight: bold;
}

.details-note {
  font-size: 0.88rem !important;
  border-top: 1px solid var(--border-subtle);
  padding-top: 1.2rem;
  margin-top: auto;
  margin-bottom: 0 !important;
}

.details-note a {
  color: var(--brand-orange);
  text-decoration: none;
  font-weight: 700;
  transition: var(--transition-fast);
}

.details-note a:hover {
  text-decoration: underline;
}

.fraktion-leaders {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: auto;
  background: var(--bg-tertiary);
  padding: 1.2rem;
  border-radius: 16px;
  border: 1px solid var(--border-subtle);
}

.leader-item {
  flex: 1;
  min-width: 160px;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.leader-role {
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--brand-orange);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.leader-item strong {
  font-size: 0.95rem;
  color: var(--text-main);
}

.prose p {
  color: var(--text-muted);
  line-height: 1.8;
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
}

.prose p:last-child {
  margin-bottom: 0;
}

/* Quote Card Overlay */
.quote-card {
  background: linear-gradient(135deg, var(--brand-orange) 0%, #ffa033 100%);
  border-radius: 28px;
  padding: 3rem 2.5rem;
  color: #fff;
  box-shadow: 0 20px 40px rgba(255, 131, 0, 0.25);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: var(--transition-smooth);
}

[data-theme="dark"] .quote-card {
  background: linear-gradient(135deg, rgba(255, 131, 0, 0.15) 0%, rgba(255, 131, 0, 0.05) 100%);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
  border-color: rgba(255, 131, 0, 0.3);
  color: rgba(255, 255, 255, 0.85);
}

.quote-card::before {
  content: '“';
  font-size: 12rem;
  line-height: 0.1;
  position: absolute;
  top: 3.5rem;
  right: 1rem;
  color: rgba(255, 255, 255, 0.15);
  font-family: Georgia, serif;
  font-weight: 700;
  pointer-events: none;
}

[data-theme="dark"] .quote-card::before {
  color: rgba(255, 131, 0, 0.1);
}

.quote-card h3 {
  font-size: 1.25rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 1.2rem;
  position: relative;
  z-index: 2;
}

[data-theme="dark"] .quote-card h3 {
  color: var(--brand-orange);
}

.quote-card p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
  position: relative;
  z-index: 2;
}

[data-theme="dark"] .quote-card p {
  color: rgba(255, 255, 255, 0.82);
}

.quote-card hr {
  border: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--brand-orange) 0%, transparent 100%);
  margin: 1.5rem 0;
}

/* ── INTERAKTIVER THEMEN-FINDER & CARDS ── */
#themen {
  background: var(--bg-secondary);
  transition: background 0.5s ease;
}

/* Interactive Finder styles */
.themen-explorer {
  max-width: 1200px;
  margin: 0 auto 5rem auto;
  background: var(--card-bg);
  border-radius: 30px;
  padding: 3rem;
  box-shadow: var(--card-shadow);
  border: 1px solid var(--border-subtle);
  transition: var(--transition-smooth);
}

.themen-explorer-head {
  text-align: center;
  margin-bottom: 2.5rem;
}

.themen-explorer-head h3 {
  font-size: 1.5rem;
  color: var(--brand-blue);
  margin-bottom: 0.5rem;
}

[data-theme="dark"] .themen-explorer-head h3 {
  color: #fff;
}

.themen-explorer-head p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.interest-tags {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 3rem;
}

.interest-tag {
  background: var(--bg-tertiary);
  border: 1px solid var(--border-subtle);
  padding: 0.65rem 1.4rem;
  border-radius: 100px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-main);
  cursor: pointer;
  transition: var(--transition-fast);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.interest-tag:hover {
  background: rgba(247, 148, 29, 0.1);
  border-color: var(--brand-orange);
  transform: translateY(-2px);
}

.interest-tag.active {
  background: var(--brand-orange);
  color: #fff;
  border-color: var(--brand-orange);
  box-shadow: 0 8px 20px rgba(247, 148, 29, 0.25);
}

.finder-result-panel {
  min-height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.finder-result {
  display: none;
  animation: fadeInScale 0.5s forwards cubic-bezier(0.16, 1, 0.3, 1);
  width: 100%;
}

.finder-result.active {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 1.5rem;
  align-items: center;
}

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.96) translateY(5px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.result-icon {
  font-size: 2.5rem;
  width: 80px;
  height: 80px;
  background: rgba(247, 148, 29, 0.12);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-orange);
}

.result-text h4 {
  font-size: 1.35rem;
  color: var(--brand-blue);
  margin-bottom: 0.5rem;
}

[data-theme="dark"] .result-text h4 {
  color: #fff;
}

.result-text p {
  color: var(--text-muted);
  line-height: 1.7;
}

/* Card Grid Styles */
.cards-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.card {
  background: var(--card-bg);
  border-radius: 24px;
  padding: 2.2rem 2rem;
  box-shadow: var(--card-shadow);
  border: 1px solid var(--border-subtle);
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--brand-blue) 0%, var(--brand-orange) 100%);
  opacity: 0;
  transition: var(--transition-smooth);
}

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

.card:hover::before {
  opacity: 1;
}

.card-icon {
  font-size: 1.8rem;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(247, 148, 29, 0.1);
  border-radius: 18px;
  margin-bottom: 1.5rem;
  transition: var(--transition-smooth);
}

.card:hover .card-icon {
  background: var(--brand-orange);
  color: #fff;
  transform: rotate(5deg) scale(1.05);
}

.card h3 {
  font-size: 1.15rem;
  color: var(--brand-blue);
  margin-bottom: 0.75rem;
}

[data-theme="dark"] .card h3 {
  color: #fff;
}

.card p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.75;
}

/* ── AKTUELLES (NEWS) SECTION ── */
#aktuelles {
  background: var(--bg-tertiary);
  transition: background 0.5s ease;
}

.news-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.news-card {
  background: var(--card-bg);
  border-radius: 24px;
  padding: 2.2rem;
  box-shadow: var(--card-shadow);
  border: 1px solid var(--border-subtle);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 280px;
}

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

.news-image-wrapper {
  width: calc(100% + 4.4rem);
  margin: -2.2rem -2.2rem 1.5rem -2.2rem;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-top-left-radius: 24px;
  border-top-right-radius: 24px;
  border-bottom: 1px solid var(--border-subtle);
}

.news-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.news-card:hover .news-image-wrapper img {
  transform: scale(1.06);
}

.news-date {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand-orange);
  margin-bottom: 1rem;
}

.news-content h3 {
  font-size: 1.25rem;
  color: var(--brand-blue);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

[data-theme="dark"] .news-content h3 {
  color: #fff;
}

.news-content p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.news-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--brand-orange);
  text-decoration: none;
  margin-top: auto;
  transition: var(--transition-fast);
}

.news-link:hover {
  gap: 0.7rem;
}

/* Social Media Teaser in News Section */
.social-media-teaser {
  max-width: 600px;
  margin: 4rem auto 0 auto;
  text-align: center;
  padding: 2.5rem;
  background: var(--card-bg);
  border-radius: 24px;
  border: 1px solid var(--border-subtle);
  box-shadow: var(--card-shadow);
  position: relative;
  z-index: 10;
}

.social-media-teaser p {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.social-buttons {
  display: flex;
  justify-content: center;
  gap: 1.2rem;
  flex-wrap: wrap;
}

.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 1.8rem;
  border-radius: 100px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  transition: var(--transition-smooth);
  color: #fff;
  border: 1px solid transparent;
}

.social-btn.facebook {
  background: #1877f2;
  box-shadow: 0 4px 15px rgba(24, 119, 242, 0.25);
}

.social-btn.facebook:hover {
  background: #166fe5;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(24, 119, 242, 0.4);
}

.social-btn.instagram {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  box-shadow: 0 4px 15px rgba(220, 39, 67, 0.25);
}

.social-btn.instagram:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(220, 39, 67, 0.4);
}

.social-icon {
  width: 20px;
  height: 20px;
}

/* ── KONTAKT SECTION ── */
#kontakt {
  background: var(--bg-primary);
  transition: background 0.5s ease;
}

.kontakt-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 5rem;
  align-items: start;
}

.contact-info-panel {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.info-card {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  padding: 1.5rem;
  border-radius: 20px;
  background: var(--bg-tertiary);
  border: 1px solid var(--border-subtle);
  transition: var(--transition-smooth);
}

.info-card:hover {
  transform: translateX(5px);
  border-color: var(--brand-orange);
}

.info-icon {
  width: 46px;
  height: 46px;
  min-width: 46px;
  border-radius: 14px;
  background: rgba(247, 148, 29, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--brand-orange);
}

.info-content strong {
  display: block;
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--brand-blue);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.25rem;
}

[data-theme="dark"] .info-content strong {
  color: #fff;
}

.info-content span {
  font-size: 0.95rem;
  color: var(--text-muted);
}

.info-content a {
  color: var(--brand-orange);
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition-fast);
}

.info-content a:hover {
  text-decoration: underline;
}

/* Contact Form */
.contact-form-wrapper {
  background: var(--card-bg);
  border-radius: 30px;
  padding: 3rem;
  box-shadow: var(--card-shadow);
  border: 1px solid var(--border-subtle);
  transition: var(--transition-smooth);
}

form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}

.form-group {
  position: relative;
}

/* Captcha styling */
.captcha-group {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.captcha-group label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-muted);
}

.captcha-input-row {
  display: flex;
  align-items: center;
  gap: 1rem;
}

#captcha-question {
  font-family: var(--font-subheading);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--brand-blue);
  background: var(--bg-tertiary);
  padding: 0.9rem 1.3rem;
  border-radius: 16px;
  border: 2px solid var(--border-subtle);
  min-width: 100px;
  text-align: center;
  user-select: none;
}

[data-theme="dark"] #captcha-question {
  color: var(--brand-orange);
}

#form-captcha {
  max-width: 140px;
}

form input, form textarea {
  padding: 1rem 1.3rem;
  border-radius: 16px;
  border: 2px solid var(--border-subtle);
  font-family: inherit;
  font-size: 0.95rem;
  background: var(--bg-tertiary);
  color: var(--text-main);
  transition: var(--transition-smooth);
  width: 100%;
}

form input:focus, form textarea:focus {
  outline: none;
  border-color: var(--brand-orange);
  background: var(--card-bg);
  box-shadow: 0 0 0 4px var(--glow-color);
}

form textarea {
  min-height: 160px;
  resize: vertical;
}

.submit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 1rem 2.2rem;
  border: none;
  border-radius: 100px;
  background: var(--brand-blue);
  color: #fff;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition-smooth);
  align-self: flex-start;
  box-shadow: 0 6px 18px rgba(30, 58, 138, 0.2);
}

[data-theme="dark"] .submit-btn {
  background: var(--brand-orange);
  box-shadow: 0 6px 18px rgba(247, 148, 29, 0.2);
}

.submit-btn:hover {
  background: var(--brand-orange);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(247, 148, 29, 0.35);
}

[data-theme="dark"] .submit-btn:hover {
  background: var(--brand-blue);
  box-shadow: 0 10px 25px rgba(30, 58, 138, 0.35);
}

/* ── FOOTER ── */
footer {
  background: var(--brand-blue);
  padding: 4rem 8vw 3rem 8vw;
  position: relative;
  z-index: 10;
  color: #fff;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

[data-theme="dark"] footer {
  background: #080b12;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
}

.footer-logo img {
  height: 72px;
  width: auto;
  filter: brightness(0) invert(1);
  transition: var(--transition-smooth);
}

.footer-logo:hover img {
  transform: scale(1.03);
}

.footer-logo span {
  font-family: var(--font-heading);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.85rem;
  color: #fff;
}

.footer-links {
  list-style: none;
  display: flex;
  gap: 2rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition-fast);
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: var(--brand-orange);
}

.footer-bottom {
  max-width: 1200px;
  margin: 2rem auto 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.45);
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
  transition: var(--transition-fast);
}

.footer-bottom a:hover {
  color: var(--brand-orange);
}

/* ── ANIMATIONS AND SCROLL REVEAL ── */
.reveal {
  opacity: 0;
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform, opacity;
}

.reveal-up {
  transform: translateY(40px);
}

.reveal-left {
  transform: translateX(-40px);
}

.reveal-right {
  transform: translateX(40px);
}

.reveal-scale {
  transform: scale(0.95);
}

.reveal.active {
  opacity: 1;
  transform: translate(0) scale(1);
}

/* Stagger delay classes for grid animations */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }
.delay-6 { transition-delay: 0.6s; }

/* ── RESPONSIVE DESIGN BREAKPOINTS ── */
@media (max-width: 992px) {
  section {
    padding: 6rem 5vw;
  }
  
  #hero {
    padding-top: 8rem;
    padding-bottom: 5rem;
  }
  
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 3rem;
  }
  
  .hero-text {
    max-width: 100%;
  }
  
  .hero-sub {
    margin-left: auto;
    margin-right: auto;
  }
  
  .btn-row {
    justify-content: center;
  }
  
  .hero-visual {
    order: -1;
  }
  
  .ueber-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .ueber-details-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 3rem;
  }
  
  .kontakt-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta {
    display: none !important;
  }
  
  .burger {
    display: flex;
  }
  
  .themen-explorer {
    padding: 2rem 1.5rem;
  }
  
  .interest-tags {
    margin-bottom: 2rem;
  }
  
  .finder-result.active {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 1rem;
  }
  
  .result-icon {
    margin: 0 auto;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .footer-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }
  
  .footer-links {
    flex-direction: column;
    gap: 1rem;
  }
  
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
}

/* === NEWS MODAL STYLES === */
button.news-link, a.news-link {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  font-family: inherit;
  align-self: flex-start;
}

.news-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(11, 15, 25, 0.6);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  z-index: 2000;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-smooth);
  overflow-y: auto;
  padding: 3rem 0;
}

.news-modal-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.news-modal-card {
  background: var(--card-bg);
  border-radius: 28px;
  padding: 3rem;
  max-width: 650px;
  width: min(650px, calc(100% - 2.5rem));
  border: 1px solid var(--border-glass);
  box-shadow: var(--card-hover-shadow), 0 30px 60px rgba(0, 0, 0, 0.2);
  position: relative;
  transform: scale(0.9) translateY(20px);
  transition: var(--transition-smooth);
}

.news-modal-overlay.open .news-modal-card {
  transform: scale(1) translateY(0);
}

.news-modal-close {
  position: absolute;
  top: 1.25rem;
  right: 1.5rem;
  background: none;
  border: none;
  font-size: 2.2rem;
  line-height: 1;
  cursor: pointer;
  color: var(--text-muted);
  transition: var(--transition-fast);
}

.news-modal-close:hover {
  color: var(--brand-orange);
  transform: rotate(90deg);
}

.news-modal-date {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand-orange);
  margin-bottom: 0.75rem;
}

.news-modal-card h3 {
  font-size: 1.5rem;
  color: var(--brand-blue);
  margin-bottom: 1.5rem;
  font-family: var(--font-subheading);
}

[data-theme="dark"] .news-modal-card h3 {
  color: #fff;
}

.news-modal-body {
  color: var(--text-muted);
  line-height: 1.8;
  font-size: 1rem;
}

.news-modal-body p {
  margin-bottom: 1rem;
}

.news-modal-body p:last-child {
  margin-bottom: 0;
}

/* ── TERMINE-SEKTION (HORIZONTAL BELOW NEWS) ── */
.termine-section {
  position: relative;
  z-index: 1;
}

.termine-section-head {
  text-align: center;
  margin-bottom: 2.5rem;
}

.termine-section-head h3 {
  font-size: 2.2rem;
  color: var(--brand-blue);
  margin-bottom: 0.5rem;
  font-family: var(--font-heading);
  font-weight: 800;
}

[data-theme="dark"] .termine-section-head h3 {
  color: #fff;
}

.termine-section-head p {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 700px;
  margin: 0 auto;
}

.termine-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

/* Styled Meeting Card (Compact & Horizontal) */
.termin-card {
  background: var(--card-bg);
  border-radius: 20px;
  padding: 1.25rem;
  box-shadow: var(--card-shadow);
  border: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  gap: 1.25rem;
  transition: var(--transition-smooth);
}

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

/* Calendar Box inside Card */
.termin-datum-box {
  background: var(--bg-secondary);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  min-width: 55px;
  width: 55px;
  text-align: center;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
  flex-shrink: 0;
}

.termin-monat {
  background: var(--brand-orange);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
  padding: 0.2rem 0;
  letter-spacing: 0.05em;
}

.termin-tag {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--text-main);
  padding: 0.25rem 0;
}

[data-theme="dark"] .termin-tag {
  color: #fff;
}

/* Meeting Info Content (Right Side) */
.termin-card-info {
  flex: 1;
  min-width: 0; /* Prevents overflow in flexbox child */
}

.termin-card-info h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-main);
  line-height: 1.35;
  margin-bottom: 0.35rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-top: 0;
}

[data-theme="dark"] .termin-card-info h4 {
  color: #fff;
}

/* Meeting Meta */
.termin-card-meta {
  font-size: 0.8rem;
  color: var(--text-muted);
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

.termin-card-meta span {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

.termin-card-doc-link {
  color: var(--brand-orange);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.8rem;
  transition: var(--transition-fast);
}

.termin-card-doc-link:hover {
  text-decoration: underline;
}

.termine-section-footer {
  text-align: center;
  margin-top: 1rem;
}

.termine-loading {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.95rem;
  padding: 3rem 0;
  grid-column: 1 / -1;
}

