/* Branded application visual for the homepage closing CTA */
.cta-band .cta-grid {
  grid-template-columns: minmax(0, 1.2fr) minmax(360px, 460px);
  gap: clamp(2rem, 4vw, 5rem);
}

.cta-band .cta-grid > * {
  min-width: 0;
}

.cta-band .hero-actions {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
  justify-self: end;
  width: 100%;
  max-width: 460px;
  min-width: 0;
  gap: 14px;
  margin: 0;
}

.cta-band .hero-actions .cta-check-visual {
  display: block;
  grid-column: 1 / -1;
  width: 100%;
  max-width: 100%;
  height: auto;
  margin: 0 0 8px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 22px;
  box-shadow: 0 24px 44px rgba(0, 18, 48, 0.28);
}

.cta-band .hero-actions > .button {
  width: 100%;
  min-width: 0;
  margin: 0 !important;
  padding-inline: 1rem;
  justify-content: center;
  white-space: nowrap;
}

@media (max-width: 1150px) {
  .cta-band .cta-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .cta-band .hero-actions {
    justify-self: start;
    max-width: 640px;
    margin-top: 0.5rem;
  }
}

@media (max-width: 640px) {
  .cta-band .hero-actions {
    grid-template-columns: minmax(0, 1fr);
    max-width: none;
    gap: 12px;
  }

  .cta-band .hero-actions .cta-check-visual {
    grid-column: 1;
    margin-bottom: 4px;
    border-radius: 18px;
  }
}
