.readmore-container {
  border-radius: 18px;
  box-shadow: 0 2px 16px 0 rgba(60, 60, 67, 0.07);
  padding: 28px 32px 18px 32px;
  margin-bottom: 18px;
  position: relative;
  max-height: 150px;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s, border-color 0.3s;
  text-align: left;
  border: 2px solid transparent;
  background-clip: padding-box;
}

.readmore-container::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 18px;
  padding: 2px;
  background: linear-gradient(180deg, rgba(135, 149, 47, 0.2) 40%, rgba(135, 149, 47, 0.08) 60%, rgba(135, 149, 47, 0) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  z-index: 1;
}

.readmore-container.expanded {
  max-height: 2000px;
  box-shadow: 0 6px 32px 0 rgba(60, 60, 67, 0.13);
}

.readmore-fade {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 60px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, #fff 90%);
  pointer-events: none;
  transition: opacity 0.3s;
}

.readmore-container.expanded .readmore-fade {
  opacity: 0;
}

.readmore-btn {
  display: inline-block;
  margin: 16px 0 0 0;
  padding: 7px 22px;
  font-size: 15px;
  font-weight: 500;
  color: #87952f;
  background: #f8f8f2;
  border: 1px solid #e0e0d0;
  border-radius: 24px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.readmore-btn:hover {
  background: #e8e8ed;
  color: #6d7a1a;
}

@media only screen and (max-width: 1200px) {
  .readmore-btn {
    display: block;
    margin: 18px auto 0 auto;
    text-align: center;
  }
}

/*# sourceMappingURL=readmore.css.map */
