p.cc-read-more__trigger {
  color: #B81F25;
  position: absolute;
  padding-bottom: 22px;
  font-size: 13px;
  z-index: 2;
  bottom: 0;
  left: 50%;
  transform: translatex(-50%);
  cursor: pointer;
  margin-bottom: 0;
}

p.cc-read-more__trigger::after {
  position: absolute;
  content: "";
  bottom: 5px;
  left: 50%;
  width: 17px;
  height: 17px;
  border-left: 6px solid black;
  border-bottom: 6px solid black;
  transition: transform var(--cvle-read-more-duration-animation);
  transform: translateX(-50%) rotate(-45deg);
}
.cc-read-more-wrap {
  --cvle-read-more-duration-animation: .5s;
  position: relative;
  overflow: hidden;
  padding-bottom: 40px;
  transition: max-height var(--cvle-read-more-duration-animation);
  height: 100%;
}

.cc-read-more-wrap li {
	padding-left: 10px;
}

.cc-h-250 {
	max-height: 250px;
}

.cc-h-210 {
	max-height: 210px;
}

.cc-h-195 {
	max-height: 195px;
}

.cc-h-170 {
	max-height: 170px;
}

.cc-h-100 {
	max-height: 100px;
}

.cc-read-more-wrap::after {
  position: absolute;
    content: "";
    width: 100%;
    height: 150px;
    z-index: 1;
    bottom: 0;
    left: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #FFFFFF 65%, #FFFFFF 100%);
	pointer-events:none;
	transition: height var(--cvle-read-more-duration-animation);
}

.cc-read-more-wrap.expanded::after {
	height: 0;
}

.cc-read-more-wrap.expanded .cc-read-more__trigger::after {
	transform: translate(-50%, 40%) rotate(135deg);
}