.secure-consent-intro {
  padding-block: 54px;
  border-bottom: 1px solid var(--line);
  background: var(--ivory);
}

.secure-consent-intro > .container {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: end;
  gap: 64px;
}

.secure-consent-intro h2 {
  max-width: 620px;
  font-size: 38px;
}

.secure-consent-intro p:last-child {
  max-width: 670px;
  color: var(--ink);
  font-size: 18px;
}

.secure-consent-section {
  padding-block: 64px 76px;
  background: var(--white);
}

.secure-consent-section > .container {
  max-width: 1040px;
}

.secure-consent-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: 28px;
  border-block: 1px solid var(--line);
}

.secure-consent-facts > div {
  display: grid;
  gap: 3px;
  min-width: 0;
  padding: 18px 22px;
  border-right: 1px solid var(--line);
}

.secure-consent-facts > div:first-child {
  padding-left: 0;
}

.secure-consent-facts > div:last-child {
  padding-right: 0;
  border-right: 0;
}

.secure-consent-facts strong {
  color: var(--espresso);
  font-size: 17px;
}

.secure-consent-facts span {
  color: var(--muted);
  font-size: 15px;
}

.vagaro-consent-frame {
  position: relative;
  height: 1200px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #f5f5f5;
}

.vagaro-consent-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  background: var(--white);
}

.secure-consent-fallback {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.secure-consent-fallback > div {
  display: grid;
  gap: 3px;
}

.secure-consent-fallback span,
.secure-consent-help {
  color: var(--muted);
}

.secure-consent-fallback .button {
  flex: 0 0 auto;
}

.secure-consent-help {
  margin-top: 18px;
  font-size: 15px;
  text-align: center;
}

.secure-consent-help a {
  color: var(--rose-aa);
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (max-width: 680px) {
  .secure-consent-intro > .container {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .secure-consent-facts {
    grid-template-columns: 1fr;
  }

  .secure-consent-facts > div,
  .secure-consent-facts > div:first-child,
  .secure-consent-facts > div:last-child {
    padding: 14px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .secure-consent-facts > div:last-child {
    border-bottom: 0;
  }

  .vagaro-consent-frame {
    height: 980px;
  }

  .secure-consent-fallback {
    align-items: stretch;
    flex-direction: column;
  }

  .secure-consent-fallback .button {
    width: 100%;
  }
}
