/* Adobe Fonts web project alv0rbi supplies both type families in 400 and 600. */

/* Imported galleries keep their original media in WordPress but no longer
 * depend on the retired page builder. Captions reserve two text lines so rows
 * remain aligned when editors add short descriptions. */
.hr-entry-content .c-gallery .gallery-images,
.hr-entry-content .wp-block-gallery.has-nested-images {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 32px 16px;
	margin: 32px 0 0;
	padding: 0;
	list-style: none;
}

.hr-entry-content .c-gallery .gallery-images > li,
.hr-entry-content .wp-block-gallery.has-nested-images > figure {
	display: flex;
	min-width: 0;
	flex-direction: column;
	margin: 0;
	list-style: none;
}

.hr-entry-content .c-gallery a,
.hr-entry-content .wp-block-gallery.has-nested-images > figure > a {
	display: block;
	border-radius: 16px;
	overflow: hidden;
}

.hr-entry-content .c-gallery img,
.hr-entry-content .wp-block-gallery.has-nested-images img {
	display: block;
	width: 100%;
	height: auto;
	aspect-ratio: 4 / 3;
	object-fit: cover;
}

.hr-entry-content .c-gallery figcaption,
.hr-entry-content .wp-block-gallery.has-nested-images figcaption {
	min-height: 44px;
	margin: 8px 0 0;
	font-size: 16px;
	line-height: 22px;
}

.hr-entry-content .c-gallery a:focus-visible,
.hr-entry-content .wp-block-gallery.has-nested-images > figure > a:focus-visible {
	outline: 3px solid var(--hr-green);
	outline-offset: 3px;
}

.hr-missing-document {
	display: inline-flex;
	flex-wrap: wrap;
	align-items: baseline;
	gap: 4px 8px;
	color: var(--hr-black);
}

.hr-missing-document__status {
	font-family: var(--hr-body);
	font-size: 12px;
	font-weight: 400;
	line-height: 16px;
	color: #626762;
}

@media (max-width: 767px) {
	.hr-entry-content .c-gallery .gallery-images,
	.hr-entry-content .wp-block-gallery.has-nested-images {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 24px 12px;
	}
}

:root {
	--hr-green: #408048;
	--hr-green-dark: #356f3d;
	--hr-green-deep: #285e32;
	--hr-black: #111;
	--hr-white: #fff;
	--hr-sand: #f5f4ef;
	--hr-line: #d9ddd7;
	--hr-error: #a52626;
	--hr-success: #176b35;
	--hr-display: "neue-haas-unica", "Arial Nova", Arial, sans-serif;
	--hr-body: "republic-web", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	/* 1184px at the Figma viewport, growing to a readable 1600px on wide/4K screens. */
	--hr-container: clamp(74rem, 42rem + 40vw, 100rem);
	--hr-reading: 47.5rem;
	--hr-gutter: clamp(1rem, 3.75vw, 3rem);
	--hr-space-2xs: clamp(0.35rem, 0.3rem + 0.2vw, 0.5rem);
	--hr-space-xs: clamp(0.5rem, 0.4rem + 0.35vw, 0.75rem);
	--hr-space-s: clamp(0.75rem, 0.55rem + 0.6vw, 1rem);
	--hr-space-m: clamp(1rem, 0.7rem + 1vw, 1.5rem);
	--hr-space-l: clamp(1.5rem, 0.9rem + 1.8vw, 2.5rem);
	--hr-space-xl: clamp(2.5rem, 1.4rem + 3vw, 4.5rem);
	--hr-space-2xl: clamp(4rem, 2rem + 5vw, 7rem);
	/*
	 * Fluid type scale. Every preferred value resolves to the exact Figma
	 * size at 1280px, while retaining a perceptible wide-screen range up to
	 * 2560px. Relative rem bounds keep browser text resizing effective.
	 */
	--hr-step--2: clamp(0.75rem, 0.625rem + 0.15625vw, 0.875rem);
	--hr-step-micro: clamp(0.5rem, 0.453125rem + 0.05859375vw, 0.5625rem);
	--hr-step-table: clamp(0.8125rem, 0.75rem + 0.15625vw, 0.9375rem);
	--hr-step--1: clamp(0.75rem, 0.5rem + 0.46875vw, 1.125rem);
	--hr-step-0: clamp(1rem, 0.75rem + 0.3125vw, 1.25rem);
	--hr-step-1: clamp(1.1875rem, 0.875rem + 0.46875vw, 1.625rem);
	--hr-step-2: clamp(1.875rem, 1.375rem + 0.78125vw, 2.625rem);
	--hr-step-3: clamp(1.9375rem, 1.375rem + 0.78125vw, 2.625rem);
	--hr-step-4: clamp(2.875rem, 2rem + 1.25vw, 4rem);
	--hr-step-nav: clamp(1.4375rem, 1.125rem + 0.46875vw, 1.875rem);
	--hr-footer-title: clamp(3rem, 2.75rem + 0.3125vw, 3.25rem);
	--hr-radius: 1.25rem;
	--hr-pill: 999px;
	--hr-shadow: 0 1rem 3rem rgba(20, 55, 27, 0.13);
	--hr-anchor-offset: 7rem;
	--hr-viewport-top-offset: 0px;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	max-width: 100%;
	overflow-x: clip;
	font-size: 100%;
	font-variant-numeric: lining-nums proportional-nums;
	font-feature-settings: "lnum" 1, "pnum" 1;
	scroll-behavior: smooth;
	scroll-padding-top: var(--hr-anchor-offset);
}

.site-main [id] {
	scroll-margin-top: var(--hr-anchor-offset);
}

body.admin-bar {
	--hr-viewport-top-offset: 32px;
}

:root:has(body.admin-bar) {
	--hr-anchor-offset: calc(7rem + 32px);
}

body.hradistko-site {
	max-width: 100%;
	margin: 0;
	overflow-x: clip;
	color: var(--hr-black);
	background: var(--hr-white);
	font-family: var(--hr-body);
	font-size: var(--hr-step-0);
	line-height: 1.375;
	text-rendering: optimizeLegibility;
	-webkit-font-smoothing: antialiased;
}

:where(body.hradistko-site) :is(strong, b) {
	font-weight: 600;
}

/* Astra's floating scroll-to-top control visually collides with the reserved
 * future chat position. The site already provides semantic landmarks and
 * keyboard navigation, so keep the floating slot empty for now. */
#ast-scroll-top {
	display: none !important;
}

.ast-scroll-to-top-right {
	display: none !important;
}

body.mobile-menu-open {
	overflow: hidden;
}

/* Lock the root scrolling box as well as the body. On Windows Chromium the
 * page scrollbar otherwise keeps a 15px gutter while the fixed menu is open,
 * reducing a 390px design viewport to a 375px green panel. */
html:has(body.mobile-menu-open) {
	overflow: hidden;
}

img,
svg {
	max-width: 100%;
	height: auto;
}

button,
input,
textarea,
select {
	font: inherit;
}

button,
a {
	-webkit-tap-highlight-color: transparent;
}

a {
	color: var(--hr-green-dark);
	text-underline-offset: 0.18em;
	text-decoration-thickness: 0.08em;
}

a:hover,
a:focus {
	color: var(--hr-green-deep);
	text-decoration-thickness: 0.14em;
}

.hradistko-site :where(.site-header, .site-footer, .hr-card, .hr-quick-links) a:not(.hr-button):not(.hr-section-cta):not(.wp-element-button):not(.wp-block-button__link):hover,
.hradistko-site :where(.site-header, .site-footer, .hr-card, .hr-quick-links) a:not(.hr-button):not(.hr-section-cta):not(.wp-element-button):not(.wp-block-button__link):focus {
	background-color: transparent;
}

:where(a, button, input, select, textarea, [tabindex]):focus-visible {
	outline: 3px solid var(--hr-black);
	outline-offset: 3px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	margin-block: 0 0.65em;
	color: var(--hr-black);
	font-family: var(--hr-display);
	font-weight: 600;
	line-height: 1.14;
	text-wrap: balance;
}

h1 {
	font-size: var(--hr-step-4);
	line-height: 1.2083;
}

h2 {
	font-size: var(--hr-step-3);
	line-height: 1.25;
}

h3 {
	font-size: var(--hr-step-1);
	line-height: 1.3;
}

p,
ul,
ol,
dl,
blockquote {
	margin-block: 0 1.1em;
}

.screen-reader-text {
	position: absolute !important;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.screen-reader-text:focus,
.skip-link:focus {
	position: fixed !important;
	z-index: 100000;
	top: 0.75rem;
	left: 0.75rem;
	width: auto;
	height: auto;
	padding: 0.8rem 1.1rem;
	margin: 0;
	overflow: visible;
	clip: auto;
	color: var(--hr-white);
	background: var(--hr-black);
	border-radius: 0.3rem;
	white-space: normal;
}

.hr-container {
	width: min(100% - (2 * var(--hr-gutter)), var(--hr-container));
	margin-inline: auto;
}

/*
 * The custom templates already live inside .hr-container. Astra otherwise
 * adds a second article inset, which makes mobile subpages visibly narrower
 * than the homepage.
 */
.hradistko-site .hr-entry.ast-article-single {
	padding: 0;
	margin: 0;
	background: transparent;
	border: 0;
}

.site-main {
	min-height: 50vh;
}

.hr-icon {
	display: block;
	width: 1.5rem;
	height: 1.5rem;
	flex: 0 0 auto;
}

/* Exact Figma external-link glyph (node 2265:7330) as a currentColor mask. */
a.hr-external-link::after {
	display: inline-block;
	width: 1.5em;
	height: 1.5em;
	margin-inline-start: 0;
	background-color: currentColor;
	content: "";
	vertical-align: -0.45em;
	-webkit-mask: url("../icons/icon-external.svg") center / contain no-repeat;
	mask: url("../icons/icon-external.svg") center / contain no-repeat;
}

.hr-quick-links__nav a.hr-external-link::after {
	content: none;
}

.hr-quick-links__nav a.hr-external-link > span:last-child::after {
	display: inline-block;
	width: 2rem;
	height: 2rem;
	margin-inline-start: 0;
	background-color: currentColor;
	content: "";
	vertical-align: -0.65em;
	-webkit-mask: url("../icons/icon-external.svg") center / contain no-repeat;
	mask: url("../icons/icon-external.svg") center / contain no-repeat;
}

.site-footer__map > a.hr-external-link::after {
	width: 2em;
	height: 2em;
	flex: 0 0 2em;
	vertical-align: middle;
}

.primary-navigation .sub-menu .menu-link.hr-external-link::after {
	width: 2rem;
	height: 2rem;
	flex: 0 0 2rem;
	margin-inline-start: 0;
	vertical-align: middle;
}

.hr-button,
.wp-element-button,
.wp-block-button__link {
	display: inline-flex;
	min-height: 3rem;
	align-items: center;
	justify-content: center;
	gap: 0.65rem;
	padding: 0.7rem 1.25rem;
	color: var(--hr-white);
	background: var(--hr-green-dark);
	border: 2px solid var(--hr-green-dark);
	border-radius: var(--hr-pill);
	font-family: var(--hr-display);
	font-weight: 600;
	line-height: 1.15;
	text-decoration: none;
	cursor: pointer;
}

.hr-button:hover,
.hr-button:focus,
.wp-element-button:hover,
.wp-element-button:focus,
.wp-block-button__link:hover,
.wp-block-button__link:focus {
	color: var(--hr-white);
	background: var(--hr-green-deep);
	border-color: var(--hr-green-deep);
}

.hr-button .hr-icon {
	filter: brightness(0) invert(1);
}

.hradistko-site .hr-card--newsletter .hr-button:hover,
.hradistko-site .hr-card--newsletter .hr-button:focus-visible {
	color: var(--hr-green-dark);
	background: var(--hr-white);
	border-color: var(--hr-green-dark);
	text-decoration: none;
}

.hr-text-link,
.hr-card__more {
	font-family: var(--hr-display);
	font-size: var(--hr-step-0);
	font-weight: 600;
	line-height: 1.25;
}

/* Header and navigation */
.site-header {
	position: sticky;
	top: 0;
	z-index: 1000;
	width: 100%;
	color: var(--hr-white);
	background: var(--hr-green);
}

.hradistko-front-page .site-header {
	position: absolute;
	top: 0;
	left: 0;
	background: linear-gradient(to bottom, rgba(0, 0, 0, 0.58), rgba(0, 0, 0, 0));
}

.hradistko-front-page .site-header.is-sticky-visible {
	position: fixed;
	background: var(--hr-green);
	box-shadow: 0 0.55rem 1.5rem rgba(20, 55, 27, 0.15);
	animation: hr-sticky-header-in 260ms cubic-bezier(.22, 1, .36, 1);
}

.hradistko-front-page .site-header.is-sticky-visible .site-logo {
	align-self: center;
	width: clamp(3.3rem, 2.6rem + 2vw, 4.8rem);
	margin-top: 0;
}

@keyframes hr-sticky-header-in {
	from {
		transform: translateY(-100%);
	}
}

.admin-bar.hradistko-front-page .site-header {
	top: 32px;
}

.admin-bar:not(.hradistko-front-page) .site-header {
	top: 32px;
}

.site-header__inner {
	display: grid;
	min-height: 5rem;
	grid-template-columns: auto minmax(0, 1fr) auto;
	align-items: center;
	gap: var(--hr-space-l);
}

.site-logo {
	position: relative;
	z-index: 2;
	display: block;
	width: clamp(3.3rem, 2.6rem + 2vw, 4.8rem);
	padding-block: 0.35rem;
}

.hradistko-front-page .site-logo {
	align-self: start;
	width: clamp(4.9rem, 4.3rem + 1vw, 5.55rem);
	margin-top: clamp(1.25rem, 1rem + 0.8vw, 1.75rem);
}

.site-logo img {
	display: block;
	width: 100%;
}

.primary-navigation--desktop {
	justify-self: end;
}

.primary-menu,
.primary-menu ul {
	padding: 0;
	margin: 0;
	list-style: none;
}

.primary-navigation--desktop > .primary-menu {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: clamp(0.75rem, 0.3rem + 1.4vw, 3rem);
}

.primary-menu > .menu-item {
	position: relative;
	display: flex;
	align-items: center;
	gap: 0.15rem;
}

.primary-navigation--desktop .menu-link,
.primary-navigation--desktop .menu-label {
	display: inline-flex;
	min-height: 2.75rem;
	align-items: center;
	color: var(--hr-white);
	font-family: var(--hr-display);
	font-size: var(--hr-step-0);
	font-weight: 600;
	text-decoration: none;
	white-space: nowrap;
}

.primary-navigation--desktop .menu-link:hover,
.primary-navigation--desktop .menu-link[aria-current="page"],
.primary-navigation--desktop .current-menu-ancestor > .menu-link {
	text-decoration: underline;
	text-underline-offset: 0.4rem;
}

.submenu-toggle {
	display: inline-grid;
	width: 2.75rem;
	height: 2.75rem;
	padding: 0;
	place-items: center;
	color: inherit;
	background: transparent;
	border: 0;
	border-radius: 0;
	box-shadow: none;
	cursor: pointer;
}

.hradistko-site .primary-navigation .submenu-toggle,
.hradistko-site .primary-navigation .submenu-toggle:hover,
.hradistko-site .primary-navigation .submenu-toggle:focus {
	background: transparent !important;
	border: 0 !important;
	box-shadow: none !important;
}

.submenu-toggle__icon {
	width: 0.65rem;
	height: 0.65rem;
	border-right: 2px solid currentColor;
	border-bottom: 2px solid currentColor;
	transform: translateY(-0.12rem) rotate(45deg);
	transition: transform 180ms ease;
}

	.primary-navigation--mobile .submenu-toggle__icon {
		width: 0.5625rem;
		height: 1.1875rem;
		background: currentColor;
		border: 0;
		-webkit-mask: url("../icons/icon-cta-arrow.svg") center / contain no-repeat;
		mask: url("../icons/icon-cta-arrow.svg") center / contain no-repeat;
		transform: none;
		transition: transform 440ms cubic-bezier(.33, 0, .67, 1);
	}

	.primary-navigation--mobile .submenu-toggle[aria-expanded="true"] .submenu-toggle__icon {
		transform: rotate(90deg);
	}

.submenu-toggle[aria-expanded="true"] .submenu-toggle__icon {
	transform: translateY(0.18rem) rotate(225deg);
}

.primary-navigation--desktop .sub-menu {
	position: absolute;
	z-index: 20;
	top: calc(100% - 0.2rem);
	left: 0;
	display: grid;
	width: clamp(15.5rem, 19vw, 18rem);
	max-height: calc(100vh - 7rem);
	grid-template-columns: 1fr;
	gap: 0;
	padding: 0.35rem 0;
	overflow-y: auto;
	overscroll-behavior: contain;
	color: var(--hr-black);
	background: rgba(255, 255, 255, 0.985);
	border: 1px solid rgba(31, 76, 37, 0.16);
	border-top: 3px solid var(--hr-green);
	border-radius: 0;
	box-shadow: 0 1rem 2.25rem rgba(15, 47, 20, 0.18);
	backdrop-filter: blur(0.5rem);
}

.primary-navigation--desktop > .primary-menu > .menu-item:last-child > .sub-menu {
	right: 0;
	left: auto;
}

.primary-navigation--desktop .sub-menu[hidden] {
	display: none;
}

.primary-navigation--desktop.is-navigating .sub-menu {
	opacity: 1 !important;
	transform: none !important;
	animation: none !important;
}

.primary-navigation--desktop .sub-menu .menu-link,
.primary-navigation--desktop .sub-menu .menu-label {
	width: 100%;
	min-height: 2.65rem;
	padding: 0.6rem 1rem;
	color: var(--hr-black);
	background: transparent;
	border: 0;
	border-radius: 0;
	font-size: clamp(0.82rem, 0.76rem + 0.15vw, 0.92rem);
	white-space: normal;
	box-shadow: inset 3px 0 0 transparent;
	transition:
		color 160ms ease,
		background-color 160ms ease,
		box-shadow 160ms ease,
		padding-left 160ms ease;
}

.primary-navigation--desktop .sub-menu .menu-item:last-child > .menu-link,
.primary-navigation--desktop .sub-menu .menu-item:last-child > .menu-label {
	border-bottom: 0;
}

.primary-navigation--desktop .sub-menu .menu-link:hover {
	color: var(--hr-green-dark);
	background: #f1f6ef !important;
	box-shadow: inset 3px 0 0 var(--hr-green) !important;
	padding-left: 1.15rem;
	text-decoration: none;
}

.primary-navigation--desktop > .primary-menu > .has-submenu > .sub-menu > .menu-item {
	position: relative;
}

.primary-navigation--desktop > .primary-menu > .has-submenu > .sub-menu > .menu-item::after {
	display: none;
}

.hradistko-site .primary-navigation .menu-link:hover,
.hradistko-site .primary-navigation .menu-link:focus,
.hradistko-site .primary-navigation .menu-label:hover,
.hradistko-site .primary-navigation .menu-label:focus {
	box-shadow: none !important;
}

.hradistko-site .primary-navigation :where(.menu-link, .menu-label):focus {
	outline: 0 !important;
	box-shadow: inset 0 -2px 0 currentColor !important;
}

.hradistko-site .primary-navigation .submenu-toggle:focus {
	outline: 0 !important;
	box-shadow: none !important;
}

.hradistko-site .primary-navigation :where(.menu-link, .menu-label):focus-visible {
	outline: 0 !important;
	box-shadow: inset 0 -2px 0 currentColor !important;
}

.hradistko-site .primary-navigation .submenu-toggle:focus-visible {
	outline: 0 !important;
	box-shadow: inset 0 0 0 2px currentColor !important;
}

.site-header__actions {
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.header-search-control {
	position: relative;
	width: clamp(10.5rem, 15vw, 11.75rem);
	height: 3rem;
	flex: 0 0 auto;
}

.header-search-toggle,
.mobile-menu-toggle,
.mobile-menu-close {
	display: inline-grid;
	width: 3rem;
	height: 3rem;
	padding: 0;
	place-items: center;
	color: var(--hr-white);
	background: transparent;
	border: 1px solid currentColor;
	border-radius: var(--hr-pill);
	cursor: pointer;
}

.hradistko-site .site-header .header-search-toggle,
.hradistko-site .site-header .mobile-menu-toggle,
.hradistko-site .site-header .mobile-menu-close,
.hradistko-site .site-header .header-search-toggle:hover,
.hradistko-site .site-header .mobile-menu-toggle:hover,
.hradistko-site .site-header .mobile-menu-close:hover {
	color: var(--hr-white) !important;
	background: transparent !important;
	border: 1px solid currentColor !important;
	box-shadow: none !important;
}

.header-search-toggle .hr-icon,
.header-search-submit .hr-icon,
.mobile-menu-toggle .hr-icon,
.mobile-menu-close .hr-icon {
	filter: brightness(0) invert(1);
}

.mobile-menu-toggle {
	display: none;
}

.mobile-menu-toggle .hr-icon,
.mobile-menu-close .hr-icon {
	width: 2.1rem;
	height: 2.1rem;
}

.mobile-menu-toggle__icon {
	display: grid;
	width: 100%;
	height: 100%;
	place-items: center;
}

.mobile-menu-toggle__icon--close {
	display: none;
}

.mobile-menu-toggle[aria-expanded="true"] .mobile-menu-toggle__icon--open {
	display: none;
}

.mobile-menu-toggle[aria-expanded="true"] .mobile-menu-toggle__icon--close {
	display: grid;
}

.header-search-form {
	position: absolute;
	inset: 0;
	display: grid;
	grid-template-columns: minmax(0, 1fr) 2.7rem;
	align-items: center;
	overflow: hidden;
	background: transparent;
	border: 1px solid currentColor;
	border-radius: var(--hr-pill);
}

.header-search-field {
	width: 100%;
	min-width: 0;
	min-height: 0;
	height: 100%;
	padding: 0 0.15rem 0 0.9rem;
	color: var(--hr-white);
	background: transparent;
	border: 0;
	border-radius: 0;
	font-family: var(--hr-display);
	font-weight: 600;
	line-height: 1;
	outline-offset: -3px;
	-webkit-appearance: none;
	appearance: none;
}

.hradistko-site .site-header .header-search-field,
.hradistko-site .site-header .header-search-field:hover,
.hradistko-site .site-header .header-search-field:focus {
	box-sizing: border-box !important;
	height: 100% !important;
	padding: 0.32rem 0.15rem 0.52rem 0.9rem !important;
	color: var(--hr-white) !important;
	background: transparent !important;
	border: 0 !important;
	box-shadow: none !important;
	line-height: 1 !important;
}

.header-search-field::placeholder {
	color: rgba(255, 255, 255, 0.86);
}

.header-search-submit,
.hradistko-site .site-header .header-search-submit:hover,
.hradistko-site .site-header .header-search-submit:focus {
	position: static;
	display: grid;
	width: 2.7rem;
	height: 2.7rem;
	padding: 0;
	place-items: center;
	color: var(--hr-white) !important;
	background: transparent !important;
	border: 0 !important;
	border-radius: var(--hr-pill);
	box-shadow: none !important;
	cursor: pointer;
}

.search-form label {
	display: block;
	margin-bottom: 0.35rem;
	font-family: var(--hr-display);
	font-weight: 600;
}

.search-form__row {
	display: flex;
	gap: 0.5rem;
}

.search-field {
	width: 100%;
	min-height: 3rem;
	padding: 0.65rem 1rem;
	color: var(--hr-black);
	background: var(--hr-white);
	border: 2px solid var(--hr-green-dark);
	border-radius: var(--hr-pill);
}

.search-submit {
	display: inline-flex;
	min-height: 3rem;
	align-items: center;
	gap: 0.5rem;
	padding: 0.65rem 1rem;
	color: var(--hr-white);
	background: var(--hr-green-dark);
	border: 2px solid var(--hr-green-dark);
	border-radius: var(--hr-pill);
	font-weight: 600;
	cursor: pointer;
}

.search-submit .hr-icon {
	filter: brightness(0) invert(1);
}

.mobile-menu-panel,
.mobile-menu-backdrop {
	display: none;
}

/* Hero */
.hr-hero {
	position: relative;
	display: grid;
	min-height: clamp(30rem, 40.5vw, 33rem);
	align-items: end;
	overflow: clip;
	color: var(--hr-white);
	background: #1e3325;
}

.hr-hero__media {
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(to top, rgba(0, 0, 0, 0.55), transparent 54%),
		url("../images/hero.webp");
	background-position: center 55%;
	background-size: cover;
}

.hr-hero__content {
	position: relative;
	z-index: 1;
	padding-bottom: clamp(2.5rem, 1.5rem + 3vw, 4.5rem);
}

.hr-hero h1 {
	max-width: 12ch;
	margin: 0;
	color: var(--hr-white);
	font-size: var(--hr-step-4);
	line-height: 1.2083;
}

.hr-hero__scroll {
	position: absolute;
	z-index: 2;
	bottom: clamp(1.5rem, 1rem + 1.5vw, 2.4rem);
	left: 50%;
	display: grid;
	width: 3.05rem;
	height: 2rem;
	place-items: center;
	color: var(--hr-white);
	background: transparent;
	border: 0;
	text-decoration: none;
	transform: translateX(-50%);
	transition:
		background-color 160ms ease,
		transform 160ms ease;
}

.hr-hero__scroll:hover,
.hr-hero__scroll:focus-visible {
	color: var(--hr-white);
	background: transparent !important;
	transform: translate(-50%, 2px);
}

.hr-hero__scroll .hr-icon {
	width: 3.05rem;
	height: 1.3125rem;
	filter: none;
}

.hr-ask {
	display: grid;
	width: 4rem;
	height: 4rem;
	place-items: center;
	color: var(--hr-white);
	background: var(--hr-green);
	border: 1px solid var(--hr-white);
	border-radius: 50%;
	text-decoration: none;
}

.hr-ask:hover,
.hr-ask:focus-visible {
	color: var(--hr-white);
	background: var(--hr-green);
	border-color: var(--hr-white);
}

.hr-ask:focus-visible {
	outline: 2px solid var(--hr-white);
	outline-offset: 3px;
}

.hr-ask .hr-icon {
	width: 2.75rem;
	height: 2.75rem;
}

.hr-hero__ask {
	position: absolute;
	z-index: 2;
	right: 3rem;
	bottom: 3rem;
}

/* Shared sections and cards */
.hr-front-section,
.hr-front-events,
.hr-quick-links,
.hr-home-contact {
	padding-block: var(--hr-space-xl);
}

.hr-front-section {
	position: relative;
	padding-top: 0;
}

.hr-front-section > .hr-container {
	height: 100%;
}

.hr-section-heading {
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: var(--hr-space-m);
	padding-top: var(--hr-space-l);
	margin-bottom: var(--hr-space-l);
	border-top: 1px solid var(--hr-line);
}

.hr-section-heading h2,
.hr-block > h2 {
	margin: 0;
	font-size: var(--hr-step-3);
	line-height: 1.25;
}

.hr-card-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(min(100%, 14rem), 1fr));
	gap: var(--hr-space-l);
}

.hr-card {
	container-type: inline-size;
	min-width: 0;
}

.hradistko-site .hr-card-grid > .hr-card {
	width: 100% !important;
	padding: 0 !important;
	margin: 0;
	/* A column boundary has one owner: the shared grid pseudo-divider. */
	border-right: 0 !important;
	border-bottom: 0 !important;
	border-left: 0 !important;
}

.hr-card__media {
	display: block;
	aspect-ratio: 3 / 2;
	margin-bottom: var(--hr-space-s);
	overflow: hidden;
	background: var(--hr-sand);
}

.hr-card__media img,
.hr-card__placeholder {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 240ms ease;
}

.hr-card:hover .hr-card__media img {
	transform: scale(1.025);
}

.hr-card__meta,
.hr-card__date {
	display: block;
	margin-bottom: 0.45rem;
	font-size: var(--hr-step--1);
	line-height: 1.3333;
}

.hr-block--latest-posts .hr-card__meta {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 0.75rem;
}

.hr-card--news .hr-card__meta {
	margin-bottom: 1.125rem;
}

.hr-card__title {
	margin-bottom: 0.55rem;
	font-size: var(--hr-step-1);
	line-height: 1.3;
}

.hr-card__title a {
	color: var(--hr-black);
	text-decoration: none;
}

.hr-card__title a:hover {
	color: var(--hr-green-dark);
	text-decoration: underline;
}

.hr-card__excerpt {
	font-size: var(--hr-step-0);
	line-height: 1.375;
}

.hr-card--news {
	display: flex;
	flex-direction: column;
	padding-bottom: var(--hr-space-l);
	border-bottom: 0;
}

.hr-card--news .hr-card__excerpt {
	display: block;
	overflow: visible;
	-webkit-line-clamp: unset;
	line-clamp: unset;
}

.hr-card--news .hr-card__more {
	margin-top: auto;
}

.hr-block--latest-posts {
	position: relative;
	padding-right: clamp(0rem, 4vw, 16rem);
	padding-bottom: var(--hr-space-xl);
	border-bottom: 0;
}

.hr-block--latest-posts::after {
	position: absolute;
	right: -4rem;
	bottom: 0;
	width: clamp(9rem, 17vw, 18rem);
	aspect-ratio: 1;
	background: url("../images/news-illustration-desktop.png") center / contain no-repeat;
	content: "";
	pointer-events: none;
}

.hr-block--latest-posts .hr-card-grid {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.hr-block--latest-posts .hr-card:nth-child(n + 4) {
	display: none;
}

.hr-section-cta-row {
	position: relative;
	z-index: 2;
	display: flex;
	justify-content: flex-end;
	margin-top: var(--hr-space-l);
}

.hr-section-cta {
	display: inline-flex;
	min-height: 3rem;
	align-items: center;
	justify-content: center;
	gap: 0.8125rem;
	padding: 0.65rem 0.8125rem 0.7rem 1.25rem;
	color: var(--hr-white);
	background: var(--hr-green-dark);
	border: 1px solid var(--hr-green-dark);
	border-radius: var(--hr-pill);
	font-family: var(--hr-display);
	font-size: var(--hr-step-0);
	font-weight: 600;
	line-height: 1;
	text-decoration: none;
	transition:
		color 160ms ease,
		background-color 160ms ease,
		transform 160ms ease;
}

.hr-section-cta:hover,
.hr-section-cta:focus,
.hr-section-cta:focus-visible {
	color: var(--hr-white);
	background: var(--hr-green-dark);
	text-decoration: none;
	transform: translateY(-1px);
}

.hr-section-cta__arrow {
	width: 0.5625rem;
	height: 1.1875rem;
	filter: none;
}

.hr-front-events {
	position: relative;
	overflow: clip;
	background: var(--hr-white);
	border-top: 0;
}

.hr-front-events > .hr-container {
	position: relative;
}

.hr-front-events > .hr-container::before {
	position: absolute;
	bottom: 0;
	left: clamp(-12.5rem, -15.625vw, -8.5rem);
	width: clamp(28rem, 42.8vw, 34.25rem);
	aspect-ratio: 548 / 375.686;
	background: url("../images/events-illustration-desktop.png") center / contain no-repeat;
	content: "";
	pointer-events: none;
}

.hr-front-events .hr-section-heading {
	padding-top: 0;
	border-top: 0;
}

.hr-front-events .hr-block {
	position: relative;
	z-index: 1;
	padding-left: clamp(0rem, 24vw, 19rem);
}

.hr-card-grid--events {
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.hr-card--event {
	position: relative;
	padding-left: var(--hr-space-m);
	border-left: 1px solid var(--hr-line);
}

.hr-card--event .hr-card__date {
	color: var(--hr-black);
	font-family: var(--hr-display);
	font-size: var(--hr-step-1);
	font-weight: 600;
	line-height: 1.3;
}

.hr-card--event:first-child {
	border-left: 0;
}

.hr-card--event .hr-card__media {
	aspect-ratio: 1 / 1.08;
}

/* Quick links */
.hr-quick-links {
	position: relative;
	overflow: clip;
	border-top: 0;
}

.hr-quick-links > .hr-container {
	position: relative;
}

.hr-quick-links__grid {
	position: relative;
	display: grid;
	grid-template-columns: minmax(13rem, 0.85fr) minmax(18rem, 2fr) minmax(9rem, 0.8fr);
	align-items: center;
	gap: var(--hr-space-l);
}

.hr-quick-links__nav {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: var(--hr-space-m);
}

.hr-quick-links__nav a {
	display: flex;
	min-height: 3rem;
	align-items: center;
	gap: 0.75rem;
	color: var(--hr-black);
	font-family: var(--hr-display);
	font-size: var(--hr-step-1);
	font-weight: 600;
	line-height: 1.3;
	text-decoration: none;
}

.hr-quick-links__nav a:hover {
	color: var(--hr-green-dark);
	text-decoration: underline;
}

.hr-quick-links__nav .hr-icon {
	width: 3rem;
	height: 3rem;
}

.hr-quick-links__icon {
	display: grid;
	width: 3rem;
	height: 3rem;
	flex: 0 0 auto;
	place-items: center;
}

.hr-quick-links__icon--ring {
	border: 1px solid var(--hr-green);
	border-radius: 50%;
}

.hr-quick-links__icon--ring .hr-icon {
	width: 1.65rem;
	height: 1.65rem;
}

.hr-quick-links__newsletter {
	display: none;
}

.hr-quick-links__illustration {
	z-index: 0;
	width: clamp(28rem, 40.3vw, 32.25rem);
	max-width: none;
	transform: translateX(-2rem);
}

@media (min-width: 74.01rem) {
	/* Homepage desktop frames: exact 1280 px anchors from Figma, expressed as
	 * fluid clamps so larger canvases gain breathing room without breaking the
	 * composition. Tablet and mobile keep their dedicated layouts below. */
	.hradistko-front-page .hr-hero__content {
		padding-bottom: clamp(2.4375rem, 3.046875vw, 3.0625rem);
	}

	.hradistko-front-page .hr-front-section {
		height: clamp(32.9375rem, 41.171875vw, 41.1875rem);
		padding-bottom: 0;
	}

	.hradistko-front-page .hr-block--latest-posts {
		height: 100%;
		padding-bottom: 0;
	}

	.hradistko-front-page .hr-block--latest-posts .hr-section-heading {
		padding-top: clamp(2.0625rem, 2.578125vw, 2.578125rem);
		margin-bottom: clamp(1.7075rem, 2.134375vw, 2.134375rem);
	}

	.hradistko-front-page :is(.hr-block--latest-posts, .hr-front-events, .hr-quick-links) .hr-section-heading h2 {
		font-size: var(--hr-step-2);
		line-height: 1.25;
	}

	.hradistko-front-page .hr-block--latest-posts .hr-card-grid,
	.hradistko-front-page .hr-block--latest-posts .hr-card {
		height: clamp(24.3125rem, 30.390625vw, 30.390625rem);
		min-height: 0;
	}

	.hradistko-front-page .hr-block--latest-posts .hr-card:nth-child(n + 4) {
		display: none;
	}

	.hradistko-front-page .hr-block--latest-posts .hr-section-cta-row {
		bottom: clamp(1.6875rem, 2.109375vw, 2.109375rem);
	}

	.hradistko-front-page .hr-block--latest-posts::after {
		top: 3.737407rem;
		left: 60.375rem;
		width: 16.625rem;
		height: 20.75rem;
		background-image: url("../images/news-illustration-desktop.png");
	}

	.hradistko-front-page .hr-front-events {
		box-sizing: border-box;
		height: clamp(35rem, 43.75vw, 43.75rem);
		padding-block: clamp(5.0625rem, 6.328125vw, 6.328125rem) clamp(1.8125rem, 2.265625vw, 2.265625rem);
	}

	.hradistko-front-page .hr-front-events .hr-block {
		padding-left: clamp(25.3125rem, 31.640625vw, 31.640625rem);
	}

	.hradistko-front-page .hr-front-events > .hr-container::before {
		top: 1.791077rem;
		right: auto;
		bottom: auto;
		left: -3rem;
		width: 24.75rem;
		height: 23.5rem;
		background-image: url("../images/events-illustration-desktop.png");
	}

	.hradistko-front-page .hr-front-events .hr-section-heading {
		margin-bottom: clamp(2.5rem, 3.125vw, 3.125rem);
	}

	.hradistko-front-page .hr-front-events .hr-card-grid {
		height: clamp(16.875rem, 21.09375vw, 21.09375rem);
		grid-template-columns: repeat(4, 10.625rem);
		gap: 2rem;
	}

	.hradistko-front-page .hr-front-events .hr-card--event {
		height: 17.125rem;
		min-height: 17.125rem;
	}

	.hradistko-front-page .hr-front-events .hr-card__media {
		width: 10.625rem;
		height: 10.625rem;
		min-height: 10.625rem;
		aspect-ratio: 1;
	}

	.hradistko-front-page .hr-front-events .hr-section-cta-row {
		margin-top: clamp(3.25rem, 4.0625vw, 4.0625rem);
	}

	.hradistko-front-page .hr-quick-links {
		box-sizing: border-box;
		height: clamp(21.25rem, 26.5625vw, 26.5625rem);
		min-height: clamp(21.25rem, 26.5625vw, 26.5625rem);
		padding: 0;
	}

	.hradistko-front-page .hr-quick-links .hr-section-heading {
		padding-top: clamp(3.125rem, 3.90625vw, 3.90625rem);
		margin-top: clamp(2rem, 2.5vw, 2.5rem);
		margin-bottom: clamp(2.75rem, 3.4375vw, 3.4375rem);
	}

	.hradistko-front-page .hr-quick-links__grid {
		height: clamp(7.75rem, 9.6875vw, 9.6875rem);
		grid-template-columns: 19.5rem 36.9375rem;
		column-gap: 2rem;
		align-items: stretch;
	}

	.hradistko-front-page .hr-block--active-alert {
		width: 19.5rem;
	}

	.hradistko-front-page .hr-quick-links__nav {
		width: auto;
		grid-template-columns: repeat(2, max-content);
		column-gap: 2rem;
	}

	.hradistko-front-page .hr-quick-links__nav a {
		width: max-content;
		max-width: 100%;
	}

	.hradistko-front-page .hr-quick-links__nav a > span:last-child {
		white-space: nowrap;
	}

	.hradistko-front-page .hr-quick-links__illustration {
		position: absolute;
		top: 4.3125rem;
		right: -3rem;
		width: 22rem;
		height: 16.9375rem;
		transform: none;
	}

	.hradistko-front-page .hr-home-contact {
		position: relative;
		box-sizing: border-box;
		height: clamp(38.5625rem, 48.203125vw, 48.203125rem);
		padding-block: clamp(5.125rem, 6.40625vw, 6.40625rem) 0;
		border-top: 0;
	}

	.hradistko-front-page .hr-home-contact__grid {
		grid-template-columns: 272fr 132fr 273fr 134fr 373fr;
		gap: 0;
	}

	.hradistko-front-page .hr-home-contact__grid > :nth-child(1) { grid-column: 1; }
	.hradistko-front-page .hr-home-contact__grid > :nth-child(2) { grid-column: 3; }
	.hradistko-front-page .hr-home-contact__grid > :nth-child(3) { grid-column: 5; }

	.hradistko-front-page .hr-home-contact .hr-form {
		gap: 0.75rem;
		margin-top: 2.5625rem;
	}

	.hradistko-front-page .hr-home-contact .hr-field input {
		height: 2.75rem;
		min-height: 2.75rem;
	}

	.hradistko-front-page .hr-home-contact .hr-field textarea {
		height: 9.25rem;
		min-height: 9.25rem;
	}

	.hradistko-front-page .hr-home-contact .hr-form__privacy {
		font-size: var(--hr-step--2);
		line-height: 1.3333;
	}

	.hradistko-front-page .hr-home-contact .hr-form__submit {
		min-width: 11.625rem;
		justify-self: end;
		margin-top: 2.3125rem;
	}

	.hradistko-front-page .hr-newsletter-preview__cover,
	.hradistko-front-page .hr-newsletter-preview__cover img {
		height: 24.151918rem;
	}

	.hradistko-front-page .hr-newsletter-preview__cover img {
		object-fit: cover;
		object-position: center;
	}

	.hradistko-front-page .hr-home-contact::before {
		position: absolute;
		top: clamp(2rem, 2.5vw, 2.5rem);
		left: max(var(--hr-gutter), calc((100vw - var(--hr-container)) / 2));
		width: min(calc(100vw - 2 * var(--hr-gutter)), var(--hr-container));
		height: 1px;
		background: var(--hr-line);
		content: "";
	}

	.hradistko-front-page .site-footer {
		margin-top: 0;
	}

	.hr-contacts__overview {
		grid-template-columns: 17rem 2.1875rem 23.3125rem 8.25rem minmax(15rem, 1fr);
		gap: 0;
	}

	.hr-contacts__overview > .hr-contacts__column:first-child {
		grid-column: 1;
	}

	.hr-contacts__overview > .hr-contacts__column:nth-child(2) {
		grid-column: 3;
	}

	.hr-contacts__overview > .hr-contacts__map {
		grid-column: 5;
	}

	.hradistko-site:not(.hradistko-front-page) .site-header__inner,
	.hradistko-front-page .site-header.is-sticky-visible .site-header__inner {
		height: 5rem;
		min-height: 5rem;
	}

	.hradistko-site:not(.hradistko-front-page) .site-logo,
	.hradistko-front-page .site-header.is-sticky-visible .site-logo {
		width: 3rem;
		padding: 0;
		margin: 0;
	}

	.hradistko-site:not(.hradistko-front-page) .header-search-control,
	.hradistko-front-page .site-header.is-sticky-visible .header-search-control {
		width: 11.625rem;
		height: 2.5rem;
	}

	/* Neue Haas sits optically low in the compact 40px control when it keeps
	 * the roomier hero padding. Shift only the sticky field, not the hero state. */
	.hradistko-site:not(.hradistko-front-page) .header-search-field,
	.hradistko-site:not(.hradistko-front-page) .header-search-field:hover,
	.hradistko-site:not(.hradistko-front-page) .header-search-field:focus,
	.hradistko-front-page .site-header.is-sticky-visible .header-search-field,
	.hradistko-front-page .site-header.is-sticky-visible .header-search-field:hover,
	.hradistko-front-page .site-header.is-sticky-visible .header-search-field:focus {
		min-height: 0 !important;
		padding: 0 0.15rem 0 0.9rem !important;
	}

	.hradistko-site:not(.hradistko-front-page) .header-search-submit,
	.hradistko-front-page .site-header.is-sticky-visible .header-search-submit {
		height: 100%;
	}

	.hr-block--latest-posts {
		padding-right: 0;
	}

	.hr-block--latest-posts .hr-card-grid {
		width: 55rem;
		grid-template-columns: repeat(3, 17rem);
		column-gap: 2rem;
	}

	.hr-block--latest-posts .hr-card {
		position: relative;
	}

	.hr-block--latest-posts .hr-card:not(:first-child)::before {
		position: absolute;
		top: 0;
		bottom: 0;
		left: -1rem;
		width: 1px;
		background: var(--hr-line);
		content: "";
	}

	.hr-block--latest-posts .hr-card__media {
		aspect-ratio: 8 / 5;
	}

	.hr-block--latest-posts::after {
		top: 4.65rem;
		right: auto;
		bottom: auto;
		/* Keep the illustration attached to the cards as the outer container grows. */
		left: 58rem;
		width: 28.51rem;
		height: 20.412rem;
		aspect-ratio: auto;
	}

	.hr-block--latest-posts .hr-section-cta-row {
		position: absolute;
		right: 0;
		bottom: 3.75rem;
		width: auto;
		margin-top: 0;
	}

	.hr-front-events .hr-card--event {
		position: relative;
		border-left: 0;
	}

	.hr-front-events .hr-card--event:not(:first-child)::before {
		position: absolute;
		top: 0;
		bottom: 0;
		left: calc(-0.5 * var(--hr-space-l));
		width: 1px;
		background: var(--hr-line);
		content: "";
	}

	.hr-quick-links {
		min-height: 26.875rem;
		padding-block: 0;
	}

	.hr-quick-links__grid {
		position: static;
		grid-template-columns: 18rem minmax(0, 1fr) 17rem;
	}

	.hr-quick-links__illustration {
		position: absolute;
		top: 1.5rem;
		right: -18rem;
		width: 32.25rem;
		transform: none;
	}
}

@media (min-width: 120rem) {
	.hr-block--latest-posts .hr-card-grid {
		width: 74rem;
		grid-template-columns: repeat(4, 17rem);
	}

	.hr-block--latest-posts .hr-card:nth-child(4) {
		display: flex;
	}

	.hr-block--latest-posts::after {
		left: 77rem;
	}
}

.hr-block--active-alert {
	padding: var(--hr-space-m);
	border: 1px solid var(--hr-green);
	border-radius: var(--hr-radius);
}

.hr-block--active-alert h2 {
	font-size: var(--hr-step-1);
}

.hr-alert__layout {
	display: grid;
	grid-template-columns: 2.25rem minmax(0, 1fr);
	align-items: start;
	gap: 0.75rem;
}

.hr-alert__icon {
	width: 2.25rem;
	height: 2.25rem;
}

.hr-alert__content {
	font-size: var(--hr-step-0);
	line-height: 1.375;
}

/* Contact area and forms */
.hr-home-contact {
	border-top: 1px solid var(--hr-line);
}

.hr-home-contact__grid {
	display: grid;
	grid-template-columns: minmax(12rem, 0.8fr) minmax(15rem, 0.9fr) minmax(18rem, 1.2fr);
	align-items: start;
	gap: var(--hr-space-xl);
}

.hr-home-contact h2 {
	font-size: var(--hr-step-2);
}

.hr-newsletter-preview img {
	display: block;
	width: min(100%, 17rem);
	margin-bottom: var(--hr-space-s);
	border: 1px solid var(--hr-line);
}

.hr-newsletter-preview__cover {
	display: block;
	width: min(100%, 17rem);
	text-decoration: none;
}

.hr-newsletter-preview__cover img {
	width: 100%;
}

.hr-newsletter-preview > .hr-text-link {
	display: inline-flex;
	margin-top: 1.5rem;
}

.hr-hours {
	margin: 0;
}

.hr-hours__row {
	padding-block: var(--hr-space-s);
	border-bottom: 1px solid var(--hr-line);
}

.hr-hours dt {
	font-family: var(--hr-display);
	font-size: var(--hr-step-1);
	font-weight: 600;
}

.hr-hours dd {
	margin: 0.25rem 0 0;
}

.hr-form {
	display: grid;
	gap: var(--hr-space-s);
	margin-top: var(--hr-space-l);
}

.hr-field {
	display: grid;
	gap: 0.3rem;
}

.hr-field label {
	font-family: var(--hr-display);
	font-size: var(--hr-step-0);
	font-weight: 600;
	line-height: 1.25;
}

.hr-field input,
.hr-field textarea,
.hr-field select,
.newsletter-form input {
	width: 100%;
	min-height: 2.85rem;
	padding: 0.65rem 1rem;
	color: var(--hr-black);
	background: var(--hr-white);
	border: 1px solid var(--hr-green);
	border-radius: var(--hr-pill);
}

.hr-field textarea {
	min-height: 9rem;
	border-radius: var(--hr-radius);
	resize: vertical;
}

.hradistko-site .hr-field :is(input, textarea, select),
.hradistko-site .hr-field :is(input, textarea, select):hover,
.hradistko-site .hr-field :is(input, textarea, select):focus,
.hradistko-site .hr-field :is(input, textarea, select):active {
	box-sizing: border-box;
	border: 1px solid var(--hr-green) !important;
	box-shadow: none;
}

.hr-field input::placeholder,
.hr-field textarea::placeholder {
	color: var(--hr-green-dark);
	font-family: var(--hr-display);
	font-weight: 600;
	opacity: 1;
}

.hr-form__submit {
	width: auto;
	justify-self: start;
	gap: 0.8125rem;
	padding-inline: 1.25rem 0.8125rem;
}

.hr-form__submit .hr-icon {
	width: 0.5625rem;
	height: 1.1875rem;
	filter: none;
}

.hr-field select {
	appearance: auto;
}

.hr-form__honeypot {
	position: absolute;
	left: -10000px;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip: rect(0 0 0 0);
	clip-path: inset(50%);
	opacity: 0;
	pointer-events: none;
	white-space: nowrap;
}

.hr-form__required,
.hr-form__privacy {
	margin: 0;
	font-size: var(--hr-step--1);
}

.hr-form__privacy a {
	color: var(--hr-green-dark);
	font-family: var(--hr-display);
	font-weight: 600;
}

.hr-form-status {
	padding: var(--hr-space-s);
	border-left: 0.35rem solid currentColor;
}

.hr-form-status--success {
	color: var(--hr-success);
	background: #eef8f1;
}

.hr-form-status--error {
	color: var(--hr-error);
	background: #fff0f0;
}

/* Subpages */
.hr-subpage {
	padding-block: var(--hr-space-l) var(--hr-space-2xl);
}

.hr-breadcrumbs {
	margin-bottom: clamp(1.25rem, 2.25vw, 2rem);
	font-size: var(--hr-step--1);
	line-height: 1.3333;
}

.hr-breadcrumbs ol {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0;
	padding: 0;
	margin: 0;
	list-style: none;
}

.hr-breadcrumbs li {
	display: inline-flex;
	align-items: center;
}

.hr-breadcrumbs a,
.hr-breadcrumbs [aria-current="page"] {
	color: var(--hr-green);
	text-decoration: none;
}

.hr-breadcrumbs a:hover,
.hr-breadcrumbs a:focus-visible {
	color: var(--hr-green-deep);
	text-decoration: underline;
}

.hr-breadcrumbs li:not(:last-child)::after {
	display: inline-block;
	width: 0.375rem;
	height: 0.8125rem;
	margin-inline: 0.75rem;
	background: url("../icons/icon-breadcrumb-arrow.svg") center / contain no-repeat;
	content: "";
}

.hr-page__header {
	position: relative;
	display: grid;
	min-height: auto;
	grid-template-columns: 1fr;
	align-items: start;
	gap: var(--hr-space-l);
	margin-bottom: var(--hr-space-l);
}

.hr-page__header h1,
.hr-archive-header h1 {
	margin: 0;
	font-size: var(--hr-step-3);
	line-height: 1.25;
}

.hr-archive-header h1 {
	max-width: 18ch;
}

.hr-page__header h1 {
	position: relative;
	z-index: 1;
	max-width: none;
}

.hr-page__illustration {
	position: absolute;
	top: clamp(4.5rem, 8vw, 7rem);
	right: 0;
	z-index: 0;
	width: min(39vw, 31rem);
	opacity: 0.92;
}

.hr-page {
	position: relative;
	min-height: clamp(28rem, 42vw, 38rem);
	overflow: clip;
	isolation: isolate;
}

.hr-entry-content {
	position: relative;
	z-index: 1;
	max-width: min(65%, var(--hr-reading));
}

.hr-entry-content > :where(h2, h3, h4) {
	margin-top: 1.65em;
}

.hr-entry-content > :where(p, ul, ol, blockquote) {
	max-width: 70ch;
}

.hr-entry-content .alignwide,
.hr-entry-content .alignfull {
	width: min(100vw - (2 * var(--hr-gutter)), var(--hr-container));
	max-width: none;
	margin-inline: 0;
}

.hr-page:has(.hr-block--people-grid) .hr-page__illustration {
	display: none;
}

.hr-page:has(.hr-block--people-grid) .hr-entry-content {
	max-width: none;
}

.hr-page .hr-block--people-grid .hr-people-grid {
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: clamp(3rem, 4vw, 3.125rem) clamp(2rem, 2.7vw, 2.125rem);
}

.hr-page-directory {
	position: relative;
	z-index: 2;
	width: min(58vw, 42rem) !important;
	margin-top: var(--hr-space-xl);
}

.hr-page-directory h2 {
	margin-bottom: var(--hr-space-l);
	font-size: var(--hr-step-2);
}

.hr-page-directory ul {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 0.75rem;
	padding: 0;
	margin: 0;
	list-style: none;
}

.hr-page-directory a {
	display: flex;
	min-height: 4.25rem;
	align-items: center;
	justify-content: space-between;
	gap: var(--hr-space-m);
	padding: 0.85rem 1rem;
	color: var(--hr-black);
	background: rgba(255, 255, 255, 0.94);
	border: 1px solid rgba(64, 128, 72, 0.32);
	border-radius: 0.7rem;
	font-family: var(--hr-display);
	font-weight: 600;
	text-decoration: none;
}

.hr-page-directory a:hover,
.hr-page-directory a:focus-visible {
	color: var(--hr-green-deep);
	background: var(--hr-sand);
	border-color: var(--hr-green);
	text-decoration: underline;
	text-underline-offset: 0.25rem;
}

.hr-page-directory__arrow {
	width: 0.6rem;
	height: 0.6rem;
	flex: 0 0 auto;
	border-top: 2px solid var(--hr-green);
	border-right: 2px solid var(--hr-green);
	transform: rotate(45deg);
}

.hr-page-directory a.hr-external-link .hr-page-directory__arrow {
	display: none;
}

.hr-page-directory a.hr-external-link::after {
	width: 1rem;
	height: 1rem;
	flex: 0 0 auto;
	margin-inline-start: auto;
}

.is-style-lead {
	max-width: 58ch;
	font-size: var(--hr-step-1);
	line-height: 1.5;
}

.is-style-outlined {
	padding: var(--hr-space-l);
	border: 1px solid var(--hr-green);
	border-radius: var(--hr-radius);
}

.hr-archive-header {
	padding-block: 0 clamp(1.75rem, 3vw, 2.5rem);
}

.hr-card-grid--archive {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.hr-card-grid--news.hr-card-grid--archive {
	grid-template-columns: repeat(4, minmax(0, 1fr));
	column-gap: 2rem;
	row-gap: 3rem;
}

.hr-card-grid--news.hr-card-grid--archive .hr-card__media {
	aspect-ratio: 8 / 5;
}

.hr-card-grid--news.hr-card-grid--archive .hr-card__title {
	font-size: var(--hr-step-1);
	line-height: 1.3;
}

.hr-card-grid--news.hr-card-grid--archive .hr-card__excerpt {
	margin-bottom: 0.75rem;
	font-size: var(--hr-step-0);
	line-height: 1.375;
}

.hr-card-grid--news.hr-card-grid--archive .hr-card__meta {
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	gap: 0.75rem;
	font-size: var(--hr-step--1);
	line-height: 1.3333;
}

.hr-card__category {
	font-family: var(--hr-display);
	font-weight: 600;
	text-align: right;
}

.hr-card-grid--news.hr-card-grid--archive > .hr-card {
	position: relative;
}

.hr-card-grid--news.hr-card-grid--archive > .hr-card:not(:nth-child(4n + 1))::before {
	position: absolute;
	top: 0;
	bottom: 0;
	left: -1rem;
	width: 1px;
	background: var(--hr-line);
	content: "";
}

.hr-card-grid--events.hr-card-grid--archive {
	grid-template-columns: repeat(auto-fit, minmax(min(100%, 18rem), 22rem));
	justify-content: start;
	gap: var(--hr-space-xl) var(--hr-space-l);
}

.hr-card-grid--archive .hr-card--event {
	display: flex;
	padding: 0 0 var(--hr-space-l);
	border-right: 0;
	border-bottom: 1px solid var(--hr-line);
	border-left: 0;
	flex-direction: column;
}

.hr-card-grid--archive .hr-card--event .hr-card__media {
	width: 100%;
	aspect-ratio: 4 / 3;
}

.hr-card-grid--archive .hr-card--event .hr-card__title {
	font-size: var(--hr-step-1);
}

.hr-card__place {
	margin-bottom: var(--hr-space-xs);
	font-weight: 600;
}

.hr-card-grid--archive .hr-card__more {
	margin-top: auto;
}

/* Newsletter archive: the editorial introduction stays data-driven while the
 * PDF cards remain a fluid CPT grid below the confirmed Figma composition. */
.hr-newsletter-archive__intro {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(24rem, 1fr);
	align-items: start;
	gap: clamp(3rem, 7vw, 7rem);
}

.hr-newsletter-archive__copy {
	max-width: 35rem;
}

.hr-newsletter-archive__copy h1 {
	margin: 0 0 1.5rem;
}

.hr-newsletter-archive__copy h2 {
	margin: 3rem 0 1.25rem;
	font-size: var(--hr-step-0);
	line-height: 1.3;
}

.hr-newsletter-archive__copy p {
	margin: 0 0 1.25rem;
}

.hr-newsletter-archive__illustration {
	display: block;
	width: 100%;
	height: auto;
	margin-top: 1rem;
}

.hradistko-site .hr-newsletter-archive__facebook {
	display: inline-flex;
	width: auto;
	min-height: 3rem;
	align-items: center;
	gap: 0.75rem;
	margin-top: 0.5rem;
	padding-inline: 1rem 1.25rem;
}

.hr-newsletter-archive__facebook .hr-icon {
	width: 1.5rem;
	height: 1.5rem;
}

.hr-newsletter-archive__downloads {
	margin: clamp(3.5rem, 6vw, 5rem) 0 2rem;
	font-size: var(--hr-step-0);
	line-height: 1.3;
}

.hr-card-grid--newsletters {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 3rem 2rem;
}

.hr-card--newsletter {
	display: flex;
	min-width: 0;
	align-items: flex-start;
	flex-direction: column;
}

.hr-card--newsletter > img {
	display: block;
	width: 100%;
	height: auto;
	aspect-ratio: 3 / 4;
	object-fit: cover;
}

.hr-card--newsletter .hr-card__title {
	margin: 1rem 0 0.25rem;
	font-size: var(--hr-step-0);
	line-height: 1.3;
}

.hr-card--newsletter > p {
	margin: 0 0 1rem;
}

.hr-card--newsletter .hr-button {
	margin-top: auto;
}

/* Dedicated contacts layout */
.hr-contacts > h1 {
	margin-bottom: 1.75rem;
	font-size: var(--hr-step-3);
	line-height: 1.25;
}

.hradistko-site .hr-contacts {
	padding-top: 2rem;
}

.hr-contacts__overview {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(15rem, 0.9fr);
	align-items: start;
	gap: clamp(2rem, 5vw, 5rem);
}

.hr-contacts__overview h2 {
	font-size: var(--hr-step-1);
	line-height: 1.3;
}

.hr-contacts__people > h2,
.hr-contacts__facts > h2,
.hr-contacts__form > h2 {
	font-size: var(--hr-step-2);
	line-height: 1.25;
}

.hr-contacts__column address {
	margin-bottom: var(--hr-space-l);
	font-style: normal;
}

.hr-contact-list {
	display: grid;
	gap: 0;
	margin: 0 0 var(--hr-space-l);
}

.hr-contact-list > div {
	display: grid;
	gap: 0.2rem;
	padding-block: 0.75rem;
	border-bottom: 1px solid var(--hr-line);
}

.hr-contact-list > div:first-child {
	padding-top: 0;
}

.hr-contact-list dt {
	font-family: var(--hr-display);
	font-size: var(--hr-step-0);
	font-weight: 600;
	line-height: 1.3;
}

.hr-contact-list dd {
	margin: 0;
}

.hr-contact-list address {
	margin: 0;
}

.hr-hours--compact .hr-hours__row {
	padding-block: 0.55rem;
}

.hr-contact-list dd.hr-phone-links {
	display: flex;
	flex-flow: row wrap;
	gap: 0 0.25rem;
}

.hr-contact-list .hr-hours--compact .hr-hours__row {
	grid-template-columns: 4rem minmax(0, 1fr);
	padding-block: 0.25rem;
	font-size: var(--hr-step--2);
	line-height: 1.35;
}

.hr-contacts__map img {
	display: block;
	width: min(100%, 24rem);
	margin-block: var(--hr-space-m);
}

.hr-contacts__map-link {
	display: inline-flex;
	min-height: 2.75rem;
	align-items: center;
	color: var(--hr-green-dark);
}

.hr-contacts__people,
.hr-contacts__facts,
.hr-contacts__form {
	margin-top: clamp(4rem, 8vw, 7rem);
}

.hr-contacts__people > h2,
.hr-contacts__facts > h2 {
	margin-bottom: var(--hr-space-xl);
}

.hr-contacts-page .hr-people-grid {
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: clamp(2.5rem, 5vw, 4.75rem) clamp(1rem, 3vw, 2.5rem);
}

.hr-contacts-page .hr-person {
	padding-bottom: var(--hr-space-m);
}

.hr-contacts-page .hr-person__photo {
	width: min(10.625rem, 100%);
	aspect-ratio: 1 / 1;
	object-position: center 24%;
}

.hr-contacts__facts-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: var(--hr-space-l);
}

.hr-contacts__facts-grid div {
	display: grid;
	gap: 0.35rem;
	padding-top: var(--hr-space-m);
	border-top: 1px solid var(--hr-line);
}

.hr-contacts__facts-grid strong {
	color: var(--hr-green-dark);
	font-family: var(--hr-display);
	font-size: var(--hr-step-3);
	line-height: 1;
}

.hr-contacts__facts-grid span {
	max-width: 19ch;
}

.hr-contacts__form {
	max-width: 48rem;
}

.hr-single__layout {
	display: grid;
	grid-template-columns: minmax(0, 1.45fr) minmax(18rem, 0.85fr);
	align-items: start;
	gap: var(--hr-space-xl);
}

.hr-single__header {
	grid-column: 2;
	grid-row: 1;
	position: static;
}

.hr-single__main {
	grid-column: 1;
	grid-row: 1;
}

.hr-single__header h1 {
	font-size: var(--hr-step-3);
	line-height: 1.25;
}

.hr-single__image {
	display: block;
	width: 100%;
	margin-bottom: var(--hr-space-l);
}

.hr-single__meta,
.hr-single__eyebrow {
	color: var(--hr-black);
	font-size: var(--hr-step-0);
	line-height: 1.375;
}

.hr-single__meta {
	display: flex;
	flex-wrap: wrap;
	align-items: baseline;
	gap: 0.5rem 2rem;
}

.hr-single__meta time {
	font-family: var(--hr-body);
	font-weight: 400;
}

.hr-single__category {
	font-family: var(--hr-display);
	font-weight: 600;
}

.hr-single__lead {
	font-size: var(--hr-step-1);
}

.hr-single--event {
	max-width: var(--hr-reading);
}

.hr-single--event .hr-single__header {
	position: static;
	top: auto;
}

.hr-event-meta {
	display: grid;
	gap: var(--hr-space-s);
	margin-block: var(--hr-space-l);
}

.hr-event-meta div {
	display: grid;
	grid-template-columns: 7rem 1fr;
	gap: 1rem;
	padding-bottom: var(--hr-space-xs);
	border-bottom: 1px solid var(--hr-line);
}

.hr-event-meta dt {
	font-family: var(--hr-display);
	font-weight: 600;
}

.hr-event-meta dd {
	margin: 0;
}

/* Documents */
.hr-file-list {
	display: grid;
	gap: 0;
	padding: 0;
	margin: var(--hr-space-l) 0;
	list-style: none;
}

.hr-file {
	display: flex;
	min-height: 3.5rem;
	align-items: center;
	justify-content: space-between;
	gap: var(--hr-space-m);
	padding-block: var(--hr-space-s);
	border-bottom: 1px solid var(--hr-line);
}

.hr-file__link {
	font-family: var(--hr-display);
	font-weight: 600;
}

.hr-file__meta {
	display: block;
	margin-top: 0.2rem;
	color: #565d57;
	font-size: var(--hr-step--1);
}

.hr-file__alternative {
	flex: 0 0 auto;
	font-size: var(--hr-step--1);
}

/* People */
.hr-people-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(min(100%, 15rem), 1fr));
	gap: var(--hr-space-xl) var(--hr-space-l);
}

.hr-person {
	padding-bottom: var(--hr-space-m);
	border-bottom: 1px solid var(--hr-line);
}

.hr-person__photo {
	display: block;
	width: min(10.625rem, 100%);
	aspect-ratio: 1;
	margin-bottom: 1rem;
	object-fit: cover;
	object-position: center 24%;
}

.hr-person__photo--missing {
	display: grid;
	place-items: center;
	color: var(--hr-green-dark);
	background: var(--hr-cream);
}

.hr-person__photo--missing svg {
	width: 3.75rem;
	height: 3.75rem;
	fill: none;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 1.5;
}

.hr-person__name {
	margin-bottom: 0.25rem;
	font-family: var(--hr-display);
	font-size: var(--hr-step-1);
	font-weight: 600;
	line-height: 1.3;
}

.hr-person__position {
	margin-bottom: 0.75rem;
	font-family: var(--hr-body);
	font-size: var(--hr-step-0);
	line-height: 1.375;
}

.hr-person p {
	margin-bottom: 0.35rem;
}

.hr-person a {
	overflow-wrap: anywhere;
}

.hr-phone-links {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 0.15rem;
}

/* Tables and embedded content */
.wp-block-table {
	max-width: 100%;
	overflow-x: auto;
	overscroll-behavior-inline: contain;
}

table {
	width: 100%;
	border-collapse: collapse;
}

th,
td {
	padding: 0.8rem;
	border-bottom: 1px solid var(--hr-line);
	text-align: left;
	vertical-align: top;
}

th {
	color: var(--hr-white);
	background: var(--hr-green-dark);
	font-family: var(--hr-display);
}

iframe {
	max-width: 100%;
}

/* Footer */
.site-footer {
	padding-block: var(--hr-space-xl);
	color: var(--hr-white);
	background: var(--hr-green);
}

.site-footer a,
.site-footer h2,
.site-footer strong {
	color: var(--hr-white);
}

.site-footer a {
	text-decoration-line: none;
	text-decoration-color: currentColor;
	text-decoration-style: solid;
	text-decoration-thickness: 0.08em;
	text-underline-offset: 0.2em;
	transition: none !important;
}

.site-footer a:hover,
.site-footer a:focus-visible {
	text-decoration-line: underline;
	text-decoration-thickness: 0.08em;
	text-underline-offset: 0.2em;
}

.site-footer__grid {
	display: grid;
	grid-template-columns: 1.1fr 1fr 1fr 1.2fr;
	gap: var(--hr-space-l);
}

.site-footer__title {
	margin: 0;
	font-family: var(--hr-display);
	font-size: var(--hr-step-4);
	font-weight: 600;
	line-height: 1.1;
}

.site-footer h2 {
	font-size: var(--hr-step-1);
	line-height: 1.3;
}

.site-footer__legal {
	margin-top: var(--hr-space-xl);
	font-size: var(--hr-step--2);
}

.site-footer address {
	font-style: normal;
}

.site-footer__office-name,
.site-footer__contact-value {
	font-family: var(--hr-body);
	font-weight: 400;
}

.site-footer__contact-label {
	font-family: var(--hr-display);
	font-weight: 600;
}

.site-footer__phones {
	display: grid;
	grid-template-columns: auto minmax(0, 1fr);
	gap: 0.35rem;
}

.site-footer__phone-links {
	display: flex;
	align-items: flex-start;
	flex-direction: column;
}

.site-footer__map img {
	display: block;
	width: min(100%, 15rem);
	aspect-ratio: 247 / 169;
	margin-block: var(--hr-space-s);
	filter: brightness(0) invert(1);
	object-fit: cover;
	object-position: center 62%;
}

.site-footer__map .hr-icon {
	display: inline-block;
	width: 1.3rem;
	height: 1.3rem;
	filter: brightness(0) invert(1);
}

.site-footer__map > a {
	display: inline-flex;
	align-items: center;
	gap: 0.28rem;
	font-family: var(--hr-display);
	font-size: var(--hr-step--1);
	font-weight: 600;
	line-height: 1.3333;
}

.site-footer__contact > a,
.site-footer__newsletter > a {
	font-family: var(--hr-display);
	font-size: var(--hr-step--1);
	font-weight: 600;
	line-height: 1.3333;
}

.footer-utility-menu {
	padding: 0;
	margin: 0;
	list-style: none;
	font-size: var(--hr-step--2);
	line-height: 1.3333;
}

.newsletter-form {
	position: relative;
	display: flex;
	margin-bottom: var(--hr-space-s);
}

.hradistko-site .site-footer .newsletter-form input,
.hradistko-site .site-footer .newsletter-form input:hover,
.hradistko-site .site-footer .newsletter-form input:focus {
	box-sizing: border-box;
	width: 100%;
	height: 3rem;
	min-height: 3rem;
	padding: .38rem 3.4rem .58rem 1rem;
	color: var(--hr-white);
	caret-color: var(--hr-white);
	background: transparent;
	border: 1px solid var(--hr-white);
	border-radius: var(--hr-pill);
	box-shadow: none;
	font-family: var(--hr-display);
	font-size: var(--hr-step-0);
	font-weight: 600;
	line-height: 1;
	-webkit-appearance: none;
	appearance: none;
}

.newsletter-form input::placeholder {
	color: rgba(255, 255, 255, 0.88);
	font-family: var(--hr-display);
	font-weight: 600;
	opacity: 1;
}

.newsletter-form button {
	position: absolute;
	top: 0;
	right: 0;
	display: grid;
	width: 3rem;
	height: 100%;
	padding: 0;
	place-items: center;
	background: transparent;
	border: 0;
	cursor: pointer;
}

.newsletter-form .hr-icon {
	filter: brightness(0) invert(1);
	transform: translateX(-2px);
}

/* Search, pagination and errors */
.hr-search-header {
	max-width: 52rem;
}

.hr-search-header__eyebrow {
	margin: 0 0 0.6rem;
	color: var(--hr-green);
	font-family: var(--hr-display);
	font-size: var(--hr-step--1);
	font-weight: 600;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.hr-search-header h1 {
	max-width: none;
}

.hr-search-header__count {
	margin: 0.85rem 0 0;
}

.hr-search-groups {
	display: grid;
	gap: clamp(3rem, 6vw, 5.5rem);
}

.hr-search-group__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	padding-bottom: 0.9rem;
	margin-bottom: clamp(1.25rem, 2.2vw, 2rem);
	border-bottom: 1px solid var(--hr-line);
}

.hr-search-group__header h2 {
	margin: 0;
	font-size: clamp(1.6rem, 1.28rem + 1.25vw, 2.45rem);
	line-height: 1.15;
}

.hr-search-group__header > span {
	display: grid;
	width: 2rem;
	height: 2rem;
	place-items: center;
	color: var(--hr-white);
	background: var(--hr-green);
	border-radius: 50%;
	font-family: var(--hr-display);
	font-size: var(--hr-step--1);
	font-weight: 600;
}

.hr-search-card-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: clamp(1.25rem, 2.5vw, 2rem);
}

.hr-search-card {
	display: flex;
	min-width: 0;
	flex-direction: column;
}

.hr-search-card__media {
	display: block;
	aspect-ratio: 8 / 5;
	overflow: hidden;
	background: var(--hr-sand);
}

.hr-search-card__media img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 240ms ease;
}

.hr-search-card:hover .hr-search-card__media img {
	transform: scale(1.025);
}

.hr-search-card__media--placeholder {
	background:
		url("../images/gate.png") center 58% / 54% auto no-repeat,
		var(--hr-sand);
}

.hr-search-card__body {
	display: flex;
	height: 100%;
	padding-top: 1rem;
	flex-direction: column;
}

.hr-search-card__meta {
	margin: 0 0 0.45rem;
	font-size: var(--hr-step--1);
}

.hr-search-card h3,
.hr-search-list h3 {
	margin: 0 0 0.55rem;
	font-size: var(--hr-step-1);
	line-height: 1.25;
}

.hr-search-card h3 a,
.hr-search-list h3 a {
	color: var(--hr-black);
	text-decoration: none;
}

.hr-search-card h3 a:hover,
.hr-search-card h3 a:focus-visible,
.hr-search-list h3 a:hover,
.hr-search-list h3 a:focus-visible {
	color: var(--hr-green-dark);
	text-decoration: underline;
}

.hr-search-card__body > p:not(.hr-search-card__meta),
.hr-search-list__item p {
	margin: 0;
	line-height: 1.5;
}

.hr-search-card__more {
	display: inline-flex;
	align-items: center;
	align-self: flex-start;
	gap: 0.75rem;
	margin-top: auto;
	padding-top: 1.2rem;
	color: var(--hr-green-dark);
	font-family: var(--hr-display);
	font-weight: 600;
	text-decoration: none;
}

.hr-search-card__more:hover,
.hr-search-card__more:focus-visible {
	text-decoration: underline;
}

.hr-search-arrow {
	display: block;
	width: 0.5625rem;
	height: 1.1875rem;
	background: url("../icons/icon-pagination-arrow.svg") center / contain no-repeat;
}

.hr-search-list {
	padding: 0;
	margin: 0;
	list-style: none;
}

.hr-search-list > li {
	border-bottom: 1px solid var(--hr-line);
}

.hr-search-list > li:first-child {
	border-top: 1px solid var(--hr-line);
}

.hr-search-list__item {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 3rem;
	align-items: center;
	gap: clamp(1rem, 3vw, 3rem);
	padding-block: clamp(1.15rem, 2.4vw, 1.8rem);
}

.hr-search-list__item > div {
	max-width: 62rem;
}

.hr-search-list__link {
	display: grid;
	width: 3rem;
	height: 3rem;
	place-items: center;
	border: 1px solid var(--hr-green);
	border-radius: 50%;
	transition: background-color 160ms ease;
}

.hr-search-list__link:hover,
.hr-search-list__link:focus-visible {
	background: var(--hr-sand);
}

.hr-search-empty {
	max-width: 46rem;
	padding: clamp(1.5rem, 4vw, 3rem);
	background: var(--hr-sand);
}

.hr-search-empty h2 {
	margin-top: 0;
}

.navigation.pagination {
	display: flex;
	justify-content: flex-end;
	margin-top: var(--hr-space-xl);
}

.nav-links {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: flex-end;
	gap: 0.25rem;
}

.page-numbers {
	display: grid;
	min-width: 2.5rem;
	min-height: 2.5rem;
	padding: 0.375rem;
	place-items: center;
	color: var(--hr-green);
	background: transparent;
	border: 0;
	border-radius: 50%;
	font-family: var(--hr-display);
	font-size: var(--hr-step-0);
	font-weight: 600;
	line-height: 1;
	text-decoration: none;
}

.page-numbers:hover,
.page-numbers:focus-visible {
	color: var(--hr-green-deep);
	background: var(--hr-sand);
	text-decoration: none;
}

.page-numbers.current {
	color: var(--hr-white);
	background: var(--hr-green);
}

.page-numbers.dots {
	color: var(--hr-green);
	background: transparent;
}

.hr-pagination-arrow {
	display: block;
	width: 0.5625rem;
	height: 0.9375rem;
	background: url("../icons/icon-pagination-arrow.svg") center / contain no-repeat;
}

.hr-pagination-arrow--prev {
	transform: rotate(180deg);
}

.hr-error-page {
	display: grid;
	min-height: clamp(36rem, 67vh, 48rem);
	align-items: center;
}

.hr-error-page__layout {
	display: grid;
	grid-template-columns: minmax(18rem, 0.85fr) minmax(24rem, 1.15fr);
	align-items: stretch;
	overflow: hidden;
	background: var(--hr-white);
	border: 1px solid var(--hr-line);
}

.hr-error-page__visual {
	position: relative;
	display: grid;
	min-height: 32rem;
	place-items: center;
	overflow: hidden;
	background: var(--hr-white);
	border-right: 1px solid var(--hr-line);
}

.hr-error-page__visual::after {
	position: absolute;
	right: -3rem;
	bottom: -1.25rem;
	width: min(74%, 19rem);
	aspect-ratio: 1;
	background: url("../images/gate.png") center / contain no-repeat;
	content: "";
	opacity: 0.64;
}

.hr-error-page__code {
	position: relative;
	z-index: 1;
	margin: 0;
	color: var(--hr-green);
	font-family: var(--hr-display);
	font-size: clamp(6.5rem, 12vw, 11rem);
	font-weight: 600;
	line-height: 0.8;
}

.hr-error-page__content {
	display: flex;
	padding: clamp(2rem, 5vw, 4.75rem);
	flex-direction: column;
	justify-content: center;
}

.hr-error-page__eyebrow {
	margin: 0 0 0.65rem;
	color: var(--hr-green);
	font-family: var(--hr-display);
	font-size: var(--hr-step--1);
	font-weight: 600;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.hr-error-page h1 {
	max-width: 13ch;
	margin: 0;
	font-size: clamp(2rem, 1.45rem + 2vw, 3.45rem);
	line-height: 1.08;
}

.hr-error-page__lead {
	max-width: 39rem;
	margin: 1.15rem 0 0;
	line-height: 1.55;
}

.hr-error-page__search {
	max-width: 38rem;
	margin-top: clamp(1.5rem, 3vw, 2.2rem);
}

.hr-error-search {
	position: relative;
}

.hr-error-search input {
	width: 100%;
	min-height: 3.25rem;
	padding: 0.7rem 3.5rem 0.7rem 1.2rem;
	color: var(--hr-black);
	background: var(--hr-white);
	border: 1.5px solid var(--hr-green);
	border-radius: var(--hr-pill);
	font-family: var(--hr-display);
	font-weight: 600;
}

.hr-error-search input::placeholder {
	color: var(--hr-green-dark);
	font-family: var(--hr-display);
	font-weight: 600;
	opacity: 1;
}

.hr-error-search button {
	position: absolute;
	top: 50%;
	right: 0.35rem;
	display: grid;
	width: 2.55rem;
	height: 2.55rem;
	padding: 0;
	place-items: center;
	background: transparent;
	border: 0;
	border-radius: 50%;
	cursor: pointer;
	transform: translateY(-50%);
}

.hr-error-search button:hover,
.hr-error-search button:focus-visible {
	background: var(--hr-sand);
}

.hr-error-search button .hr-icon {
	width: 1.35rem;
	height: 1.35rem;
	filter: none;
}

.hr-error-page__home {
	align-self: flex-start;
	gap: 0.8rem;
	margin-top: 1.25rem;
	padding-inline: 1.35rem 0.95rem;
}

.hr-error-page__home .hr-icon {
	width: 0.5625rem;
	height: 1.1875rem;
}

.hr-error-page__links {
	display: flex;
	flex-wrap: wrap;
	gap: 0.65rem 1.35rem;
	margin-top: 1.6rem;
}

.hr-error-page__links a {
	color: var(--hr-green-dark);
	font-family: var(--hr-display);
	font-weight: 600;
	text-decoration: none;
}

.hr-error-page__links a:hover,
.hr-error-page__links a:focus-visible {
	text-decoration: underline;
}

/* Responsive layout */
@media (max-width: 74rem) {
	:root {
		--hr-mobile-menu-top-zone: 8.75rem;
	}

	.primary-navigation--desktop {
		display: none;
	}

	.header-search-toggle {
		display: none;
	}

	.header-search-control {
		display: none;
	}

	.mobile-menu-toggle {
		display: inline-grid;
	}

	.site-header__inner {
		grid-template-columns: auto 1fr auto;
	}

	.site-header__actions {
		grid-column: 3;
	}

	.mobile-menu-panel {
		position: fixed;
		z-index: 1;
		inset: 0;
		display: flex;
		width: 100dvw;
		max-width: none;
		height: 100dvh;
		min-height: 100dvh;
		flex-direction: column;
		padding: var(--hr-mobile-menu-top-zone) max(1rem, env(safe-area-inset-right)) calc(6rem + env(safe-area-inset-bottom)) max(1rem, env(safe-area-inset-left));
		overflow-y: auto;
		color: var(--hr-white);
		background: var(--hr-green);
		box-shadow: none;
		overscroll-behavior: contain;
		scrollbar-width: none;
	}

	.mobile-menu-panel::-webkit-scrollbar {
		display: none;
		width: 0;
		height: 0;
	}

	.mobile-menu-panel[hidden] {
		display: none;
	}

	.mobile-menu-backdrop {
		display: none !important;
	}

	.mobile-menu-backdrop[hidden] {
		display: none;
	}

	.mobile-menu-panel__top {
		display: none;
	}

	.mobile-menu-close {
		display: none;
	}

	.mobile-menu-panel__logo {
		display: none;
	}

	body.mobile-menu-open .site-header {
		position: fixed;
		z-index: 1003;
		top: 0;
		left: 0;
		color: var(--hr-white);
		background: var(--hr-green);
		box-shadow: none;
		animation: none;
	}

	/* Opaque top shield for the complete logo/close-button zone. Menu items
	 * scroll underneath it, just as they do underneath the sticky search bar. */
	body.mobile-menu-open .site-header::before {
		position: absolute;
		z-index: 2;
		top: 0;
		right: 0;
		left: 0;
		height: calc(var(--hr-mobile-menu-top-zone) + env(safe-area-inset-top) - var(--hr-viewport-top-offset));
		background: var(--hr-green);
		box-shadow: 0 0.5rem 0 var(--hr-green);
		content: "";
		pointer-events: none;
	}

	body.mobile-menu-open.admin-bar .site-header {
		top: 32px;
	}

	body.mobile-menu-open .site-header__inner {
		position: relative;
		z-index: 3;
	}

	.primary-navigation--mobile {
		width: 100%;
		margin-block: auto;
	}

	.primary-navigation--mobile:not(:has(.sub-menu:not([hidden]))) {
		transform: translateY(-1.8125rem);
	}

	.primary-navigation--mobile > .primary-menu {
		display: grid;
		gap: 1rem;
	}

	body.mobile-menu-open .primary-navigation--mobile > .primary-menu > .menu-item {
		animation: hr-mobile-menu-item-in 320ms both cubic-bezier(.22, 1, .36, 1);
	}

	body.mobile-menu-open .primary-navigation--mobile > .primary-menu > .menu-item:nth-child(2) {
		animation-delay: 35ms;
	}

	body.mobile-menu-open .primary-navigation--mobile > .primary-menu > .menu-item:nth-child(3) {
		animation-delay: 70ms;
	}

	body.mobile-menu-open .primary-navigation--mobile > .primary-menu > .menu-item:nth-child(4) {
		animation-delay: 105ms;
	}

	body.mobile-menu-open .primary-navigation--mobile > .primary-menu > .menu-item:nth-child(5) {
		animation-delay: 140ms;
	}

	body.mobile-menu-open .mobile-menu-panel__search {
		animation: none;
	}

	.primary-navigation--mobile .primary-menu > .menu-item {
		display: grid;
		grid-template-columns: 1fr auto;
		border-bottom: 0;
	}

	.primary-navigation--mobile .submenu-toggle--combined {
		grid-column: 1 / -1;
		width: 100%;
		height: auto;
		min-height: 2.75rem;
		padding: 0;
		justify-content: space-between;
		color: var(--hr-white);
		background: transparent;
		border: 0;
		border-radius: 0;
		box-shadow: none;
		text-align: left;
	}

	.primary-navigation--mobile .menu-link,
	.primary-navigation--mobile .menu-label {
		display: flex;
		min-height: 2.125rem;
		align-items: center;
		color: var(--hr-white);
		font-family: var(--hr-display);
		font-size: var(--hr-step-nav);
		font-weight: 600;
		line-height: 1.15;
		text-decoration: none;
	}

	.primary-navigation--mobile .current-menu-item > .menu-link,
	.primary-navigation--mobile .is-current-path > .menu-link {
		text-decoration: underline;
		text-underline-offset: 0.3rem;
	}

	.primary-navigation--mobile .submenu-toggle {
		color: var(--hr-white);
	}

	.primary-navigation--mobile .sub-menu {
		grid-column: 1 / -1;
		display: grid;
		min-height: 0;
		gap: 0.75rem;
		padding: 1.5rem 0 0.25rem;
		overflow: clip;
	}

	.primary-navigation--mobile .submenu-toggle--combined:is(:hover, :focus-visible) .menu-label,
	.primary-navigation--mobile .is-current-path > .submenu-toggle--combined .menu-label,
	.primary-navigation--mobile .submenu-toggle--combined:is(:hover, :focus-visible) .submenu-toggle__label,
	.primary-navigation--mobile .is-current-path > .submenu-toggle--combined .submenu-toggle__label {
		text-decoration: underline;
		text-underline-offset: 0.3rem;
	}

	.primary-navigation--mobile .sub-menu[hidden] {
		display: none;
	}

	.primary-navigation--mobile .sub-menu .menu-link,
	.primary-navigation--mobile .sub-menu .menu-label {
		min-height: 1.5rem;
		font-size: var(--hr-step-0);
		line-height: 1.25;
	}

	.mobile-menu-panel__search {
		position: fixed;
		z-index: 4;
		right: 0;
		bottom: 0;
		left: 0;
		width: 100%;
		margin: 0;
		padding: var(--hr-space-m) max(1rem, env(safe-area-inset-right)) max(1rem, env(safe-area-inset-bottom)) max(1rem, env(safe-area-inset-left));
		background: var(--hr-green);
	}

	.mobile-menu-panel__ask {
		position: fixed;
		z-index: 5;
		right: max(1rem, env(safe-area-inset-right));
		bottom: max(2rem, env(safe-area-inset-bottom));
		width: 3rem;
		height: 3rem;
	}

	.mobile-menu-panel__ask .hr-icon {
		width: 2.0625rem;
		height: 2.0625rem;
	}

	.mobile-menu-panel__search .search-form {
		width: min(17.375rem, calc(100vw - 2rem));
	}

	.mobile-menu-panel__search label {
		position: absolute !important;
		width: 1px;
		height: 1px;
		padding: 0;
		margin: -1px;
		overflow: hidden;
		clip: rect(0, 0, 0, 0);
		white-space: nowrap;
		border: 0;
	}

	.mobile-menu-panel__search .search-form__row {
		position: relative;
		display: block;
		box-sizing: border-box;
		height: 3rem;
		border: 1px solid var(--hr-white);
		border-radius: var(--hr-pill);
		transition: box-shadow 160ms ease;
	}

	.mobile-menu-panel__search .search-form__row:focus-within {
		box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.42);
	}

	.mobile-menu-panel__search .search-field {
		min-height: 3rem;
		padding: 0.48rem 3.5rem 0.7rem 1rem;
		color: var(--hr-white);
		background: transparent;
		border: 0;
		box-shadow: none;
		font-family: var(--hr-display);
		font-weight: 600;
		line-height: 1;
		-webkit-appearance: none;
		appearance: none;
	}

	.hradistko-site .mobile-menu-panel__search input.search-field,
	.hradistko-site .mobile-menu-panel__search input.search-field:hover,
	.hradistko-site .mobile-menu-panel__search input.search-field:focus,
	.hradistko-site .mobile-menu-panel__search input.search-field:focus-visible,
	.hradistko-site .mobile-menu-panel__search input.search-field:active {
		box-sizing: border-box !important;
		height: 100% !important;
		min-height: 0 !important;
		padding: 0.48rem 3.5rem 0.7rem 1rem !important;
		color: var(--hr-white) !important;
		background: transparent !important;
		border: 0 !important;
		border-radius: var(--hr-pill) !important;
		outline: 0 !important;
		box-shadow: none !important;
		line-height: 1 !important;
		-webkit-appearance: none !important;
		appearance: none !important;
		-webkit-tap-highlight-color: transparent;
		caret-color: var(--hr-white);
	}

	.hradistko-site .mobile-menu-panel__search input.search-field:-webkit-autofill,
	.hradistko-site .mobile-menu-panel__search input.search-field:-webkit-autofill:hover,
	.hradistko-site .mobile-menu-panel__search input.search-field:-webkit-autofill:focus {
		-webkit-text-fill-color: var(--hr-white) !important;
		box-shadow: 0 0 0 1000px var(--hr-green) inset !important;
		caret-color: var(--hr-white);
	}

	.mobile-menu-panel__search .search-field::-webkit-search-decoration,
	.mobile-menu-panel__search .search-field::-webkit-search-cancel-button,
	.mobile-menu-panel__search .search-field::-webkit-search-results-button,
	.mobile-menu-panel__search .search-field::-webkit-search-results-decoration {
		display: none;
	}

	.mobile-menu-panel__search .search-field::placeholder {
		color: var(--hr-white);
		opacity: 1;
	}

	.hradistko-site .mobile-menu-panel__search .search-submit,
	.hradistko-site .mobile-menu-panel__search .search-submit:hover,
	.hradistko-site .mobile-menu-panel__search .search-submit:focus,
	.hradistko-site .mobile-menu-panel__search .search-submit:focus-visible,
	.hradistko-site .mobile-menu-panel__search .search-submit:active {
		position: absolute;
		top: 0;
		right: 0;
		display: grid;
		width: 3rem;
		height: 100%;
		min-height: 0;
		padding: 0;
		place-items: center;
		color: var(--hr-green-deep);
		background: transparent !important;
		border: 0 !important;
		border-radius: var(--hr-pill) !important;
		outline: 0 !important;
		box-shadow: none !important;
		-webkit-appearance: none;
		appearance: none;
		-webkit-tap-highlight-color: transparent;
	}

	.mobile-menu-panel__search .search-submit .hr-icon {
		display: block;
		width: 2rem;
		height: 2rem;
		filter: none;
	}

	.mobile-menu-panel__search .search-submit > span {
		position: absolute !important;
		width: 1px;
		height: 1px;
		padding: 0;
		margin: -1px;
		overflow: hidden;
		clip: rect(0, 0, 0, 0);
		white-space: nowrap;
	}

	.mobile-menu-panel__contact {
		display: flex;
		min-height: 3rem;
		align-items: center;
		gap: 0.5rem;
		color: var(--hr-white);
		font-weight: 600;
	}

	.mobile-menu-panel__contact .hr-icon {
		filter: brightness(0) invert(1);
	}

	@keyframes hr-mobile-menu-item-in {
		from {
			opacity: 0;
			transform: translateY(-0.6rem);
		}

		to {
			opacity: 1;
			transform: translateY(0);
		}
	}

	.hr-block--latest-posts {
		padding-right: 0;
		padding-bottom: 21rem;
	}

	.hr-block--latest-posts::after {
		right: auto;
		bottom: 0;
		left: -9.5625rem;
		width: 27.75rem;
		height: auto;
		aspect-ratio: 7 / 5;
	}

	.hr-front-events .hr-block {
		padding-left: 0;
	}

	.hr-front-events > .hr-container {
		padding-bottom: clamp(14rem, 29vw, 20rem);
	}

	.hr-front-events > .hr-container::before {
		bottom: 0;
		left: clamp(-4rem, -4vw, -1rem);
		width: clamp(26rem, 55vw, 32rem);
	}

	.hr-quick-links__grid {
		position: static;
		grid-template-columns: 1fr 2fr;
	}

	.hr-quick-links > .hr-container {
		padding-bottom: clamp(12rem, 27vw, 18rem);
	}

	.hr-quick-links__illustration {
		position: absolute;
		right: clamp(-8rem, -7vw, -2rem);
		bottom: 0;
		display: block;
		width: clamp(23rem, 48vw, 31rem);
		max-width: none;
		transform: none;
	}

	.hr-home-contact__grid {
		grid-template-columns: 1fr 1fr;
	}

	.hr-home-contact__grid > :last-child {
		grid-column: 1 / -1;
	}

	.site-footer__grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.hr-card-grid--archive {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.hr-card-grid--news.hr-card-grid--archive {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.hr-card-grid--news.hr-card-grid--archive > .hr-card::before {
		display: none;
	}

	.hr-card-grid--news.hr-card-grid--archive > .hr-card:nth-child(even)::before {
		display: block;
	}

	.hr-page-directory {
		width: 100% !important;
	}

	.hr-page:has(.hr-page-directory) .hr-page__illustration {
		display: none;
	}

	.hr-contacts__overview {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.hr-contacts__map {
		grid-column: 1 / -1;
	}

	.hr-contacts__map img {
		width: min(48%, 24rem);
	}

	.hr-contacts-page .hr-people-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.hr-page .hr-block--people-grid .hr-people-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

/* Tablet composition: keep personnel cards readable and preserve the same
 * separated shortcut component used by the desktop and mobile designs. */
@media (min-width: 48rem) and (max-width: 74rem) {
	.hr-contacts__related,
	.hr-contacts__related nav {
		display: grid;
		gap: 1rem;
	}

	.hr-contacts__related {
		margin-top: 2.5rem;
	}

	.hr-contacts__board {
		display: flex;
		align-items: center;
		gap: 0.75rem;
		color: var(--hr-black);
		font-family: var(--hr-display);
		font-size: var(--hr-step-1);
		font-weight: 600;
		text-decoration: none;
	}

	.hr-contacts__board img {
		box-sizing: border-box;
		width: 3rem;
		height: 3rem;
		padding: 0.625rem;
		border: 1px solid var(--hr-green);
		border-radius: 50%;
	}

	.hr-contacts__related nav a {
		color: var(--hr-green);
		font-family: var(--hr-display);
		font-weight: 600;
	}
}

@media (min-width: 48rem) and (max-width: 56rem) {
	.hr-contacts-page .hr-people-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 47.99rem) {
	:root {
		/* Mobile sticky header, breathing room and the device safe area. */
		--hr-anchor-offset: calc(8.5rem + env(safe-area-inset-top));
	}

	body.admin-bar {
		--hr-viewport-top-offset: 46px;
	}

	:root:has(body.admin-bar) {
		--hr-anchor-offset: calc(8.5rem + 46px + env(safe-area-inset-top));
	}

	.site-main--front,
	.hr-front-section,
	.hr-front-events,
	.hr-quick-links,
	.hr-home-contact {
		max-width: 100%;
		overflow-x: clip;
	}

	/* Let the news illustration escape the padded inner container. The full-width
	 * .site-main--front remains the overflow boundary at the physical viewport edge. */
	.hr-front-section {
		overflow-x: visible;
	}
	.admin-bar.hradistko-front-page .site-header {
		top: 46px;
	}

	.admin-bar:not(.hradistko-front-page) .site-header {
		top: 46px;
	}

	body.mobile-menu-open.admin-bar .site-header {
		top: 46px;
	}

	.hradistko-front-page .site-logo,
	.hradistko-front-page .site-header.is-sticky-visible .site-logo {
		align-self: start;
		width: 5.5rem;
		margin-top: 0.75rem;
	}

	.hr-section-cta-row {
		justify-content: center;
	}

	.hr-section-cta {
		min-width: 11.625rem;
		min-height: 3rem;
	}

	.hr-form__submit {
		min-width: 11.625rem;
		min-height: 3rem;
		justify-self: center;
	}

	.hr-hero {
		/* Keep the scroll cue inside the initially visible mobile viewport. */
		height: min(calc(100vh - var(--hr-viewport-top-offset)), 58.5rem);
		height: min(calc(100svh - var(--hr-viewport-top-offset)), 58.5rem);
		min-height: 0;
		max-height: calc(100vh - var(--hr-viewport-top-offset));
		max-height: calc(100svh - var(--hr-viewport-top-offset));
	}

	.hr-hero__media {
		background-image:
			linear-gradient(to top, rgba(0, 0, 0, 0.55), transparent 54%),
			url("../images/hero-mobile.webp");
		background-position: 56% center;
	}

	.hr-hero__content {
		padding-bottom: clamp(12rem, 68vw, 19rem);
	}

	.hr-section-heading {
		align-items: start;
		flex-direction: column;
	}

	.hr-block--latest-posts {
		padding-bottom: 21rem;
	}

	.hr-block--latest-posts::after {
		right: auto;
		bottom: 0;
		/* Escape both the shared gutter and the PNG's transparent left inset. */
		left: calc(-9.5625rem - var(--hr-gutter) - 0.875rem);
		width: 27.75rem;
	}

	.hr-block--latest-posts .hr-card-grid,
	.hr-card-grid--archive {
		grid-template-columns: 1fr;
	}

	.hr-search-card-grid {
		grid-template-columns: 1fr;
		gap: 2.25rem;
	}

	.hr-search-card__media {
		aspect-ratio: 3 / 2;
	}

	.hr-search-list__item {
		grid-template-columns: minmax(0, 1fr) 2.75rem;
	}

	.hr-search-list__link {
		width: 2.75rem;
		height: 2.75rem;
	}

	.hr-error-page {
		min-height: 0;
	}

	.hr-error-page__layout {
		grid-template-columns: 1fr;
	}

	.hr-error-page__visual {
		min-height: 12rem;
		border-right: 0;
		border-bottom: 1px solid var(--hr-line);
	}

	.hr-error-page__visual::after {
		right: -1.5rem;
		bottom: -4rem;
		width: 13rem;
	}

	.hr-error-page__code {
		font-size: clamp(5.5rem, 28vw, 8rem);
	}

	.hr-error-page__content {
		padding: 1.75rem var(--hr-gutter) 2.25rem;
	}

	.hr-card--news {
		display: block;
	}

	.hr-card-grid--news.hr-card-grid--archive > .hr-card::before {
		display: none;
	}

	.hr-card--news .hr-card__media {
		aspect-ratio: 3 / 2;
	}

	.hr-card--news .hr-card__meta,
	.hr-card--news .hr-card__title,
	.hr-card--news .hr-card__excerpt,
	.hr-card--news .hr-card__more {
		grid-column: auto;
	}

	.hr-card--news .hr-card__excerpt {
		display: block;
		overflow: visible;
		-webkit-line-clamp: unset;
		line-clamp: unset;
	}

	.hr-front-events {
		padding-top: var(--hr-space-xl);
		padding-bottom: 25rem;
	}

	.hr-front-events > .hr-container {
		padding-bottom: 0;
	}

	.hr-front-events > .hr-container::before {
		right: auto;
		bottom: -25rem;
		left: 3.3125rem;
		width: 34.25rem;
	}

	.hr-front-events .hr-block {
		padding-left: 0;
	}

	.hr-card--event {
		position: relative;
		display: block;
		padding: var(--hr-space-s) 0;
		border-top: 0;
		border-left: 0;
	}

	.hr-card--event .hr-card__date {
		grid-column: auto;
		margin-bottom: 0.65rem;
		color: var(--hr-black);
		font-family: var(--hr-display);
		font-size: clamp(1.35rem, 1.15rem + 1vw, 1.65rem);
		font-weight: 600;
		line-height: 1.08;
	}

	.hr-card--event .hr-card__media {
		grid-row: auto;
		aspect-ratio: 1 / 1.08;
	}

	.hr-card-grid--events {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: var(--hr-space-l) var(--hr-space-s);
	}

	.hr-card-grid--events .hr-card--event:nth-child(2n + 3)::before {
		position: absolute;
		top: calc(-0.5 * var(--hr-space-l));
		left: 0;
		display: block;
		width: calc(200% + var(--hr-space-s));
		height: 1px;
		background: var(--hr-line);
		content: "";
	}

	.hr-quick-links__grid,
	.hr-home-contact__grid,
	.site-footer__grid {
		grid-template-columns: 1fr;
	}

	.hr-quick-links > .hr-container {
		padding-bottom: 0;
	}

	.hr-quick-links .hr-section-heading {
		border-top: 0;
	}

	.hr-quick-links__illustration {
		display: none;
	}

	.hr-quick-links__nav {
		grid-template-columns: 1fr;
	}

	.hr-block--active-alert h2,
	.hr-block--active-alert .hr-alert__content {
		font-family: var(--hr-display);
		font-size: var(--hr-step-1);
		font-weight: 600;
		line-height: 1.3;
	}

	.hr-block--active-alert h2,
	.hr-block--active-alert .hr-alert__content p {
		margin-bottom: 0.35rem;
	}

	.hr-quick-links__newsletter {
		display: grid;
		justify-items: start;
		gap: var(--hr-space-s);
		margin-top: var(--hr-space-l);
	}

	.hr-quick-links__newsletter-cover {
		display: block;
		width: 100%;
	}

	.hr-quick-links__newsletter-cover img {
		display: block;
		width: 100%;
		border: 1px solid var(--hr-line);
	}

	.hr-home-contact .hr-newsletter-preview {
		display: none;
	}

	.hr-home-contact__grid > :last-child {
		grid-column: auto;
	}

	.hr-page__header {
		grid-template-columns: 1fr;
		margin-bottom: 1.5rem;
	}

	.hr-page__illustration {
		position: relative;
		top: auto;
		right: auto;
		width: min(58vw, 13.5rem);
		margin: 0.25rem 0 2.75rem auto;
		opacity: 0.72;
	}

	.hr-page {
		min-height: 0;
	}

	.hr-entry-content {
		max-width: 100%;
	}

	.hr-entry-content > :where(h2, h3, h4) {
		margin-top: 2.25rem;
		margin-bottom: 1rem;
	}

	.hr-entry-content > :where(figure, .wp-block-image) {
		margin-top: 2rem;
		margin-bottom: 2.5rem;
	}

	.hr-entry-content > :where(figure, .wp-block-image) + :where(h2, h3, h4, p) {
		margin-top: 0;
	}

	.hr-entry-content .alignwide,
	.hr-entry-content .alignfull {
		width: 100%;
		margin-inline: 0;
	}

	.hr-page-directory ul {
		grid-template-columns: 1fr;
	}

	.hr-contacts__overview,
	.hr-contacts__facts-grid {
		grid-template-columns: 1fr;
	}

	.hr-contacts__map {
		grid-column: auto;
	}

	.hr-contacts__map img {
		width: min(100%, 24rem);
	}

	.hr-contacts-page .hr-people-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: var(--hr-space-xl) var(--hr-space-s);
	}

	.hr-page .hr-block--people-grid .hr-people-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: var(--hr-space-xl) var(--hr-space-s);
	}

	.hr-single__layout {
		display: flex;
		flex-direction: column;
	}

	.hr-single__header {
		position: static;
		order: -1;
	}

	.hr-file {
		align-items: start;
		flex-direction: column;
	}

	.search-form__row {
		flex-direction: column;
	}

	.search-submit {
		justify-content: center;
	}
}

@media (min-width: 74.01rem) {
	.site-footer {
		min-height: 387px;
		padding: 49px 0 64px;
	}

	.site-footer__grid {
		grid-template-columns: repeat(4, minmax(0, 1fr));
		gap: 32px;
	}

	.site-footer__grid > div {
		position: relative;
		display: flex;
		height: auto;
		min-height: 274px;
		min-width: 0;
		flex-direction: column;
	}

	.site-footer__brand {
		left: -3px;
	}

	.site-footer__title {
		width: 513px;
		font-size: var(--hr-footer-title);
		line-height: 1.2083;
	}

	.site-footer h2 {
		margin: 8px 0 0;
		font-size: var(--hr-step-1);
		line-height: 1.3;
	}

	.site-footer__legal {
		position: static;
		margin: auto 0 0;
		font-size: var(--hr-step-micro);
		line-height: 1.5;
	}

	.site-footer__utility {
		position: static;
		margin-top: 0;
	}

	.footer-utility-menu {
		display: grid;
		gap: 1px;
		font-size: var(--hr-step-micro);
		line-height: 1.6;
	}

	.site-footer__map img {
		position: static;
		width: 247px;
		height: 169px;
		margin: 52px 0 0 -17px;
	}

	.site-footer__map > a {
		position: static;
		margin-top: 6px;
		font-size: var(--hr-step--2);
		line-height: 1.3333;
	}

	.site-footer__contact > a,
	.site-footer__newsletter > a {
		position: static;
		margin-top: auto;
		font-size: var(--hr-step--2);
		line-height: 1.3333;
	}

	.site-footer__contact address,
	.site-footer__newsletter > p {
		position: static;
		margin: 44px 0 0;
		font-size: var(--hr-step-0);
		line-height: 1.375;
	}

	.site-footer__contact > p {
		position: static;
		margin: 16px 0 0;
		font-size: var(--hr-step-0);
		line-height: 1.375;
	}

	.site-footer__newsletter .newsletter-form {
		position: relative;
		width: 100%;
		height: 40px;
		margin: 24px 0 0;
	}

	.hradistko-site .site-footer .newsletter-form input,
	.hradistko-site .site-footer .newsletter-form input:hover,
	.hradistko-site .site-footer .newsletter-form input:focus {
		height: 40px;
		min-height: 40px;
		font-size: var(--hr-step-0);
	}
}

@media (max-width: 23rem) {
	.hr-card--news {
		display: block;
	}

	.hr-card--event {
		grid-template-columns: 6.5rem 1fr;
	}
}

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}

	*,
	*::before,
	*::after {
		scroll-behavior: auto !important;
		transition-duration: 0.01ms !important;
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
	}
}

/* -------------------------------------------------------------------------
 * Figma 2255:* parity pass (August 2026)
 * These rules intentionally override the earlier exploratory styling.
 * ---------------------------------------------------------------------- */

/* Exact desktop dropdown language from “Menu mouse over 1280px”. */
@media (min-width: 74.01rem) {
	.hr-contacts__overview {
		grid-template-columns: 17rem 2.1875rem 23.3125rem 8.25rem minmax(15rem, 1fr);
		gap: 0;
	}

	.hr-contacts__overview > .hr-contacts__column:first-child {
		grid-column: 1;
	}

	.hr-contacts__overview > .hr-contacts__column:nth-child(2) {
		grid-column: 3;
	}

	.hr-contacts__overview > .hr-contacts__map {
		grid-column: 5;
	}

	.hr-contacts__map img {
		width: 16.25rem;
	}

	/* The homepage header is an 80 px overlay in Figma. Keeping the crest
	 * absolutely positioned prevents its taller artwork from stretching the
	 * navigation row and, consequently, pushing the dropdown too low. */
	.hradistko-front-page .site-header:not(.is-sticky-visible) .site-header__inner {
		position: relative;
		height: 5rem;
		min-height: 5rem;
		/* Match the horizontal start of the navigation used by subpages. */
		grid-template-columns: 19.25rem minmax(0, 1fr) 11.75rem;
		gap: 0;
	}

	.hradistko-front-page .site-header:not(.is-sticky-visible) .site-logo {
		position: absolute;
		top: 2rem;
		left: 0;
		width: 7.142375rem;
		padding: 0;
		margin: 0;
	}

	.hradistko-front-page .site-header:not(.is-sticky-visible) .primary-navigation--desktop {
		grid-column: 2;
		justify-self: start;
	}

	.hradistko-front-page .site-header:not(.is-sticky-visible) .site-header__actions {
		grid-column: 3;
	}

	.hradistko-front-page .site-header:not(.is-sticky-visible) .header-search-control {
		height: 2.75rem;
	}

	.primary-navigation--desktop > .primary-menu {
		gap: 3rem;
	}

	.primary-navigation--desktop .submenu-toggle {
		position: absolute;
		width: 1px;
		height: 1px;
		padding: 0;
		margin: -1px;
		overflow: hidden;
		clip: rect(0, 0, 0, 0);
	}

	.primary-navigation--desktop > .primary-menu > .has-submenu::after {
		display: none;
	}

	.primary-navigation--desktop > .primary-menu > .has-submenu:hover::after,
	.primary-navigation--desktop > .primary-menu > .has-submenu:focus-within::after {
		display: none;
	}

	.primary-navigation--desktop .sub-menu {
		top: calc(100% + 1rem);
		left: -1.5625rem;
		width: min(15rem, calc(100vw - 2 * var(--hr-gutter)));
		min-width: 0;
		max-width: none;
		max-height: none;
		gap: clamp(0.75rem, 0.625rem + 0.15625vw, 0.875rem);
		padding: clamp(1.25rem, 1rem + 0.3125vw, 1.5rem) clamp(1.5rem, 1.25rem + 0.3125vw, 1.75rem);
		color: var(--hr-white);
		background: var(--hr-green);
		border: 0;
		border-radius: 1.25rem;
		box-shadow: none;
		backdrop-filter: none;
		overflow: visible;
	}

	.primary-navigation--desktop > .primary-menu > .menu-item:last-child > .sub-menu {
		right: auto;
		left: -1.5625rem;
	}

	.primary-navigation--desktop .sub-menu .menu-link,
	.primary-navigation--desktop .sub-menu .menu-label {
		display: flex;
		min-height: 1rem;
		align-items: center;
		justify-content: space-between;
		gap: 0.85rem;
		padding: 0;
		color: var(--hr-white);
		background: transparent;
		box-shadow: none;
		font-family: var(--hr-display);
		font-size: var(--hr-step-0);
		font-weight: 600;
		line-height: 1.25;
	}

	.primary-navigation--desktop .sub-menu .menu-link:hover,
	.primary-navigation--desktop .sub-menu .menu-link:focus-visible,
	.primary-navigation--desktop .sub-menu .current-menu-item > .menu-link {
		padding-left: 0;
		color: var(--hr-white);
		background: transparent !important;
		box-shadow: none !important;
		text-decoration: underline;
		text-underline-offset: 0.22rem;
	}

	.primary-navigation--desktop .sub-menu .menu-link:not(.hr-external-link)::after {
		width: 0.5625rem;
		height: 1.1875rem;
		flex: 0 0 auto;
		background: currentColor;
		content: "";
		opacity: 0;
		-webkit-mask: url("../icons/icon-cta-arrow.svg") center / contain no-repeat;
		mask: url("../icons/icon-cta-arrow.svg") center / contain no-repeat;
		transition: opacity 150ms ease;
	}

	.primary-navigation--desktop .sub-menu .menu-link:not(.hr-external-link):is(:hover, :focus-visible)::after,
	.primary-navigation--desktop .sub-menu .current-menu-item > .menu-link:not(.hr-external-link)::after {
		opacity: 1;
	}

	/* One deliberate underline only. Astra and the navigation focus rule used
	 * to stack two independent underline effects on the top-level item. */
	.hradistko-site .primary-navigation--desktop > .primary-menu > .menu-item > .menu-link {
		position: relative;
		text-decoration: none !important;
		box-shadow: none !important;
	}

	.hradistko-site .primary-navigation--desktop > .primary-menu > .menu-item > .menu-link::before {
		position: absolute;
		right: 0;
		bottom: -0.42rem;
		left: 0;
		height: 1px;
		background: currentColor;
		content: "";
		opacity: 0;
		transform: scaleX(0.72);
		transition: opacity 160ms ease, transform 160ms ease;
	}

	.hradistko-site .primary-navigation--desktop > .primary-menu > .menu-item:is(:hover, :focus-within) > .menu-link::before {
		opacity: 1;
		transform: scaleX(1);
	}
}

/* Decorative artwork may deliberately bleed out of its section, but it must
 * never increase the page's horizontal scrolling area. */
.site-main--front {
	overflow-x: clip;
}

/* Accessible, manually controlled hero carousel. */
.hr-hero {
	height: clamp(32.25rem, 40.3125vw, 45rem);
	min-height: 32.25rem;
}

.hr-hero__slides,
.hr-hero__slide,
.hr-hero__slide picture,
.hr-hero__slide img,
.hr-hero__overlay {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
}

.hr-hero__slide[hidden] {
	display: none;
}

.hr-hero__slide img {
	max-width: none;
	object-fit: cover;
	object-position: var(--hr-hero-position-desktop, 50% 50%);
}

.hr-hero__overlay {
	z-index: 1;
	background:
		linear-gradient(to bottom, rgba(0, 0, 0, 0.68) 0, rgba(0, 0, 0, 0.34) 34%, rgba(0, 0, 0, 0.18) 58%, rgba(0, 0, 0, 0.62) 100%),
		linear-gradient(to right, rgba(0, 0, 0, 0.28), transparent 58%);
	pointer-events: none;
}

.hr-hero__content,
.hr-hero__scroll,
.hr-hero__controls {
	z-index: 2;
}

.hr-hero__controls {
	position: absolute;
	right: max(var(--hr-gutter), calc((100vw - var(--hr-container)) / 2));
	bottom: 1.75rem;
	display: flex;
	align-items: center;
	gap: 0.6rem;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip-path: inset(50%);
	white-space: nowrap;
}

/* The composed cover frames contain no static pagination row. Preserve the
 * carousel controls for keyboard users and reveal them only while focused. */
.hr-hero__controls:focus-within {
	width: auto;
	height: auto;
	margin: 0;
	overflow: visible;
	clip-path: none;
	white-space: normal;
}

.hr-hero__dots button {
	-webkit-appearance: none;
	appearance: none;
	padding: 0;
	color: var(--hr-white);
	background: rgba(0, 0, 0, 0.22);
	border: 1px solid rgba(255, 255, 255, 0.82);
	box-shadow: none;
	cursor: pointer;
}

.hr-hero__dots {
	display: flex;
	align-items: center;
	gap: 0.1rem;
}

.hr-hero__dots button {
	position: relative;
	width: 1.75rem;
	height: 2.75rem;
	background: transparent;
	border: 0;
	border-radius: 0;
}

.hr-hero__dots button::before {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 0.75rem;
	height: 0.75rem;
	background: rgba(0, 0, 0, 0.22);
	border: 1px solid rgba(255, 255, 255, 0.82);
	border-radius: 50%;
	content: "";
	transform: translate(-50%, -50%);
}

.hr-hero__dots button[aria-current="true"]::before {
	background: var(--hr-white);
}

.hr-block--active-alert {
	width: 17rem;
	min-height: 7.75rem;
	padding: 0.75rem;
	border: 1px solid var(--hr-green);
	border-radius: 1.25rem;
}

.hr-block--active-alert .hr-alert__layout {
	grid-template-columns: 2.25rem minmax(0, 1fr);
	gap: 0.75rem;
}

.hr-block--active-alert .hr-alert__icon {
	display: block;
	width: 2.25rem;
	height: 2.25rem;
	color: var(--hr-green);
}

.hr-block--active-alert h2,
.hr-block--active-alert .hr-alert__content {
	margin: 0;
	font-family: var(--hr-display);
	font-size: var(--hr-step-1);
	font-weight: 600;
	line-height: 1.3;
}

.hr-block--active-alert .hr-alert__content p {
	margin: 0;
}

.hr-hero__dots button:hover,
.hradistko-site .hr-hero__dots button:focus,
.hr-hero__dots button:focus-visible,
.hr-hero__dots button:active {
	color: var(--hr-white);
	background: transparent !important;
	border-color: transparent !important;
	box-shadow: none !important;
}

.hr-hero__dots button:focus-visible {
	outline: 2px solid var(--hr-white);
	outline-offset: 3px;
}

.hr-hero__dots button:is(:hover, :focus, :active)::before {
	background: var(--hr-green);
	border-color: var(--hr-white);
}

/* Each designed subpage keeps Gutenberg/ACF as its source, but gets its own
 * Figma composition instead of inheriting the generic 65% article layout. */
.hr-page--figma-layout {
	min-height: 37rem;
	margin-top: 0;
	overflow: visible;
}

.hr-subpage:has(.hr-page--figma-layout) {
	padding-bottom: clamp(3.75rem, 5.3203125vw, 5rem);
}

.hr-subpage .hr-page h1 {
	font-size: clamp(1.75rem, 1.6rem + 0.5vw, 3rem);
	line-height: 1.25;
}

.hr-page--figma-layout .hr-page__header {
	margin-bottom: clamp(2.5rem, 3.75vw, 3.5rem);
}

.hr-page--figma-layout .hr-entry-content {
	max-width: none;
}

.hr-page--figma-layout > .hr-page__illustration {
	top: -0.125rem;
	right: clamp(-1.375rem, -1.71875vw, -0.75rem);
	width: min(50.5%, 37.375rem);
	opacity: 1;
	aspect-ratio: 598 / 364;
	object-fit: fill;
}

.hr-page--rozpocet .hr-entry-content,
.hr-page--rozvoj-obce .hr-entry-content,
.hr-page--verejne-zakazky .hr-entry-content {
	width: 34.1875rem;
	max-width: 48%;
}

.hr-page--e-podatelna .hr-entry-content {
	width: 36rem;
	max-width: 49.3%;
}

.hr-page--rozpocet .hr-entry-content > .wp-block-list:first-child,
.hr-page--rozvoj-obce .hr-entry-content > .wp-block-list:first-child,
.hr-page--verejne-zakazky .hr-entry-content > .wp-block-list:first-child {
	display: grid;
	gap: 1.25rem;
	padding: 0;
	margin: 0;
	list-style: none;
}

.hr-page--figma-layout .hr-entry-content a[href$=".pdf"],
.hr-page--figma-layout .hr-entry-content a[href*="/wp-content/uploads/"],
.hr-page--rozvoj-obce .wp-block-list a {
	color: var(--hr-green);
	font-family: var(--hr-display);
	font-size: var(--hr-step-1);
	font-weight: 600;
	line-height: 1.3;
	text-decoration: underline;
	text-underline-offset: 0.16em;
}

.hr-procurement-content .wp-block-list {
	display: grid;
	gap: 1.25rem;
	padding: 0;
	margin: 2rem 0;
	list-style: none;
}

.hr-procurement-content .wp-block-list a {
	color: var(--hr-green);
	font-family: var(--hr-display);
	font-size: var(--hr-step-1);
	font-weight: 600;
	text-decoration: underline;
	text-underline-offset: 0.16em;
}

.hr-procurement-content .wp-block-list a::after {
	display: none;
}

.hr-download-tail {
	white-space: nowrap;
}

.hr-download-icon {
	display: inline-block;
	width: 1.5rem;
	height: 1.5rem;
	margin-left: 0.5rem;
	background: var(--hr-green);
	vertical-align: -0.3rem;
	-webkit-mask: url("../icons/icon-download.svg?ver=20260819-2") center / contain no-repeat;
	mask: url("../icons/icon-download.svg?ver=20260819-2") center / contain no-repeat;
}

.hr-page--figma-layout .hr-entry-content a[href$=".pdf"]::after,
.hr-page--figma-layout .hr-entry-content a[href*="/wp-content/uploads/"]::after,
.hr-page--rozvoj-obce .wp-block-list a::after {
	display: none;
}

.hr-page--figma-layout .hr-entry-content .wp-block-list li > span,
.hr-page--figma-layout .hr-entry-content .wp-block-list li > i,
.hr-page--figma-layout .hr-entry-content .wp-block-separator {
	display: none;
}

.hr-page--rozpocet .hr-entry-content > h2,
.hr-page--rozvoj-obce .hr-entry-content > h2,
.hr-page--verejne-zakazky .hr-entry-content > h2 {
	margin-top: 2rem;
	font-size: var(--hr-step-1);
	line-height: 1.3;
}

.hr-page--rozpocet .hr-entry-content > h2 a {
	color: var(--hr-green);
	text-decoration: underline;
	text-underline-offset: 0.16em;
}

.hr-page--uzemni-planovani .hr-entry-content {
	column-count: 2;
	column-gap: 2rem;
}

.hr-page--uzemni-planovani .hr-entry-content > h2 {
	margin: 0 0 2rem;
	break-after: avoid;
	font-size: var(--hr-step-1);
	line-height: 1.3;
}

.hr-page--uzemni-planovani .hr-entry-content > p {
	margin: 0 0 3rem;
	break-inside: avoid;
	line-height: 2.9;
}

.hr-page--verejne-zakazky .hr-entry-content > h2 {
	margin-bottom: 1.8rem;
}

.hr-page--verejne-zakazky .hr-entry-content > h2:first-child {
	margin-top: 0;
}

.hr-page--verejne-zakazky .hr-entry-content > :is(p, ul) {
	margin-block: 0 2rem;
}

.hr-page--verejne-zakazky .hr-entry-content :is(p, li) a {
	color: var(--hr-green);
	font-family: var(--hr-display);
	font-size: var(--hr-step-1);
	font-weight: 600;
	line-height: 1.3;
	text-decoration: underline;
	text-underline-offset: 0.16em;
}

.hr-procurement-archive {
	position: absolute;
	top: 415px;
	left: 0;
}

.hr-procurement-archive p {
	margin: 0;
}

.hr-page--e-podatelna .hr-block--contact-form > h2 {
	display: none;
}

.hr-page--e-podatelna .hr-form {
	width: 36rem;
	max-width: 100%;
	margin-top: 0;
	gap: 0.75rem;
}

.hr-page--e-podatelna .hr-field {
	position: relative;
}

.hr-page--e-podatelna .hr-field :is(input, select) {
	height: 44px;
	min-height: 44px;
}

.hr-page--e-podatelna .hr-field select {
	padding-right: 3.5rem;
	color: var(--hr-black);
	font-family: var(--hr-display);
	font-weight: 600;
	appearance: none;
}

/* The required empty option is the select equivalent of the green Figma
 * placeholder. Once a real subject is selected, normal black input text is
 * restored while the dropdown choices remain unambiguous. */
.hr-page--e-podatelna .hr-field select:required:invalid {
	color: var(--hr-green-dark);
}

.hr-page--e-podatelna .hr-field select option {
	color: var(--hr-black);
}

.hr-page--e-podatelna .hr-field:has(select)::after {
	position: absolute;
	top: 12px;
	right: 24px;
	width: 9px;
	height: 19px;
	background: var(--hr-green);
	border: 0;
	-webkit-mask: url("../icons/icon-cta-arrow.svg") center / contain no-repeat;
	mask: url("../icons/icon-cta-arrow.svg") center / contain no-repeat;
	content: "";
	pointer-events: none;
	transform: rotate(90deg);
}

.hr-required-data__content .wp-block-table {
	margin-block: 1.25rem 2rem;
}

.hr-required-data__content .wp-block-table + :is(p, h2, h3, h4),
.hr-required-data__content :is(p, h2, h3, h4) + .wp-block-table {
	margin-top: 1.5rem;
}

.hr-required-data__people-box {
	padding: 1.25rem 1.5rem;
	margin: 1.25rem 0 2rem;
	break-inside: avoid;
	border: 1px solid var(--hr-green);
	border-radius: 1.25rem;
}

.hr-required-data__people-box .wp-block-table {
	padding: 0;
	margin: 0;
	border: 0;
	border-radius: 0;
}

.hr-required-data__people-box > p {
	margin: 1.5rem 0 1rem;
	font-family: var(--hr-display);
	font-weight: 600;
}

.hr-page--e-podatelna .hr-form textarea {
	height: 148px;
	min-height: 148px;
}

.hr-page--e-podatelna .hr-form__privacy {
	font-size: var(--hr-step--2);
	line-height: 1.3333;
}

.hr-page--e-podatelna .hr-form__submit {
	justify-self: end;
	min-width: 11.625rem;
	margin-top: 37px;
}

.hr-page--zastupitelstvo .hr-entry-content,
.hr-page--zastupitelstvo .hr-block--people-grid {
	width: 100%;
}

.hr-page--zastupitelstvo .hr-page__header {
	margin-bottom: clamp(1.75rem, 2.34375vw, 2.25rem);
}

.hr-page--zastupitelstvo .hr-block--people-grid .hr-people-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: clamp(2.5rem, 3.75vw, 3.5rem) clamp(1.5rem, 2.65625vw, 2.625rem);
}

@media (min-width: 48rem) {
	/* The compact Figma page frames end at y=833 at the 1280px reference.
	 * One extra relative pixel compensates for subpixel breadcrumb rounding
	 * without freezing the height at wider viewports. */
	.hr-page--figma-layout {
		min-height: 37.0625rem;
	}

	/* The desktop subpage frames share the same 80 / 111 / 127 / 172 px
	 * vertical anchors. Values remain fluid away from the 1280 px reference. */
	.hr-subpage:has(.hr-page--figma-layout),
	.hr-contacts-page {
		padding-top: clamp(1.75rem, 2.421875vw, 2.25rem);
	}

	.hr-subpage:has(.hr-page--figma-layout) .hr-breadcrumbs,
	.hr-contacts-page .hr-breadcrumbs {
		margin-bottom: clamp(2.5rem, 3.515625vw, 3.25rem);
		font-size: var(--hr-step--2);
		line-height: 1.3333;
	}

	.hr-subpage:has(.hr-page--zastupitelstvo) {
		padding-bottom: clamp(2rem, 2.96875vw, 3rem);
	}
}

.hr-page--zastupitelstvo .hr-person {
	padding: 0;
	border: 0;
}

.hr-page--zastupitelstvo .hr-person__photo {
	width: 10.625rem;
	height: 10.625rem;
	margin-bottom: 1rem;
	object-fit: cover;
}

.hr-page--zastupitelstvo .hr-person__name {
	margin: 0 0 0.25rem;
	font-size: var(--hr-step-1);
	line-height: 1.3;
}

.hr-page--zastupitelstvo .hr-person__position {
	margin-bottom: 0.75rem;
}

.hr-page--zastupitelstvo .hr-person p:not(.hr-person__position) {
	padding-block: 0.75rem;
	margin: 0;
	border-block: 1px solid #c7c7c7;
}

.hr-page--mistni-poplatky .hr-entry-content {
	width: 100%;
}

.hr-page--mistni-poplatky .wp-block-table {
	margin: 0 0 2.625rem;
	overflow-x: auto;
}

.hr-page--mistni-poplatky table {
	width: 100%;
	border: 0;
	border-collapse: separate;
	border-spacing: 0;
	font-size: var(--hr-step-table);
}

@media (min-width: 48rem) {
	.hr-page--mistni-poplatky {
		min-height: 58.8125rem;
	}

	.hr-page--mistni-poplatky thead tr {
		height: 44px;
	}

	.hr-page--mistni-poplatky tbody td {
		font-size: var(--hr-step-table);
		line-height: 1.5714;
	}

	.hr-page--mistni-poplatky :is(th, td):nth-child(1) { width: 11.4375rem; }
	.hr-page--mistni-poplatky :is(th, td):nth-child(2) { width: 28.5625rem; }
	.hr-page--mistni-poplatky :is(th, td):nth-child(3) { width: 19.4375rem; }
	.hr-page--mistni-poplatky :is(th, td):nth-child(4) { width: 14.5625rem; }

	.hr-page--mistni-poplatky thead th {
		text-align: center;
	}

	.hr-page--mistni-poplatky tbody td :where(p) {
		margin: 0;
	}
}

.hr-page--mistni-poplatky thead th {
	padding: 0.7rem 1rem;
	color: var(--hr-white);
	background: var(--hr-green);
	border: 0;
	font-family: var(--hr-display);
	font-size: var(--hr-step-0);
	font-weight: 600;
}

.hr-page--mistni-poplatky thead th:first-child {
	border-radius: var(--hr-pill) 0 0 var(--hr-pill);
}

.hr-page--mistni-poplatky thead th:last-child {
	border-radius: 0 var(--hr-pill) var(--hr-pill) 0;
}

.hr-page--mistni-poplatky tbody td {
	/* This is a minimum rhythm, not a row height: long live values increase
	 * the table naturally without clipping or an internal scrollbar. */
	padding: 1.25rem 1rem;
	border: 0;
	border-bottom: 1px solid var(--hr-green);
	vertical-align: middle;
}

/* Desktop coordinates mirror the 1280 px Figma frames while the clamp-based
 * sizes continue to interpolate on narrower and wider screens. */
@media (min-width: 48rem) {
	body.blog .hr-subpage,
	body.single-post .hr-subpage {
		padding-top: clamp(1.75rem, 2.5vw, 2.25rem);
	}

	body.blog .hr-subpage > .hr-container > .hr-breadcrumbs,
	body.single-post .hr-subpage > .hr-container > .hr-breadcrumbs {
		font-size: var(--hr-step--2);
		line-height: 1.3333;
	}

	body.blog .hr-subpage > .hr-container > .hr-breadcrumbs {
		margin-bottom: clamp(2.25rem, 3.4375vw, 3rem);
	}

	body.single-post .hr-subpage > .hr-container > .hr-breadcrumbs {
		margin-bottom: clamp(2.125rem, 3.28125vw, 2.875rem);
	}

	.hr-archive-header {
		padding-bottom: clamp(1.75rem, 2.5vw, 2.25rem);
	}

	.hr-single__layout {
		grid-template-columns: minmax(0, 42.3125rem) minmax(0, 29.6875rem);
		min-height: 35.4375rem;
		gap: 2rem;
	}

	.hr-single__header {
		position: static;
		top: auto;
	}

	.hr-single__image {
		aspect-ratio: 677 / 441;
		margin-bottom: 2rem;
		object-fit: cover;
	}

	.hr-single__main .hr-entry-content {
		width: 100%;
		max-width: none;
	}

	body.blog .hr-card-grid--news.hr-card-grid--archive {
		grid-auto-rows: auto;
	}

	body.blog .hr-card-grid--news.hr-card-grid--archive > .hr-card {
		height: auto;
		min-height: 24.3125rem;
	}

	body.blog .navigation.pagination {
		margin-top: 4.375rem;
	}

	body.blog .hr-subpage {
		padding-bottom: 4rem;
	}
}

.hr-water-shortcuts {
	display: flex;
	flex-wrap: wrap;
	align-items: stretch;
	gap: 1rem 2rem;
	margin-bottom: 4rem;
}

.hr-water-shortcuts .hr-button {
	width: auto;
	min-width: 0;
	height: auto;
	min-height: 3rem;
	justify-content: flex-start;
	padding-block: 0.6875rem;
	text-align: left;
	white-space: normal;
}

.hr-water-content {
	width: 100%;
	max-width: none;
}

.hr-water-content > :where(p, ul, ol, h2, h3, h4, .c-documents) {
	max-width: 65rem;
}

.hr-water-content :is(h2, h3, h4)[id] {
	scroll-margin-top: 6rem;
}

.hr-water-contacts {
	margin-bottom: 4rem;
}

.hr-water-contacts > h2 {
	margin-top: 0;
}

.hr-water-contacts__grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 2rem;
}

.hr-water-contacts__grid > p {
	min-width: 0;
	padding-block: 0.75rem;
	margin: 0;
	border-block: 1px solid var(--hr-line);
	overflow-wrap: anywhere;
}

.hr-service-form {
	width: min(100%, 48rem);
	margin-block: 2rem 4rem;
}

.hr-service-form .hr-form {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1rem 2rem;
}

.hr-service-form .hr-field {
	display: grid;
	gap: 0.5rem;
}

.hr-service-form .hr-field > label {
	font-family: var(--hr-display);
	font-weight: 600;
}

.hr-service-form .hr-field--wide,
.hr-service-form .hr-form__submit,
.hr-service-form .hr-form-status {
	grid-column: 1 / -1;
}

.hr-service-form .hr-field :is(input, textarea) {
	width: 100%;
}

.hr-service-form .hr-field input[type="file"] {
	height: auto;
	min-height: 3rem;
	padding: 0.6875rem 1rem;
}

.hr-service-form .hr-form__optional {
	font-family: var(--hr-body);
	font-size: var(--hr-step--1);
	font-weight: 400;
}

@media (max-width: 74rem) {
	.hr-water-contacts__grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

.hr-forms-content {
	max-width: min(65%, var(--hr-reading));
}

.hr-forms-content .wpb-content-wrapper > h2 {
	margin-top: 2.5rem;
	font-size: var(--hr-step-1);
	line-height: 1.3;
}

.hr-forms-content .wpb-content-wrapper > :is(p, ul) {
	margin-block: 0 1.5rem;
}

.hr-forms-content a[href$=".pdf"],
.hr-forms-content a[href*="/wp-content/uploads/"] {
	color: var(--hr-green);
	font-family: var(--hr-display);
	font-weight: 600;
	text-underline-offset: 0.16em;
}

.hr-page--matrika-a-svatby .hr-entry-content,
.hr-matrika-content {
	max-width: none;
}

.hr-matrika-contact {
	display: grid;
	width: 48%;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 2rem;
}

.hr-matrika-contact__column,
.hr-matrika-contact__item {
	display: grid;
	align-content: start;
}

.hr-matrika-contact__column {
	gap: 0;
}

.hr-matrika-contact__lead {
	min-height: 3.5rem;
	margin: 0;
	font-family: var(--hr-display);
	font-size: var(--hr-step-1);
	font-weight: 600;
	line-height: 1.3;
}

.hr-matrika-contact__item {
	gap: 0.25rem;
	padding-block: 1rem;
	border-bottom: 1px solid var(--hr-line);
}

.hr-matrika-contact__item strong {
	font-family: var(--hr-display);
	font-size: var(--hr-step-1);
	line-height: 1.3;
}

.hr-matrika-contact__item a {
	color: var(--hr-black);
	text-decoration: none;
}

.hr-matrika-contact__item a:is(:hover, :focus-visible) {
	color: var(--hr-green);
	text-decoration: underline;
}

.hr-matrika-content {
	margin-top: 5rem;
}

.hr-matrika-content .wpb-content-wrapper {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	gap: 1.5rem 2rem;
}

.hr-matrika-content .wpb-content-wrapper > :is(h2, .c-documents) {
	grid-column: 1 / -1;
}

.hr-matrika-content .wpb-content-wrapper > h2 {
	margin: 2.5rem 0 0;
	font-size: var(--hr-step-2);
	line-height: 1.3;
}

.hr-matrika-content .wpb-content-wrapper > h2:first-child {
	margin-top: 0;
}

.hr-matrika-content .wpb-content-wrapper > p {
	max-width: none;
	margin: 0;
}

.hr-matrika-content .wpb-content-wrapper > p:nth-of-type(1) {
	grid-column: 2;
}

.hr-matrika-content .wpb-content-wrapper > p:nth-of-type(2) {
	grid-column: 1;
	grid-row: 2 / span 3;
	aspect-ratio: 576 / 375.208;
	overflow: hidden;
}

.hr-matrika-content .wpb-content-wrapper > p:nth-of-type(n + 3) {
	grid-column: 2;
}

.hr-matrika-content .wpb-content-wrapper > p:nth-of-type(2) img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 0;
}

.hr-page--spolky :is(.wpb-content-wrapper > p, .hr-entry-content > p):has(> a) {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1rem 2rem;
	max-width: none;
}

.hr-page--spolky :is(.wpb-content-wrapper > p, .hr-entry-content > p):has(> a) br {
	display: none;
}

.hr-page--spolky :is(.wpb-content-wrapper > p, .hr-entry-content > p):has(> a) a {
	display: flex;
	min-height: 3rem;
	align-items: center;
	justify-content: space-between;
	padding: 0.6875rem 1.25rem;
	color: var(--hr-green);
	border: 1px solid var(--hr-green);
	border-radius: 999px;
	font-family: var(--hr-display);
	font-weight: 600;
	line-height: 1.3;
	text-decoration: none;
}

/* The legacy editor content contains one anchor whose only child is a line
 * break. It has no public label or destination distinct from the preceding
 * link, so it must not become an empty, keyboard-focusable directory pill. */
.hr-page--spolky :is(.wpb-content-wrapper > p, .hr-entry-content > p):has(> a) a:has(> br:only-child) {
	display: none;
}

.hr-page--spolky :is(.wpb-content-wrapper > p, .hr-entry-content > p):has(> a) a::after {
	flex: 0 0 1.25rem;
	width: 1.25rem;
	height: 1.25rem;
	margin-left: 0.75rem;
	background: url("../icons/icon-arrow-right.svg") center / contain no-repeat;
	content: "";
}

.hr-page--spolky :is(.wpb-content-wrapper > p, .hr-entry-content > p):has(> a) a:is(:hover, :focus-visible) {
	color: var(--hr-white);
	background: var(--hr-green);
}
}

.hr-required-data__visual {
	position: absolute;
	top: 0;
	left: 0;
	width: 50%;
	aspect-ratio: 598 / 364;
}

@media (min-width: 48rem) {
	.hr-page--povinne-udaje .hr-required-data__visual {
		position: absolute;
		top: 0;
		left: -1rem;
		width: 37.375rem;
		height: 22.75rem;
		aspect-ratio: auto;
	}

	.hr-page--povinne-udaje .hr-required-data__intro {
		position: relative;
		width: 41.8%;
		min-height: 21rem;
		margin-left: 59.375%;
	}

	.hr-page--povinne-udaje .hr-required-data__heading {
		margin-top: 4.75rem;
		margin-bottom: 2rem;
	}
}

.hr-required-data__visual img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: fill;
}

.hr-required-data__intro {
	width: 39%;
	min-height: 21rem;
	margin-left: 60.2%;
	font-size: var(--hr-step-1);
	line-height: 1.5;
}

.hr-required-data__intro h1 {
	margin: 0 0 1.5rem;
}

.hr-required-data__heading {
	margin-top: 5.625rem;
	margin-bottom: 1.125rem;
}

.hr-required-data__heading h2 {
	font-size: var(--hr-step-1);
	line-height: 1.3;
}

.hr-required-data__content {
	column-count: 2;
	column-gap: 2.5rem;
}

.hr-required-data__content > * {
	break-inside: avoid;
}

.hr-required-data__content .wp-block-table {
	padding: 1.25rem 1.5rem;
	border: 1px solid var(--hr-green);
	border-radius: 1.25rem;
}

.hr-required-data__content .wp-block-table table,
.hr-required-data__content .wp-block-table td {
	border: 0;
}

/* The two staff tables form one component in Figma. Keep the shared wrapper
 * as the only visible outline; the generic table card rule above must not
 * redraw two nested rounded boxes. */
.hr-required-data__content .hr-required-data__people-box .wp-block-table {
	padding: 0;
	margin: 0;
	border: 0;
	border-radius: 0;
}

.hr-required-data__people-box td:first-child {
	font-family: var(--hr-display);
	font-weight: 600;
}

@media (min-width: 48rem) {
	.hr-required-data__people-box {
		break-after: column;
	}
}

/* Contacts has its own full composition in Figma; it is not a generic
 * three-column contact page followed by the global contact form. */
@media (min-width: 74.01rem) {
	.hr-contacts > h1 {
		margin-bottom: clamp(1.5rem, 2.265625vw, 2.25rem);
		font-size: clamp(1.75rem, 1.6rem + 0.5vw, 3rem);
		line-height: 1.25;
	}

	.hr-contacts__overview {
		grid-template-columns: 17.0625rem 2.0625rem 23.3125rem 8.25rem minmax(0, 1fr);
		gap: 0;
	}

	.hr-contacts__overview > .hr-contacts__column:first-child {
		grid-column: 1;
	}

	.hr-contacts__overview > .hr-contacts__column:nth-child(2) {
		grid-column: 3;
	}

	.hr-contacts__overview > .hr-contacts__map {
		grid-column: 5;
	}

	.hr-contact-list {
		gap: 0.75rem;
		margin: 0;
	}

	.hr-contact-list > div {
		gap: 0.5rem;
		padding: 0 0 0.75rem;
	}

	.hr-contact-list dt,
	.hr-contacts__overview h2 {
		font-size: var(--hr-step-1);
		line-height: 1.3;
	}

	.hr-contact-list dd {
		font-size: var(--hr-step-0);
		line-height: 1.375;
	}

	.hr-contact-list .hr-hours--compact .hr-hours__row {
		grid-template-columns: 4.75rem minmax(0, 1fr);
		font-size: var(--hr-step-0);
		line-height: 1.375;
	}

	.hr-contacts__map img {
		width: 23.6875rem;
		max-width: none;
		aspect-ratio: 379 / 272;
		margin-block: 1rem;
		object-fit: fill;
	}

	.hr-contacts__people {
		margin-top: clamp(0.75rem, 0.9921875vw, 1.25rem);
	}

	.hr-contacts__people > h2,
	.hr-contacts__facts > h2 {
		margin: 0 0 2rem;
		font-size: clamp(1.75rem, 1.6rem + 0.5vw, 3rem);
		line-height: 1.25;
	}

	.hr-contacts-page .hr-people-grid {
		grid-template-columns: repeat(auto-fit, minmax(min(100%, 15rem), 1fr));
		grid-auto-rows: auto;
		gap: 4rem 2.125rem;
	}

	.hr-contacts-page .hr-person {
		min-width: 0;
		padding: 0;
		border: 0;
	}

	.hr-contacts-page .hr-person__photo {
		width: 10.625rem;
		height: 10.625rem;
		margin-bottom: 1rem;
	}

	.hr-contacts-page .hr-person__details {
		display: grid;
		gap: 0;
	}

	.hr-contacts-page .hr-person__identity {
		display: grid;
		gap: 0.25rem;
		margin-bottom: 0.75rem;
	}

	.hr-contacts-page .hr-person__name {
		margin: 0;
		font-size: var(--hr-step-1);
		line-height: 1.3;
	}

	.hr-contacts-page .hr-person__position {
		margin: 0;
		font-size: var(--hr-step-0);
		line-height: 1.375;
	}

	.hr-contacts-page .hr-person__details > :is(.hr-person__agenda, .hr-person__contact, .hr-person__hours) {
		padding-block: 0.75rem;
		margin: 0;
		border: 0;
		border-top: 1px solid var(--hr-line);
		font-size: var(--hr-step-0);
		line-height: 1.375;
	}

	.hr-contacts-page .hr-person__details > :is(.hr-person__agenda, .hr-person__contact, .hr-person__hours):last-child {
		border-bottom: 1px solid var(--hr-line);
	}

	.hr-contacts-page .hr-person__contact,
	.hr-contacts-page .hr-person__hours {
		display: grid;
		gap: 0.25rem;
	}

	.hr-contacts-page .hr-person__contact p,
	.hr-contacts-page .hr-person__hours p,
	.hr-contacts-page .hr-person__phone {
		margin: 0;
	}

	.hr-contacts-page .hr-person__phone .hr-phone-links {
		display: inline;
	}

	.hr-contacts-page .hr-person__phone .hr-phone-links a + a::before {
		content: " / ";
	}

	.hr-contacts__facts {
		margin-top: 6rem;
	}

	.hr-contacts__facts-grid {
		display: grid;
		grid-template-columns: 16.9375rem 16.9375rem minmax(0, 1fr);
		gap: 2.125rem;
	}

	.hr-contacts__fact-list {
		margin: 0;
		font-size: var(--hr-step-0);
		line-height: 1.375;
	}

	.hr-contacts__facts-grid .hr-contacts__fact-list > div {
		display: flex;
		gap: 0.3rem;
		padding: 0;
		border: 0;
	}

	.hr-contacts__fact-list dt {
		font-family: var(--hr-display);
		font-weight: 600;
	}

	.hr-contacts__fact-list dd {
		margin: 0;
	}

	.hr-contacts__about {
		margin-left: 6.25rem;
	}

	.hr-contacts__about h3 {
		margin: 0 0 1.3125rem;
		font-size: var(--hr-step-1);
		line-height: 1.3;
	}

	.hr-contacts__about p {
		margin: 0;
		font-size: var(--hr-step-0);
		line-height: 1.375;
	}

	.hr-contacts__related {
		display: grid;
		grid-template-columns: 16.9375rem 19rem;
		gap: 2.125rem;
		margin-top: clamp(2rem, 3.046875vw, 3rem);
	}

	.hr-contacts__board {
		display: flex;
		align-items: center;
		gap: 0.75rem;
		color: var(--hr-black);
		font-family: var(--hr-display);
		font-size: var(--hr-step-1);
		font-weight: 600;
		line-height: 1.3;
		text-decoration: none;
	}

	.hr-contacts__board img {
		box-sizing: border-box;
		width: 3rem;
		height: 3rem;
		padding: 0.625rem;
		border: 1px solid var(--hr-green);
		border-radius: 50%;
	}

	.hr-contacts__related nav {
		display: grid;
		gap: 1rem;
		padding-top: 0.6875rem;
	}

	.hr-contacts__related nav a {
		color: var(--hr-green);
		font-family: var(--hr-display);
		font-size: var(--hr-step-1);
		font-weight: 600;
		line-height: 1.3;
		text-decoration: underline;
	}

	.hr-contacts-page {
		padding-bottom: clamp(3.75rem, 5.234375vw, 5rem);
	}
}

@media (max-width: 47.99rem) {
	.hr-contacts-page .hr-people-grid {
		grid-template-columns: 1fr;
		gap: 3rem;
	}

	.hr-contacts-page .hr-person__details,
	.hr-contacts-page .hr-person__identity,
	.hr-contacts-page .hr-person__contact,
	.hr-contacts-page .hr-person__hours {
		display: grid;
		gap: 0.5rem;
	}

	.hr-contacts-page .hr-person__details {
		gap: 0;
	}

	.hr-contacts-page .hr-person__details > :is(.hr-person__agenda, .hr-person__contact, .hr-person__hours) {
		padding-block: 0.75rem;
		margin: 0;
		border: 0;
		border-top: 1px solid var(--hr-line);
	}

	.hr-contacts-page .hr-person__details > :is(.hr-person__agenda, .hr-person__contact, .hr-person__hours):last-child {
		border-bottom: 1px solid var(--hr-line);
	}

	.hr-contacts-page :is(.hr-person__contact, .hr-person__hours) p {
		margin: 0;
	}

	.hr-contacts__facts-grid {
		display: grid;
		gap: 2rem;
	}

	.hr-contacts__fact-list {
		margin: 0;
	}

	.hr-contacts__fact-list > div {
		display: flex;
		gap: 0.35rem;
		padding: 0;
		border: 0;
	}

	.hr-contacts__fact-list dt {
		font-family: var(--hr-display);
		font-weight: 600;
	}

	.hr-contacts__fact-list dd {
		margin: 0;
	}

	.hr-contacts__about h3 {
		margin-bottom: 0.75rem;
	}

	.hr-contacts__related,
	.hr-contacts__related nav {
		display: grid;
		gap: 1rem;
	}

	.hr-contacts__related {
		margin-top: 2.5rem;
	}

	.hr-contacts__board {
		display: flex;
		align-items: center;
		gap: 0.75rem;
		color: var(--hr-black);
		font-family: var(--hr-display);
		font-size: var(--hr-step-1);
		font-weight: 600;
		text-decoration: none;
	}

	.hr-contacts__board img {
		width: 3rem;
		height: 3rem;
	}

	.hr-contacts__related nav a {
		color: var(--hr-green);
		font-family: var(--hr-display);
		font-weight: 600;
	}
}

@media (max-width: 74rem) {
	.mobile-menu-panel {
		padding: 12.625rem max(1rem, env(safe-area-inset-right)) calc(7rem + env(safe-area-inset-bottom)) max(1rem, env(safe-area-inset-left));
	}

	.primary-navigation--mobile,
	.primary-navigation--mobile:not(:has(.sub-menu:not([hidden]))) {
		width: 100%;
		margin: 0;
		transform: none;
	}

	.primary-navigation--mobile > .primary-menu {
		gap: 1rem;
	}

	.mobile-menu-panel__search {
		right: 0;
		bottom: 0;
		left: 0;
		width: 100%;
		padding: 1rem max(1rem, env(safe-area-inset-right)) max(2rem, env(safe-area-inset-bottom)) max(1rem, env(safe-area-inset-left));
	}

	body.mobile-menu-open .site-header::before {
		height: calc(8.75rem + env(safe-area-inset-top) - var(--hr-viewport-top-offset));
	}
}

@media (max-width: 47.99rem) {
	.site-header__inner {
		position: relative;
	}

	.site-header .site-logo,
	.hradistko-front-page .site-logo,
	.hradistko-front-page .site-header.is-sticky-visible .site-logo {
		position: absolute;
		top: 2rem;
		left: 0;
		width: 6.125rem;
		padding: 0;
		margin: 0;
	}

	.site-header .mobile-menu-toggle {
		position: absolute;
		top: 2rem;
		right: 0;
	}

	/* Inner pages use the compact 80px header from the desktop subpage frame.
	 * Keeping the oversized cover crest here made it collide with breadcrumbs. */
	.hradistko-site:not(.hradistko-front-page) .site-header .site-logo {
		top: 0.875rem;
		width: 3rem;
	}

	.hradistko-site:not(.hradistko-front-page) .site-header .mobile-menu-toggle {
		top: 1rem;
	}

	.hradistko-front-page .site-header.is-sticky-visible .site-logo {
		top: 0.875rem;
		width: 3rem;
	}

	.hradistko-front-page .site-header.is-sticky-visible .mobile-menu-toggle {
		top: 1rem;
	}

	.hr-block--active-alert {
		width: 100%;
	}

	.hr-hero {
		height: min(calc(100svh - var(--hr-viewport-top-offset)), 52.75rem);
		min-height: 0;
	}

	.hr-hero__slide img {
		object-position: var(--hr-hero-position-mobile, 50% 50%);
	}

	.hr-hero__overlay {
		background: linear-gradient(to bottom, rgba(0, 0, 0, 0.68) 0, rgba(0, 0, 0, 0.55) 58%, rgba(0, 0, 0, 0.7) 100%);
	}

	.hr-hero__controls {
		right: 1rem;
		bottom: 4rem;
	}

	.hr-hero__ask {
		right: 1rem;
		bottom: 2rem;
		width: 3rem;
		height: 3rem;
	}

	.hr-hero__ask .hr-icon {
		width: 2.0625rem;
		height: 2.0625rem;
	}

	.hr-hero__dots {
		display: flex;
	}

	.hr-page--figma-layout > .hr-page__illustration,
	.hr-required-data__visual {
		position: relative;
		top: auto;
		right: auto;
		left: auto;
		width: min(100%, 18rem);
		margin: 0 auto 2rem;
	}

	.hr-page--rozpocet .hr-entry-content,
	.hr-page--rozvoj-obce .hr-entry-content,
	.hr-page--verejne-zakazky .hr-entry-content,
	.hr-page--e-podatelna .hr-entry-content,
	.hr-water-content {
		width: 100%;
		max-width: none;
	}

	.hr-page--uzemni-planovani .hr-entry-content,
	.hr-required-data__content {
		column-count: 1;
	}

	.hr-page--zastupitelstvo .hr-block--people-grid .hr-people-grid {
		grid-template-columns: 1fr;
		gap: 2.5rem;
	}

	.hr-page--zastupitelstvo .hr-person__photo {
		width: min(10.625rem, 54vw);
		height: auto;
		aspect-ratio: 1;
	}

	.hr-required-data__intro {
		width: 100%;
		min-height: 0;
		margin: 0 0 2.5rem;
	}

	.hr-required-data__heading {
		margin-top: 0;
		margin-bottom: 1.5rem;
	}

	.hr-required-data__people-box .wp-block-table {
		overflow-x: visible;
	}

	.hr-required-data__people-box table {
		width: 100%;
		table-layout: fixed;
	}

	.hr-required-data__people-box td:first-child {
		width: 52%;
	}

	.hr-required-data__people-box td:nth-child(2) {
		width: 48%;
	}

	.hr-page--mistni-poplatky .wp-block-table {
		margin-inline: 0;
		padding-inline: 0;
		overflow: visible;
	}

	/* The 1184px four-column component becomes labelled records on mobile.
	 * HTML table semantics stay intact while every value remains readable. */
	.hr-page--mistni-poplatky table,
	.hr-page--mistni-poplatky tbody,
	.hr-page--mistni-poplatky tr,
	.hr-page--mistni-poplatky td {
		display: block;
		width: 100%;
	}

	.hr-page--mistni-poplatky thead {
		position: absolute;
		width: 1px;
		height: 1px;
		padding: 0;
		margin: -1px;
		overflow: hidden;
		clip: rect(0, 0, 0, 0);
		white-space: nowrap;
		border: 0;
	}

	.hr-page--mistni-poplatky tbody tr {
		display: grid;
		gap: 0.75rem;
		padding: 1.25rem 0;
		border-bottom: 1px solid var(--hr-green);
	}

	.hr-page--mistni-poplatky tbody td {
		display: grid;
		grid-template-columns: minmax(7.5rem, 0.8fr) minmax(0, 1.2fr);
		gap: 1rem;
		align-items: start;
		padding: 0;
		border: 0;
		line-height: 1.4;
	}

	.hr-page--mistni-poplatky tbody td::before {
		color: var(--hr-black);
		font-family: var(--hr-display);
		font-weight: 600;
	}

	.hr-page--mistni-poplatky tbody td:nth-child(1)::before { content: "Poplatek"; }
	.hr-page--mistni-poplatky tbody td:nth-child(2)::before { content: "Výše"; }
	.hr-page--mistni-poplatky tbody td:nth-child(3)::before { content: "Datum splatnosti"; }
	.hr-page--mistni-poplatky tbody td:nth-child(4)::before { content: "Číslo účtu"; }

	.hr-water-shortcuts {
		display: grid;
		grid-template-columns: 1fr;
		gap: 0.75rem;
		margin-bottom: 2.5rem;
	}

	.hr-water-shortcuts .hr-button {
		justify-content: center;
		text-align: center;
	}

	.hr-forms-content,
	.hr-page--matrika-a-svatby .hr-entry-content,
	.hr-matrika-contact {
		width: 100%;
		max-width: none;
	}

	.hr-matrika-contact {
		grid-template-columns: 1fr;
		gap: 0;
		margin-bottom: 2.5rem;
	}

	.hr-matrika-contact__lead {
		min-height: 0;
		margin-bottom: 1rem;
	}

	.hr-matrika-content {
		margin-top: 3rem;
	}

	.hr-matrika-content .wpb-content-wrapper {
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}

	.hr-matrika-content .wpb-content-wrapper > :is(h2, p, .c-documents),
	.hr-matrika-content .wpb-content-wrapper > p:nth-of-type(n) {
		grid-column: 1;
		grid-row: auto;
	}

	.hr-water-contacts__grid {
		grid-template-columns: 1fr;
	}

	.hr-service-form .hr-form {
		grid-template-columns: 1fr;
		gap: 1rem;
	}

	.hr-service-form .hr-field--wide,
	.hr-service-form .hr-form__submit,
	.hr-service-form .hr-form-status {
		grid-column: 1;
	}

	.hr-page--spolky :is(.wpb-content-wrapper > p, .hr-entry-content > p):has(> a) {
		grid-template-columns: 1fr;
		gap: 0.75rem;
	}

	.hr-procurement-archive {
		position: static;
		margin-top: 3rem;
	}
}

@media (min-width: 64rem) and (max-height: 43.75rem) {
	.primary-navigation--desktop .sub-menu {
		max-width: calc(100vw - 2 * var(--hr-gutter));
	}
}

/* Canonical desktop homepage geometry from the composed 1280px frame.
 * Static dimensions stay exact; editorial blocks remain content-driven. */
@media (min-width: 74.01rem) {
	/* Editorial copy is WordPress data, not static Figma geometry. Keep the
	 * reference spacing as a minimum while allowing real copy to increase the
	 * row and section height without clipping the CTA or the next section. */
	.hradistko-front-page .hr-front-section,
	.hradistko-front-page .hr-front-section > .hr-container,
	.hradistko-front-page .hr-block--latest-posts {
		height: auto;
		min-height: 0;
	}

	.hradistko-front-page .hr-front-section {
		padding-bottom: clamp(1.6875rem, 2.109375vw, 2.109375rem);
	}

	.hradistko-front-page .hr-block--latest-posts .hr-card-grid,
	.hradistko-front-page .hr-block--latest-posts .hr-card {
		height: auto;
		min-height: 24.3125rem;
	}

	.hradistko-front-page .hr-block--latest-posts .hr-card__excerpt {
		display: block;
		overflow: visible;
		-webkit-line-clamp: unset;
		line-clamp: unset;
	}

	.hradistko-front-page .hr-block--latest-posts .hr-section-cta-row {
		position: static;
		justify-content: flex-end;
		margin-top: 2rem;
	}

	.hradistko-front-page .hr-block--latest-posts .hr-card__media {
		height: 10.625rem;
		min-height: 10.625rem;
		flex: 0 0 10.625rem;
		aspect-ratio: auto;
	}

	.hradistko-front-page .hr-quick-links__grid {
		display: grid;
		height: auto;
		min-height: 7.75rem;
		grid-template-columns: 19.5rem 36.9375rem;
		column-gap: 2rem;
		align-items: stretch;
	}

	.hradistko-front-page .hr-quick-links {
		height: auto;
		min-height: 26.5625rem;
		padding-bottom: 2rem;
	}

	.hradistko-front-page .hr-quick-links__alert,
	.hradistko-front-page .hr-block--active-alert {
		height: auto;
		min-height: 7.75rem;
	}

	.hradistko-front-page .hr-block--active-alert {
		position: relative;
		width: 19.5rem;
		padding: 0.75rem;
		overflow: visible;
	}

	.hradistko-front-page .hr-block--active-alert h2 {
		display: block;
		margin: 0;
		overflow: visible;
		-webkit-line-clamp: unset;
		line-clamp: unset;
	}

	.hradistko-front-page .hr-block--active-alert .hr-alert__content {
		display: block;
		margin-top: 0.25rem;
		overflow: visible;
		-webkit-line-clamp: unset;
		line-clamp: unset;
	}

	.hradistko-front-page .hr-quick-links__alert .hr-text-link {
		position: static;
		display: inline-flex;
		margin-top: 0.5rem;
		font-size: var(--hr-step--1);
		line-height: 1.3333;
	}

	.hradistko-front-page .hr-quick-links__nav {
		display: grid;
		width: auto;
		grid-template-columns: repeat(2, max-content);
		gap: 1.75rem 2rem;
		margin: 0;
	}

	.hradistko-front-page .hr-quick-links__nav a {
		width: max-content;
		max-width: 100%;
		height: 3rem;
		min-height: 3rem;
	}

	.hradistko-front-page .hr-front-events {
		height: auto;
		min-height: 35rem;
	}

	.hradistko-front-page .hr-front-events .hr-card-grid {
		height: auto;
		min-height: 17.125rem;
		align-items: stretch;
	}

	.hradistko-front-page .hr-front-events .hr-card--event {
		height: auto;
		min-height: 17.125rem;
	}

	.hradistko-front-page .hr-home-contact {
		height: auto;
		min-height: 38.5625rem;
		padding-bottom: 3rem;
	}

	.primary-navigation--desktop .sub-menu {
		width: min(15rem, calc(100vw - 2 * var(--hr-gutter)));
		min-width: 0;
		max-width: calc(100vw - 2 * var(--hr-gutter));
		height: auto;
		max-height: none;
		grid-auto-flow: row;
		grid-template-columns: minmax(0, 1fr);
		grid-template-rows: none;
		gap: 0.5rem;
		padding: 0.625rem 0.625rem 0.625rem 1.5rem;
		overflow: visible;
	}

	.primary-navigation--desktop > .primary-menu > .menu-item:last-child > .sub-menu {
		right: 0;
		left: auto;
	}

	.primary-navigation--desktop .sub-menu .menu-link,
	.primary-navigation--desktop .sub-menu .menu-label {
		min-height: 1.5rem;
		font-size: 1rem;
		line-height: 1.5rem;
	}
}

/* Canonical 390px homepage composition. The two illustration bands are
 * deliberate margins between Figma component frames, so each component keeps
 * its own measurable height while the artwork may bleed outside it. */
@media (min-width: 24rem) and (max-width: 47.99rem) {
	body.mobile-menu-open.hradistko-front-page .site-header .site-logo,
	body.mobile-menu-open.hradistko-front-page .site-header.is-sticky-visible .site-logo {
		top: 2rem;
		left: 0;
		width: 6.125rem;
	}

	.hradistko-front-page .hr-hero h1 {
		margin-left: 0.625rem;
		font-size: 3rem;
		line-height: 3.625rem;
	}

	.hradistko-front-page .hr-hero__content {
		padding-bottom: 16.75rem;
	}

	.hradistko-front-page .hr-hero__scroll {
		bottom: 2.85625rem;
	}

	.hradistko-front-page .hr-front-section {
		height: auto;
		min-height: 0;
		margin-bottom: 0;
		padding: 0;
	}

	.hradistko-front-page .hr-front-section > .hr-container,
	.hradistko-front-page .hr-block--latest-posts {
		height: auto;
	}

	.hradistko-front-page .hr-block--latest-posts {
		padding: 0 0 22.4375rem;
		overflow: visible;
	}

	.hradistko-front-page .hr-block--latest-posts .hr-section-heading {
		padding-top: 2.125rem;
		margin-bottom: 2rem;
	}

	.hradistko-front-page :is(.hr-block--latest-posts, .hr-front-events, .hr-quick-links) .hr-section-heading h2,
	.hradistko-front-page .hr-home-contact h2 {
		font-size: 2rem;
		line-height: 2.5rem;
	}

	.hradistko-front-page .hr-block--latest-posts .hr-card-grid {
		display: grid;
		height: auto;
		grid-template-rows: none;
		grid-auto-rows: auto;
		gap: 3.6875rem;
	}

	.hradistko-front-page .hr-block--latest-posts .hr-card {
		position: relative;
		display: flex;
		height: auto;
		min-height: 28.8125rem;
		padding: 0;
		border: 0;
	}

	.hradistko-front-page .hr-block--latest-posts .hr-card:nth-child(-n + 2)::after {
		position: absolute;
		right: 0;
		bottom: -1.875rem;
		left: 0;
		height: 1px;
		background: var(--hr-line);
		content: "";
	}

	.hradistko-front-page .hr-block--latest-posts .hr-card:nth-child(n + 4) {
		display: none;
	}

	.hradistko-front-page .hr-block--latest-posts .hr-card__media {
		height: 14.8125rem;
		min-height: 14.8125rem;
		flex: 0 0 14.8125rem;
		margin-bottom: 1rem;
		aspect-ratio: auto;
	}

	.hradistko-front-page .hr-block--latest-posts .hr-card__meta {
		min-height: 1rem;
		margin-bottom: 1.125rem;
		line-height: 1rem;
	}

	.hradistko-front-page .hr-block--latest-posts .hr-card__title {
		min-height: 3.25rem;
		margin: 0 0 0.75rem;
		font-size: 1.25rem;
		line-height: 1.625rem;
	}

	.hradistko-front-page .hr-block--latest-posts .hr-card__excerpt {
		min-height: 4.125rem;
		margin: 0 0 1.125rem;
		overflow: visible;
		font-size: 1rem;
		line-height: 1.375rem;
	}

	.hradistko-front-page .hr-block--latest-posts .hr-card__more {
		font-size: 1.25rem;
		line-height: 1.625rem;
	}

	.hradistko-front-page .hr-block--latest-posts .hr-section-cta-row {
		position: static;
		justify-content: center;
		width: auto;
		margin: 2.5rem 0 0;
		transform: none;
	}

	.hradistko-front-page .hr-block--latest-posts::after {
		top: auto;
		bottom: 0;
		left: -1rem;
		width: 18.25rem;
		height: 20rem;
		background-image: url("../images/news-illustration-mobile.png");
	}

	.hradistko-front-page .hr-front-events {
		height: auto;
		min-height: 0;
		margin-bottom: 0;
		padding: 0;
		overflow: visible;
	}

	.hradistko-front-page .hr-front-events > .hr-container {
		height: auto;
		padding-bottom: 25.988586rem;
	}

	.hradistko-front-page .hr-front-events .hr-block {
		position: relative;
		height: auto;
	}

	.hradistko-front-page .hr-front-events .hr-section-heading {
		padding-top: 1.6875rem;
		margin-bottom: 2rem;
	}

	.hradistko-front-page .hr-front-events .hr-card-grid {
		position: relative;
		display: grid;
		height: auto;
		min-height: 0;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		grid-template-rows: none;
		grid-auto-rows: auto;
		gap: 3.4375rem 1.0625rem;
	}

	.hradistko-front-page .hr-front-events .hr-card-grid::after {
		position: absolute;
		top: 18.8125rem;
		right: 0;
		left: 0;
		height: 1px;
		background: var(--hr-line);
		content: "";
	}

	.hradistko-front-page .hr-front-events .hr-card-grid:not(:has(> .hr-card:nth-child(3)))::after {
		display: none;
	}

	.hradistko-front-page .hr-front-events .hr-card--event {
		display: flex;
		height: auto;
		min-height: 17.125rem;
		padding: 0;
		flex-direction: column;
	}

	.hradistko-front-page .hr-front-events .hr-card__date {
		min-height: 1.625rem;
		margin: 0 0 0.625rem;
		font-size: 1.25rem;
		line-height: 1.625rem;
	}

	.hradistko-front-page .hr-front-events .hr-card__media {
		height: 10.625rem;
		min-height: 10.625rem;
		margin: 0 0 1rem;
		aspect-ratio: 1;
	}

	.hradistko-front-page .hr-front-events .hr-card__title {
		display: block;
		min-height: 3.25rem;
		margin: 0;
		overflow: visible;
		font-size: 1.25rem;
		line-height: 1.625rem;
		-webkit-line-clamp: unset;
		line-clamp: unset;
	}

	.hradistko-front-page .hr-front-events .hr-section-cta-row {
		position: static;
		justify-content: center;
		margin: 2.5rem 0 0;
		transform: none;
	}

	.hradistko-front-page .hr-front-events .hr-section-cta {
		min-height: 2.75rem;
		height: 2.75rem;
	}

	.hradistko-front-page .hr-front-events > .hr-container::before {
		top: auto;
		right: auto;
		bottom: 0;
		left: 3.3125rem;
		width: 20.0625rem;
		height: 23.5rem;
		background-image: url("../images/events-illustration-mobile.png");
	}

	.hradistko-front-page .hr-quick-links {
		height: auto;
		min-height: 32.4375rem;
		padding: 0 0 2rem;
		border-top: 0;
	}

	.hradistko-front-page .hr-quick-links .hr-section-heading {
		padding-top: 1.6875rem;
		margin-bottom: 2rem;
	}

	.hradistko-front-page .hr-quick-links__grid {
		display: block;
		height: auto;
	}

	.hradistko-front-page .hr-quick-links__alert {
		height: auto;
		min-height: 7.75rem;
	}

	.hradistko-front-page .hr-block--active-alert {
		position: relative;
		height: auto;
		min-height: 7.75rem;
		padding: 0.75rem;
		overflow: visible;
	}

	.hradistko-front-page .hr-block--active-alert h2 {
		display: block;
		margin: 0;
		overflow: visible;
		-webkit-line-clamp: unset;
		line-clamp: unset;
	}

	.hradistko-front-page .hr-block--active-alert .hr-alert__content {
		display: block;
		margin-top: 0.25rem;
		overflow: visible;
		-webkit-line-clamp: unset;
		line-clamp: unset;
	}

	.hradistko-front-page .hr-quick-links__alert .hr-text-link {
		position: static;
		display: inline-flex;
		margin-top: 0.5rem;
		font-size: var(--hr-step--1);
		line-height: 1.3333;
	}

	.hradistko-front-page .hr-quick-links__nav {
		width: 22.375rem;
		grid-template-columns: 1fr;
		gap: 1rem;
		margin-top: 1.5rem;
	}

	.hradistko-front-page .hr-quick-links__nav a {
		width: 22.375rem;
		height: 3rem;
		min-height: 3rem;
		font-size: 1.25rem;
		line-height: 1.625rem;
	}

	.hradistko-front-page .hr-quick-links__newsletter,
	.hradistko-front-page .hr-quick-links__illustration {
		display: none;
	}

	.hradistko-front-page .hr-home-contact {
		height: auto;
		min-height: 98.3125rem;
		padding: 3rem 0 4rem;
		border-top: 0;
	}

	.hradistko-front-page .hr-home-contact__grid {
		display: grid;
		height: auto;
		grid-template-columns: 1fr;
		gap: 0;
	}

	.hradistko-front-page .hr-home-contact .hr-newsletter-preview {
		display: block;
		height: 34.413125rem;
	}

	.hradistko-front-page .hr-newsletter-preview__cover,
	.hradistko-front-page .hr-newsletter-preview__cover img {
		width: 100%;
		height: 31.788188rem;
	}

	.hradistko-front-page .hr-newsletter-preview__cover img {
		margin: 0 0 1rem;
		object-fit: cover;
		object-position: center;
	}

	.hradistko-front-page .hr-home-contact .hr-block--office-hours {
		height: auto;
		min-height: 14.25rem;
		margin-top: 3.875rem;
	}

	.hradistko-front-page .hr-home-contact .hr-block--office-hours > h2 {
		margin: 0 0 2.5rem;
	}

	.hradistko-front-page .hr-home-contact .hr-hours {
		height: auto;
		min-height: 9.25rem;
	}

	.hradistko-front-page .hr-home-contact .hr-block--contact-form {
		margin-top: 10.875rem;
	}

	.hradistko-front-page .hr-home-contact .hr-block--contact-form > h2 {
		margin: 0;
	}

	.hradistko-front-page .hr-home-contact .hr-form {
		gap: 0.75rem;
		margin-top: 2.5rem;
	}

	.hradistko-front-page .hr-home-contact .hr-form__submit {
		min-width: 11.625rem;
		justify-self: center;
		margin-top: 2.3125rem;
	}

	.hradistko-front-page .site-footer {
		height: 81.625rem;
		min-height: 81.625rem;
	}

	.site-footer {
		position: relative;
		height: 81.625rem;
		min-height: 81.625rem;
		padding: 0;
	}

	.site-footer .site-footer__grid {
		position: relative;
		display: block;
		width: 24.375rem;
		height: 81.625rem;
		padding: 0;
		margin: 0;
	}

	.site-footer__brand,
	.site-footer__map,
	.site-footer__contact,
	.site-footer__newsletter {
		position: absolute;
		left: 1rem;
		padding: 0;
		margin: 0;
	}

	.site-footer__brand {
		inset: 0;
		height: 100%;
	}

	.site-footer__title {
		position: absolute;
		top: 2.9375rem;
		left: 1rem;
		width: 22.375rem;
		margin: 0;
		font-size: 3rem;
		line-height: 3.625rem;
	}

	.site-footer__map {
		top: 14.1875rem;
		width: 22.375rem;
		height: 19.5rem;
		border-bottom: 1px solid rgba(255, 255, 255, 0.72);
	}

	.site-footer h2 {
		margin: 0;
		font-size: 1.25rem;
		line-height: 1.625rem;
	}

	.site-footer__map img {
		position: absolute;
		top: 3.1875rem;
		left: 1.4375rem;
		width: 19.1875rem;
		height: 13.11rem;
		margin: 0;
		object-fit: cover;
		object-position: center bottom;
	}

	.site-footer__map > a {
		position: absolute;
		top: 15.8125rem;
		left: 0;
	}

	.site-footer__contact {
		top: 36.125rem;
		width: 22.375rem;
		height: 18.9375rem;
		border-bottom: 1px solid rgba(255, 255, 255, 0.72);
	}

	.site-footer__contact address {
		width: 17.0625rem;
		margin: 2rem 0 0;
	}

	.site-footer__contact > p {
		width: 17.0625rem;
		margin: 1rem 0 0;
	}

	.site-footer__contact > a {
		display: block;
		width: 17.0625rem;
		margin-top: 2rem;
	}

	.site-footer__contact-label {
		font-family: var(--hr-body);
		font-weight: 400;
	}

	.site-footer__contact-value {
		font-family: var(--hr-display);
		font-weight: 600;
	}

	.site-footer__newsletter {
		top: 57.5rem;
		width: 22.375rem;
	}

	.site-footer__newsletter > p {
		width: 17rem;
		margin: 2rem 0 1rem;
	}

	.site-footer__newsletter .newsletter-form {
		width: 22.375rem;
		height: 3rem;
		margin: 0 0 2rem;
	}

	.hradistko-site .site-footer .newsletter-form input,
	.hradistko-site .site-footer .newsletter-form input:hover,
	.hradistko-site .site-footer .newsletter-form input:focus {
		height: 3rem;
		min-height: 3rem;
	}

	.site-footer__newsletter .newsletter-form .hr-icon {
		width: 1.885125rem;
		height: 1.885125rem;
		transform: translateX(-10.21875px);
	}

	.site-footer__legal,
	.site-footer__utility {
		position: absolute;
		right: 1rem;
		left: 1rem;
		margin: 0;
		font-size: 0.625rem;
		line-height: 1rem;
	}

	.site-footer__legal {
		top: 74.875rem;
		font-family: var(--hr-display);
		font-weight: 600;
	}

	.site-footer__utility {
		top: 76.0625rem;
	}

	.site-footer .footer-utility-menu {
		display: flex;
		flex-wrap: wrap;
		gap: 0 0.25rem;
		font-size: 0.625rem;
		line-height: 1rem;
	}

	.site-footer .footer-utility-menu li:not(:last-child)::after {
		content: " /";
	}

	/* Keep the 390px footer composition, but let WordPress contact and legal
	 * values grow in normal document flow. The former absolute canvas could
	 * overlap as soon as the municipality exposed a second phone number. */
	.hradistko-front-page .site-footer,
	.site-footer {
		height: auto;
		min-height: 81.625rem;
		padding: 2.9375rem 1rem 2.625rem;
	}

	.site-footer .site-footer__grid {
		position: relative;
		display: grid;
		width: 100%;
		height: auto;
		grid-template-columns: minmax(0, 1fr);
		gap: 0;
		padding: 0;
		margin: 0;
	}

	.site-footer__brand {
		display: contents;
	}

	.site-footer__title,
	.site-footer__map,
	.site-footer__contact,
	.site-footer__newsletter,
	.site-footer__legal,
	.site-footer__utility {
		position: static;
		inset: auto;
		width: auto;
		height: auto;
		margin-inline: 0;
	}

	.site-footer__title {
		order: 1;
		margin: 0 0 4rem;
	}

	.site-footer__map {
		position: relative;
		order: 2;
		min-height: 19.5rem;
		padding: 0 0 2.5rem;
	}

	.site-footer__contact {
		order: 3;
		min-height: 18.9375rem;
		padding: 2.5rem 0;
	}

	.site-footer__contact address,
	.site-footer__contact > p,
	.site-footer__contact > a {
		width: min(100%, 17.0625rem);
	}

	.site-footer__contact > a {
		margin-top: 2rem;
	}

	.site-footer__newsletter {
		order: 4;
		padding-top: 2.5rem;
	}

	.site-footer__newsletter .newsletter-form {
		width: 100%;
		height: 3rem;
		margin: 0 0 2rem;
	}

	.site-footer__legal {
		order: 5;
		margin-top: 2.5rem;
	}

	.site-footer__utility {
		order: 6;
		margin-top: 0.1875rem;
	}
}

/* Narrow-phone fallback below the 390px canonical composition. */
@media (max-width: 23.99rem) {
	.hradistko-front-page .hr-front-section {
		height: auto;
		min-height: 0;
		padding: 0;
	}

	.hradistko-front-page .hr-block--latest-posts {
		height: auto;
		min-height: 0;
		padding: 0 0 20rem;
		border-bottom: 0;
	}

	.hradistko-front-page .hr-block--latest-posts .hr-section-heading {
		box-sizing: content-box;
		padding-top: 2.125rem;
		margin-bottom: 2.078125rem;
		border-top: 0;
	}

	.hradistko-front-page .hr-block--latest-posts .hr-card:nth-child(n + 4) {
		display: none;
	}

	.hradistko-front-page .hr-block--latest-posts .hr-card-grid {
		gap: 1.75rem;
	}

	.hradistko-front-page .hr-block--latest-posts .hr-card {
		display: flex;
		height: auto;
		min-height: 0;
		flex-direction: column;
	}

	.hradistko-front-page .hr-block--latest-posts .hr-card__title,
	.hradistko-front-page .hr-block--latest-posts .hr-card__excerpt {
		display: block;
		overflow: visible;
		-webkit-line-clamp: unset;
		line-clamp: unset;
	}

	.hradistko-front-page .hr-block--latest-posts .hr-card__more {
		margin-top: auto;
	}

	.hradistko-front-page .hr-block--latest-posts .hr-section-cta-row {
		position: static;
		margin-top: 2.5rem;
	}

	.hradistko-front-page .hr-block--latest-posts::after {
		top: auto;
		bottom: 0;
		left: calc(-9.5625rem - var(--hr-gutter) - 0.875rem);
		width: 27.75rem;
	}

	.hradistko-front-page .hr-front-events {
		height: auto;
		min-height: 0;
		padding: 1.6875rem 0 0;
	}

	.hradistko-front-page .hr-front-events > .hr-container {
		height: auto;
		/* The bridge is 34.25rem wide (about 23.48rem high). Reserve its
		 * complete height after the CTA so it never shares the cards' space. */
		padding-bottom: 24.5rem;
	}

	.hradistko-front-page .hr-front-events .hr-block {
		height: auto;
	}

	.hradistko-front-page .hr-front-events .hr-section-heading {
		margin-bottom: 2.078125rem;
	}

	.hradistko-front-page .hr-card-grid--events {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 1.6875rem 1.0625rem;
	}

	.hradistko-front-page .hr-front-events .hr-card--event {
		height: auto;
		min-height: 0;
		padding: 0;
	}

	.hradistko-front-page .hr-front-events .hr-card__media {
		width: 100%;
		height: auto;
		aspect-ratio: 1;
	}

	.hradistko-front-page .hr-front-events .hr-section-cta-row {
		position: static;
		margin-top: 2.5rem;
	}

	.hradistko-front-page .hr-front-events > .hr-container::before {
		right: auto;
		bottom: 0;
		left: 4.3125rem;
		width: 34.25rem;
	}

	.hradistko-front-page .hr-quick-links {
		height: auto;
		min-height: 0;
		padding: 1.6875rem 0 0;
	}

	.hradistko-front-page .hr-quick-links .hr-section-heading {
		padding-top: 0;
		margin: 0 0 2rem;
	}

	.hradistko-front-page .hr-quick-links__grid {
		gap: 1.5rem;
	}

	.hradistko-front-page .hr-quick-links__newsletter {
		margin-top: 1.765625rem;
	}

	.hradistko-front-page .hr-home-contact {
		height: auto;
		min-height: 0;
		padding: 2.5rem 0 2.75rem;
	}

	.hradistko-front-page .hr-home-contact__grid {
		row-gap: clamp(3rem, 12vw, 5rem);
	}

	.hradistko-front-page .hr-home-contact .hr-block--contact-form h2 {
		line-height: 1.25;
	}

	.hradistko-front-page .hr-home-contact .hr-form {
		margin-top: 40px;
	}

	.hradistko-front-page .hr-home-contact .hr-field input {
		height: 44px;
		min-height: 44px;
	}

	.hradistko-front-page .hr-home-contact .hr-field textarea {
		height: 148px;
		min-height: 148px;
	}

	.hradistko-front-page .hr-home-contact .hr-form__submit {
		margin-top: 37px;
	}

	.site-footer {
		position: relative;
		min-height: 81.625rem;
		padding: 2.9375rem var(--hr-gutter) 3.625rem;
	}

	.site-footer .site-footer__grid {
		width: 100%;
		padding: 0;
		gap: 2.5rem;
	}

	.site-footer__brand {
		height: 8.75rem;
	}

	.site-footer__title {
		font-size: var(--hr-footer-title);
		line-height: 1.2083;
	}

	.site-footer__legal,
	.site-footer__utility {
		position: absolute;
		right: var(--hr-gutter);
		left: var(--hr-gutter);
		margin: 0;
	}

	.site-footer__legal {
		/* The utility navigation occupies four lines below. Keep the copyright
		 * clear of it instead of letting the two absolute blocks overlap. */
		bottom: 6.25rem;
		font-size: var(--hr-step-micro);
		line-height: 1.5;
	}

	.site-footer__utility {
		bottom: 2.625rem;
	}

	.site-footer__map {
		position: relative;
		height: 19.4375rem;
		padding-bottom: 2.5rem;
		border-bottom: 1px solid rgba(255, 255, 255, 0.72);
	}

	.site-footer h2 {
		margin: 0;
		font-size: var(--hr-step-1);
		line-height: 1.3;
	}

	.site-footer__map img {
		position: absolute;
		top: 3.1875rem;
		left: 1.4375rem;
		width: 19.1875rem;
		height: 13.11rem;
		margin: 0;
	}

	.site-footer__map > a {
		position: absolute;
		top: 15.8125rem;
		left: 0;
	}

	.site-footer__contact {
		min-height: 18.25rem;
		padding-bottom: 2.5rem;
		border-bottom: 1px solid rgba(255, 255, 255, 0.72);
	}

	.site-footer__contact address {
		margin-top: 2rem;
	}

	.site-footer__contact > p {
		margin: 1rem 0 0;
	}

	.site-footer__contact-label {
		font-family: var(--hr-body);
		font-weight: 400;
	}

	.site-footer__contact-value {
		font-family: var(--hr-display);
		font-weight: 600;
	}

	.site-footer__contact > a {
		display: block;
		margin-top: 2rem;
	}

	.site-footer__newsletter > p {
		width: min(100%, 17rem);
		margin: 2rem 0 1rem;
	}

	.site-footer__newsletter .newsletter-form {
		margin-bottom: 2rem;
	}

	.site-footer__newsletter .newsletter-form .hr-icon {
		width: 1.885125rem;
		height: 1.885125rem;
		transform: translateX(-10.21875px);
	}
}

/* Keep WordPress/Astra block controls inside the municipal design system. */
.hradistko-site .wp-element-button,
.hradistko-site .wp-block-button__link {
	min-height: 3rem !important;
	padding: 0.7rem 1.25rem !important;
	color: var(--hr-white) !important;
	background-color: var(--hr-green-dark) !important;
	border: 2px solid var(--hr-green-dark) !important;
	border-radius: var(--hr-pill) !important;
	box-shadow: none !important;
	font-family: var(--hr-display) !important;
	font-weight: 600 !important;
	line-height: 1.15 !important;
	text-decoration: none !important;
}

.hradistko-site .wp-element-button:hover,
.hradistko-site .wp-block-button__link:hover {
	color: var(--hr-white) !important;
	background-color: var(--hr-green-deep) !important;
	border-color: var(--hr-green-deep) !important;
}

@media (max-width: 74rem) {
	.hr-newsletter-archive__intro {
		grid-template-columns: minmax(0, 1fr) minmax(18rem, 0.8fr);
		gap: 2rem;
	}

	.hr-card-grid--newsletters {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 47.99rem) {
	.hr-newsletter-archive__intro {
		grid-template-columns: 1fr;
	}

	.hr-newsletter-archive__illustration {
		grid-row: 1;
		width: min(100%, 23rem);
		margin: 0 auto;
	}

	.hr-card-grid--newsletters {
		gap: 2.5rem 1rem;
	}
}

@media (max-width: 23.99rem) {
	.hr-card-grid--newsletters {
		grid-template-columns: 1fr;
	}
}

@media print {
	.site-header,
	.site-footer,
	.hr-form,
	.navigation.pagination {
		display: none !important;
	}

	a::after {
		content: " (" attr(href) ")";
		font-size: 0.8em;
	}

	.site-main {
		padding: 0;
	}
}
