.wdmv-read-more {
	position: relative;
	margin-bottom: 25px;
}

.wdmv-read-more__first {
	display: block;
}

.wdmv-read-more__remaining {
	display: none;
	margin-top: 0;
}

.wdmv-read-more.is-expanded .wdmv-read-more__remaining {
	display: block;
}

.wdmv-read-more__button {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	margin-top: 8px;
	padding: 0;
	border: 0;
	background: transparent;
	color: var(--wd-primary-color, #0088cc);
	font-family: inherit;
	font-size: 14px;
	font-weight: 600;
	line-height: 1.4;
	cursor: pointer;
	box-shadow: none;
	appearance: none;
}

.wdmv-read-more__button:hover,
.wdmv-read-more__button:focus {
	color: var(--wd-primary-color, #0088cc);
	background: transparent;
	opacity: 0.75;
	box-shadow: none;
}

.wdmv-read-more__button:focus-visible {
	outline: 2px solid currentColor;
	outline-offset: 2px;
}

/* Chevron arrow icon */
.wdmv-read-more__button::after {
	content: "";
	flex-shrink: 0;
	width: 7px;
	height: 7px;
	border-right: 2px solid currentColor;
	border-bottom: 2px solid currentColor;
	transform: rotate(45deg) translateY(-2px);
	transition: transform 0.25s ease;
}

/* Flip chevron when expanded */
.wdmv-read-more.is-expanded .wdmv-read-more__button::after {
	transform: rotate(225deg) translate(-2px, -2px);
}

.wdmv-read-more__first > :first-child { margin-top: 0; }
.wdmv-read-more__first > :last-child  { margin-bottom: 0; }

.wdmv-read-more__remaining > :first-child { margin-top: 1em; }
.wdmv-read-more__remaining > :last-child  { margin-bottom: 0; }
