:root {
	--hsch-primary: #fea116;
	--hsch-dark: #1b4f9c;
	--hsch-light: #f1f8ff;
	--hsch-bg: #ffffff;
	--hsch-text: #666565;
	--hsch-heading: #0f172b;
	--hsch-line: rgba(15, 23, 43, 0.08);
	--hsch-shadow: 0 0 45px rgba(0, 0, 0, 0.08);
	--hsch-radius: 2px;
	--hsch-shell: 1200px;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	font-family: "Heebo", Arial, sans-serif;
	color: var(--hsch-text);
	background: var(--hsch-bg);
	line-height: 1.6;
}

a {
	color: inherit;
	text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 0 0 16px;
	font-family: "Montserrat", Arial, sans-serif;
	color: var(--hsch-heading);
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

.site-shell {
	min-height: 100vh;
}

.content-shell {
	width: min(calc(100% - 32px), var(--hsch-shell));
	margin: 0 auto;
}

.site-header {
	background: var(--hsch-dark);
	position: relative;
	box-shadow: 0 10px 30px rgba(15, 23, 43, 0.14);
}

.header-top {
	background: #fff;
	border-bottom: 1px solid rgba(15, 23, 43, 0.06);
}

.header-top__inner,
.header-main__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
}

.header-top__inner {
	padding: 8px 0;
	padding-left: 334px;
	color: var(--hsch-heading);
	font-size: 0.92rem;
	justify-content: space-between;
}

.header-contact,
.header-social,
.header-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
}

.header-meta {
	align-items: center;
	margin-left: auto;
}

.header-contact span,
.header-social a {
	position: relative;
}

.header-social {
	align-items: center;
	gap: 12px;
}

.header-social a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 24px;
	height: 24px;
	color: var(--hsch-heading);
}

.header-social svg {
	width: 18px;
	height: 18px;
	fill: currentColor;
	display: block;
}

.member-badge {
	padding: 6px 12px;
	border-radius: 999px;
	background: rgba(254, 161, 22, 0.14);
	color: var(--hsch-dark);
	font-size: 0.86rem;
	font-weight: 700;
}

.header-social a + a::before,
.header-contact span + span::before {
	content: "";
	position: absolute;
	left: -10px;
	top: 50%;
	width: 4px;
	height: 4px;
	border-radius: 50%;
	background: rgba(15, 23, 43, 0.24);
	transform: translateY(-50%);
}

.header-social a + a::before {
	display: none;
}

.header-social a:hover,
.site-nav a:hover,
.text-link:hover,
.footer-links a:hover,
.footer-menu a:hover {
	color: var(--hsch-primary);
}

.header-main__inner {
	padding: 0;
	align-items: stretch;
}

.site-logo {
	display: flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 286px;
	width: 286px;
	min-height: 132px;
	margin-top: -40px;
	background: var(--hsch-dark);
	position: relative;
	z-index: 2;
}

.site-logo img {
	max-height: 96px;
	position: relative;
	left: -12px;
	top: 0;
}

.site-nav {
	margin-left: auto;
	padding: 0 20px;
	min-width: 0;
}

.nav-toggle {
	display: none;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	width: 48px;
	height: 48px;
	padding: 0;
	border: 1px solid rgba(255, 255, 255, 0.2);
	background: transparent;
	cursor: pointer;
}

.nav-toggle span {
	display: block;
	width: 22px;
	height: 2px;
	margin: 0 auto;
	background: #fff;
}

.site-nav__menu {
	list-style: none;
	display: flex;
	flex-wrap: nowrap;
	align-items: center;
	gap: 22px;
	margin: 0;
	padding: 0;
}

.site-nav__menu li {
	position: relative;
}

.site-nav__menu > li > a {
	display: inline-flex;
	align-items: center;
}

.site-nav__menu > li.current-menu-item > a,
.site-nav__menu > li.current-menu-ancestor > a,
.site-nav__menu > li.current-page-ancestor > a {
	color: var(--hsch-primary);
}

.site-nav a {
	padding: 30px 0;
	color: #fff;
	font-family: "Heebo", Arial, sans-serif;
	font-size: 0.84rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.01em;
	transition: color 0.18s ease;
	white-space: nowrap;
}

.site-nav__menu .sub-menu {
	list-style: none;
	position: absolute;
	top: calc(100% - 14px);
	left: 0;
	min-width: 220px;
	margin: 0;
	padding: 10px 0;
	background: #fff;
	box-shadow: var(--hsch-shadow);
	display: none;
	z-index: 20;
	border-top: 2px solid var(--hsch-primary);
}

.site-nav__menu .sub-menu li {
	width: 100%;
}

.site-nav__menu .sub-menu a {
	display: block;
	padding: 10px 16px;
	color: var(--hsch-dark);
	font-size: 0.9rem;
	text-transform: none;
	letter-spacing: 0;
}

.site-nav__menu .sub-menu .sub-menu {
	top: 0;
	left: 100%;
}

.site-nav__menu li:hover > .sub-menu {
	display: block;
}

.site-nav__menu .menu-item-has-children > a::after {
	content: "";
	display: inline-block;
	margin-left: 8px;
	border-left: 4px solid transparent;
	border-right: 4px solid transparent;
	border-top: 5px solid currentColor;
}

.header-login {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	flex: 0 0 auto;
	padding: 32px 22px;
	background: var(--hsch-primary);
	color: #fff;
	font-family: "Heebo", Arial, sans-serif;
	font-size: 0.95rem;
	font-weight: 700;
	text-transform: uppercase;
	transition: background-color 0.18s ease;
}

.header-login::after {
	content: ">";
	font-size: 1rem;
	line-height: 1;
}

.header-login:hover {
	background: #f2a928;
}

.site-main {
	padding: 0 0 72px;
}

.hero {
	padding: 136px 0;
	background-position: center;
	background-size: cover;
	position: relative;
	overflow: hidden;
}

.hero::before {
	content: "";
	position: absolute;
	inset: 0;
	background:
		radial-gradient(circle at top center, rgba(254, 161, 22, 0.16), transparent 34%),
		linear-gradient(180deg, rgba(15, 23, 43, 0.04), rgba(15, 23, 43, 0.18));
	pointer-events: none;
}

.hero__inner {
	max-width: 700px;
	text-align: center;
	margin: 0 auto;
	padding: 0 8px;
	position: relative;
	z-index: 1;
}

.section-tag {
	margin: 0 0 14px;
	font-size: 0.8rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--hsch-primary);
}

.section-tag--light {
	color: #fff;
}

.hero__title {
	font-size: clamp(2.9rem, 6vw, 4.9rem);
	line-height: 1.12;
	color: #fff;
	margin-bottom: 20px;
}

.hero__lead {
	margin: 0 auto;
	max-width: 650px;
	font-size: 1.08rem;
	color: rgba(255, 255, 255, 0.84);
	text-shadow: 0 1px 1px rgba(0, 0, 0, 0.14);
}

.hero__actions,
.newsletter-form {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin-top: 28px;
	justify-content: center;
}

.hero__actions--left {
	justify-content: flex-start;
}

/* Hero carousel — címoldal */
.hero-carousel {
	padding: 0;
	position: relative;
}

.hero-carousel__track {
	position: relative;
	min-height: 540px;
}

.hero-carousel__slide {
	position: absolute;
	inset: 0;
	padding: 136px 0;
	background-position: center;
	background-size: cover;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.7s ease;
	display: flex;
	align-items: center;
	justify-content: center;
}

.hero-carousel__slide.is-active {
	opacity: 1;
	visibility: visible;
	position: relative;
}

.hero-carousel__nav {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 46px;
	height: 46px;
	border-radius: 50%;
	border: 0;
	background: rgba(255, 255, 255, 0.18);
	color: #fff;
	font-size: 1.8rem;
	line-height: 1;
	cursor: pointer;
	z-index: 3;
	transition: background 0.2s;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0;
}

.hero-carousel__nav:hover,
.hero-carousel__nav:focus-visible {
	background: rgba(255, 255, 255, 0.34);
	outline: none;
}

.hero-carousel__nav--prev { left: 18px; }
.hero-carousel__nav--next { right: 18px; }

.hero-carousel__dots {
	position: absolute;
	bottom: 22px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	gap: 10px;
	z-index: 3;
}

.hero-carousel__dot {
	width: 11px;
	height: 11px;
	border-radius: 50%;
	border: 0;
	background: rgba(255, 255, 255, 0.45);
	cursor: pointer;
	padding: 0;
	transition: background 0.2s, transform 0.2s;
}

.hero-carousel__dot:hover {
	background: rgba(255, 255, 255, 0.72);
}

.hero-carousel__dot.is-active {
	background: var(--hsch-primary);
	transform: scale(1.18);
}

@media (max-width: 640px) {
	.hero-carousel__track { min-height: 460px; }
	.hero-carousel__nav { width: 38px; height: 38px; font-size: 1.5rem; }
	.hero-carousel__nav--prev { left: 8px; }
	.hero-carousel__nav--next { right: 8px; }
}

.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 14px 22px;
	border: 0;
	border-radius: 2px;
	font-size: 0.95rem;
	font-weight: 700;
	transition: transform 0.18s ease, background-color 0.18s ease, color 0.18s ease;
	text-transform: uppercase;
	cursor: pointer;
}

.button:hover {
	transform: translateY(-1px);
}

.button--primary {
	background: var(--hsch-primary);
	color: #fff;
	box-shadow: 0 12px 28px rgba(254, 161, 22, 0.18);
}

.button--secondary {
	border: 1px solid rgba(255, 255, 255, 0.25);
	color: #fff;
	background: transparent;
}

.button--dark {
	border: 1px solid var(--hsch-dark);
	color: var(--hsch-dark);
	background: transparent;
}

.section {
	padding: 88px 0 0;
}

.section--compact {
	padding: 28px 0 0;
}

.inner-hero {
	padding: 70px 0 10px;
	background: #f8f9fa;
}

.inner-hero--page {
	position: relative;
	padding: 38px 0 12px;
	background:
		radial-gradient(circle at top right, rgba(108, 122, 137, 0.14), transparent 34%),
		linear-gradient(180deg, #f7f9fc 0%, #edf2f6 100%);
	overflow: hidden;
}

.inner-hero--page::after {
	content: "";
	position: absolute;
	inset: auto 0 0;
	height: 1px;
	background: linear-gradient(90deg, rgba(27, 79, 156, 0), rgba(27, 79, 156, 0.18), rgba(27, 79, 156, 0));
}

.inner-hero p {
	max-width: 760px;
}

.inner-hero--page h1 {
	max-width: 820px;
	margin-bottom: 8px;
	font-size: clamp(1.7rem, 3.4vw, 2.55rem);
	line-height: 1.04;
}

.page-intro__lead {
	font-size: 0.98rem;
	line-height: 1.65;
	color: rgba(15, 23, 43, 0.78);
}

.page-section {
	padding-top: 20px;
}

.section--hotel-subnav {
	padding: 0 0 24px;
	background: #f8f9fa;
}

.hotel-subnav-card {
	margin-top: -22px;
	padding: 18px 18px 0;
	background: #ffffff;
	border: 1px solid rgba(15, 23, 43, 0.08);
	box-shadow: var(--hsch-shadow);
	position: relative;
	z-index: 2;
}

.hotel-subnav-card__label {
	margin: 0 0 14px;
	font-size: 0.9rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--hsch-primary);
}

.hotel-local-nav {
	background: #fff;
	border-top: 1px solid rgba(15, 23, 43, 0.08);
}

.hotel-local-nav__list {
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	gap: 0;
	margin: 0;
	padding: 0;
}

.hotel-local-nav__list li {
	flex: 1 1 160px;
	border-right: 1px solid rgba(15, 23, 43, 0.08);
}

.hotel-local-nav__list li:last-child {
	border-right: 0;
}

.hotel-local-nav__list a {
	display: block;
	padding: 18px 16px;
	text-align: center;
	font-family: "Heebo", Arial, sans-serif;
	font-size: 0.88rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.03em;
	color: var(--hsch-heading);
}

.hotel-local-nav__list li.is-current a,
.hotel-local-nav__list a:hover {
	background: rgba(254, 161, 22, 0.12);
	color: var(--hsch-primary);
}

.section-heading {
	margin-bottom: 44px;
}

.section-heading--center {
	text-align: center;
}

.section-heading h2,
.section-copy h2,
.newsletter-box h2 {
	font-size: clamp(2rem, 4vw, 3rem);
	line-height: 1.2;
}

.section--soft {
	background: #f8f9fa;
	padding-bottom: 80px;
}

.about-grid,
.detailed-list {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	gap: 48px;
	align-items: center;
}

.stats-grid,
.news-grid,
.hotel-grid {
	display: grid;
	gap: 24px;
}

.stats-grid {
	grid-template-columns: repeat(3, minmax(0, 1fr));
	margin-top: 30px;
}

.stat-card,
.news-card,
.hotel-card,
.detail-card,
.newsletter-box {
	background: #fff;
	box-shadow: var(--hsch-shadow);
}

.stat-card {
	padding: 26px 20px;
	text-align: center;
	border: 1px solid rgba(15, 23, 43, 0.12);
	box-shadow: none;
	position: relative;
}

.stat-card__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 58px;
	height: 58px;
	margin: 0 auto 14px;
	border-radius: 50%;
	background: rgba(254, 161, 22, 0.12);
	color: var(--hsch-primary);
}

.stat-card__icon svg {
	width: 28px;
	height: 28px;
	fill: currentColor;
	display: block;
}

.stat-card strong {
	display: block;
	font-family: "Montserrat", Arial, sans-serif;
	font-size: 2rem;
	color: var(--hsch-heading);
}

.stat-card span {
	display: block;
	margin-top: 6px;
}

.stat-card::before {
	content: "";
	position: absolute;
	inset: 6px;
	border: 1px solid rgba(15, 23, 43, 0.08);
	pointer-events: none;
}

.about-images {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 16px;
}

.about-images img {
	width: 100%;
	height: 240px;
	object-fit: cover;
	border-radius: 2px;
}

.about-images img:nth-child(1) {
	width: 75%;
	margin-left: auto;
	margin-top: 25%;
}

.about-images img:nth-child(3) {
	width: 50%;
	margin-left: auto;
}

.about-images img:nth-child(4) {
	width: 75%;
}

.about-cta {
	margin: 28px 0 0;
}

.news-grid {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.news-card {
	padding: 34px 28px;
	text-align: center;
	transition: background-color .3s ease, transform .3s ease;
	min-height: 100%;
	border-radius: 2px;
	border: 1px solid rgba(15, 23, 43, 0.06);
}

.news-card:hover {
	background: var(--hsch-primary);
	transform: translateY(-4px);
}

.news-card:hover h3,
.news-card:hover p,
.news-card:hover .news-card__icon {
	color: #fff;
}

.news-card__icon {
	width: 64px;
	height: 64px;
	margin: 0 auto 22px;
	border: 1px solid var(--hsch-line);
	display: grid;
	place-items: center;
	color: var(--hsch-primary);
	font-family: "Montserrat", Arial, sans-serif;
	font-weight: 700;
	font-size: 1.25rem;
}

.hotel-grid {
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.hotel-card img {
	width: 100%;
	height: 260px;
	object-fit: cover;
}

.hotel-card {
	border-radius: 2px;
	overflow: hidden;
	position: relative;
	background: #fff;
	box-shadow: var(--hsch-shadow);
	transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.hotel-card__link {
	display: block;
	color: inherit;
	height: 100%;
}

.hotel-card__badge {
	position: absolute;
	left: 50%;
	top: calc(260px - 19px);
	transform: translateX(-50%);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	z-index: 2;
}

.hotel-card__badge-button {
	width: 38px;
	height: 38px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: var(--hsch-primary);
	border-radius: 2px;
	box-shadow: 0 10px 24px rgba(254, 161, 22, 0.25);
	color: #fff;
}

.hotel-card__badge svg {
	width: 16px;
	height: 16px;
	fill: currentColor;
	display: block;
}

.hotel-card__body {
	padding: 28px 24px 24px;
	text-align: center;
	margin-top: 18px;
}

.hotel-card__body h3 {
	font-size: 1.18rem;
	margin-bottom: 6px;
}

.hotel-card__body p {
	margin: 0;
}

.hotel-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 18px 36px rgba(15, 23, 43, 0.14);
}

.hotel-location {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	margin: 6px 0 0;
	font-size: 1.15rem;
	font-weight: 600;
	color: var(--hsch-dark);
	letter-spacing: 0.01em;
}

.hotel-location::before {
	content: '';
	display: inline-block;
	width: 16px;
	height: 16px;
	background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%231b4f9c'><path d='M12 2C8.13 2 5 5.13 5 9c0 5.25 7 13 7 13s7-7.75 7-13c0-3.87-3.13-7-7-7zm0 9.5c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z'/></svg>");
	background-repeat: no-repeat;
	background-size: contain;
	flex-shrink: 0;
}

.hotel-card__body .hotel-location {
	justify-content: center;
	font-size: 1rem;
}

/* Programs list (page-programok.php) */
.programs-section {
	margin-top: 32px;
}

.programs-section:first-of-type {
	margin-top: 16px;
}

.programs-section__title {
	font-size: 1.4rem;
	color: var(--hsch-dark);
	margin: 0 0 18px;
	padding-bottom: 8px;
	border-bottom: 2px solid var(--hsch-primary);
}

.programs-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
	gap: 20px;
}

.program-card {
	display: flex;
	flex-direction: column;
	background: #fff;
	border: 1px solid var(--hsch-line);
	border-radius: var(--hsch-radius);
	overflow: hidden;
	transition: transform 0.2s, box-shadow 0.2s;
}

.program-card:hover {
	transform: translateY(-3px);
	box-shadow: 0 14px 28px rgba(15, 23, 43, 0.12);
}

.program-card__media {
	display: block;
	aspect-ratio: 4 / 3;
	background: #eee;
	overflow: hidden;
}

.program-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.3s;
}

.program-card:hover .program-card__media img {
	transform: scale(1.04);
}

.program-card__body {
	padding: 14px 16px 16px;
	display: flex;
	flex-direction: column;
	gap: 8px;
	flex: 1;
}

.program-card__title {
	margin: 0;
	font-size: 1.05rem;
	line-height: 1.3;
	color: var(--hsch-heading);
}

.program-card__title a {
	color: inherit;
	text-decoration: none;
}

.program-card__title a:hover {
	color: var(--hsch-primary);
}

.program-card__excerpt {
	margin: 0;
	font-size: 0.9rem;
	color: var(--hsch-text);
	line-height: 1.4;
}

.program-card__more {
	margin: auto 0 0;
	font-size: 0.9rem;
}

/* Program detail page */
.program-detail__image {
	margin: 0 0 24px;
}

.program-detail__image img {
	width: 100%;
	height: auto;
	border-radius: var(--hsch-radius);
}

.program-detail__back {
	margin-top: 32px;
	padding-top: 16px;
	border-top: 1px solid var(--hsch-line);
}

.program-region {
	font-size: 0.95rem;
	color: var(--hsch-primary);
	font-weight: 600;
	margin: 4px 0 0;
}

.detailed-hotels {
	padding-top: 50px;
}

.detailed-list {
	grid-template-columns: 1fr;
}

.detail-card {
	display: grid;
	grid-template-columns: 320px minmax(0, 1fr);
	gap: 32px;
	padding: 28px;
	align-items: center;
	border-radius: 2px;
	border: 1px solid rgba(15, 23, 43, 0.06);
}

.detail-card img {
	width: 100%;
	height: 220px;
	object-fit: cover;
	border-radius: 2px;
}

.text-link {
	font-family: "Montserrat", Arial, sans-serif;
	font-weight: 700;
	color: var(--hsch-primary);
}

.newsletter-box {
	padding: 56px 40px;
	text-align: center;
	border: 1px solid var(--hsch-line);
	border-radius: 2px;
	position: relative;
	z-index: 2;
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 1));
}

.newsletter-form input {
	min-width: min(100%, 420px);
	padding: 16px 18px;
	border: 1px solid var(--hsch-line);
	font: inherit;
	border-radius: 2px;
}

.section-newsletter {
	margin-bottom: -74px;
	position: relative;
}

.contact-grid {
	display: grid;
	grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
	gap: 24px;
}

.contact-channels {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 24px;
}

.contact-channel {
	display: flex;
	align-items: center;
	gap: 14px;
	margin: 0;
}

.contact-channel__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	flex: 0 0 44px;
	background: rgba(254, 161, 22, 0.12);
	color: var(--hsch-primary, #003c80);
	border-radius: 50%;
}

.contact-channel__icon svg {
	width: 22px;
	height: 22px;
	fill: currentColor;
	display: block;
}

.contact-form {
	display: grid;
	gap: 18px;
}

.contact-form label {
	display: grid;
	gap: 8px;
}

.contact-form input,
.contact-form textarea {
	width: 100%;
	padding: 14px 16px;
	border: 1px solid var(--hsch-line);
	font: inherit;
}

.form-message {
	margin-bottom: 16px;
	padding: 14px 16px;
	border: 1px solid var(--hsch-line);
	font-weight: 600;
}

.form-message--success {
	background: #edf9f0;
	border-color: #8fd19e;
	color: #226534;
}

.form-message--error {
	background: #fff1f0;
	border-color: #e6a19b;
	color: #8f2d25;
}

.map-embed {
	margin-top: 24px;
}

.map-embed iframe {
	width: 100%;
	min-height: 340px;
	border: 0;
}

.posts-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 24px;
}

.post-card {
	padding: 28px;
	background: #fff;
	box-shadow: var(--hsch-shadow);
	border: 1px solid var(--hsch-line);
	border-radius: 2px;
}

.post-card__meta {
	margin: 0 0 10px;
	color: #8a8a8a;
	font-size: 0.9rem;
}

.post-card__title {
	font-size: 1.45rem;
	line-height: 1.2;
}

.post-card__title a {
	color: var(--hsch-heading);
}

.post-card__excerpt > :last-child {
	margin-bottom: 0;
}

.single-post-card {
	max-width: 900px;
}

.single-post-nav {
	margin-top: 24px;
}

.about-page-grid {
	display: grid;
	grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
	gap: 24px;
	align-items: start;
}

.page-layout {
	display: grid;
	grid-template-columns: minmax(0, 1.72fr) minmax(260px, 0.6fr);
	gap: 24px;
	align-items: start;
}

.page-sidebar {
	display: grid;
	gap: 24px;
}

.page-main {
	min-width: 0;
}

.info-panels,
.policy-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 24px;
}

.hotel-detail-page {
	display: grid;
	grid-template-columns: minmax(360px, 0.9fr) minmax(0, 1.1fr);
	gap: 32px;
	align-items: start;
}

.hotel-detail-page__image img {
	width: 100%;
	box-shadow: var(--hsch-shadow);
}

.hotel-detail-page__content {
	padding: 32px;
	background: #fff;
	border: 1px solid var(--hsch-line);
	box-shadow: var(--hsch-shadow);
	border-radius: 2px;
}

.member-grid {
	display: grid;
	grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
	gap: 24px;
	align-items: start;
}

.member-auth-layout,
.member-area-top {
	display: grid;
	gap: 24px;
}

.member-auth-layout {
	grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
	align-items: start;
}

.member-area-top {
	grid-template-columns: minmax(0, 1fr) auto;
	align-items: center;
}

.member-auth-card h2,
.member-welcome h2 {
	margin-bottom: 10px;
}

.member-login-form {
	margin-top: 24px;
}

.member-sidebar {
	display: grid;
	gap: 24px;
}

.download-list {
	display: grid;
	gap: 12px;
}

.download-card {
	display: block;
	padding: 16px 18px;
	border: 1px solid var(--hsch-line);
	background: #fff;
	color: var(--hsch-heading);
	font-family: "Montserrat", Arial, sans-serif;
	font-weight: 600;
}

.download-card:hover {
	color: var(--hsch-primary);
}

.member-cards {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 24px;
}

.info-card {
	position: sticky;
	top: 24px;
}

.info-list {
	margin: 0;
	padding-left: 20px;
}

.content-card {
	padding: 28px;
	border: 1px solid var(--hsch-line);
	border-radius: var(--hsch-radius);
	background: #fff;
	box-shadow: var(--hsch-shadow);
}

.sidebar-card {
	padding: 24px;
}

.sidebar-card h2 {
	font-size: 1.3rem;
	margin-bottom: 16px;
}

.sidebar-card--accent {
	position: relative;
	background: linear-gradient(180deg, #fff 0%, #f7fbff 100%);
}

.sidebar-card--accent::before {
	content: "";
	position: absolute;
	inset: 0 auto 0 0;
	width: 4px;
	background: linear-gradient(180deg, var(--hsch-primary), rgba(27, 79, 156, 0.72));
}

.sibling-nav__list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 10px;
}

.sibling-nav__list li {
	margin: 0;
}

.sibling-nav__list a {
	display: block;
	padding: 12px 14px;
	border: 1px solid rgba(15, 23, 43, 0.08);
	background: #fff;
	color: var(--hsch-heading);
	font-family: "Montserrat", Arial, sans-serif;
	font-weight: 600;
	transition: color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.sibling-nav__list a:hover {
	color: var(--hsch-primary);
	border-color: rgba(254, 161, 22, 0.36);
	transform: translateX(2px);
}

.sibling-nav__list .is-current a {
	color: var(--hsch-dark);
	border-color: rgba(27, 79, 156, 0.22);
	background: linear-gradient(180deg, rgba(27, 79, 156, 0.06), rgba(27, 79, 156, 0.02));
}

.entry-content {
	color: var(--hsch-text);
}

.entry-content > * + * {
	margin-top: 1.1em;
}

.entry-content h2,
.entry-content h3,
.entry-content h4 {
	margin-top: 1.9em;
	margin-bottom: 0.65em;
}

.entry-content h2 {
	font-size: clamp(1.7rem, 3vw, 2.2rem);
}

.entry-content h3 {
	font-size: 1.35rem;
}

.entry-content p,
.entry-content li {
	font-size: 1.02rem;
	line-height: 1.85;
}

.entry-content ul,
.entry-content ol {
	padding-left: 1.4rem;
}

.entry-content li + li {
	margin-top: 0.45em;
}

.entry-content img {
	margin: 12px 0 24px;
	border-radius: 2px;
	box-shadow: var(--hsch-shadow);
}

.entry-content > img:first-child,
.entry-content > p:first-child > img:only-child,
.entry-content > figure:first-child > img,
.entry-content > .wp-block-image:first-child img {
	display: block;
	width: 100%;
	height: auto;
	max-width: 100%;
	margin: 0;
}

.entry-content > img:first-child,
.entry-content > figure:first-child,
.entry-content > .wp-block-image:first-child {
	margin: 0 0 28px;
}

.entry-content > p:first-child:has(> img:only-child) {
	margin: 0 0 28px;
}

.entry-content .wp-block-gallery.has-nested-images {
	--wp--style--unstable-gallery-gap: 10px;
	margin: 28px 0;
}

.entry-content .wp-block-gallery figure.wp-block-image {
	border-radius: 6px;
	overflow: hidden;
	box-shadow: 0 1px 3px rgba(15, 23, 43, 0.08);
	transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.entry-content .wp-block-gallery figure.wp-block-image:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 18px rgba(15, 23, 43, 0.18);
}

.entry-content .wp-block-gallery figure.wp-block-image img {
	cursor: zoom-in;
}

.entry-content .entry-table {
	margin: 28px 0;
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
}

.entry-content .entry-table > table {
	margin: 0;
}

.entry-content table {
	width: 100%;
	border-collapse: collapse;
	margin: 28px 0;
	table-layout: auto;
	font-size: 0.92rem;
}

.entry-content th,
.entry-content td {
	padding: 8px 10px;
	border: 1px solid rgba(15, 23, 43, 0.12);
	text-align: left;
	vertical-align: top;
}

.entry-content .entry-table td:not([colspan]):not(:first-child),
.entry-content .entry-table th:not([colspan]):not(:first-child) {
	white-space: nowrap;
}

.entry-content .entry-table td:first-child,
.entry-content .entry-table th:first-child {
	word-break: break-word;
}

.entry-content table[width],
.entry-content th[width],
.entry-content td[width] {
	width: auto;
}

.entry-content th {
	background: #f5f8fc;
	color: var(--hsch-heading);
}

.entry-content > :last-child,
.content-card > :last-child {
	margin-bottom: 0;
}

.site-footer {
	margin-top: 96px;
	padding: 96px 0 34px;
	background: var(--hsch-dark);
	color: rgba(255, 255, 255, 0.78);
}

.site-footer h3,
.site-footer h4 {
	color: #fff;
}

.footer-grid {
	display: grid;
	grid-template-columns: 1.2fr 1fr 1fr 1fr;
	gap: 28px;
	padding-bottom: 44px;
}

.footer-brand {
	padding: 30px;
	background: var(--hsch-primary);
	color: #fff;
	border-radius: 2px;
	box-shadow: 0 16px 34px rgba(254, 161, 22, 0.22);
}

.footer-links {
	list-style: none;
	padding: 0;
	margin: 0;
}

.footer-links li + li {
	margin-top: 8px;
}

.footer-links a,
.footer-menu a {
	color: rgba(255, 255, 255, 0.78);
	transition: color 0.18s ease;
}

.footer-links a:hover,
.footer-menu a:hover {
	color: #fff;
}

.site-footer__social {
	display: flex;
	justify-content: center;
	padding: 24px 0 8px;
}

.footer-social {
	display: flex;
	gap: 24px;
	align-items: center;
}

.footer-social a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	color: #fff;
	transition: transform 0.18s ease, opacity 0.18s ease;
}

.footer-social svg {
	width: 32px;
	height: 32px;
	fill: currentColor;
	display: block;
}

.footer-social a:hover {
	opacity: 0.85;
	transform: translateY(-2px);
}

.page-social {
	display: flex;
	gap: 28px;
	align-items: center;
	margin: 24px 0;
}

.page-social a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 56px;
	height: 56px;
	color: var(--hsch-primary, #003c80);
	background: rgba(0, 60, 128, 0.06);
	border-radius: 999px;
	transition: transform 0.18s ease, background 0.18s ease, color 0.18s ease;
}

.page-social svg {
	width: 30px;
	height: 30px;
	fill: currentColor;
	display: block;
}

.page-social a:hover {
	background: var(--hsch-primary, #003c80);
	color: #fff;
	transform: translateY(-2px);
}

.site-footer__inner {
	padding-top: 24px;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	display: flex;
	justify-content: space-between;
	gap: 24px;
	align-items: center;
}

.site-footer__copy,
.footer-menu {
	margin: 0;
}

.footer-menu {
	display: flex;
	flex-wrap: wrap;
	gap: 18px;
}

.footer-menu a,
.footer-menu button.footer-cookie-settings {
	position: relative;
}

.footer-menu button.footer-cookie-settings {
	appearance: none;
	-webkit-appearance: none;
	background: none;
	border: 0;
	padding: 0;
	font: inherit;
	line-height: inherit;
	color: rgba(255, 255, 255, 0.78);
	cursor: pointer;
	transition: color 0.18s ease;
}

.footer-menu button.footer-cookie-settings:hover {
	color: #fff;
}

.footer-menu > * + *::before {
	content: "";
	position: absolute;
	left: -10px;
	top: 50%;
	width: 1px;
	height: 14px;
	background: rgba(255, 255, 255, 0.26);
	transform: translateY(-50%);
}

.form-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 18px 20px;
	margin-bottom: 20px;
}

.form-grid__full {
	grid-column: 1 / -1;
}

.checkbox-field {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	margin: 0 0 16px;
}

.checkbox-field input {
	margin-top: 5px;
}

.member-auth-card .button,
.registration-form .button {
	margin-top: 8px;
}

.admin-toolbar,
.admin-section {
	margin-bottom: 28px;
}

.admin-section__header {
	display: flex;
	flex-wrap: wrap;
	align-items: end;
	justify-content: space-between;
	gap: 18px;
	margin-bottom: 20px;
}

.admin-search {
	display: flex;
	align-items: end;
	gap: 16px;
}

.admin-search label {
	flex: 1 1 auto;
	margin: 0;
}

.admin-table-wrap {
	overflow-x: auto;
}

.admin-table {
	width: 100%;
	border-collapse: collapse;
	min-width: 760px;
}

.admin-table th,
.admin-table td {
	padding: 12px 14px;
	border-bottom: 1px solid var(--hsch-line);
	text-align: left;
	vertical-align: top;
}

.admin-table th {
	font-size: 0.78rem;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: var(--hsch-muted);
}

.admin-pagination {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 20px;
}

.admin-pagination__link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 40px;
	height: 40px;
	padding: 0 12px;
	border: 1px solid var(--hsch-line);
	border-radius: 999px;
	background: #fff;
	color: var(--hsch-dark);
}

.admin-pagination__link.is-active {
	background: var(--hsch-primary);
	border-color: var(--hsch-primary);
	color: #fff;
}

@media (max-width: 980px) {
	.about-grid,
	.news-grid,
	.hotel-grid,
	.footer-grid,
	.contact-grid,
	.contact-channels,
	.posts-grid,
	.about-page-grid,
	.page-layout,
	.info-panels,
	.policy-grid,
	.member-auth-layout,
	.member-area-top,
	.member-grid,
	.member-cards,
	.hotel-detail-page {
		grid-template-columns: 1fr 1fr;
	}

	.form-grid {
		grid-template-columns: 1fr;
	}

	.admin-search {
		flex-direction: column;
		align-items: stretch;
	}

	.admin-section__header {
		align-items: stretch;
	}
}

@media (max-width: 1180px) {
	.header-top {
		display: none;
	}

	.header-top__inner {
		padding-left: 0;
		justify-content: space-between;
		gap: 16px;
	}

	.header-contact,
	.header-meta {
		gap: 14px;
	}

	.header-main__inner,
	.site-footer__inner,
	.detail-card {
		display: flex;
	}

	.header-main__inner {
		display: grid;
		grid-template-columns: auto 1fr auto;
		align-items: center;
		padding: 12px 0;
		gap: 14px 18px;
	}

	.site-logo,
	.header-login {
		min-height: auto;
		padding: 0;
	}

	.site-logo {
		width: auto;
		margin-top: 0;
		flex: 0 0 auto;
		min-height: 0;
		background: transparent;
		justify-self: center;
	}

	.site-logo img {
		max-height: 64px;
		left: 0;
		top: 0;
	}

	.nav-toggle {
		display: inline-flex;
		order: initial;
		margin-left: 0;
		justify-self: start;
	}

	.site-nav {
		display: none;
		width: 100%;
		padding: 6px 0 12px;
		margin-left: 0;
		order: initial;
		grid-column: 1 / -1;
	}

	.site-nav.is-open {
		display: block;
	}

	.site-nav__menu {
		width: 100%;
		flex-direction: column;
		gap: 0;
		padding-top: 8px;
		border-top: 1px solid rgba(255, 255, 255, 0.12);
	}

	.site-nav__menu li {
		width: 100%;
	}

	.site-nav__menu > li {
		border-bottom: 1px solid rgba(255, 255, 255, 0.08);
	}

	.site-nav a {
		display: flex;
		justify-content: space-between;
		width: 100%;
		padding: 14px 0;
	}

	.site-nav__menu .sub-menu {
		position: static;
		display: none;
		min-width: 0;
		padding: 0 0 10px 14px;
		background: transparent;
		box-shadow: none;
	}

	.site-nav__menu .sub-menu a {
		padding: 10px 0;
		color: rgba(255, 255, 255, 0.88);
	}

	.header-social a + a::before,
	.header-contact span + span::before,
	.footer-menu > * + *::before {
		display: none;
	}

	.member-badge {
		padding: 4px 10px;
	}

	.site-nav__menu li.is-open > .sub-menu {
		display: block;
	}

	.hotel-local-nav__list {
		display: grid;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 10px;
		padding: 12px 0 14px;
	}

	.hotel-local-nav__list li {
		flex: initial;
		border-right: 0;
		border-bottom: 0;
	}

	.hotel-subnav-card {
		margin-top: -14px;
		padding: 14px;
	}

	.hotel-local-nav__list li:last-child {
		border-bottom: 0;
	}

	.hotel-local-nav {
		border-top: 0;
	}

	.hotel-local-nav__list a {
		padding: 14px 12px;
		border: 1px solid rgba(15, 23, 43, 0.08);
		background: #fff;
		font-size: 0.82rem;
	}

	.hotel-local-nav__list li.is-current a,
	.hotel-local-nav__list a:hover {
		border-color: rgba(254, 161, 22, 0.24);
	}

	.header-login {
		order: initial;
		padding: 14px 18px;
		justify-self: end;
	}

	.about-grid,
	.stats-grid,
	.news-grid,
	.hotel-grid,
	.footer-grid,
	.about-images,
	.contact-grid,
	.contact-channels,
	.posts-grid,
	.about-page-grid,
	.page-layout,
	.info-panels,
	.policy-grid,
	.member-auth-layout,
	.member-area-top,
	.member-grid,
	.member-cards,
	.hotel-detail-page {
		grid-template-columns: 1fr;
	}

	.about-images img:nth-child(1),
	.about-images img:nth-child(3),
	.about-images img:nth-child(4) {
		width: 100%;
		margin: 0;
	}

	.hotel-card::after {
		display: none;
	}

	.hero {
		padding: 96px 0;
	}
}

@media (max-width: 760px) {
	.hotel-local-nav__list {
		grid-template-columns: 1fr;
	}

	.header-main__inner {
		padding: 10px 0;
		gap: 12px;
	}

	.site-logo img {
		max-height: 58px;
	}

	.header-login {
		padding: 12px 14px;
		font-size: 0.86rem;
	}

	.nav-toggle {
		width: 44px;
		height: 44px;
	}

	.site-nav {
		padding-bottom: 8px;
	}

	.hero {
		padding: 78px 0;
	}

	.hero__title {
		font-size: clamp(2.2rem, 12vw, 3.6rem);
	}

	.hero__lead {
		font-size: 1rem;
	}
}
