/* TEXT WITH LIST
============================================================================ */
.text-list-component {
  display: flex;
  flex-direction: row;
  gap: 50px;
  max-width: 1440px;
  padding: var(--pos-gap-section-section) 0;
  margin-top: var(--pos-gap-section-title-content);
  justify-content: space-between;
}

.text-section {
  flex: 1;
  max-width: 50%;
  width: 100%;
}

.text-section h1 {
  font-size: 1.5rem;
  padding-top: 0.7rem;
  padding-bottom: 0.9rem;
  width: 100%;
}

.text-section h2 {
  color: var(--pos-color-prominent);
  font-size: var(--pos-headline-1);
  justify-content: center;
  padding-bottom: 1.3rem;
}

.text-section p {
  margin: 10px 0;
  font-weight: 300;
  color: var(--pos-color-normal);
  font-size: 20px;
}

.features-list {
  flex: 1 1 45%;
  max-width: 45%;
}

.feature-item {
  padding: 20px 0;
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.feature-item:nth-child(-n+3) {
  border-bottom: 1px solid var(--pos-color-divider-lines);
}

.icon-wrapper {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}



.feature-item h3 {
  margin: 0;
  color: var(--pos-color-prominent);
  font-size: 1.2em;
  padding-top: 1rem;
  padding-bottom: 0.4rem;
  font-weight: bold;
}

.feature-item p {
  margin: 5px 0 0;
  color: var(--pos-color-normal);
}

/* TEXT WITH LIST - RESPONSIVE
============================================================================ */
@media (max-width: 992px) {

  .text-list-component {
    flex-direction: column;
    gap: 30px;
    flex-wrap: wrap;
  }

  .text-section,
  .features-list {
    max-width: 100%;
    flex: 1 1 100%;
    text-align: center;
    justify-content: center;
  }

  .feature-item {
    flex-direction: row;
    align-items: flex-start;
    text-align: left;
    justify-content: flex-start;
    gap: 15px;
    padding: 20px 10px;
  }

  .features-list {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .icon-wrapper {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
  }

  .feature-item h3 {
    padding-top: 0;
    margin: 0;
  }
}

@media (max-width: 576px) {
  .text-section h1 {
    font-size: 1.8em;
  }

  .text-section p,
  .feature-item p {
    font-size: 0.95em;
  }

  .feature-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .icon-wrapper {
    margin-bottom: 10px;
  }
}