/* Hart voor Humor — Klachtenpagina
 * Eén compacte hero: naast elkaar op desktop, beeld boven tekst op kleinere
 * schermen. Alle uitzonderingen voor deze pagina blijven in dit bestand. */
.page-shell--legal-complaints .page-shell__hero-grid {
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  min-height: clamp(320px, 30vw, 360px);
}

.page-shell--legal-complaints .page-shell__hero-copy {
  grid-column: 1;
  grid-row: 1;
  align-content: center;
  width: 100%;
  max-width: none;
  gap: 14px;
  padding: clamp(26px, 3.4vw, 40px);
}

.page-shell--legal-complaints .page-shell__title {
  max-width: 13ch;
  font-size: clamp(34px, 4.2vw, 56px);
  line-height: 0.94;
}

.page-shell--legal-complaints .page-shell__intro {
  display: block;
  max-width: 52ch;
  font-size: clamp(17px, 1.18vw, 20px);
}

.page-shell--legal-complaints .page-shell__media {
  grid-column: 2;
  grid-row: 1;
  width: 100%;
  min-height: 100%;
  aspect-ratio: auto;
  margin: 0;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background: #111;
  box-shadow: none;
}

.page-shell--legal-complaints .page-shell__media::after {
  display: none;
}

.page-shell--legal-complaints .page-shell__media::before {
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.08) 0%,
    rgba(0, 0, 0, 0) 54%,
    rgba(255, 255, 255, 0.06) 100%
  );
}

.page-shell--legal-complaints .page-shell__image {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 100%;
  max-height: none;
  margin: 0;
  border-radius: inherit;
  object-fit: cover;
  object-position: center;
}

.page-shell--legal-complaints
  :is(.page-shell__actions, .page-shell__mini-actions) {
  gap: 14px;
}

.page-shell--legal-complaints
  :is(.page-shell__actions, .page-shell__mini-actions)
  .bb-pill-button {
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  letter-spacing: 0.16em;
  font-size: 11px;
  font-weight: 900;
}

.page-shell--legal-complaints
  :is(.page-shell__actions, .page-shell__mini-actions)
  .bb-pill-button:not(.bb-pill-button--ghost) {
  background: var(--hvh-btn-light-bg-rest);
  border-color: var(--hvh-btn-light-border-rest);
  color: var(--hvh-btn-light-color-rest);
  box-shadow: var(--hvh-btn-light-shadow-rest);
}

.page-shell--legal-complaints
  :is(.page-shell__actions, .page-shell__mini-actions)
  .bb-pill-button:not(.bb-pill-button--ghost):hover,
.page-shell--legal-complaints
  :is(.page-shell__actions, .page-shell__mini-actions)
  .bb-pill-button:not(.bb-pill-button--ghost):focus-visible {
  background: var(--hvh-btn-light-bg-hover);
  border-color: var(--hvh-btn-light-border-hover);
  color: var(--hvh-btn-light-color-hover);
  box-shadow: var(--hvh-btn-light-shadow-hover);
  transform: translateY(-1px);
}

.page-shell--legal-complaints
  :is(.page-shell__actions, .page-shell__mini-actions)
  .bb-pill-button--ghost {
  background: rgba(255, 255, 255, 0.7);
  border-color: rgba(17, 17, 17, 0.1);
  color: rgba(17, 17, 17, 0.8);
  backdrop-filter: none;
  box-shadow: 0 10px 20px rgba(17, 17, 17, 0.05);
}

.page-shell--legal-complaints
  :is(.page-shell__actions, .page-shell__mini-actions)
  .bb-pill-button--ghost:hover,
.page-shell--legal-complaints
  :is(.page-shell__actions, .page-shell__mini-actions)
  .bb-pill-button--ghost:focus-visible {
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(17, 17, 17, 0.16);
  color: #111;
  box-shadow: 0 12px 22px rgba(17, 17, 17, 0.08);
}

.page-shell--legal-complaints
  .page-shell__hero
  .page-shell__actions--after-media {
  display: none;
}

@media (max-width: 980px) {
  .page-shell--legal-complaints .page-shell__hero-grid {
    grid-template-columns: minmax(0, 1fr);
    min-height: 0;
  }

  .page-shell--legal-complaints .page-shell__media {
    grid-column: 1;
    grid-row: 1;
    width: min(calc(100% - 32px), 560px);
    min-height: 0;
    aspect-ratio: 3 / 2;
    margin: 16px auto 0;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 22px;
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.24);
  }

  .page-shell--legal-complaints .page-shell__image {
    height: 100%;
    min-height: 0;
  }

  .page-shell--legal-complaints .page-shell__hero-copy {
    grid-column: 1;
    grid-row: 2;
    align-content: start;
    padding: 24px clamp(22px, 4vw, 34px) 28px;
  }
}

@media (max-width: 600px) {
  .page-shell--legal-complaints .page-shell__media {
    width: calc(100% - 28px);
    margin-top: 14px;
    border-radius: 18px;
  }

  .page-shell--legal-complaints .page-shell__hero-copy {
    gap: 12px;
    padding: 20px 18px 22px;
  }

  .page-shell--legal-complaints .page-shell__title {
    max-width: none;
    font-size: clamp(30px, 9vw, 40px);
  }

  .page-shell--legal-complaints .page-shell__intro {
    max-width: none;
    font-size: 17px;
  }

  .page-shell--legal-complaints .page-shell__hero-copy .page-shell__actions {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    width: 100%;
    gap: 8px;
  }

  .page-shell--legal-complaints
    .page-shell__hero-copy
    .page-shell__actions
    .bb-pill-button {
    width: 100%;
    min-height: 46px;
    padding: 0 14px;
    letter-spacing: 0.1em;
  }

  .page-shell--legal-complaints .page-shell__cta-text {
    display: none;
  }
}
