/* =============================================================================
   page-styles.css — shared styles for the subpages (legal + press releases)
   - .sh-impressum-*   Impressum, Datenschutz
   - .sh-pr-*          Finanzierungsmeldung, Open-Source-PoPP
   These were inline <style> blocks in the original kit; consolidated here so
   the two press releases (~250 lines each) don't duplicate.
============================================================================= */

/* -----------------------------------------------------------------------------
   Legal pages: Impressum + Datenschutz
----------------------------------------------------------------------------- */
.sh-impressum-hero {
  background: var(--sh-deep-space);
  color: #fff;
  position: relative;
  overflow: hidden;
  padding: 140px 0 80px;
}
.sh-impressum-hero h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(48px, 6vw, 84px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0;
  color: #fff;
}
.sh-impressum-body {
  padding: 80px 0 96px;
  background: #fff;
}
/* Legal pages flow as a single column.
   h2 inherits the canonical .shk-h2 display style used across the site. */
.sh-impressum-section h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.06;
  letter-spacing: -0.016em;
  color: var(--sh-deep-space);
  text-wrap: balance;
  margin: 0 0 24px;
}
.sh-impressum-block {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--sh-deep-space);
}
.sh-impressum-block p { margin: 0 0 14px; }
.sh-impressum-block p:last-child { margin-bottom: 0; }
.sh-impressum-block h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  margin: 28px 0 10px;
  color: var(--sh-deep-space);
}
.sh-impressum-block h3:first-child { margin-top: 0; }
.sh-impressum-block ul { margin: 0 0 14px; padding-left: 20px; }
.sh-impressum-block li { margin-bottom: 6px; }
.sh-impressum-block strong { color: var(--sh-deep-space); font-weight: 700; }
.sh-impressum-block a {
  color: var(--sh-electric-violet);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  word-break: break-word;
}
.sh-impressum-block a:hover { color: var(--sh-violet-light); }
.sh-impressum-section + .sh-impressum-section {
  margin-top: 56px;
  padding-top: 56px;
  border-top: 1px solid rgba(16, 0, 48, 0.08);
}
.sh-impressum-card {
  margin-top: 18px;
  padding: 24px 28px;
  background: var(--sh-structure);
  border-radius: 18px;
  border: 1px solid rgba(16, 0, 48, 0.08);
}
.sh-impressum-row {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 16px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(16, 0, 48, 0.08);
  font-size: 16px;
}
.sh-impressum-row:last-child { border-bottom: 0; }
@media (max-width: 600px) {
  .sh-impressum-row { grid-template-columns: 1fr; gap: 4px; }
}
.sh-impressum-row dt {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--sh-graphite);
}
.sh-impressum-row dd {
  margin: 0;
  color: var(--sh-deep-space);
}

/* -----------------------------------------------------------------------------
   Press releases: Finanzierungsmeldung 2025, Open-Source-PoPP
----------------------------------------------------------------------------- */
.sh-pr-hero {
  background: var(--sh-deep-space);
  color: #fff;
  position: relative;
  overflow: hidden;
  padding: 140px 0 64px;
}
.sh-pr-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 18px;
}
.sh-pr-meta .date { color: var(--sh-signal-yellow); }
.sh-pr-hero h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(42px, 5.4vw, 72px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0 0 18px;
  color: #fff;
  max-width: 20ch;
}
.sh-pr-lede {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 20px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.82);
  max-width: 680px;
  margin: 0;
}
.sh-pr-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 22px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.15s, transform 0.15s;
}
.sh-pr-back:hover { color: var(--sh-signal-yellow); transform: translateX(-3px); }

.sh-pr-body { background: #fff; padding: 80px 0 96px; }
.sh-pr-grid {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 64px;
  align-items: start;
}
@media (max-width: 880px) {
  .sh-pr-grid { grid-template-columns: 1fr; gap: 24px; }
}
.sh-pr-aside h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--sh-graphite);
  margin: 0 0 14px;
}
.sh-pr-facts {
  background: var(--sh-structure);
  border-radius: 18px;
  border: 1px solid rgba(16, 0, 48, 0.08);
  padding: 22px 24px;
  margin: 0;
}
.sh-pr-facts dt {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sh-graphite);
  margin: 0 0 4px;
}
.sh-pr-facts dd {
  margin: 0 0 16px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  color: var(--sh-deep-space);
}
.sh-pr-facts dd:last-child { margin-bottom: 0; }

.sh-pr-prose {
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.7;
  color: var(--sh-deep-space);
}
.sh-pr-prose > p { margin: 0 0 18px; }
.sh-pr-prose > p.sh-pr-dropcap::first-letter {
  font-family: var(--font-display);
  font-weight: 700;
  float: left;
  font-size: 64px;
  line-height: 0.9;
  padding: 4px 12px 0 0;
  color: var(--sh-electric-violet);
}

.sh-pr-h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 24px;
  letter-spacing: -0.01em;
  color: var(--sh-deep-space);
  margin: 48px 0 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(16, 0, 48, 0.10);
}

.sh-pr-photo {
  margin: 36px 0 8px;
  border-radius: 24px;
  overflow: hidden;
  background: var(--sh-structure);
  border: 1px solid rgba(16, 0, 48, 0.08);
}
.sh-pr-photo img {
  width: 100%;
  height: auto;
  display: block;
}
.sh-pr-caption {
  margin: 8px 0 32px;
  font-size: 13px;
  color: var(--sh-graphite);
  font-family: var(--font-body);
  font-style: italic;
}

.sh-pr-inline-quote {
  margin: 22px 0 26px;
  padding: 0 0 0 20px;
  border-left: 3px solid var(--sh-electric-violet);
  font-family: var(--font-body);
  font-size: 19px;
  line-height: 1.6;
  color: var(--sh-deep-space);
  font-style: italic;
}
.sh-pr-inline-quote footer {
  margin-top: 10px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.02em;
  color: var(--sh-graphite);
  font-style: normal;
}

.sh-pr-prose-list {
  margin: 14px 0 18px;
  padding-left: 24px;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  color: var(--sh-deep-space);
}
.sh-pr-prose-list li { margin-bottom: 6px; }

.sh-pr-deadline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(247, 234, 89, 0.20);
  border: 1px solid rgba(247, 234, 89, 0.6);
  color: var(--sh-deep-space);
  padding: 6px 14px;
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.04em;
  margin: 4px 0 14px;
}
