/* DEKK legal page styles */
.dekk-legal-hero {
  padding: clamp(110px, 14vw, 164px) 0 clamp(46px, 7vw, 82px);
  background: var(--dekk-ink);
  color: var(--dekk-white);
}

.dekk-legal-hero .dekk-kicker,
.dekk-legal-hero .dekk-section-title {
  color: var(--dekk-white);
}

.dekk-legal-hero .dekk-lead {
  color: rgba(255, 255, 255, 0.76);
}

.dekk-legal-layout {
  display: grid;
  grid-template-columns: minmax(220px, 0.32fr) minmax(0, 0.68fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
}

.dekk-legal-aside {
  position: sticky;
  top: 112px;
  display: grid;
  gap: 12px;
}

.dekk-legal-note {
  padding: 18px;
  border-radius: var(--dekk-radius);
  background: var(--dekk-ivory);
  color: rgba(43, 37, 38, 0.78);
  font-size: var(--dekk-text-sm);
  line-height: 1.5;
}

.dekk-legal-card {
  padding: clamp(24px, 3vw, 42px);
  border: 1px solid rgba(43, 37, 38, 0.1);
  border-radius: var(--dekk-radius);
  background: var(--dekk-white);
  box-shadow: 0 1px 0 rgba(17, 16, 13, 0.06);
}

.dekk-legal-card h2 {
  margin: 34px 0 12px;
  color: var(--dekk-ink);
  font-size: clamp(1.35rem, 2.1vw, 2rem);
  line-height: 1.12;
  font-weight: 900;
}

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

.dekk-legal-card p,
.dekk-legal-card li {
  color: rgba(43, 37, 38, 0.78);
  line-height: 1.72;
}

.dekk-legal-card ul {
  margin: 12px 0 0;
  padding-left: 1.2em;
}

.dekk-legal-card a {
  color: var(--dekk-burgundy);
  font-weight: 800;
}

@media (max-width: 900px) {
  .dekk-legal-layout {
    grid-template-columns: 1fr;
  }

  .dekk-legal-aside {
    position: static;
  }
}
