.akron-rrm {
	width: 100%;
}

.akron-rrm__content {
	position: relative;
	overflow: hidden;
	transition: max-height 0.35s ease;
}

.akron-rrm.is-collapsed .akron-rrm__content {
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: var(--akron-rrm-lines, 3);
	line-clamp: var(--akron-rrm-lines, 3);
	overflow: hidden;
}

.akron-rrm.is-expanded .akron-rrm__content {
	display: block;
	-webkit-line-clamp: unset;
	line-clamp: unset;
	overflow: visible;
	max-height: none !important;
}

.akron-rrm__content > *:first-child {
	margin-top: 0;
}

.akron-rrm__content > *:last-child {
	margin-bottom: 0;
}

.akron-rrm__actions {
	display: flex;
	align-items: center;
	margin-top: 16px;
}

.akron-rrm.is-short .akron-rrm__actions {
	display: none;
}

.akron-rrm__toggle {
	appearance: none;
	-webkit-appearance: none;
	border: none;
	background: transparent;
	color: inherit;
	cursor: pointer;
	padding: 0 0 6px;
	font: inherit;
	font-weight: 600;
	line-height: 1.2;
	position: relative;
	transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.akron-rrm__toggle.has-underline {
	border-bottom: 2px solid currentColor;
	border-radius: 0;
}

.akron-rrm__toggle.has-underline::after {
	content: "";
	display: inline-block;
	width: 14px;
	height: 2px;
	background-color: currentColor;
	margin-left: 10px;
	vertical-align: middle;
	transition: transform 0.2s ease;
}

.akron-rrm.is-expanded .akron-rrm__toggle.has-underline::after {
	transform: rotate(90deg);
}

.akron-rrm__toggle:focus-visible {
	outline: 2px solid currentColor;
	outline-offset: 3px;
}
