/* =====================================================
   CTA Banner — reusable component
   ===================================================== */
.cta-banner {
  position: relative;
  overflow: hidden;
  background: linear-gradient(to right, #1a2035 0%, #1a2035 45%, #c8cacf 100%);
  padding: 4rem 2rem;
}

/* Crosshatch dot grid overlay */
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.12) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}

.cta-banner__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.75rem;
  max-width: 580px;
  margin-left: 0;
  margin-right: auto;
}

.cta-banner .cta-banner__title,
.cta-banner h2 {
  color: #ffffff;
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.25;
  margin: 0;
  text-align: left;
}

.cta-banner__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: #e8002d;
  color: #ffffff;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.6rem 1.25rem;
  border-radius: 2px;
  transition: background 0.2s ease;
  white-space: nowrap;
}

.cta-banner__btn:hover {
  background: #c4001e;
  color: #ffffff;
  text-decoration: none;
}

@media (max-width: 768px) {
  .cta-banner__title {
    font-size: 1.5rem;
  }
}