.text-list-component {
  display: flex;
  justify-content: space-between;
  gap: var(--pos-gap-section-elements);
}

.our-crew-content {
  display: flex;
  flex-direction: column;
  gap: var(--pos-gap-text-content);
}

.text-section {
  flex: 1 1 45%;
  align-self: center;
}

.features-list {
  flex: 1 1 45%;
}

.feature-item {
  padding: 20px 0;
  display: flex;
  align-items: center;
  gap: 15px;
}

.feature-item svg {
  overflow: visible;
}

.feature-item:nth-child(-n + 5) {
  border-bottom: 1px solid var(--pos-color-divider-lines);
}

.feature-item icon {
  width: 30px;
  height: 30px;
}

/* RESPONSIVE
============================================================================ */
@media (max-width: 992px) {
  .text-section,
  .features-list {
    width: 100%;
    flex: 1 1 100%;
  }

  .our-crew-content {
    text-align: left;
  }

  .text-list-component {
    flex-direction: column;
    gap: 80px;
  }

  .feature-item {
    align-items: center;
  }
}
