#cta-section {
  background:
    linear-gradient(
      rgb(9, 29, 49),
      rgb(9, 29, 49, 0.9),
      rgb(9, 29, 49, 0.75),
      rgb(9, 29, 49)
    ),
    url('./assets/img/background-1.webp');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center top;
}

.cta-section {
  min-height: 50vh;
  padding: 6rem 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.cta-section .cta-container {
  margin-bottom: 4rem;
}

.cta-section-title {
  max-width: 20ch;
}

.cta-section-title span {
  display: inline;
}

/* Social follow (generic, reusable) */
.social-follow {
  text-align: center;
}

.social-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2.5rem;
}

.social-links-title {
  margin-bottom: 2.5rem;
  max-width: 20ch;
}

.social-links-title span {
  display: inline;
}

.social-link {
  cursor: pointer;
  transition: transform 0.2s ease-out;
}

.social-link:hover {
  transform: translateY(-3.2px);
}

.social-link img {
  max-width: 2.5rem;
}

@media (max-width: 720px) {
  .social-links-title {
    margin-bottom: 1.75rem;
  }

  .social-link img {
    max-width: 1.75rem;
  }
}

@media (max-width: 320px) {
  .social-links {
    gap: 1rem;
  }
}
