/* Standalone variables
========================================================================== */
/*
==========================================================================
    Mixins - typography - body
========================================================================== */
.c-features-list {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  margin: 2.5rem auto;
}
@media (min-width: 1025px) {
  .c-features-list {
    flex-direction: row;
    gap: 6rem;
    margin: 6rem auto;
    justify-content: space-between;
  }
}

.c-features-list__lead {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
@media (min-width: 1025px) {
  .c-features-list__lead {
    gap: 2rem;
  }
}

.c-features-list__heading {
  font-size: 24px;
  line-height: 1.5;
  font-weight: normal;
  line-height: 1.5;
}
@media (min-width: 1025px) {
  .c-features-list__heading {
    font-size: 2.5rem;
    line-height: 1.35;
  }
}

.c-features-list__description {
  font-size: 16px;
  line-height: 1.5;
  font-weight: normal;
}

.c-features-list__items {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  width: 100%;
}
@media (min-width: 1025px) {
  .c-features-list__items {
    gap: 1rem;
    max-width: 36rem;
  }
}

.c-features-list__item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.c-features-list__item-icon,
.c-features-list__item-icon img {
  width: auto;
  height: 1.5rem;
}
