.npae {
	--npae-preview-lines: 3;
	display: grid;
	gap: 24px;
}

.npae__item {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 2fr);
	gap: 24px;
	align-items: stretch;
}

.npae__media {
	min-height: 240px;
	overflow: hidden;
	background: #f1f3f5;
}

.npae__image {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.npae__image-placeholder {
	display: grid;
	width: 100%;
	height: 100%;
	min-height: inherit;
	place-items: center;
	padding: 1rem;
	color: #4b5563;
	background: #f1f3f5;
	text-align: center;
}

.npae__accordion {
	align-self: stretch;
	border: 1px solid #d7dce1;
	background: #fff;
}

.npae__heading {
	margin: 0;
}

.npae__trigger {
	display: flex;
	width: 100%;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	padding: 1rem 1.25rem;
	border: 0;
	border-bottom: 1px solid #d7dce1;
	color: inherit;
	background: transparent;
	font: inherit;
	font-weight: 700;
	text-align: left;
	cursor: pointer;
}

.npae__trigger[aria-expanded="false"] {
	border-bottom: 0;
}

.npae__icon {
	position: relative;
	flex: 0 0 1.125rem;
	width: 1.125rem;
	height: 1.125rem;
}

.npae__icon::before,
.npae__icon::after {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 1rem;
	height: 2px;
	background: currentcolor;
	content: "";
	transform: translate(-50%, -50%);
}

.npae__icon::after {
	transform: translate(-50%, -50%) rotate(90deg);
}

.npae__trigger[aria-expanded="true"] .npae__icon::after {
	transform: translate(-50%, -50%) rotate(90deg) scaleX(0);
}

.npae__preview,
.npae__content {
	padding: 1rem 1.25rem 1.25rem;
}

.npae__preview[hidden],
.npae__content[hidden] {
	display: none !important;
}

.npae__preview {
	display: -webkit-box;
	overflow: hidden;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: var(--npae-preview-lines);
	line-clamp: var(--npae-preview-lines);
}

.npae__content > :first-child {
	margin-top: 0;
}

.npae__content > :last-child {
	margin-bottom: 0;
}

.npae__view-link-wrap {
	margin: 1.25rem 0 0;
}

.npae__view-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.75rem 1rem;
	border: 1px solid transparent;
	border-radius: 0;
	color: #fff;
	background: #1d4ed8;
	font-weight: 700;
	line-height: 1.2;
	text-decoration: none;
}

.npae__view-link:hover,
.npae__view-link:focus-visible {
	color: #fff;
	background: #1e40af;
	text-decoration: none;
}

.npae__empty {
	margin: 0;
}

@media (max-width: 767px) {
	.npae__item {
		grid-template-columns: minmax(0, 1fr);
	}
}

@media (prefers-reduced-motion: no-preference) {
	.npae__trigger,
	.npae__view-link,
	.npae__icon::after {
		transition: background-color 150ms ease, color 150ms ease, transform 150ms ease;
	}
}
