.benefits-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:22px 34px;
  margin-top:40px;
}

.benefit-item{
  display:grid;
  grid-template-columns:118px 1fr;
  align-items:center;
  min-height:112px;
  border-radius:0 58px 58px 0;
  background:linear-gradient(90deg,rgba(31,223,168,.12),rgba(78,242,26,.16) 18%,rgba(32,19,138,.2) 48%,rgba(32,19,138,0) 100%);
  overflow:hidden;
}

.benefit-item__icon{
  width:118px;
  height:100%;
  min-height:112px;
  display:grid;
  place-items:center;
  border-radius:0 56px 56px 0;
  background:linear-gradient(90deg,rgba(31,223,168,.18),#39e048 72%,#4ef21a 100%);
}

.benefit-item__icon svg{
  width:66px;
  height:66px;
  fill:none;
  stroke:#f8f8fc;
  stroke-width:3.4;
  stroke-linecap:round;
  stroke-linejoin:round;
}

.benefit-item__content{
  padding:20px 24px;
}

.benefit-item h3{
  margin:0 0 8px;
  color:#f8f8fc;
  font-size:clamp(1.25rem,2vw,1.75rem);
  line-height:1.05;
}

.benefit-item p{
  margin:0;
  color:rgba(248,248,252,.86);
  font-size:1rem;
}

@media(max-width:900px){
  .benefits-grid{
    grid-template-columns:1fr;
  }
}

@media(max-width:640px){
  .benefit-item{
    grid-template-columns:88px 1fr;
    min-height:92px;
  }

  .benefit-item__icon{
    width:88px;
    min-height:92px;
  }

  .benefit-item__icon svg{
    width:52px;
    height:52px;
  }

  .benefit-item__content{
    padding:16px 18px;
  }
}
