.readmore__switch {
  margin-top: clamp(1rem, 2.78vw, 2rem);
}

.readmore__switch:hover {
  cursor: pointer;
}

.readmore__content {
  margin-top: clamp(1rem, 2.78vw, 2rem);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.1s ease-out;
}

.readmore__open .readmore__content {
  display: block;
  max-height: 3000px;
  overflow: auto;
  transition: max-height 0.3s ease-out;
}

.readmore__content a,
.full__content a {
  color: #ffffff;
}

.readmore__content li,
.full__content li {
  list-style: disc;
  margin: clamp(0.5rem, 1.39vw, 1rem);
  list-style-position: inside;
}
