/* Overrides für schmale Textseiten (Impressum, Coming Soon, künftig DSGVO/AGB) */
/* Wird NACH style.css geladen, gewinnt via CSS-Kaskade */

.container {
  max-width: 760px;
  padding: 140px clamp(20px, 4vw, 64px) 120px;
}

.container a { color: var(--red); }

.container h1 {
  font-family: 'Anton', sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: -.005em;
  font-size: clamp(48px, 6vw, 84px);
  line-height: 1;
  margin-bottom: 40px;
}

.container h2 {
  font-family: 'Anton', sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: .02em;
  font-size: 20px;
  margin: 40px 0 12px;
}

.container p {
  margin-bottom: 12px;
  line-height: 1.6;
}

.container .hero-image {
  display: block;
  width: min(100vw, 1200px);
  height: auto;
  margin: 60px auto;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 8px;
}

/* Legal-Footer: überschreibt den großen Website-Footer aus style.css */
.footer {
  padding: 40px clamp(20px, 4vw, 64px);
  font-size: 13px;
  opacity: .7;
  text-align: center;
  background: var(--ink);
  color: var(--paper);
}

.footer a { color: inherit; text-decoration: underline; }
.footer a:hover { color: inherit; }
