/*
  general
  header
  cards
  mobile
*/

/* general
============================================================================ */

.index-audience {
  display: flex;
  max-width: 1440px;
  margin: 0 auto;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: var(--pos-gap-section-elements, 40px);
  align-self: stretch;
  padding: var(--pos-gap-section-section, 240px) var(--pos-gap-page-content-x-margin, 40px) 0;
}

/* header
============================================================================ */

.audience-header {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: var(--pos-gap-section-elements, 40px);
  align-self: stretch;
  text-align: center;
}

.audience-header h1 {
  align-self: stretch;
  text-align: center;
  font-size: var(--pos-headline-3, 1.5rem);
  font-style: normal;
  font-weight: 700;
  line-height: var(--pos-headline-3-line-height, 32px);
  background: linear-gradient(270deg, var(--subheader-news-gradient-from, #2173c4) 43.72%, var(--subheader-news-gradient-to, #0f7b0a) 56.65%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.audience-header h2 {
  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);
}

.audience-header 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, 28px);
}

/* cards
============================================================================ */

.audience-cards {
  display: flex;
  max-width: 1100px;
  justify-content: center;
  align-items: flex-start;
  gap: var(--pos-gap-card-card, 40px);
  align-self: stretch;
  align-items: stretch;
  margin: 0 auto;
  z-index: 5;
}

.aud-card {
  display: flex;
  padding: var(--pos-padding-cards-boxes, 40px);
  flex-direction: column;
  align-items: flex-start;
  gap: var(--pos-gap-section-elements, 40px);
  flex: 1 0 0;
  border-radius: var(--pos-corner-panel, 4px);
  border: 1px solid var(--card-border-gradient-from, #e2e8f0);
  background: linear-gradient(132deg, var(--pos-color-panel-background, rgba(255, 255, 255, 0.80)) 6.02%, var(--pos-color-panel-background, rgba(255, 255, 255, 0.80)) 40.76%);
}

.aud-card h1 {
  font-size: 1rem;
  font-style: normal;
  font-weight: 700;
  line-height: 20px;
  background: linear-gradient(
    270deg,
    var(--subtitle-gradient-from, #2173c4) 0%,
    var(--subtitle-gradient-to, #0f7b0a) 100%
  );  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.aud-card h2 {
  color: var(--pos-color-prominent, #141414);
  font-size: var(--pos-headline-1, 3rem);
  font-style: normal;
  font-weight: 700;
  line-height: var(--pos-headline-1-line-height, 48px);
}

.aud-card p {
  color: var(--pos-color-normal, #374151);
  font-size: 1rem;
  font-style: normal;
  font-weight: 700;
  line-height: 20px;
}

.card-list {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  align-items: flex-start;
  gap: var(--pos-gap-step-step, 24px);
  align-self: stretch;
  padding-left: 22px;
  border-top: 1px solid var(--card-border-gradient-from, #e2e8f0);;
  padding-top: 24px;
}

.card-list li {
  align-self: stretch;
  color: var(--pos-color-normal, #374151);
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  list-style: disc;
}

.aud-card a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.aud-card button {
  display: flex;
  gap: var(--pos-gap-n-button, 16px);
  align-self: stretch;
  width: 100%;
}

/* mobile
============================================================================ */

@media (max-width: 768px) {

  .audience-header {
    align-items: flex-start;
  }
  .text-aligner{
    text-align: start !important;
  }

  .audience-header h1 {
    font-size: var(--pos-headline-4, 1.75rem);
    line-height: var(--pos-headline-4-line-height, 28px);
    text-align: start;
  }

  .audience-header h2 {
    font-size: var(--pos-headline-1, 1.75rem);
    line-height: var(--pos-headline-1-line-height, 28px);
    text-align: start;
  }

  .audience-header p {
    font-size: 1.125rem;
    line-height: 20px;
    text-align: start;
  }

  .card-header h2 {
    font-size: 1.75rem;
    line-height: 28px;
  }

  .audience-cards {
    flex-direction: column;
    margin: 0;
  }

  .aud-card {
    padding: var(--pos-padding-cards-boxes, 24px);
  }

  .card-list {
    display: none;
  }
}
