/* ── Shared styles for content pages (quadfixr subpages + imprint) ── */

.logo {
  display: block;
  width: 100%;
  max-width: 280px;
  margin: 0 auto 2.5rem;
  opacity: 0;
  animation: fadeUp 0.6s ease forwards;
}

.header {
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeUp 0.6s ease 0.1s forwards;
}

.subtitle {
  margin-top: 0.75rem;
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.6;
}

.content-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 2rem;
  opacity: 0;
  animation: fadeUp 0.6s ease 0.2s forwards;
}

.content-card section {
  margin-bottom: 1.5rem;
}

.content-card section:last-child {
  margin-bottom: 0;
}

.content-card .section-title {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 0.6rem;
}

.content-card p {
  font-size: 0.82rem;
  line-height: 1.75;
  color: var(--text);
  margin-bottom: 0.75rem;
}

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

.content-card ul {
  padding-left: 1.25rem;
  margin-bottom: 0.75rem;
}

.content-card li {
  font-size: 0.82rem;
  line-height: 1.75;
  color: var(--text);
  margin-bottom: 0.3rem;
}

.content-card strong {
  font-weight: 600;
  color: var(--heading);
}

.content-card a {
  color: var(--accent);
  text-decoration: none;
}

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

.divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 1.5rem 0;
}

.meta {
  font-size: 0.72rem;
  color: var(--muted);
}

.meta a {
  color: var(--accent);
  text-decoration: none;
}

.meta a:hover {
  text-decoration: underline;
}
