/* ==========================================================================
   Call To Action Banner
   ========================================================================== */
.cta {
  position: relative;
  background: var(--gradient-brand);
  padding: 42px 0;
  overflow: hidden;
}

.cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.10) 1.5px, transparent 1.5px);
  background-size: 22px 22px;
  opacity: 0.5;
  pointer-events: none;
}

.cta__inner { position: relative; z-index: 1; }

.cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.cta__text {
  display: flex;
  align-items: center;
  gap: 16px;
}

.cta__icon {
  width: 30px;
  height: 30px;
  color: var(--color-white);
  flex-shrink: 0;
}

.cta__text p {
  color: var(--color-white);
  font-size: 19px;
  font-weight: 600;
}

@media (max-width: 700px) {
  .cta__inner { justify-content: center; text-align: center; }
  .cta__text { flex-direction: column; gap: 10px; }
}
