.pe-reports,
.pe-reports * {
	box-sizing: border-box;
}

.pe-reports {
	--pe-active: #0f3a2f;
	--pe-inactive: #175848;
	--pe-card: #216b69;
	--pe-card-mark: #12605e;
	width: 100%;
	font-family: inherit;
}

.pe-year-tabs {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	gap: 10px;
	margin: 0 0 69px;
}

.pe-year-tab {
	min-width: 110px;
	height: 49px;
	padding: 0 25px;
	border: 0;
	border-radius: 8px;
	background: var(--pe-inactive);
	color: #fff;
	font: inherit;
	font-size: 16px;
	font-weight: 400;
	line-height: 49px;
	text-align: center;
	cursor: pointer;
	transition: none;
	box-shadow: none;
	-webkit-appearance: none;
}

.pe-year-tab:hover,
.pe-year-tab:focus,
.pe-year-tab:active {
	background: var(--pe-inactive);
	color: #fff;
	box-shadow: none;
	outline: none;
}

.pe-year-tab.is-active,
.pe-year-tab.is-active:hover,
.pe-year-tab.is-active:focus,
.pe-year-tab.is-active:active {
	background: var(--pe-active);
	color: #fff;
	box-shadow: none;
}

.pe-year-tab:focus-visible {
	outline: 3px solid rgba(15, 58, 47, .3);
	outline-offset: 3px;
}

.pe-year-panel[hidden] {
	display: none !important;
}

.pe-report-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(min(100%, 360px), 406px));
	gap: 24px;
	justify-content: start;
}

.pe-report-card {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	width: 100%;
	min-height: 244px;
	padding: 31px 30px 30px;
	overflow: hidden;
	border-radius: 20px;
	background: var(--pe-card);
	color: #fff;
}

.pe-card-mark {
	position: absolute;
	inset: 0;
	pointer-events: none;
	opacity: .33;
}

.pe-card-mark svg {
	display: block;
	width: 100%;
	height: 100%;
}

.pe-card-mark path {
	fill: var(--pe-card-mark);
}

.pe-report-title {
	position: relative;
	z-index: 1;
	margin: 0 0 22px;
	color: #fff;
	font: inherit;
	font-size: 18px;
	font-weight: 400;
	line-height: 1.35;
}

.pe-report-link {
	position: relative;
	z-index: 1;
	display: inline-flex;
	align-items: center;
	align-self: flex-start;
	gap: 8px;
	min-height: 36px;
	padding: 8px 10px;
	border-radius: 8px;
	background: #fff;
	color: #216b69;
	font-size: 16px;
	font-weight: 500;
	line-height: 20px;
	text-decoration: none;
	box-shadow: 0 3px 10px rgba(8, 46, 43, .12);
	transition: color .22s ease, background-color .22s ease, box-shadow .22s ease, transform .22s ease;
}

.pe-report-link:hover,
.pe-report-link:focus {
	background: var(--pe-active);
	color: #fff;
	text-decoration: none;
	box-shadow: 0 8px 20px rgba(8, 46, 43, .28);
	transform: translateY(-2px);
}

.pe-report-link:focus-visible {
	outline: 3px solid rgba(255, 255, 255, .55);
	outline-offset: 3px;
}

.pe-report-link svg {
	width: 16px;
	height: 16px;
	fill: none;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 1.5;
	transition: transform .22s ease;
}

.pe-report-link:hover svg,
.pe-report-link:focus svg {
	transform: translateX(3px);
}

.pe-year-panel.is-entering .pe-report-card {
	animation: pe-card-reveal .52s cubic-bezier(.22, 1, .36, 1) both;
	animation-delay: calc(var(--pe-card-index, 0) * 70ms);
}

@keyframes pe-card-reveal {
	from {
		opacity: 0;
		transform: translateY(22px) scale(.975);
	}
	to {
		opacity: 1;
		transform: translateY(0) scale(1);
	}
}

@media (max-width: 767px) {
	.pe-year-tabs {
		gap: 8px;
		margin-bottom: 42px;
	}

	.pe-year-tab {
		min-width: 92px;
		height: 46px;
		padding: 0 18px;
		line-height: 46px;
	}

	.pe-report-grid {
		grid-template-columns: 1fr;
	}

	.pe-report-card {
		min-height: 220px;
		padding: 28px 30px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.pe-year-panel.is-entering .pe-report-card {
		animation: none;
	}

	.pe-report-link,
	.pe-report-link svg {
		transition: none;
	}
}
