.hidden-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease;
}

.hidden-content.open {
  max-height: 1000px; /* large enough to fit content */
}
.read-more-btn {
	display: inline;
	margin-left: 2px;
	cursor: pointer;
	color: rgb(71,118,40);
	font-weight: 600;
	background: none;
	border: none;
	top: -2px;
	position: relative;
	font-size: 16px;
	text-decoration: underline;
	text-underline-offset: 3px;
	padding: 0;
}

.read-more-btn:hover {
	text-decoration: none;
}