/* Hero */
.wrapper:last-child {
  margin-bottom: 1.125rem;
}

.title-wrapper {
  @media (width <= 768px) {
    --_gap: 1.125rem !important;
  }

  color: var(--white-clr);
  overflow-x: clip;
}

.title-content {
  border-radius: 3rem;
  padding-block: clamp(3rem, 7vw, 4.375rem);
  display: grid;
  backdrop-filter: blur(40px);
  background-image: url("/assets/images/home/call-to-action.jpg");
  background-size: cover;
  background-position: center;
  scale: crop;
  position: relative;

  &::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -2;
    border-radius: inherit;
    background: url("/assets/images/home/hero-gradient.jpg");
    background-size: cover;
    background-position: center;
    opacity: 0.3;
  }

  &::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -2;
    border-radius: inherit;
    background: url("/assets/images/home/hero-gradient.jpg");
    background-size: cover;
    /* background-size: 100% 180%; */
    background-position: center;
    opacity: 0.5;
  }
  text-align: center;

  > * {
    margin-inline: auto;
  }

  .h1 {
    max-width: 25ch;
    font-size: var(--fs-900);
    text-transform: uppercase;
  }

  p {
    margin-top: 0.25rem;
    font-weight: var(--fw-500);
    font-size: var(--fs-450);
    line-height: 1.3;
  }

  @media (width <=1024px) {
    .h1 {
      font-size: var(--fs-800);
    }
  }

  @media (width <= 768px) {
    .h1 {
      font-size: var(--fs-650);
    }
  }
  padding-top: 3rem;
  text-align: center;

  p {
    max-width: 35ch;
    margin-inline: auto;
    font-size: var(--fs-400);
  }

  @media (width <=1024px) {
    p {
      font-size: var(--fs-450);
    }
  }

  @media (width <=600px) {
    p {
      font-size: var(--fs-400);
    }
  }
}

/* End of Hero */

.title-wrapper ~ .wrapper {
  @media (width <= 768px) {
    --_gap: 1.125rem !important;
  }
}

.privacy-content {
  margin-top: 1.125rem;
  background-color: var(--white-clr);
  border-radius: 2.25rem;
  padding: clamp(2rem, 3vw, 3rem) clamp(1.5rem, 3vw, 3rem);
}

article {
  counter-reset: privacy-counter;

  &:first-child {
    padding-top: 2.5rem;
  }

  padding-bottom: 2.5rem;

  p:not(:last-child),
  ul,
  dl {
    padding-bottom: 1rem;
  }

  h2 {
    font-size: var(--fs-600);
    font-weight: var(--fw-800);
    color: var(--tertiary-clr-900);
    padding-bottom: 0.5rem;
  }

  h3 {
    margin-bottom: 0.75rem;
    font-size: var(--fs-500);
    font-weight: var(--fw-700);
    line-height: 1.25;
    color: var(--black-clr);

    &::before {
      counter-increment: privacy-counter;
      content: counter(privacy-counter) ".";
      padding-right: 0.5ch;
    }
  }

  h4 {
    color: var(--black-clr);
    font-size: var(--fs-450);
    font-weight: var(--fw-600);
  }

  p,
  ul,
  dl {
    font-size: var(--fs-400);
    line-height: 1.7;
  }

  dl {
    display: grid;
    grid-template-columns: auto 1fr;
    column-gap: 1ch;
  }

  dt {
    color: var(--black-clr);
    font-weight: var(--fw-600);
  }

  ul,ol {
    margin-left: clamp(1rem, 5vw - 0.5rem, 2rem);
  }

  a {
    color: var(--secondary-clr);

    &:hover {
      text-decoration: underline;
    }
  }
}

.italic {
  font-style: italic;
}

.bold {
  font-weight: var(--fw-700);
}
