.mtb-collapse-title {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  cursor: pointer;
  border-bottom: 1px solid var(--mt-gray);
  padding: 1rem 0;
  margin-bottom: 1rem;
  align-items: center;
}

.mtb-collapse-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height .2s cubic-bezier(0, 1, 0, 1);
  transition: max-height .1s ease-in-out;
}

.mtb-collapse-content.show {
  max-height: 99em;
  transition: max-height .5s ease-in-out;
}

.mtb-collapse-content--small.show {
  max-height: 30rem;
}

.mtb-collapse-content--scroll {
  overflow-y: auto;
}

/* Read More Collapse */
.mtb-readmore {
  position: relative;
  max-height: 9rem;
  overflow: hidden; 
  transition:max-height 0.15s ease-in-out;
}

.mtb-readmore.mtb-readmore--expand{
  max-height: 100rem !important;
  transition:max-height 0.35s ease-in-out;
}

.mtb-readmore-link{
  position: absolute;
  bottom: 0;
  right: 0; 
  width:100%;
  height: 5rem;
  text-align: center; 
  font-weight: 600;
  padding-top: 2.5rem; 
  /* background: linear-gradient(360deg, var(--mt-dark-gray) 61.54%, rgba(33, 35, 41, 0.16) 149.89%); */
  background: linear-gradient(to top, var(--mt-dark-gray) 61.54%, rgba(33, 35, 41, 0.16) 149.89%);
  cursor: pointer;

}

.mtb-readmore-button {
  display: inline-block;
  font-size: 1rem;
  padding: 0.25rem; 
  border-bottom: 1px solid var(--mt-green);   
} 

.mtb-readmore.mtb-readmore--expand .mtb-readmore-link {
  position: relative;
  background: none; 
}