.e-reha-category-archive {
	--er-category-navy: #274a6d;
	--er-category-green: #33865f;
	--er-category-text: #333;
	--er-category-muted: #78817f;
	--er-category-border: #dfe7e2;
	--er-category-surface: #f7faf8;
	color: var(--er-category-text);
}

.e-reha-category-archive__main {
	width: 100%;
	padding: 0;
}

.e-reha-category-archive__header {
	margin-bottom: 42px;
}

.e-reha-category-archive__title {
	position: relative;
	margin: 0;
	padding-bottom: 18px;
	color: var(--er-category-navy);
	font-size: 34px;
	font-weight: 600;
	line-height: 1.4;
}

.e-reha-category-archive__title::after {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 36px;
	height: 3px;
	background: var(--er-category-green);
	content: "";
}

.e-reha-category-archive__description {
	max-width: 760px;
	margin-top: 20px;
	font-size: 16px;
	line-height: 1.8;
}

.e-reha-category-archive__description > :last-child {
	margin-bottom: 0;
}

.e-reha-category-archive__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 44px 36px;
}

.e-reha-category-card,
.e-reha-category-card__link {
	min-width: 0;
}

.e-reha-category-card {
	margin: 0;
}

.e-reha-category-card__link {
	display: block;
	height: 100%;
	color: inherit;
	text-decoration: none;
}

.e-reha-category-card__link:hover,
.e-reha-category-card__link:focus {
	color: inherit;
	text-decoration: none;
}

.e-reha-category-card__link:focus-visible {
	outline: 3px solid var(--er-category-green);
	outline-offset: 4px;
}

.e-reha-category-card__image {
	position: relative;
	overflow: hidden;
	aspect-ratio: 16 / 9;
	background: var(--er-category-surface);
}

.e-reha-category-card__image img,
.e-reha-category-card__image-fallback {
	display: block;
	width: 100%;
	height: 100%;
}

.e-reha-category-card__image img {
	object-fit: cover;
	transition: transform .25s ease;
}

.e-reha-category-card__link:hover .e-reha-category-card__image img {
	transform: scale(1.02);
}

.e-reha-category-card__image-fallback {
	background:
		radial-gradient(circle at 78% 26%, rgba(51, 134, 95, .12), transparent 34%),
		linear-gradient(135deg, #fff 0%, #faf8f4 52%, #e6f1eb 100%);
}

.e-reha-category-card__body {
	padding: 15px 2px 0;
}

.e-reha-category-card__category {
	margin: 0 0 6px;
	color: var(--er-category-green);
	font-size: 14px;
	font-weight: 600;
	line-height: 1.5;
}

.e-reha-category-card__title {
	margin: 0;
	padding: 0;
	border: 0;
	background: none;
	box-shadow: none;
	clear: none;
	color: var(--er-category-navy);
	font-size: 19px;
	font-weight: 600;
	line-height: 1.55;
	text-shadow: none;
}

.e-reha-category-card__date {
	display: block;
	margin-top: 8px;
	color: var(--er-category-muted);
	font-size: 14px;
	line-height: 1.5;
}

.e-reha-category-archive .navigation.pagination {
	margin-top: 48px;
	text-align: center;
}

.e-reha-category-archive .navigation.pagination .nav-links {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 8px;
}

.e-reha-category-archive .navigation.pagination .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 44px;
	min-height: 44px;
	padding: 8px 12px;
	border: 1px solid var(--er-category-border);
	color: var(--er-category-navy);
	text-decoration: none;
}

.e-reha-category-archive .navigation.pagination .current {
	border-color: var(--er-category-green);
	background: var(--er-category-green);
	color: #fff;
}

.e-reha-category-archive .navigation.pagination a:hover,
.e-reha-category-archive .navigation.pagination a:focus-visible {
	border-color: var(--er-category-green);
	color: var(--er-category-green);
}

.e-reha-category-archive__empty {
	padding: 32px 0;
	border-top: 1px solid var(--er-category-border);
	border-bottom: 1px solid var(--er-category-border);
}

.e-reha-category-archive__empty p {
	margin: 0;
}

.e-reha-category-archive__back {
	max-width: 720px;
	margin: 56px auto 0;
}

.e-reha-category-archive__back a {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 56px;
	padding: 15px 2px;
	border-top: 1px solid var(--er-category-border);
	border-bottom: 1px solid var(--er-category-border);
	color: var(--er-category-navy);
	font-size: 16px;
	font-weight: 600;
	text-decoration: none;
}

.e-reha-category-archive__back-arrow {
	color: var(--er-category-green);
	transition: transform .2s ease;
}

.e-reha-category-archive__back a:hover,
.e-reha-category-archive__back a:focus-visible {
	color: var(--er-category-green);
}

.e-reha-category-archive__back a:hover .e-reha-category-archive__back-arrow,
.e-reha-category-archive__back a:focus-visible .e-reha-category-archive__back-arrow {
	transform: translateX(4px);
}

@media (prefers-reduced-motion: reduce) {
	.e-reha-category-card__image img,
	.e-reha-category-archive__back-arrow {
		transition: none;
	}
}

@media (min-width: 601px) and (max-width: 1024px) {
	.e-reha-category-archive__header {
		margin-bottom: 36px;
	}

	.e-reha-category-archive__title {
		font-size: 30px;
	}

	.e-reha-category-archive__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 38px 28px;
	}
}

@media (max-width: 600px) {
	.e-reha-category-archive__header {
		margin-bottom: 30px;
	}

	.e-reha-category-archive__title {
		padding-bottom: 15px;
		font-size: 28px;
	}

	.e-reha-category-archive__description {
		margin-top: 18px;
		font-size: 16px;
		line-height: 1.75;
	}

	.e-reha-category-archive__grid {
		grid-template-columns: 1fr;
		gap: 36px;
	}

	.e-reha-category-card__body {
		padding-top: 13px;
	}

	.e-reha-category-archive .navigation.pagination {
		margin-top: 38px;
	}

	.e-reha-category-archive__back {
		margin-top: 44px;
	}
}
