.texty {
  max-width: var(--xl-width);
  margin: var(--xl-gap-y) auto; 
  padding: 0 var(--xl-gap-x);
}

.texty__body ul {
  padding: 0;
  list-style: none;
}

.texty__body ul li {
  position: relative;
  padding: 0 0 0 30px;
  line-height: 1.778;
}

.texty__body ul li::before {
  content: '';
  width: 9px;
  height: 9px;
  transform: rotate(45deg);
  background-color: var(--lime);
  display: inline-block;
  margin: 0 5px;
  transition: .3s ease-in-out;
  position: absolute;
  top: 10px;
  left: 0;
}

.texty__body a {
  color: var(--teal);
  font-weight: 600;
  background-image: linear-gradient(var(--subtle-lime), var(--subtle-lime));
  background-repeat: no-repeat;
  background-size: 0% 12px;
  background-position: 0 calc(100% - 3px);
  transition: background-size .3s ease-in-out;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.texty__body a:hover {
  color: var(--teal);
  background-size: 100% 12px;
  text-decoration: underline;
}

.texty__image {
  text-align: center;
  margin: var(--xl-gap-y) 0 0 0;
}