/*
 * Documents Center CTA
 *
 * Keep this component page-scoped. product.css and lead.css contain broad CTA
 * selectors whose responsive display rules previously caused duplicate buttons
 * and layout changes on this page.
 */
.documents-cta {
  box-sizing: border-box;
  min-height: 130px;
  margin: 38px 53px;
  padding: 27px 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 155px;
  color: #ffffff;
  background: #1e5bfa;
  border-radius: 12px;
}

.documents-cta__text {
  flex: 0 1 auto;
  color: #ffffff;
  font-family: 'Encode Sans', sans-serif;
  font-size: 22px;
  font-weight: 300;
  line-height: 38px;
  letter-spacing: 1px;
}

.documents-cta__eyebrow,
.documents-cta__heading {
  white-space: nowrap;
}

.documents-cta__intro {
  opacity: 0.8;
}

.documents-cta__heading {
  font-size: 30px;
  font-weight: 500;
  letter-spacing: 0;
}

.documents-cta__heading strong {
  font-weight: 800;
}

.documents-cta__button {
  box-sizing: border-box;
  flex: 0 0 206px;
  width: 206px;
  min-width: 206px;
  max-width: 206px;
  height: 50px;
  min-height: 50px;
  max-height: 50px;
  margin: 0;
  padding: 14px 50px;
  border: 0;
  border-radius: 7px;
  color: #1e5bfa;
  background: #ffffff;
  font-family: 'Encode Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  appearance: none;
  box-shadow: none;
  animation: none;
  transition: none;
}

.documents-cta__button:hover,
.documents-cta__button:focus,
.documents-cta__button:active {
  width: 206px;
  height: 50px;
  margin: 0;
  padding: 14px 50px;
  color: #1e5bfa;
  background: #ffffff;
  border-radius: 7px;
  box-shadow: none;
  transform: none;
}

.documents-cta__button:focus-visible {
  outline: 3px solid #ffffff;
  outline-offset: 3px;
}

@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .documents-cta {
    gap: clamp(48px, 8vw, 82px);
  }

  .documents-cta__text {
    font-size: 18px;
    line-height: 32px;
  }

  .documents-cta__heading {
    font-size: 24px;
  }
}

@media only screen and (max-width: 767px) {
  .documents-cta {
    min-height: 210px;
    margin: 45px 37px;
    padding: 23px 20px;
    flex-direction: column;
    gap: 30px;
  }

  .documents-cta__text {
    width: 100%;
    font-size: 17px;
    line-height: 28px;
    text-align: center;
  }

  .documents-cta__eyebrow,
  .documents-cta__heading {
    white-space: normal;
  }

  .documents-cta__today {
    display: none;
  }

  .documents-cta__heading {
    font-size: 18px;
  }
}
