.cloth-detail-effect {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.cloth-detail-effect-item {
  padding: 20px;
  text-align: center;
  border: 1px solid #696969;
}

@media screen and (max-width: 600px) {
  .cloth-detail-effect {
    grid-template-columns: repeat(1, 1fr);
  }
}
