/*
  general
  text
  mobile
*/

/* general
============================================================================ */

.bg-cta {
  background: linear-gradient(180deg, var(--pos-color-page-background) 31%, #3a8dde 100%);
}

.index-cta {
  display: flex;
  max-width: 1000px;
  padding: var(--pos-gap-section-section, 240px) var(--pos-gap-page-content-x-margin, 40px) 80px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: var(--pos-gap-section-elements, 40px);
  align-self: stretch;
  margin: 0 auto;
}

/* text
============================================================================ */

.index-cta h1 {
  align-self: stretch;
  color: var(--pos-color-prominent, #141414);
  text-align: center;
  font-size: var(--pos-headline-1, 3rem);
  font-style: normal;
  font-weight: 700;
  line-height: var(--pos-headline-1-line-height, 48px);
}

.index-cta p {
  align-self: stretch;
  color: var(--pos-color-normal, #374151);
  text-align: center;
  font-size: var(--pos-headline-4, 1.25rem);
  font-style: normal;
  font-weight: 400;
  line-height: var(--pos-headline-4-line-height, 22.4px);
}

/* .index-cta p span {
  font-size: var(--pos-headline-2);
  background: linear-gradient(270deg, var(--subheader-news-gradient-from, #3A8DDE) 77.74%, var(--subheader-news-gradient-t, #38D430) 89.09%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
}
} */
.index-cta p .community-custom-span {
  background: linear-gradient(141deg, #0F7B0A 16%, #2173C4 75.03%) !important;
  background-clip: text !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
}


.index-cta nav {
  display: flex;
  align-items: center;
  gap: var(--pos-gap-n-button, 16px);
}

.index-cta .subtitle {
  background: linear-gradient(
    270deg,
    var(--subtitle-gradient-dark-from) 0%,
    var(--subtitle-gradient-dark-to) 100%
  );
  background-clip: text;
}


/* mobile
============================================================================ */

@media (max-width: 768px) {
  .index-cta {
    padding: var(--pos-gap-section-section) var(--pos-gap-page-content-x-margin, 40px);
  }

  .index-cta h1 {
    font-size: var(--pos-headline-1, 1.75rem);
    line-height: var(--pos-headline-1-line-height, 28px);
  }

  .index-cta p {
    font-size: var(--pos-headline-4, 1.125rem);
    line-height: var(--pos-headline-4-line-height, 20px);
  }

  .index-cta nav {
    flex-direction: column;
  }
}
