.about-features-section {
  padding: 60px 0;
  background: #fff;
}

.about-features__wrapper {
  display: flex;
  align-items: stretch;
}

.about-features__item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 20px;
  gap: 24px;
}

.about-features__icon {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.about-features__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.about-features__item--divider {
  border-right: 1px solid #E4E4E4;
}

.about-features__title {
  color: #000;
  text-align: center;
  leading-trim: both;
  text-edge: cap;
  font-family: Gilroy;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

@media (max-width: 992px) {
  .about-features__item {
    padding: 0 12px;
  }
  .about-features__icon {
    width: 64px;
    height: 64px;
  }
  .about-features__title {
    font-size: 15px;
    line-height: 22px;
  }
}

@media (max-width: 768px) {
  .about-features-section {
    padding: 40px 0;
  }
  .about-features__wrapper {
    flex-wrap: wrap;
    gap: 32px 0;
  }
  .about-features__item {
    flex: 0 0 50%;
    padding: 0 16px;
    border-right: none !important;
  }
  .about-features__icon {
    width: 56px;
    height: 56px;
  }
  .about-features__title {
    font-size: 14px;
    line-height: 20px;
  }
}

@media (max-width: 480px) {
  .about-features__wrapper {
    gap: 28px 0;
  }
  .about-features__item {
    flex: 0 0 100%;
    padding: 0;
    border-bottom: 1px solid #E4E4E4;
    padding-bottom: 28px;
  }
  .about-features__item:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }
}
