.cloth {
  max-width: var(--xl-width);
  margin: var(--gap) auto;
  padding: 0 var(--xl-gap-x);
  box-sizing: border-box;
}

.cloth--slim {
  max-width: var(--xs-width);
  box-sizing: unset;
}

.cloth img {
  height: auto;
  border-radius: 20px;
}

.cloth iframe {
  max-width: 100%;
  border-radius: 20px;
}

.cloth p {
  clear: both;
}

.cloth__body {
  margin: 1em 0;
}

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

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

.cloth__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;
}

.cloth__body a,
.cloth__content 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;
}

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

/* .cloth__content {
  display: grid;
  gap: 15px 30px;
  @media (min-width: 651px) {
    grid-template-columns: 1fr 1fr;
  }
} */

.cloth__btn {
  margin: 30px 0 0 0;
  text-align: right;
}
