.chicnest-benefits {
  border-top: 1px solid rgb(var(--color-entry-line));
  border-bottom: 1px solid rgb(var(--color-entry-line));
  background: rgb(var(--color-background));
  color: rgb(var(--color-text));
}

.chicnest-benefits__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  padding-top: 34px;
  padding-bottom: 34px;
}

.chicnest-benefit {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 14px;
  align-items: start;
  padding: 4px 26px;
  border-left: 1px solid rgb(var(--color-entry-line));
}

.chicnest-benefit:first-child {
  border-left: 0;
  padding-left: 0;
}

.chicnest-benefit:last-child {
  padding-right: 0;
}

.chicnest-benefit__icon {
  width: 30px;
  height: 30px;
  color: #736849;
}

.chicnest-benefit__icon svg {
  display: block;
  width: 100%;
  height: 100%;
}

.chicnest-benefit__title {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
}

.chicnest-benefit__text {
  margin: 5px 0 0;
  color: rgb(var(--color-light-text));
  font-size: 12px;
  line-height: 1.55;
}

@media screen and (max-width: 989px) {
  .chicnest-benefits__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 26px;
  }

  .chicnest-benefit:nth-child(3) {
    border-left: 0;
    padding-left: 0;
  }
}

@media screen and (max-width: 749px) {
  .chicnest-benefits__grid {
    grid-template-columns: 1fr;
    gap: 0;
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .chicnest-benefit,
  .chicnest-benefit:first-child,
  .chicnest-benefit:nth-child(3),
  .chicnest-benefit:last-child {
    padding: 18px 0;
    border-left: 0;
    border-top: 1px solid rgb(var(--color-entry-line));
  }

  .chicnest-benefit:first-child {
    border-top: 0;
  }
}
