/* ================================================
   politische-arbeit.css
   ================================================ */

/* === INTRO === */
.pa-intro {
  padding-block: var(--section-py);
  background: var(--weiss);
}
.pa-intro-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: start;
}
.pa-headline {
  font-size: clamp(1.9rem, 3.5vw, 3rem);
  color: var(--rhoenblau);
  margin-top: 0.5rem;
  margin-bottom: var(--space-lg);
}
.pa-intro-text .body-text {
  font-size: 1.05rem;
  margin-bottom: var(--space-md);
}
.pa-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-sm);
}
.pa-stat {
  background: var(--dunkel-gold);
  padding: var(--space-md);
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.pa-stat-zahl {
  font-family: 'Inter', sans-serif;
  font-weight: 900;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  color: var(--rhoenblau);
  letter-spacing: -0.03em;
  line-height: 1;
}
.pa-stat-label {
  font-size: 0.78rem;
  color: var(--rhoenblau);
  line-height: 1.4;
}

/* === STORY === */
.pa-story {
  padding-block: var(--section-py);
  background: var(--rhoenblau-10);
}
.pa-story-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: start;
}
.pa-section-headline {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: var(--rhoenblau);
  margin-top: 0.5rem;
  margin-bottom: var(--space-lg);
}
.pa-story-text .body-text {
  font-size: 1rem;
  margin-bottom: var(--space-md);
  color: var(--schwarz);
}
.pa-story-text .body-text:last-child {
  margin-bottom: 0;
}

/* Pull quote inner */
.pa-pullquote {
  background: var(--rhoenblau);
  padding: var(--space-xl);
  position: relative;
}
.pa-pullquote-mark {
  font-family: 'IBM Plex Serif', serif;
  font-size: 5rem;
  color: var(--union-gold);
  line-height: 0.7;
  display: block;
  margin-bottom: var(--space-md);
}
.pa-pullquote-text {
  font-size: 1.1rem;
  color: white;
  font-style: italic;
  line-height: 1.65;
}

/* === AUSSCHÜSSE === */
.pa-ausschuesse {
  padding-block: var(--section-py);
  background: var(--weiss);
}
.pa-section-sub {
  max-width: 62ch;
  margin-top: 0.75rem;
  margin-bottom: var(--space-xl);
  color: var(--rhoenblau-60);
  font-size: 1rem;
}
.pa-ausschuesse-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
}
.pa-ausschuss-kachel {
  background: var(--rhoenblau-10);
  padding: var(--space-lg);
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
  border-left: 4px solid var(--dunkel-gold);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.pa-ausschuss-kachel:hover {
  transform: translateX(4px);
  box-shadow: 0 4px 20px rgba(45,60,75,0.1);
}
.pa-ausschuss-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  padding: 4px;
}
.pa-ausschuss-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.pa-ausschuss-name {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--rhoenblau);
  letter-spacing: -0.01em;
  line-height: 1.3;
}
.pa-ausschuss-rolle {
  font-size: 0.82rem;
  color: var(--rhoenblau-60);
  font-style: italic;
  margin-top: 4px;
}

/* === POSITIONEN === */
.pa-positionen {
  padding-block: var(--section-py);
  background: var(--rhoenblau);
}
.pa-positionen .pa-section-headline {
  color: white;
}
.pa-positionen .pa-section-sub {
  color: rgba(255,255,255,0.65);
}
.pa-positionen-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  margin-top: var(--space-xl);
  border-top: 1px solid rgba(255,255,255,0.1);
}
.pa-positionen-list li {
  padding: var(--space-lg) var(--space-md);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
  font-family: 'IBM Plex Serif', serif;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.88);
  line-height: 1.55;
}
.pa-positionen-list li:nth-child(odd) {
  border-right: 1px solid rgba(255,255,255,0.1);
}
.pa-positionen-list li::before {
  content: '';
  display: block;
  width: 8px;
  height: 8px;
  background: var(--dunkel-gold);
  flex-shrink: 0;
  margin-top: 0.45em;
}

/* === THEMEN GRID === */
.pa-themen {
  padding-block: var(--section-py);
  background: var(--rhoenblau-10);
}
.pa-themen-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}
.pa-thema-card {
  background: white;
  padding: var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  box-shadow: 0 4px 16px rgba(45,60,75,0.06);
}
.pa-thema-header {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}
.pa-thema-header img {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  object-fit: contain;
}
.pa-thema-titel {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: -0.02em;
  color: var(--rhoenblau);
  line-height: 1.2;
}
.pa-thema-text {
  font-size: 0.9rem;
  color: var(--rhoenblau-60);
  line-height: 1.65;
}

/* === RESPONSIVE === */
@media (max-width: 960px) {
  .pa-intro-inner,
  .pa-story-inner {
    grid-template-columns: 1fr;
  }
  .pa-stats {
    grid-template-columns: repeat(4, 1fr);
  }
  .pa-ausschuesse-grid {
    grid-template-columns: 1fr;
  }
  .pa-positionen-list {
    grid-template-columns: 1fr;
  }
  .pa-positionen-list li:nth-child(odd) {
    border-right: none;
  }
  .pa-themen-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .pa-stats {
    grid-template-columns: repeat(2, 1fr);
  }
  .pa-themen-grid {
    grid-template-columns: 1fr;
  }
}
