.component__design-v2-service-links{
  background:#fff;
}

.design-v2-service-links--background-cleanline-background{
  background:#f4f8fd;
}

.design-v2-service-links__header{
  margin-bottom:30px;
}
@media screen and (min-width:768px){
  .design-v2-service-links__header{
    display:grid;
    gap:16px;
    grid-template-columns:minmax(280px, 680px) minmax(280px, 680px);
    margin-bottom:40px;
  }
}

.design-v2-service-links__title{
  color:#252525;
  font-family:var(--font-medium);
  font-size:22px;
  line-height:26px;
  margin:0 0 12px;
}
@media screen and (min-width:768px){
  .design-v2-service-links__title{
    font-size:40px;
    line-height:48px;
    margin:0;
  }
}

.design-v2-service-links__description{
  color:#515458;
  font-size:14px;
  font-weight:400;
  line-height:20px;
}
@media screen and (min-width:768px){
  .design-v2-service-links__description{
    font-size:16px;
    line-height:22px;
  }
}

.design-v2-service-links__list{
  display:grid;
  gap:8px;
  grid-template-columns:minmax(0, 1fr);
}
@media screen and (min-width:768px){
  .design-v2-service-links__list{
    -moz-column-gap:16px;
         column-gap:16px;
    grid-template-columns:repeat(2, minmax(0, 1fr));
    row-gap:16px;
  }
}

.design-v2-service-links__item{
  align-items:center;
  background:#fff;
  border:1px solid #e0eaf7;
  border-radius:10px;
  color:#252525;
  cursor:pointer;
  display:grid;
  gap:12px;
  grid-template-columns:22px minmax(0, 1fr) 18px;
  min-height:50px;
  padding:16px 20px;
  text-decoration:none;
  transition:border-color .2s ease,background-color .2s ease;
}
@media screen and (min-width:768px){
  .design-v2-service-links__item{
    grid-template-columns:22px minmax(0, 1fr) 22px;
    min-height:42px;
    padding:20px 24px;
  }
}

.design-v2-service-links__item:hover{
  background:#fffaf7;
  border-color:#f60;
}

.design-v2-service-links__item-icon{
  display:block;
  height:22px;
  -o-object-fit:contain;
     object-fit:contain;
  width:22px;
}

.design-v2-service-links__item-title{
  font-size:14px;
  line-height:20px;
}
@media screen and (min-width:768px){
  .design-v2-service-links__item-title{
    font-size:16px;
    line-height:22px;
  }
}

.design-v2-service-links__item-arrow{
  color:#515458;
  display:block;
  height:18px;
  transition:color .2s ease,transform .2s ease;
  width:18px;
}
@media screen and (min-width:768px){
  .design-v2-service-links__item-arrow{
    height:22px;
    width:22px;
  }
}

.design-v2-service-links__item:hover .design-v2-service-links__item-arrow{
  color:#f60;
  transform:translateX(2px);
}