/* ===================== LEGAL HERO ===================== */

.legal-hero {
  position: relative;
  height: 90svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.legal-hero__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.legal-hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.3) 0%,
    rgba(0, 0, 0, 0.1) 100%
  );
  z-index: 2;
}

.legal-hero__inner {
  position: relative;
  z-index: 3;
  width: 100%;
  padding: 60px 40px 40px 40px;
}

.legal-hero__content {
  max-width: none;
  margin: 0;
}

.legal-hero__title {
  font-family: var(--font-heading);
  font-size: clamp(32px, 5vw, 72px);
  font-weight: 600;
  color: white;
  margin: 0;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* ===================== RESPONSIVE ===================== */

@media (max-width: 768px) {
  .legal-hero {
    height: 40vh;
  }

  .legal-hero__inner {
    padding: 40px 20px 20px;
  }

  .legal-hero__title {
    font-size: clamp(24px, 6vw, 48px);
  }
}

@media (max-width: 600px) {
  .legal-hero {
    height: 35vh;
  }

  .legal-hero__inner {
    padding: 30px 16px 16px;
  }

  .legal-hero__title {
    font-size: 28px;
  }
}
