.us-visible-content > p:last-child {
  margin-bottom: 0;
}

.us-readmore-wrap .us-hidden-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease;
}

.us-readmore-wrap.is-open .us-hidden-content {
  max-height: 2000px;
  transition: max-height 0.7s ease;
}

.us-readmore-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 2px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  outline: none;
  box-shadow: none;
  -webkit-appearance: none;
  appearance: none;
  font-size: 12px;
  letter-spacing: 0.12em;
  color: #B8935A;
  font-weight: 500;
  font-family: inherit;
}

.us-readmore-btn:hover,
.us-readmore-btn:focus,
.us-readmore-btn:active,
.us-readmore-btn:focus-visible {
  color: #B8935A;
  background: none;
  outline: none;
  box-shadow: none;
  border: none;
}

.us-chevron {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-right: 2px solid #B8935A;
  border-bottom: 2px solid #B8935A;
  transform: rotate(45deg);
  transition: transform 0.3s ease;
  margin-top: -4px;
}

.us-readmore-wrap.is-open .us-chevron {
  transform: rotate(-135deg);
  margin-top: 4px;
}

/*read time*/
.ult-read-time {
    font-size: 14px;
    color: var(--ult-read-time-color, #d7d7d7);
    font-family: kameron;
}


