/* Benefits strip below the home slider. */
.home-benefits { width: min(94%, 1240px); margin: 24px auto; }

.home-benefits {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 20px 24px;
  border-radius: 16px;
  background: linear-gradient(105deg, #f5f1ff, #f7f8ff 55%, #eff8ff);
}

.home-benefit {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  padding: 0 20px;
  border-right: 1px solid #e1ddef;
}

.home-benefit:first-child { padding-left: 0; }
.home-benefit:last-child { padding-right: 0; border-right: 0; }
.home-benefit strong, .home-local-points strong { display: block; color: #151936; font-size: 13px; }
.home-benefit p, .home-local p { margin: 5px 0 0; color: #687089; font-size: 11px; line-height: 1.4; }
.home-benefit-icon, .home-local-heart { display: grid; place-items: center; flex: 0 0 auto; border-radius: 50%; }
.home-benefit-icon { width: 42px; height: 42px; font-size: 17px; }
.home-benefit-icon--green { color: #19a46d; background: #ddf8e9; }
.home-benefit-icon--yellow { color: #e29d13; background: #fff2d3; }
.home-benefit-icon--pink { color: #e75c91; background: #ffe2ed; }
.home-benefit-icon--blue { color: #3789db; background: #e1f1ff; }

@media (max-width: 900px) {
  .home-benefits { grid-template-columns: repeat(2, 1fr); gap: 18px 0; }
  .home-benefit:nth-child(2) { border-right: 0; }
  .home-benefit:nth-child(3) { padding-left: 0; }
}

@media (max-width: 576px) {
  .home-benefits { grid-template-columns: 1fr; padding: 18px; }
  .home-benefit, .home-benefit:first-child, .home-benefit:last-child { padding: 0; border-right: 0; }
}