.highlight{
  --highlight-bg:#c7e5db;
  padding-top:15px;
  padding-bottom:15px;
  font-size:20px;
  font-weight:500;
  text-align:center;
  background:var(--highlight-bg);
}
.highlight__mobile{
  display:none;
}
.highlight--dark{
  --highlight-bg:#212428;
  color:#fff;
}
@media screen and (max-width:991px){
  .highlight__desktop{
    display:none;
  }
  .highlight__mobile{
    display:block;
  }
}
@media screen and (max-width:767px){
  .highlight{
    font-size:16px;
    font-weight:600;
  }
}
