/* ==========================================================================
   NUTZUNGSHINWEIS – CLEAN LEGAL PAGE (passt zu Datenschutz & AGB)
   ========================================================================== */

.legal-page{
  background: var(--bg-page, #f6f3ec);
  color: var(--text, #213746);
  padding: 80px 0 90px;
}

/* Wrapper: gleiche Breite wie bei euren Cards/Legal-Seiten */
.legal-wrapper{
  max-width: 980px;
  margin: 0 auto;
}

/* Header */
.legal-header{
  text-align: center;
  margin: 0 auto 36px;
}

.legal-header h1{
  margin: 0 0 14px;
  font-size: clamp(32px, 4.2vw, 46px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--heading, #213746);
}

.legal-intro{
  margin: 0 auto;
  max-width: 70ch;
  font-size: 16.5px;
  line-height: 1.75;
  color: rgba(33,55,70,.78);
}

/* Inhalt als Card */
.legal-content{
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 18px;
  padding: clamp(22px, 3.2vw, 36px);
  box-shadow: 0 18px 45px rgba(0,0,0,0.08);
}

/* Typo */
.legal-content h2{
  margin: 26px 0 10px;
  font-size: 18px;
  letter-spacing: -0.01em;
  color: var(--heading, #213746);
}

.legal-content h2:first-child{
  margin-top: 0;
}

.legal-content p{
  margin: 0 0 12px;
  max-width: 78ch;
  font-size: 15.5px;
  line-height: 1.8;
  color: rgba(33,55,70,.86);
}

/* Links */
.legal-content a{
  color: rgba(33,55,70,.92);
  text-decoration: none;
  font-weight: 650;
  border-bottom: 1px solid rgba(242,183,5,.55);
}

.legal-content a:hover{
  border-bottom-color: rgba(242,183,5,1);
}

/* kleine Trennlinie zwischen Abschnitten (optional, dezent) */
.legal-content h2{
  position: relative;
}

.legal-content h2::after{
  content:"";
  display:block;
  width: 56px;
  height: 2px;
  margin-top: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(242,183,5,0.95), rgba(242,183,5,0));
}

/* Mobile */
@media (max-width: 720px){
  .legal-page{
    padding: 64px 0 72px;
  }

  .legal-header{
    margin-bottom: 26px;
  }

  .legal-intro{
    font-size: 15.5px;
  }

  .legal-content{
    border-radius: 16px;
  }
}
