/* Hero CTAs only. Do not share selectors with .cta-action-strip. */
html body .ec-hero .da-hero-cta,
html body .wp-sec--hero .da-hero-cta {
  order: 3;
}

html body .da-hero-cta {
  --da-hero-cta-h: 40px;
  --da-hero-cta-pad: 1rem;
  --da-hero-cta-font: 0.82rem;
  --da-hero-cta-radius: 999px;
  --da-hero-cta-gap: 0.5rem;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: inherit;
  gap: var(--da-hero-cta-gap);
  width: auto;
  max-width: 100%;
  margin: 0.7rem 0 0;
  padding: 0;
  background: none;
  border: 0;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

html body .da-hero-cta__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  min-height: var(--da-hero-cta-h);
  height: var(--da-hero-cta-h);
  padding: 0 var(--da-hero-cta-pad);
  border-radius: var(--da-hero-cta-radius);
  border: 1.5px solid transparent;
  font-size: var(--da-hero-cta-font);
  font-weight: 800;
  line-height: 1.15;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  box-shadow: none;
}

html body .da-hero-cta__btn--primary {
  background: #f97316;
  border-color: #f97316;
  color: #fff;
}

html body .da-hero-cta__btn--primary:hover,
html body .da-hero-cta__btn--primary:focus-visible {
  background: #ea580c;
  border-color: #ea580c;
  color: #fff;
}

html body .da-hero-cta__btn--ghost {
  background: rgba(15, 23, 42, 0.28);
  border-color: rgba(255, 255, 255, 0.72);
  color: #fff;
}

html body .da-hero-cta__btn--ghost:hover,
html body .da-hero-cta__btn--ghost:focus-visible {
  background: rgba(15, 23, 42, 0.46);
  border-color: #fff;
  color: #fff;
}

html body .wp-hero--classic .da-hero-cta__btn--ghost {
  background: #fff;
  border-color: #cbd5e1;
  color: #0f172a;
}

html body .wp-hero--classic .da-hero-cta__btn--ghost:hover,
html body .wp-hero--classic .da-hero-cta__btn--ghost:focus-visible {
  background: #fff;
  border-color: #f97316;
  color: #ea580c;
}

@media (max-width: 720px) {
  html body .da-hero-cta {
    --da-hero-cta-h: 36px;
    --da-hero-cta-font: 0.75rem;
    --da-hero-cta-pad: 0.78rem;
    --da-hero-cta-gap: 0.4rem;
    margin-top: 0.55rem;
  }

  html body .da-hero-cta__btn {
    flex: 1 1 auto;
    min-width: 0;
    max-width: 100%;
  }
}
