/* ================================
   Intiqore – Impressum Styles
   Datei: impressum.css
   Angelehnt an: datenschutz.css (helle Glasoptik)
   ================================ */

   .impressum-wrapper {
    background: rgba(255, 255, 255, 0.06); /* leichtes Glas mit Transparenz */
    backdrop-filter: blur(16px) saturate(140%);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius);
    padding: clamp(24px, 4vw, 48px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.25);
    color: var(--text);
    line-height: 1.7;
    max-width: 900px;
    margin: 0 auto clamp(40px, 8vh, 80px);
    transition: background 0.3s ease, box-shadow 0.3s ease;
  }
  
  /* Titel im gleichen Stil wie Datenschutz */
  .impressum-title {
    font-size: clamp(1.8rem, 2vw + 1rem, 2.4rem);
    font-weight: 800;
    text-align: center;
    margin-bottom: 2rem;
    background:  var(--brand);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  
  /* Sections – identische Struktur wie bei Datenschutz */
  .impressum-wrapper .section {
    margin-bottom: 2rem;
    padding-bottom: 1.2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }
  
  .impressum-wrapper .section:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
  }
  
  /* Überschriften */
  .impressum-wrapper .section h2 {
    font-size: 1.25rem;
    color: var(--brand-600);
    margin-bottom: 0.6rem;
    font-weight: 700;
  }
  
  /* Falls du Zwischenüberschriften brauchst */
  .impressum-wrapper .section h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-top: 1.2rem;
    color: var(--brand);
  }
  
  /* Fließtext */
  .impressum-wrapper .section p {
    margin: 0.5rem 0;
    color: var(--text);
  }
  
  /* Listen */
  .impressum-wrapper .section ul {
    margin: 0.5rem 0 0.5rem 1.3rem;
    padding: 0;
    list-style: disc;
  }
  
  .impressum-wrapper .section li {
    margin-bottom: 0.4rem;
    color: var(--text);
  }
  
  .impressum-wrapper .section li strong {
    color: var(--info);
    font-weight: 600;
  }
  
  /* Links nur innerhalb des Impressums */
  .impressum-wrapper a {
    color: var(--info);
    text-decoration: underline;
    transition: color 0.2s ease, text-decoration-color 0.2s ease;
  }
  
  .impressum-wrapper a:hover {
    text-decoration: none;
    color: var(--brand);
  }
  
  /* Responsive */
  @media (max-width: 700px) {
    .impressum-wrapper {
      padding: 1.5rem;
      background: rgba(255, 255, 255, 0.09);
    }
  
    .impressum-wrapper .section h2 {
      font-size: 1.1rem;
    }
  
    .impressum-wrapper .section h3 {
      font-size: 1rem;
    }
  }
  