/* Frontend: lista de características */
.delta-proyecto-features{
  list-style:none;
  margin:0;
  padding:0;
  display:flex;
  flex-direction:column;
  gap:20px;
}

.delta-proyecto-features__item{
  display:flex;
  align-items:flex-start;
  gap:16px;
}

.delta-proyecto-features__icon{
  width:22px;
  height:22px;
  min-width:22px;
  border:2px solid #17AFC2;
  border-radius:4px;
  box-sizing:border-box;
  position:relative;
  margin-top:3px;
}

.delta-proyecto-features__icon::after{
  content:"";
  position:absolute;
  inset:0;
  background-image:url('data:image/svg+xml,%3Csvg%20xmlns=%22http://www.w3.org/2000/svg%22%20viewBox=%220%200%2024%2024%22%20fill=%22none%22%20stroke=%22%2317AFC2%22%20stroke-width=%222.6%22%20stroke-linecap=%22round%22%20stroke-linejoin=%22round%22%3E%3Cpath%20d=%22M20%206L9%2017l-5-5%22/%3E%3C/svg%3E');
  background-repeat:no-repeat;
  background-position:center;
  background-size:16px 16px;
}

.delta-proyecto-features__text{
  font-size:18px;
  line-height:1.6;
  color:inherit;
}

@media (max-width: 767px){
  .delta-proyecto-features__text{ font-size:16px; }
  .delta-proyecto-features{ gap:16px; }
}
