*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --navy:   #293876;
  --navy-d: #1e2858;
  --navy-l: #3a4f94;
  --navy-xl:#4d62a8;
  --gold:   #f9e44a;
  --gold-d: #e0c832;
  --copper: #8C6F00;
  --bg-tint:#eef0f7;
  --border: #d4dae8;
  --cream:  #faf5dc;
  --text:   #4c555d;
  --white:  #ffffff;
  --black:  #000000;
}
html { scroll-behavior: smooth; overflow-x: hidden; }
body { font-family: 'Arial', sans-serif; background: var(--white); color: var(--text); overflow-x: hidden; }
body.page-bokem { padding-top: 60px; }

.noscript-banner {
  position: relative; z-index: 101;
  background: var(--cream); color: var(--navy-d);
  border-bottom: 1px solid var(--border);
  padding: 0.65rem 1.5rem; font-size: 0.82rem; line-height: 1.5;
  text-align: center;
}

/* NAV */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: var(--white); height: 60px;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 12px rgba(41,56,118,0.06);
  display: flex; align-items: center; padding: 0 2.5rem;
  justify-content: space-between;
}
.logo { display: flex; align-items: center; text-decoration: none; line-height: 0; }
.logo img { display: block; height: 40px; width: auto; }
.nav-links {
  display: flex; list-style: none; flex-wrap: nowrap;
  align-items: center; flex-shrink: 1; min-width: 0;
}
.nav-links a {
  display: block; padding: 0 1.1rem; height: 60px; line-height: 60px;
  color: var(--navy); text-decoration: none; font-size: 0.78rem;
  letter-spacing: 0.08em; text-transform: uppercase;
  transition: color 0.2s; white-space: nowrap;
}
.nav-links a:hover { color: var(--navy-l); }
.nav-links a.btn-icon {
  display: flex; align-items: center; justify-content: center;
  padding: 0 0.75rem;
}
.hamburger { color: var(--navy); }

/* HERO — deep navy, full height */
.hero {
  min-height: 100vh; padding-top: 60px;
  background: var(--navy);
  position: relative; overflow: hidden;
  display: flex; align-items: center;
}
/* subtle tonal rings */
.hero::before {
  content: ''; position: absolute;
  width: 900px; height: 900px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.04);
  top: 50%; left: 60%; transform: translate(-50%,-50%);
  pointer-events: none;
}
.hero::after {
  content: ''; position: absolute;
  width: 600px; height: 600px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.06);
  top: 50%; left: 60%; transform: translate(-50%,-50%);
  pointer-events: none;
}
.hero-inner {
  position: relative; z-index: 1;
  max-width: 1100px; margin: 0 auto; padding: 5rem 2.5rem;
  display: grid; grid-template-columns: 3fr 2fr; gap: 5rem; align-items: center;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  /*background: rgba(249,228,74,0.12);*/ border: 1px solid rgba(249,228,74,0.3);
  color: var(--gold); font-size: 0.72rem; letter-spacing: 0.12em;
  text-transform: uppercase; padding: 0.4rem 1rem;
  margin-bottom: 2rem; width: fit-content;
}
h1 {
  font-size: clamp(2.8rem, 5.5vw, 5rem); font-weight: 900;
  color: var(--white); line-height: 0.95; letter-spacing: -0.03em;
  margin-bottom: 1.75rem; text-transform: uppercase;
}
h1 .accent { color: var(--gold); }
h1 .light { font-weight: 400; text-transform: none; font-size: 0.55em; display: block; letter-spacing: 0; line-height: 1.6; color: rgba(255,255,255,0.65); margin-top: 0.5rem; }
.hero-desc { font-size: 1rem; color: rgba(255,255,255,0.65); line-height: 1.8; max-width: 480px; margin-bottom: 2.5rem; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; }
.btn-gold {
  background: var(--gold); color: var(--navy-d); font-weight: 700; font-size: 0.82rem;
  padding: 0.85rem 2rem; text-decoration: none; letter-spacing: 0.08em; text-transform: uppercase;
  transition: background 0.2s;
}
.btn-gold:hover { background: var(--gold-d); color: var(--navy-d); }
.btn-outline {
  background: transparent; color: rgba(255,255,255,0.7); font-weight: 600; font-size: 0.82rem;
  padding: 0.85rem 1.75rem; text-decoration: none; letter-spacing: 0.08em; text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.2); transition: border-color 0.2s, color 0.2s;
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }

/* Tooltips */
[data-tooltip] { position: relative; }
[data-tooltip]::after {
  content: attr(data-tooltip);
  position: absolute; left: 50%; z-index: 300;
  padding: 0.4rem 0.7rem; font-size: 0.72rem; font-weight: 600;
  line-height: 1.35; color: var(--white); background: var(--navy-d);
  white-space: nowrap; max-width: 18rem; text-align: center;
  letter-spacing: 0.02em; text-transform: none;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity 0.15s ease, visibility 0.15s ease;
}
[data-tooltip]:hover::after,
[data-tooltip]:focus-visible::after {
  opacity: 1; visibility: visible;
}
[data-tooltip]:not([data-tooltip-pos])::after {
  bottom: calc(100% + 0.5rem); transform: translateX(-50%);
}
[data-tooltip][data-tooltip-pos="bottom"]::after {
  top: calc(100% + 0.5rem); bottom: auto; transform: translateX(-50%);
}
.ach-carousel:focus { outline: 2px solid var(--gold); outline-offset: 4px; }

/* stats column */
.hero-stats { display: flex; flex-direction: column; gap: 1.5rem; }
.hs { border-left: 3px solid var(--gold); padding-left: 1.5rem; }
.hs-num { font-size: 2.8rem; font-weight: 900; color: var(--gold); line-height: 1; }
.hs-label { font-size: 0.8rem; color: rgba(255,255,255,0.55); margin-top: 0.2rem; }
.hs-label strong { display: block; color: rgba(255,255,255,0.85); }

/* VOTE CTA — below hero */
.vote-cta-section {
  background: var(--bg-tint);
  padding: 2.5rem 2.5rem 3rem;
  border-bottom: 1px solid var(--border);
}
.vote-cta-section .container {
  padding: 0;
}
.vote-cta-section .contact-cta {
  width: 100%;
}

/* NEWS & EVENTS */
#aktuality {
  padding: 3rem 2.5rem 4rem;
  background: var(--white);
}
#aktuality .container { max-width: 1100px; }
.news-panel {
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: 0 8px 32px rgba(41,56,118,0.1);
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  overflow: hidden;
}
.event-feature {
  background: var(--navy);
  padding: 2rem 2.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.event-feature .tag { color: var(--gold); margin-bottom: 0.25rem; }
.event-date {
  display: flex; flex-wrap: wrap; align-items: baseline; gap: 0.5rem 1rem;
  font-size: 0.78rem; color: rgba(255,255,255,0.6);
  text-transform: uppercase; letter-spacing: 0.06em;
}
.event-date strong { color: var(--gold); font-size: 0.95rem; letter-spacing: 0.04em; }
.event-title {
  font-size: clamp(1.25rem, 2.5vw, 1.6rem);
  font-weight: 900; color: var(--white); line-height: 1.25;
}
.event-text { font-size: 0.88rem; color: rgba(255,255,255,0.72); line-height: 1.7; flex: 1; }
.event-place { font-size: 0.8rem; color: rgba(255,255,255,0.55); }
.event-place strong { color: rgba(255,255,255,0.85); }
.event-link {
  display: inline-block; width: fit-content; margin-top: 0.5rem;
  background: var(--gold); color: var(--navy-d);
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.06em;
  text-transform: uppercase; text-decoration: none;
  padding: 0.65rem 1.25rem; transition: background 0.2s;
}
.event-link:hover { background: var(--gold-d); }
.news-side { padding: 1.75rem 2rem; display: flex; flex-direction: column; gap: 0; }
.news-side-head {
  font-size: 0.68rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.18em; color: var(--copper); margin-bottom: 1rem;
}
.news-item {
  padding: 1rem 0; border-bottom: 1px solid var(--border);
  display: grid; grid-template-columns: 72px 1fr; gap: 1rem; align-items: start;
}
.news-item:first-of-type { padding-top: 0; }
.news-item:last-child { border-bottom: none; padding-bottom: 0; }
.news-date {
  font-size: 0.75rem; font-weight: 700; color: var(--navy-l);
  line-height: 1.4; font-family: 'Georgia', serif;
}
.news-title { font-size: 0.9rem; font-weight: 700; color: var(--navy); margin-bottom: 0.25rem; line-height: 1.35; }
.news-text { font-size: 0.8rem; color: var(--text); line-height: 1.6; }
.news-text a { color: var(--navy-l); text-decoration: underline; text-underline-offset: 0.15em; }
.news-text a:hover { color: var(--navy); }
.news-empty {
  font-size: 0.85rem; color: var(--text); line-height: 1.65; font-style: italic;
}
.news-panel--solo { grid-template-columns: 1fr; }
.news-panel--solo .news-side { border-top: 1px solid var(--border); }

/* SECTIONS */
section { padding: 5rem 2.5rem; }
.container { max-width: 1100px; margin: 0 auto; }
.tag { font-size: 0.68rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.18em; color: var(--copper); margin-bottom: 0.5rem; }
h2 { font-size: clamp(2rem, 3.5vw, 3rem); font-weight: 900; color: var(--navy); margin-bottom: 0.5rem; letter-spacing: -0.02em; }
.sub { font-size: 0.92rem; color: var(--text); max-width: 560px; line-height: 1.7; margin-bottom: 3rem; }

/* PROGRAM — navy-tinted blocks grouped in pillars */
#program { background: var(--bg-tint); }
.prog-groups { display: flex; flex-direction: column; gap: 3.5rem; }
.prog-pillar-head { margin-bottom: 1.25rem; max-width: 720px; }
.prog-pillar-head h3 {
  font-size: 1.35rem; font-weight: 700; color: var(--navy);
  font-family: 'Georgia', serif; margin: 0;
}
.prog-blocks { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--border); }
.pb {
  position: relative;
  background: var(--white);
  padding: 2rem 2.75rem 3.25rem 2rem;
  display: flex; flex-direction: column; gap: 0.75rem;
  transition: background 0.2s;
}
.pb:hover { background: #e8ecf5; }
.plutek {
  position: absolute; right: 0.75rem; bottom: 0.35rem;
  font-size: 2.75rem; font-weight: 900; line-height: 1;
  font-family: 'Arial', serif; color: var(--navy);
  opacity: 0.12; letter-spacing: -0.03em;
  pointer-events: none; z-index: 0;
  transition: opacity 0.2s;
}
.pb:hover .plutek,
.cand-card:hover .plutek { opacity: 0.2; }
.pb-area, .pb-title, .pb-desc { position: relative; z-index: 1; }
.pb-area { font-size: 0.65rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; color: var(--copper); }
.pb-title { font-size: 1rem; font-weight: 700; color: var(--navy); }
.pb-desc { font-size: 0.82rem; color: var(--text); line-height: 1.65; }

/* ABOUT */
#o-nas { background: var(--white); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; }
.ap { }
.ap p { font-size: 0.92rem; color: var(--text); line-height: 1.85; margin-bottom: 1rem; }
.ap p strong { color: var(--navy); }
.big-quote {
  background: var(--navy); color: var(--white);
  padding: 2rem 2.5rem; margin-top: 2rem;
}
.bq-text { font-size: 1.15rem; color: var(--gold); font-style: italic; line-height: 1.5; margin-bottom: 0.75rem; font-family: 'Georgia', serif; }
.bq-cite { font-size: 0.75rem; color: rgba(255,255,255,0.5); }

.ms {
  display: flex; gap: 1.5rem;
  padding: 1.5rem 0; border-bottom: 1px solid var(--border);
}
.ms:first-child { border-top: 1px solid var(--border); }
.ms-y {
  min-width: 60px; font-size: 1.1rem; font-weight: 900;
  color: var(--navy-l); font-family: 'Georgia', serif;
}
.ms-t h4 { font-size: 0.9rem; font-weight: 700; color: var(--navy); margin-bottom: 0.2rem; }
.ms-t p { font-size: 0.82rem; color: var(--text); line-height: 1.6; }
.pct-row { display: flex; align-items: center; gap: 1rem; margin-bottom: 1rem; }
.pct-label { font-size: 0.8rem; color: var(--text); min-width: 180px; }
.pct-track { flex: 1; height: 6px; background: var(--border); overflow: hidden; }
.pct-fill { height: 100%; background: linear-gradient(90deg, var(--navy), var(--navy-xl)); }
.pct-val { font-size: 0.8rem; font-weight: 700; color: var(--navy); min-width: 36px; text-align: right; }

/* ACHIEVEMENTS CAROUSEL */
#uspechy { background: var(--bg-tint); }
.ach-intro { font-size: 0.92rem; color: var(--text); max-width: 720px; line-height: 1.85; margin-bottom: 2.5rem; }
.ach-carousel { position: relative; }
.ach-static-list {
  display: flex; flex-direction: column; gap: 2rem;
}
.ach-static-list .ach-slide {
  min-width: auto;
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: 0 8px 28px rgba(41,56,118,0.08);
}
.ach-viewport {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: 0 8px 28px rgba(41,56,118,0.08);
}
.ach-track {
  display: flex;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}
.ach-slide {
  min-width: 100%;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  align-items: stretch;
}
.ach-slide--highlight .ach-slide-body {
  background: var(--navy);
}
.ach-slide--highlight .ach-area { color: var(--gold); }
.ach-slide--highlight .ach-title { color: var(--white); }
.ach-slide--highlight .ach-desc { color: rgba(255,255,255,0.78); }
.ach-slide--highlight .ach-desc strong { color: var(--gold); }
.ach-slide-media {
  position: relative;
  min-height: 320px;
  background: var(--navy-d);
  overflow: hidden;
}
.ach-slide-media img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  display: block;
}
.ach-slide-body {
  padding: 2.25rem 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.65rem;
}
.ach-area {
  font-size: 0.65rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.12em; color: var(--copper);
}
.ach-title {
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  font-weight: 900; color: var(--navy); line-height: 1.3;
}
.ach-desc { font-size: 0.88rem; color: var(--text); line-height: 1.75; }
.ach-desc ul { margin: 0; padding-left: 1.15em; list-style: disc; }
.ach-desc li {
  font-size: inherit; color: inherit; line-height: inherit;
  padding-left: 0.2em;
}
.ach-desc li + li { margin-top: 0.35em; }
.ach-desc strong { color: var(--navy); font-weight: 700; }
.ach-desc a { color: var(--navy); text-decoration: underline; text-underline-offset: 0.15em; }
.ach-desc a:hover { color: var(--navy-l); }
.ach-slide--highlight .ach-desc a { color: var(--gold); }
.ach-slide--highlight .ach-desc a:hover { color: var(--white); }
.ach-controls {
  display: flex; align-items: center; justify-content: center;
  gap: 1.25rem; margin-top: 1.5rem; flex-wrap: wrap;
}
.ach-btn {
  width: 44px; height: 44px; border: 1px solid var(--border);
  background: var(--white); color: var(--navy); cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: border-color 0.2s, background 0.2s, color 0.2s;
  flex-shrink: 0;
}
.ach-btn:hover:not(:disabled) {
  border-color: var(--navy); background: var(--navy); color: var(--gold);
}
.ach-btn:disabled { opacity: 0.35; cursor: default; }
.ach-btn svg { display: block; }
.ach-dots { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.5rem; max-width: 520px; }
.ach-dot {
  width: 10px; height: 10px; padding: 0; border: none; border-radius: 50%;
  background: var(--border); cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.ach-dot:hover { background: var(--navy-l); }
.ach-dot.is-active { background: var(--navy); transform: scale(1.15); }
.ach-counter {
  font-size: 0.75rem; font-weight: 700; color: var(--navy-l);
  letter-spacing: 0.06em; min-width: 3.5rem; text-align: center;
}

/* CANDIDATES */
#kandidati { background: var(--bg-tint); }
.cand-teaser {
  width: 100%;
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 4px solid var(--gold);
  padding: 2rem 2.25rem;
  box-shadow: 0 6px 24px rgba(41,56,118,0.06);
}
.cand-teaser p {
  font-size: 0.92rem;
  line-height: 1.85;
  color: var(--text);
  margin: 0;
}
.cand-teaser p + p { margin-top: 1rem; }
.cand-teaser strong { color: var(--navy); }
.cand-teaser a {
  color: var(--navy-l);
  font-weight: 700;
  text-decoration: none;
}
.cand-teaser a:hover { color: var(--navy); text-decoration: underline; }
.candidates-list {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem;
}
.cand-card {
  position: relative;
  background: var(--white); border: 1px solid var(--border);
  border-left: 4px solid var(--gold);
  display: flex; flex-direction: row; overflow: hidden;
  transition: background 0.2s, box-shadow 0.2s;
}
.cand-card:hover { background: #e8ecf5; box-shadow: 0 4px 20px rgba(41,56,118,0.1); }
.cand-photo,
.cand-body { position: relative; z-index: 1; }
.cand-photo {
  width: 200px; min-height: 240px; flex-shrink: 0;
  object-fit: cover; object-position: top center;
  display: block; background: var(--border);
}
.cand-body {
  padding: 1.25rem 3rem 2.75rem 1.5rem; flex: 1;
  display: flex; flex-direction: column; gap: 0.5rem;
}
.cand-name { font-size: 1rem; font-weight: 700; color: var(--navy); line-height: 1.3; }
.cand-meta {
  font-size: 0.72rem; color: var(--copper); text-transform: uppercase;
  letter-spacing: 0.06em; line-height: 1.5;
}
.cand-preview { font-size: 0.82rem; color: var(--text); line-height: 1.65; margin-top: 0.25rem; }
.cand-more { margin-top: 0.5rem; }
.cand-more summary {
  font-size: 0.78rem; font-weight: 700; color: var(--copper);
  cursor: pointer; list-style: none; letter-spacing: 0.04em;
}
.cand-more summary::-webkit-details-marker { display: none; }
.cand-more p { font-size: 0.82rem; color: var(--text); line-height: 1.65; margin-top: 0.75rem; }

/* CONTACT */
#kontakt { background: var(--navy-d); color: var(--white); }
#kontakt .contact-links {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
#kontakt .tag { color: var(--gold); }
#kontakt h2 { color: var(--white); }
.contact-links { display: flex; flex-direction: column; gap: 0.5rem; }
.cl {
  display: flex; align-items: center; gap: 0.85rem;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  padding: 0.85rem 1.25rem; text-decoration: none; color: rgba(255,255,255,0.85);
  font-size: 0.85rem; transition: border-color 0.2s, background 0.2s;
  min-width: 0;
}
.cl:hover { border-color: var(--gold); background: rgba(249,228,74,0.12); }
.cl svg { color: var(--gold); flex-shrink: 0; }
.contact-cta {
  background: var(--gold); padding: 2.5rem;
  display: flex; flex-direction: column; justify-content: center;
}
.contact-cta h3 { font-size: 1.75rem; font-weight: 900; color: var(--navy-d); text-transform: uppercase; letter-spacing: -0.02em; margin-bottom: 0.5rem; }
.contact-cta p { font-size: 0.85rem; color: var(--navy); line-height: 1.65; }

footer {
  background: var(--white); color: var(--text);
  border-top: 1px solid var(--border);
  text-align: center; padding: 1.25rem; font-size: 0.78rem;
}
footer a { color: var(--navy); text-decoration: none; }
footer a:hover { color: var(--navy-l); }

/* ─── HAMBURGER ─── */
.hamburger {
  display: none;
  background: none; border: none; cursor: pointer;
  padding: 8px; color: inherit; line-height: 0;
}
.hamburger span {
  display: block; width: 22px; height: 2px;
  background: currentColor; margin: 5px 0;
  transition: transform 0.25s, opacity 0.25s;
}
.hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 1100px) {
  nav { padding: 0 1.25rem; }
  .hamburger { display: block; }
  .no-js .hamburger { display: none; }
  .nav-links {
    display: none;
    position: absolute; top: 60px; left: 0; right: 0;
    background: var(--white);
    flex-direction: column; flex-wrap: nowrap; padding: 0.5rem 0;
    border-top: 1px solid var(--border);
    box-shadow: 0 8px 16px rgba(41,56,118,0.08);
    z-index: 200; align-items: stretch;
  }
  .nav-links.is-open { display: flex; }
  .no-js .nav-links {
    display: flex; position: static;
    flex-direction: row; flex-wrap: wrap;
    padding: 0; border: none; box-shadow: none;
    gap: 0;
  }
  .no-js .nav-links li { width: auto; }
  .no-js .nav-links a {
    padding: 0 0.75rem; height: 60px;
    display: inline-flex; width: auto;
  }
  .nav-links li { width: 100%; }
  .nav-links a {
    padding: 0.85rem 1.5rem; height: auto; line-height: 1.5;
    display: block; width: 100%;
    color: var(--navy);
  }
  .nav-links a.btn-icon {
    justify-content: flex-start;
    padding: 0.85rem 1.5rem;
  }
}
@media (min-width: 901px) {
  #kontakt .contact-links {
    flex-direction: row;
    gap: 0.75rem;
  }
  #kontakt .contact-links .cl {
    flex: 1 1 0;
  }
}
@media (max-width: 900px) {
  .vote-cta-section { padding: 2rem 1.5rem 2.5rem; }
  #aktuality { padding: 2.5rem 1.5rem 3rem; }
  .news-panel { grid-template-columns: 1fr; }
  .hero-inner, .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .hero-stats { flex-direction: row; flex-wrap: wrap; }
  .prog-blocks { grid-template-columns: 1fr 1fr; }
  .pb { padding: 1.75rem 2.5rem 3rem 1.75rem; }
  .plutek { font-size: 2.5rem; }
  .ach-slide { grid-template-columns: 1fr; }
  .ach-slide-media { min-height: 240px; }
  .ach-slide-media img { min-height: 240px; }
  .ach-slide-body { padding: 1.75rem 1.5rem; }
  .candidates-list { grid-template-columns: 1fr; }
  .cand-card { flex-direction: column; }
  .cand-photo {
    width: 100%; height: auto; max-height: none;
    object-fit: contain; object-position: center center;
    background: var(--bg-tint);
  }
  section { padding: 4rem 1.5rem; }
}
@media (max-width: 600px) {
  .vote-cta-section { padding: 1.75rem 1.25rem 2rem; }
  .vote-cta-section .contact-cta { padding: 1.75rem 1.5rem; }
  .prog-blocks { grid-template-columns: 1fr; }
  .pb { padding: 1.5rem 2.5rem 3rem 1.5rem; }
  .plutek { font-size: 2.25rem; right: 0.5rem; bottom: 0.5rem; }
  .cand-body { padding: 1.25rem 2.75rem 2.5rem 1.25rem; }
  section { padding: 3rem 1.25rem; }
  #aktuality { padding: 2rem 1.25rem 2.5rem; }
  .news-item { grid-template-columns: 1fr; gap: 0.35rem; }
}
