/* Closing CTA — shared across pages */
.cta-section {
  padding: clamp(40px, 5vw, 72px) clamp(1.25rem, 5vw, 3rem);
}

.cta-card {
  position: relative;
  display: grid;
  width: min(1240px, 100%);
  margin: 0 auto;
  padding: clamp(40px, 5vw, 68px) clamp(28px, 4.5vw, 68px);
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(28px, 5vw, 76px);
  border-radius: 28px;
  overflow: hidden;
  background-color: #4aa8f7;
  background-image: url("../images/cta-closing-bg.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.cta-copy {
  position: relative;
  z-index: 1;
}

.cta-copy h2 {
  max-width: 20ch;
  margin: 0;
  color: #0a2a4e;
  font-size: clamp(30px, 3.5vw, 48px);
  font-weight: 800;
  letter-spacing: -.036em;
  line-height: 1.05;
}

.cta-copy p {
  max-width: 46ch;
  margin: 18px 0 0;
  color: rgba(10, 42, 78, .72);
  font-size: 16.5px;
  line-height: 1.65;
}

.cta-action {
  position: relative;
  z-index: 1;
}

@media (max-width: 820px) {
  .cta-card {
    grid-template-columns: 1fr;
    gap: 30px;
    border-radius: 22px;
  }

  .cta-copy h2 {
    max-width: none;
  }
}

@media (max-width: 480px) {
  .cta-section {
    padding: 32px 16px;
  }

  .cta-section .wt-glass-button {
    --wt-button-width: 100%;
    max-width: 260px;
  }
}
