/* Katalógy V2: výpis (/katalogy/) a detail (/katalogy/<url>/). */

:root:has(.rp-catalogues-v2-page) {
	scroll-behavior: smooth;
}

.rp-catalogues-v2-page,
.rp-catalogue-detail-v2-page {
	color: var(--rp-color-text, #282a2d);
	font-family: var(--rp-font-primary, 'Bariol', 'Trebuchet MS', Trebuchet, sans-serif);
	width: 100%;
}

.rp-catalogues-v2-page *,
.rp-catalogues-v2-page *::before,
.rp-catalogues-v2-page *::after,
.rp-catalogue-detail-v2-page *,
.rp-catalogue-detail-v2-page *::before,
.rp-catalogue-detail-v2-page *::after {
	box-sizing: border-box;
}

.rp-catalogues-v2-page__inner,
.rp-catalogue-detail-v2-page__inner {
	margin: 0 auto;
	max-width: 1400px;
	padding: 0 12px 56px;
	width: 100%;
}

.rp-catalogues-v2-page__lead {
	float: none;
	margin: -14px 0 40px;
	max-width: none;
	padding: 0;
	text-align: start;
	width: 100%;
}

.rp-catalogues-v2-page__section-nav-shell {
	margin-bottom: 72px;
}

.rp-catalogues-v2-page__section-nav {
	background: #fff;
	border: 1px solid #ebe8ea;
	border-radius: 16px;
	box-shadow: 0 4px 18px rgba(40, 42, 45, 0.05);
	margin: 0;
	padding: 10px;
}

.rp-catalogues-v2-page__section-nav ul {
	display: grid;
	gap: 8px;
	grid-template-columns: 1fr;
	list-style: none;
	margin: 0;
	padding: 0;
}

.rp-catalogues-v2-page__section-nav li {
	float: none;
	margin: 0;
	padding: 0;
	width: auto;
}

.rp-catalogues-v2-page__section-nav a,
.rp-catalogues-v2-page__section-nav a:hover,
.rp-catalogues-v2-page__section-nav a:focus {
	align-items: center;
	background: #f8f7f7;
	border: 1px solid transparent;
	border-radius: 10px;
	color: var(--rp-color-text, #282a2d);
	display: flex;
	font-size: 0.95rem;
	font-weight: 700;
	gap: 12px;
	justify-content: space-between;
	line-height: 1.3;
	min-height: 52px;
	padding: 10px 12px;
	text-decoration: none;
	transition: background-color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.rp-catalogues-v2-page__section-nav a:hover,
.rp-catalogues-v2-page__section-nav a:focus {
	background: #fff;
	border-color: #d8d4d6;
	box-shadow: 0 0 0 3px rgba(40, 42, 45, 0.05);
	color: var(--rp-color-text, #282a2d);
}

.rp-catalogues-v2-page__section-nav a:focus-visible {
	outline: 3px solid rgba(40, 42, 45, 0.18);
	outline-offset: 2px;
}

.rp-catalogues-v2-page__section-nav strong {
	align-items: center;
	background: #fbf1f6;
	border-radius: 999px;
	color: #b80d5b;
	display: inline-flex;
	flex: 0 0 auto;
	font-size: 0.78rem;
	font-weight: 700;
	height: 28px;
	justify-content: center;
	min-width: 28px;
	padding: 0 8px;
}

.rp-catalogues-v2-page__sections {
	display: flex;
	flex-direction: column;
	gap: 0;
}

.rp-catalogues-v2-page__section {
	scroll-margin-top: 24px;
	width: 100%;
}

.rp-catalogues-v2-page__divider {
	width: 100%;
}

.rp-catalogues-v2-page__section-heading {
	margin: 0 0 26px;
}

.rp-catalogues-v2-page__section-title {
	margin-left: auto;
	margin-right: auto;
	max-width: 900px;
}

.rp-catalogues-v2-page__grid {
	display: grid;
	gap: 18px;
	grid-template-columns: minmax(0, 1fr);
}

.rp-catalogues-v2-page__card {
	background: #fff;
	border: 1px solid #ebe8ea;
	border-radius: 16px;
	box-shadow: 0 2px 10px rgba(40, 42, 45, 0.04);
	float: none;
	margin: 0;
	overflow: hidden;
	padding: 0;
	position: relative;
	transition: border-color 260ms ease, box-shadow 260ms ease, transform 260ms cubic-bezier(0.22, 1, 0.36, 1);
	width: 100%;
}

.rp-catalogues-v2-page__card:hover,
.rp-catalogues-v2-page__card:focus-within {
	border-color: #d8d4d6;
	box-shadow: 0 14px 34px rgba(40, 42, 45, 0.1);
	transform: translateY(-2px);
}

.rp-catalogues-v2-page__card-link,
.rp-catalogues-v2-page__card-link:hover,
.rp-catalogues-v2-page__card-link:focus {
	color: inherit;
	display: flex;
	height: 100%;
	min-height: 210px;
	text-decoration: none;
}

.rp-catalogues-v2-page__card-link:focus-visible {
	outline: 3px solid var(--rp-color-accent, #ff1782);
	outline-offset: -4px;
}

.rp-catalogues-v2-page__card-image {
	align-items: center;
	background: #fbf5f9;
	border-right: 1px solid #f0edef;
	display: flex;
	flex: 0 0 142px;
	justify-content: center;
	overflow: hidden;
	padding: 14px;
}

.rp-catalogues-v2-page__card-image img {
	display: block;
	float: none;
	height: auto;
	margin: 0;
	max-height: 182px;
	max-width: 100%;
	object-fit: contain;
	padding: 0;
	transition: transform 280ms ease;
	width: auto;
}

.rp-catalogues-v2-page__card:hover .rp-catalogues-v2-page__card-image img,
.rp-catalogues-v2-page__card:focus-within .rp-catalogues-v2-page__card-image img {
	transform: scale(1.035);
}

.rp-catalogues-v2-page__card-content {
	display: flex;
	flex: 1;
	flex-direction: column;
	min-width: 0;
	padding: 20px;
}

.rp-catalogues-v2-page__card-content h3 {
	color: var(--rp-color-text, #282a2d);
	float: none;
	font-family: inherit;
	font-size: 1.2rem;
	font-weight: 700;
	line-height: 1.3;
	margin: 0 0 10px;
	padding: 0;
	text-align: left;
	width: auto;
}

.rp-catalogues-v2-page__card-description {
	color: var(--rp-color-text-muted, #555);
	display: -webkit-box;
	font-size: 0.96rem;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 5;
	line-height: 1.55;
	overflow: hidden;
}

.rp-catalogues-v2-page__card-cta {
	align-items: center;
	align-self: flex-end;
	color: #3d3b3c;
	display: inline-flex;
	font-family: var(--rp-font-primary, 'Bariol', 'Trebuchet MS', Trebuchet, sans-serif);
	font-size: 0.94rem;
	font-weight: 700;
	gap: 7px;
	line-height: 1.4;
	margin-top: auto;
	padding-top: 30px;
}

.rp-catalogues-v2-page__card-cta svg {
	flex: 0 0 auto;
	transition: transform 180ms ease;
}

.rp-catalogues-v2-page__card:hover .rp-catalogues-v2-page__card-cta svg,
.rp-catalogues-v2-page__card:focus-within .rp-catalogues-v2-page__card-cta svg {
	transform: translateX(3px);
}

.rp-catalogues-v2-page__empty {
	background: #fbf5f9;
	border: 1px dashed rgba(255, 23, 130, 0.35);
	border-radius: 14px;
	float: none;
	margin: 0;
	padding: 26px;
	text-align: center;
	width: auto;
}

.rp-catalogues-v2-page__flash {
	border: 1px solid;
	border-radius: 10px;
	font-size: 1rem;
	font-weight: 700;
	line-height: 1.45;
	margin: 64px 0 -96px;
	padding: 13px 16px;
}

.rp-catalogues-v2-page__flash.is-success {
	background: #effaf3;
	border-color: #9bd2ab;
	color: #25683a;
}

.rp-catalogues-v2-page__flash.is-error {
	background: #fff1f3;
	border-color: #eda4af;
	color: #9a2636;
}

.rp-catalogue-detail-v2-page .rp-page-heading {
	margin-bottom: 24px;
}

.rp-catalogue-detail-v2-page__actions {
	display: flex;
	justify-content: center;
	margin: 0 0 18px;
}

.rp-catalogue-detail-v2-page__actions .rp-button {
	gap: 8px;
}

.rp-catalogue-detail-v2-page__viewer {
	background: #f8f7f7;
	border: 1px solid #dfdcde;
	border-radius: 16px;
	box-shadow: 0 10px 30px rgba(40, 42, 45, 0.08);
	overflow: hidden;
	padding: 8px;
}

.rp-catalogue-detail-v2-page__iframe {
	background: #fff;
	border: 0;
	display: block;
	height: clamp(620px, 78vh, 900px);
	margin: 0;
	width: 100%;
}

@media screen and (min-width: 620px) {
	.rp-catalogues-v2-page__section-nav ul {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

@media screen and (min-width: 720px) {
	.rp-catalogues-v2-page__inner,
	.rp-catalogue-detail-v2-page__inner {
		padding: 0 20px 72px;
	}

}

@media screen and (min-width: 960px) {
	.rp-catalogues-v2-page__grid {
		gap: 24px;
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

}

@media screen and (min-width: 1200px) {
	.rp-catalogues-v2-page__grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

@media screen and (max-width: 520px) {
	.rp-catalogues-v2-page__card-link {
		min-height: 190px;
	}

	.rp-catalogues-v2-page__card-image {
		flex-basis: 106px;
		padding: 10px;
	}

	.rp-catalogues-v2-page__card-content {
		padding: 16px;
	}

	.rp-catalogues-v2-page__card-content h3 {
		font-size: 1.08rem;
	}

	.rp-catalogues-v2-page__card-description {
		font-size: 0.9rem;
		-webkit-line-clamp: 6;
	}

	.rp-catalogue-detail-v2-page__actions .rp-button {
		width: 100%;
	}

	.rp-catalogue-detail-v2-page__viewer {
		border-radius: 12px;
		padding: 5px;
	}

	.rp-catalogue-detail-v2-page__iframe {
		height: 68vh;
		min-height: 520px;
	}
}

@media (prefers-reduced-motion: reduce) {
	:root:has(.rp-catalogues-v2-page) {
		scroll-behavior: auto;
	}

	.rp-catalogues-v2-page__section-nav a,
	.rp-catalogues-v2-page__card,
	.rp-catalogues-v2-page__card-image img,
	.rp-catalogues-v2-page__card-cta svg {
		transition: none;
	}

	.rp-catalogues-v2-page__card:hover,
	.rp-catalogues-v2-page__card:focus-within,
	.rp-catalogues-v2-page__card:hover .rp-catalogues-v2-page__card-image img,
	.rp-catalogues-v2-page__card:focus-within .rp-catalogues-v2-page__card-image img,
	.rp-catalogues-v2-page__card:hover .rp-catalogues-v2-page__card-cta svg,
	.rp-catalogues-v2-page__card:focus-within .rp-catalogues-v2-page__card-cta svg {
		transform: none;
	}
}
