/**
 * INTER hostel Liberec — homepage redesign (variant 1a "Světlý a vzdušný")
 * Imported from Claude Design project e78bd0bd-46e4-40c3-9a6b-6af8d5bbb27b
 *
 * Scope:
 *  - Header/nav/buttons/footer rules apply site-wide (shared chrome).
 *  - .hp-* section rules only render on the Home menu item (itemid-101),
 *    see templates/cnt/index.php for the $isHome guard.
 */

:root {
	--hp-cream: #FFFCF7;
	--hp-cream-2: #FFF4E6;
	--hp-ink: #33291F;
	--hp-ink-2: #2A211A;
	--hp-brown-soft: #6E5F4F;
	--hp-brown-mute: #8A7967;
	--hp-orange: #F59A2E;
	--hp-orange-dark: #E8620E;
	--hp-gold: #F5B15E;
	--hp-border: #F0E5D6;
	--hp-font-head: 'Nunito', sans-serif;
	--hp-font-head-weight: 700;
	--hp-font-body: 'Nunito', sans-serif;
}

/* Full-width module row between main-bottom and bottom-a. It is a sibling of
   the component container, so modules assigned here are never inside <main>. */
.container-bottom-0 {
	grid-area: bot-0;
}

@supports (display: grid) {
	.site-grid {
		grid-template-areas:
			". banner banner banner banner ."
			". top-a top-a top-a top-a ."
			". top-b top-b top-b top-b ."
			". comp comp comp comp ."
			". side-r side-r side-r side-r ."
			". side-l side-l side-l side-l ."
			". bot-0 bot-0 bot-0 bot-0 ."
			". bot-a bot-a bot-a bot-a ."
			". bot-b bot-b bot-b bot-b .";
	}

	@media (min-width: 992px) {
		.site-grid {
			grid-template-areas:
				". banner banner banner banner ."
				". top-a top-a top-a top-a ."
				". top-b top-b top-b top-b ."
				". side-l comp comp side-r ."
				". bot-0 bot-0 bot-0 bot-0 ."
				". bot-a bot-a bot-a bot-a ."
				". bot-b bot-b bot-b bot-b .";
		}
	}
}

/* ============ Shared chrome: header, nav, buttons, footer ============ */

body {
	background: var(--hp-cream);
	color: var(--hp-brown-soft);
	font-family: var(--hp-font-body);
}

.container-header {
	position: sticky !important;
	top: 0;
	z-index: 1020;
	background: var(--hp-cream);
	border-bottom: 1px solid var(--hp-border);
	padding: 18px 44px;
}

@media (max-width: 640px) {
	.container-header {
		padding: 14px 20px;
	}
}

.site .container-header .navbar-brand {
	position: relative;
	display: inline-flex;
	align-items: center;
	margin-right: auto;
	font-size: 1rem;
	color: var(--hp-ink);
	flex-shrink: 0;
}

.site .container-header .navbar-brand img,
.site .container-header .navbar-brand svg {
	height: 60px;
	width: auto;
	display: block;
}

.container-header .container-nav {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: flex-end;
	min-width: 0;
}

.container-header .navbar-toggler {
	color: var(--hp-ink);
	border-color: var(--hp-border);
}

.navbar-toggler-wrapper {
	display: flex;
	align-items: center;
}

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

@media (min-width: 992px) {
	.navbar-toggler-wrapper {
		display: none;
	}
}

.container-header nav.navbar {
	flex: 1 1 auto;
	min-width: 0;
	padding: 0;
	margin: 0;
}

.container-header .mod-menu {
	display: flex;
	gap: 26px;
	flex-wrap: wrap;
	justify-content: center;
}

@media (max-width: 991.98px) {
	.container-header .container-nav {
		flex-wrap: wrap;
	}

	.site .container-header .navbar-brand {
		order: 1;
	}

	.container-header .container-nav .container-search {
		display: flex;
		align-items: center;
		align-self: center;
		order: 2;
		margin-left: auto;
		margin-top: 0;
	}

	.container-header .container-search .mod-languages,
	.container-header .container-search .mod-languages__select {
		display: flex;
		align-items: center;
		height: 44px;
	}

	.container-header .container-search div.mod-languages .btn-group .btn {
		display: inline-flex;
		align-items: center;
		height: 44px;
		padding-top: 0;
		padding-bottom: 0;
		margin-bottom: 0;
		line-height: 1;
	}

	.container-header .container-search .mod-custom {
		display: none;
	}

	.container-header .navbar-toggler-wrapper {
		order: 3;
		align-self: center;
		height: 44px;
		margin-left: 0.5rem;
	}

	.container-header .navbar-toggler {
		display: inline-flex;
		align-items: center;
		justify-content: center;
		width: 44px;
		height: 44px;
		padding: 0;
		border: 0;
		outline: 0;
		box-shadow: none;
		font-size: 1.65rem;
		line-height: 1;
	}

	.container-header .navbar-toggler:focus,
	.container-header .navbar-toggler:focus-visible {
		outline: 0;
		box-shadow: none;
	}

	.container-header nav.navbar .navbar-collapse {
		flex-basis: 100%;
		flex-direction: column;
		align-items: stretch;
		width: 100%;
	}

	.container-header nav.navbar {
		order: 4;
		flex-basis: 100%;
	}

	.container-header .mod-menu {
		flex-direction: column;
		gap: 12px;
		padding: 16px 0;
	}

	.mobile-menu-cta {
		display: block;
		width: 100%;
		padding-bottom: 16px;
	}

	.mobile-menu-cta .hp-cta {
		display: flex;
		width: 100%;
		justify-content: center;
	}
}

.container-header .mod-menu > li > a,
.container-header .mod-menu > li > span {
	font-family: var(--hp-font-body);
	color: var(--hp-brown-soft);
	font-weight: 700;
	font-size: 15px;
}

.container-header .mod-menu > li > a:hover {
	color: var(--hp-orange-dark);
}

/* Dropdown submenu */
.container-header .metismenu.mod-menu :is(.mm-collapse, .mm-collapsing) {
	min-width: 220px;
	background: var(--hp-cream);
	border: 1px solid var(--hp-border);
	border-radius: 12px;
	box-shadow: 0 12px 30px rgba(51, 41, 31, 0.12);
}

.container-header .metismenu.mod-menu :is(.mm-collapse, .mm-collapsing) > .metismenu-item {
	padding: 2px;
	font-size: 14px;
}

.container-header .metismenu.mod-menu :is(.mm-collapse, .mm-collapsing) > .metismenu-item > a {
	display: block;
	width: 100%;
	padding: 9px 12px;
	color: var(--hp-brown-soft);
	font-family: var(--hp-font-body);
	font-weight: 700;
	line-height: 1.35;
	text-decoration: none;
	border-radius: 8px;
	transition: color 150ms ease, background-color 150ms ease;
}

.container-header .metismenu.mod-menu :is(.mm-collapse, .mm-collapsing) > .metismenu-item > a:hover,
.container-header .metismenu.mod-menu :is(.mm-collapse, .mm-collapsing) > .metismenu-item > a:focus-visible {
	color: var(--hp-orange-dark);
	text-decoration: none;
}

.container-header .metismenu.mod-menu :is(.mm-collapse, .mm-collapsing) > .metismenu-item.active > a,
.container-header .metismenu.mod-menu :is(.mm-collapse, .mm-collapsing) > .metismenu-item.current > a {
	color: var(--hp-orange-dark);
	background: var(--hp-cream-2);
}

@media (max-width: 991.98px) {
	.container-header nav.navbar {
		width: 100%;
	}
}

.hp-cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-family: var(--hp-font-head);
	font-weight: 700;
	text-decoration: none;
	border-radius: 999px;
	font-size: 15px;
	padding: 11px 22px;
	white-space: nowrap;
	background: var(--hp-orange-dark);
	color: #fff;
	box-shadow: 0 8px 20px rgba(245, 154, 46, .35);
	transition: transform .15s, background .15s;
}

.hp-cta:hover,
.hp-cta:focus {
	background: var(--hp-orange);
	color: #fff;
	transform: translateY(-1px);
}

.hp-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-family: var(--hp-font-head);
	font-weight: 700;
	text-decoration: none;
	border-radius: 999px;
	font-size: 15px;
	padding: 11px 22px;
	border: none;
	cursor: pointer;
	transition: transform .15s, background .15s, color .15s, border-color .15s;
}

.hp-btn-pri {
	background: var(--hp-orange-dark);
	color: #fff;
	box-shadow: 0 8px 20px rgba(245, 154, 46, .35);
}

.hp-btn-pri:hover, .hp-btn-pri:focus {
	background: var(--hp-orange);
	color: #fff;
	transform: translateY(-1px);
}

.hp-btn-ghost {
	background: transparent;
	color: var(--hp-ink);
	border: 2px solid #E7D6C0;
}

.hp-btn-ghost:hover, .hp-btn-ghost:focus {
	border-color: var(--hp-orange-dark);
	color: var(--hp-orange-dark);
}

.hp-btn-white {
	background: #fff;
	color: var(--hp-orange-dark);
}

.hp-btn-white:hover, .hp-btn-white:focus {
	background: var(--hp-ink);
	color: #fff;
}

.hp-btn-lg {
	font-size: 17px;
	padding: 15px 30px;
}

.container-footer.footer {
	background: var(--hp-ink-2);
	color: #D8C7B2;
	padding: 56px 56px 34px;
	margin-top: 0;
	background-image: none;
}

.container-footer.footer .grid-child {
	padding: 0;
	max-width: 1320px;
	align-items: stretch;
	display: block;
}

.container-footer .hp-foot-top {
	display: grid;
	grid-template-columns: 1.5fr 1fr 1fr;
	gap: 44px;
	padding-bottom: 36px;
	border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.container-footer .hp-logo-chip {
	background: #fff;
	border-radius: 14px;
	padding: 14px 18px;
	display: inline-block;
}

.container-footer .hp-logo-chip img {
	height: 60px;
	display: block;
}

.container-footer .hp-foot-desc {
	margin: 18px 0 0;
	max-width: 34ch;
	line-height: 1.6;
	font-size: 15px;
	color: #C9B8A3;
}

.container-footer h5 {
	font-family: var(--hp-font-head);
	font-weight: var(--hp-font-head-weight);
	color: #fff;
	font-size: 16px;
	margin: 0 0 16px;
}

.container-footer a,
.container-footer .hp-fp {
	color: #C9B8A3;
	font-size: 15px;
	line-height: 1.9;
	text-decoration: none;
	display: block;
}

.container-footer a:hover {
	color: var(--hp-gold);
}

.container-footer .hp-foot-bottom {
	padding-top: 24px;
	font-size: 13px;
	color: #9A8A78;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 8px;
}

@media (max-width: 860px) {
	.container-footer .hp-foot-top {
		grid-template-columns: 1fr;
		gap: 30px;
	}
}

/* Breadcrumbs (mod_breadcrumbs, rendered in container-component on every non-home page) */
.mod-breadcrumbs__wrapper {
	margin: 0 0 18px;
}

.mod-breadcrumbs.breadcrumb {
	padding: 0 !important;
	margin: 0;
	font-size: 14px;
}

.mod-breadcrumbs__here {
	display: none;
}

.mod-breadcrumbs__item,
.mod-breadcrumbs__item span {
	color: var(--hp-brown-mute);
}

.mod-breadcrumbs__item a.pathway {
	color: var(--hp-brown-mute);
	font-weight: 700;
	text-decoration: none;
}

.mod-breadcrumbs__item a.pathway:hover {
	color: var(--hp-orange-dark);
}

.mod-breadcrumbs .breadcrumb-item + .breadcrumb-item {
	padding-left: 8px;
}

.mod-breadcrumbs .breadcrumb-item + .breadcrumb-item::before {
	padding-right: 8px;
	color: var(--hp-brown-mute);
}

/* Standard article detail (places and other com_content articles) */
.cnt-article,
.card {
	background: #fff;
	border: 1px solid var(--hp-border);
	border-radius: 24px;
	box-shadow: 0 14px 40px rgba(120, 90, 50, .09);
	margin-bottom: 4rem;
	overflow: hidden;
	padding: clamp(24px, 5vw, 64px);
}

.cnt-article .page-header {
	border: 0;
	margin: 0;
	padding: 0;
}

.cnt-article .page-header h1,
.cnt-article .page-header h2 {
	color: var(--hp-ink);
	font-family: var(--hp-font-head);
	font-size: clamp(32px, 5vw, 48px);
	font-weight: var(--hp-font-head-weight);
	letter-spacing: -.02em;
	line-height: 1.12;
	margin: 0 0 20px;
}

.cnt-article .article-info {
	color: var(--hp-brown-mute);
	display: flex;
	flex-wrap: wrap;
	font-size: 14px;
	gap: 8px 22px;
	margin: 0 0 26px;
}

.cnt-article .article-info dd {
	margin: 0;
}

.cnt-article .article-info a {
	color: var(--hp-orange-dark);
	font-weight: 700;
	text-decoration: none;
}

.cnt-article .item-image {
	float: none !important;
	margin: 8px 0 34px;
	max-width: none;
}

.cnt-article .item-image img {
	border-radius: 18px;
	display: block;
	height: clamp(260px, 48vw, 520px);
	object-fit: cover;
	width: 100%;
}

.cnt-article .item-image .caption {
	color: var(--hp-brown-mute);
	font-size: 13px;
	margin-top: 9px;
	text-align: left;
}

.cnt-article__body {
	color: var(--hp-brown-soft);
	font-size: 17px;
	line-height: 1.75;
}

.cnt-article__body > :first-child {
	margin-top: 0;
}

.cnt-article__body > :last-child {
	margin-bottom: 0;
}

.cnt-article__body h2,
.cnt-article__body h3,
.cnt-article__body h4 {
	color: var(--hp-ink);
	font-family: var(--hp-font-head);
	font-weight: var(--hp-font-head-weight);
	line-height: 1.25;
}

.cnt-article__body h2 {
	font-size: 28px;
	margin: 42px 0 16px;
}

.cnt-article__body h3 {
	font-size: 22px;
	margin: 34px 0 12px;
}

.cnt-article__body a {
	color: var(--hp-orange-dark);
	font-weight: 700;
	text-decoration-color: rgba(232, 98, 14, .35);
	text-underline-offset: 3px;
}

.cnt-article__body a:hover {
	text-decoration-color: currentColor;
}

.cnt-article__body img {
	border-radius: 16px;
	height: auto;
	max-width: 100%;
}

.cnt-article__body blockquote {
	background: var(--hp-cream-2);
	border-left: 4px solid var(--hp-orange);
	border-radius: 0 14px 14px 0;
	color: var(--hp-ink);
	font-family: var(--hp-font-head);
	font-size: 19px;
	margin: 30px 0;
	padding: 20px 24px;
}

.cnt-article__body .table-wrapper {
	max-width: 100%;
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
}

.cnt-article__body table {
	border-collapse: separate;
	border-spacing: 0;
	margin: 28px 0;
	overflow: hidden;
	width: 100%;
}

.cnt-article__body th,
.cnt-article__body td {
	border-bottom: 1px solid var(--hp-border);
	padding: 12px 16px;
	text-align: left;
}

.cnt-article__body th {
	background: var(--hp-cream-2);
	color: var(--hp-ink);
	font-family: var(--hp-font-head);
}

@media (max-width: 640px) {
	.cnt-article,
	.card {
		border-radius: 18px;
		margin-bottom: 2.5rem;
	}

	.cnt-article .item-image img {
		height: 240px;
	}

	.cnt-article__body {
		font-size: 16px;
	}
}

/* Category blog */
.cnt-category-blog {
	margin-bottom: 4rem;
}

.cnt-category-blog > .page-header {
	border: 0;
	margin: 0;
	padding: 0;
}

.cnt-category-blog > h1,
.cnt-category-blog > h2,
.cnt-category-blog > .page-header h1 {
	color: var(--hp-ink);
	font-family: var(--hp-font-head);
	font-size: clamp(32px, 5vw, 48px);
	font-weight: var(--hp-font-head-weight);
	letter-spacing: -.02em;
	line-height: 1.12;
	margin: 0 0 18px;
}

.cnt-category-blog > .category-desc {
	color: var(--hp-brown-soft);
	font-size: 17px;
	line-height: 1.7;
	margin: 0 0 36px;
	max-width: 760px;
}

.cnt-category-blog > .category-desc img {
	border-radius: 18px;
	display: block;
	height: auto;
	margin: 0 0 24px;
	max-width: 100%;
}

.cnt-category-blog .blog-items {
	gap: 24px;
	margin-bottom: 32px;
}

.cnt-category-blog .blog-item {
	background: #fff;
	border: 1px solid var(--hp-border);
	border-radius: 20px;
	box-shadow: 0 10px 30px rgba(120, 90, 50, .10);
	display: flex;
	flex-direction: column;
	overflow: hidden;
	transition: box-shadow .2s ease, transform .2s ease;
}

.cnt-category-blog .blog-item:hover {
	box-shadow: 0 16px 38px rgba(120, 90, 50, .15);
	transform: translateY(-3px);
}

.cnt-category-blog .blog-item .item-image {
	float: none !important;
	margin: 0;
	max-width: none;
	overflow: hidden;
}

.cnt-category-blog .blog-item .item-image a {
	display: block;
}

.cnt-category-blog .blog-item .item-image img {
	display: block;
	height: 220px;
	object-fit: cover;
	transition: transform .35s ease;
	width: 100%;
}

.cnt-category-blog .blog-item:hover .item-image img {
	transform: scale(1.025);
}

.cnt-category-blog .blog-item .item-image .caption {
	display: none;
}

.cnt-category-blog .blog-item .item-content {
	display: flex;
	flex: 1;
	flex-direction: column;
	padding: 24px;
}

.cnt-category-blog .blog-item .page-header {
	border: 0;
	margin: 0;
	padding: 0;
}

.cnt-category-blog .blog-item .page-header h2 {
	color: var(--hp-ink);
	font-family: var(--hp-font-head);
	font-size: 22px;
	font-weight: var(--hp-font-head-weight);
	line-height: 1.25;
	margin: 0 0 10px;
}

.cnt-category-blog .blog-item .page-header h2 a {
	color: inherit;
	text-decoration: none;
}

.cnt-category-blog .blog-item .page-header h2 a:hover {
	color: var(--hp-orange-dark);
}

.cnt-category-blog .blog-item .article-info {
	color: var(--hp-brown-mute);
	display: flex;
	flex-wrap: wrap;
	font-size: 13px;
	gap: 5px 14px;
	margin: 0 0 14px;
}

.cnt-category-blog .blog-item .article-info dd {
	margin: 0;
}

.cnt-category-blog .blog-item .item-content > p:not(.readmore) {
	color: var(--hp-brown-mute);
	font-size: 14px;
	line-height: 1.6;
}

.cnt-category-blog .blog-item .readmore {
	margin: auto 0 0;
	padding-top: 8px;
}

.cnt-category-blog .blog-item .readmore .btn {
	background: transparent;
	border: 0;
	color: var(--hp-ink);
	font-family: var(--hp-font-body);
	font-size: 14px;
	font-weight: 800;
	padding: 0;
}

.cnt-category-blog .blog-item .readmore .btn:hover,
.cnt-category-blog .blog-item .readmore .btn:focus {
	color: var(--hp-orange-dark);
}

.cnt-category-blog .items-more,
.cnt-category-blog .cat-children {
	background: #fff;
	border: 1px solid var(--hp-border);
	border-radius: 18px;
	margin: 28px 0;
	padding: 24px;
}

.cnt-category-blog .items-more h3,
.cnt-category-blog .cat-children > h3 {
	color: var(--hp-ink);
	font-family: var(--hp-font-head);
	font-weight: var(--hp-font-head-weight);
}

.cnt-category-blog .com-content-blog__links {
	margin-bottom: 0;
}

.cnt-category-blog .com-content-blog__link a,
.cnt-category-blog .cat-children a {
	color: var(--hp-ink);
	font-weight: 700;
	text-decoration: none;
}

.cnt-category-blog .com-content-blog__link a:hover,
.cnt-category-blog .cat-children a:hover {
	color: var(--hp-orange-dark);
}

.cnt-category-blog .pagination {
	gap: 6px;
	justify-content: center;
}

.cnt-category-blog .page-link {
	border-color: var(--hp-border);
	color: var(--hp-ink);
}

.cnt-category-blog .active > .page-link,
.cnt-category-blog .page-link:hover {
	background: var(--hp-orange);
	border-color: var(--hp-orange);
	color: #fff;
}

@media (min-width: 641px) and (max-width: 991.98px) {
	.cnt-category-blog .blog-items.columns-2,
	.cnt-category-blog .blog-items.columns-3,
	.cnt-category-blog .blog-items.columns-4 {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 640px) {
	.cnt-category-blog .blog-items[class*="columns-"] {
		grid-template-columns: minmax(0, 1fr);
	}

	.cnt-category-blog .blog-item .item-image img {
		height: 210px;
	}
}

/* ============ Homepage sections (Home menu item only) ============ */

.hp-eyebrow, .hp-kicker {
	font-family: var(--hp-font-head);
	font-weight: 700;
	color: var(--hp-orange-dark);
	font-size: 14px;
	letter-spacing: .14em;
	text-transform: uppercase;
}

.hp-eyebrow {
	display: block;
	margin-bottom: 18px;
	font-size: 15px;
}

.hp-h1, .hp-h2 {
	font-family: var(--hp-font-head);
	font-weight: var(--hp-font-head-weight);
	color: var(--hp-ink);
	letter-spacing: -.01em;
	margin: 0;
}

/* Events module */
.mod-events-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1.25rem;
}

.events-empty {
	padding: 1.25rem 1.5rem;
	margin: 0;
	color: var(--hp-brown-soft);
	background: #fff;
	border: 1px solid var(--hp-border);
	border-radius: 16px;
}

.events-empty a {
	color: var(--hp-ink);
	font-weight: 700;
}

.events-empty a:hover {
	color: var(--hp-orange-dark);
}

.mod-events-all {
	display: flex;
	justify-content: center;
	margin-top: 2rem;
}

.mod-event {
	position: relative;
	display: flex;
	flex-direction: column;
	gap: .6rem;
	overflow: hidden;
	padding: 24px;
	background: #fff;
	border: 1px solid #EADFCE;
	border-radius: 16px;
}

.mod-event-thumb {
	display: block;
	width: calc(100% + 48px);
	max-width: none;
	height: 190px;
	object-fit: cover;
	margin: -24px -24px .9rem;
}

.mod-event h3 {
	margin: 0;
}

.mod-event-meta {
	color: var(--hp-brown-soft);
	font-size: .92rem;
}

.mod-event > p,
.event-card > p {
	margin-bottom: 0;
}

.mod-event .hp-room-foot {
	justify-content: flex-end;
	margin-top: auto;
}

.mod-event.is-live {
	border-color: #D66B37;
	animation: mod-event-pulse 2.4s ease-in-out infinite;
}

.mod-event.is-past {
	opacity: .62;
}

.mod-event-live,
.mod-event-past {
	position: absolute;
	top: 12px;
	left: 12px;
	z-index: 1;
	align-self: flex-start;
	padding: .2rem .6rem;
	color: #fff;
	font-size: .72rem;
	font-weight: 700;
	background: #D66B37;
	border-radius: 20px;
}

@keyframes mod-event-pulse {
	50% { box-shadow: 0 0 0 8px rgba(214, 107, 55, 0); }
}

@media (max-width: 800px) {
	.mod-events-grid { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
	.mod-event.is-live { animation: none; }
}

/* Keep event titles consistent with module section headings. */
.mod-event h3,
.event-card h2,
.events-page > h1,
.event-detail h1 {
	color: var(--hp-ink);
}

.mod-event h3,
.event-card h2 {
	font-size: 21px;
}

.mod-event h3 a,
.event-card h2 a {
	color: inherit;
	text-decoration: none;
}

.mod-event h3 a:hover,
.mod-event h3 a:focus,
.event-card h2 a:hover,
.event-card h2 a:focus {
	color: var(--hp-orange-dark);
}

/* Match the 24px content inset used by .hp-room-body. */
.event-card {
	position: relative;
	padding: 24px;
}

.event-card.has-thumb .event-badge {
	position: absolute;
	top: 12px;
	left: 12px;
	z-index: 1;
}

.event-thumb {
	width: calc(100% + 48px);
	margin-right: -24px;
	margin-bottom: .9rem;
	margin-left: -24px;
}

/* Event detail */
.event-detail {
	width: 100%;
	padding-bottom: 3rem;
}

.event-detail > h1 {
	margin-bottom: 1.5rem;
}

.event-detail-eyebrow,
.events-page-eyebrow {
	display: inline-block;
	margin-bottom: .5rem;
}

.events-page > h1 {
	margin-bottom: 1.5rem;
}

.event-detail-layout.has-image {
	display: grid;
	grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
	gap: 2rem;
	align-items: start;
}

.event-detail-media {
	position: relative;
	margin: 0;
}

.event-detail-thumb {
	display: block;
	width: 100%;
	height: auto;
	margin: 0;
	object-fit: cover;
	border-radius: 18px;
}

.event-detail-media .event-live {
	position: absolute;
	top: 12px;
	left: 12px;
	z-index: 1;
}

.event-detail-meta {
	padding: 1.25rem;
	margin: 0 0 1.5rem;
	background: #FAF6EF;
	border-left: 4px solid #D66B37;
}

.event-detail-meta div + div {
	margin-top: .5rem;
}

.event-live {
	display: inline-block;
	padding: .3rem .75rem;
	color: #fff;
	font-weight: 700;
	background: #D66B37;
	border-radius: 20px;
	animation: event-detail-pulse 2.4s infinite;
}

.event-sharing {
	margin-top: 2rem;
}

.event-related {
	margin-top: 3rem;
}

.event-related > .hp-h2 {
	margin-bottom: 1.5rem;
}

.event-share-title {
	margin: 0 0 .75rem;
	color: var(--hp-ink);
	font-family: var(--hp-font-head);
	font-size: 20px;
	font-weight: var(--hp-font-head-weight);
}

.event-share {
	display: flex;
	flex-wrap: wrap;
	gap: .6rem;
}

.event-share a,
.event-share button {
	display: inline-flex;
	align-items: center;
	gap: .45rem;
	padding: .55rem .8rem;
	color: inherit;
	text-decoration: none;
	cursor: pointer;
	background: #fff;
	border: 1px solid #D8CABB;
	border-radius: 8px;
}

.event-share a:hover,
.event-share button:hover {
	color: var(--hp-orange-dark);
	border-color: var(--hp-orange);
}

@keyframes event-detail-pulse {
	50% { opacity: .65; transform: scale(1.03); }
}

@media (prefers-reduced-motion: reduce) {
	.event-live { animation: none; }
}

@media (max-width: 991.98px) {
	.event-detail-layout.has-image {
		display: block;
	}

	.event-detail-media {
		margin-bottom: 1.5rem;
	}
}

.hp-h1 {
	font-size: 44px;
	line-height: 1.08;
	margin-bottom: 22px;
}

.hp-h2 {
	font-size: 34px;
	margin-top: 10px;
}

.hp-sec {
	padding: 4rem 0;
}

.hp-bottom-0.hp-sec {
    padding: 0 0 4rem 0;
}

.hp-sec-head {
	margin-bottom: 40px;
	max-width: 640px;
}

.hp-sec-head p {
	font-size: 17px;
	color: var(--hp-brown-soft);
	margin: 14px 0 0;
	line-height: 1.6;
}

.hp-dot {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	display: inline-block;
	margin-bottom: 2px;
}

.hp-feats .hp-dot {
	margin-bottom: 1rem;
}

.hp-dot-o { background: #F59A2E; }
.hp-dot-c { background: #17AEE6; }
.hp-dot-p { background: #E5127D; }
.hp-dot-g { background: #A6CE39; }

.hp-ph {
	background: repeating-linear-gradient(45deg, rgba(120, 90, 50, .045) 0 12px, rgba(120, 90, 50, .085) 12px 24px), #efe4d4;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #a4907a;
	font-family: ui-monospace, monospace;
	font-size: 11px;
	letter-spacing: .12em;
	text-transform: uppercase;
	text-align: center;
	padding: 14px;
}

/* Hero */
.hp-hero {
	overflow: hidden;
	background: var(--hp-cream);
}

/* mod_custom wraps module content in a div (.mod-custom), so the grid
   lives one level in from the <section> rather than on the section itself. */
.hp-hero .mod-custom {
	display: grid;
	grid-template-columns: 1fr 1fr;
	align-items: stretch;
}

.hp-hero-txt {
	padding: 4rem 3rem 4rem 0rem;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.hp-lead {
	font-size: 18px;
	line-height: 1.6;
	color: var(--hp-brown-soft);
	margin: 0 0 32px;
	max-width: 42ch;
}

.hp-hero-cta {
	display: flex;
	gap: 14px;
	flex-wrap: wrap;
	margin-bottom: 40px;
}

.hp-hero-stats {
	display: flex;
	gap: 36px;
	flex-wrap: wrap;
}

.hp-stat b {
	font-family: var(--hp-font-head);
	font-size: 24px;
	font-weight: 700;
	color: var(--hp-orange-dark);
	line-height: 1;
	display: block;
}

.hp-stat span {
	font-size: 13px;
	color: var(--hp-brown-mute);
	margin-top: 6px;
	font-weight: 700;
	display: block;
}

.hp-hero-img {
	position: relative;
	min-height: 460px;
	/* Keep the column on the container grid, but let its image reach the
	   right-hand edge of the viewport on screens wider than the container. */
	width: calc(100% + max(0px, (100vw - 1320px) / 2));
}

.hp-hero-img .hp-ph {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
}

.hp-img-cover img {
	display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* About */
.hp-about {
	background: var(--hp-cream-2);
}

.hp-about-grid {
	display: grid;
	grid-template-columns: 1.05fr 1fr;
	gap: 48px;
	align-items: start;
}

.hp-about-body {
	font-size: 18px;
	line-height: 1.7;
	color: #5A4C3D;
	margin: 0;
}

.hp-about-body + .hp-about-body {
	margin-top: 18px;
	font-size: 16px;
}

.hp-feats {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 18px;
}

.hp-feat {
	background: #fff;
	border-radius: 18px;
	padding: 22px;
	box-shadow: 0 6px 20px rgba(120, 90, 50, .08);
}

.hp-feat b {
	display: block;
	font-family: var(--hp-font-head);
	font-weight: 700;
	font-size: 17px;
	margin: 0 0 6px;
	color: var(--hp-ink);
}

.hp-feat span {
	font-size: 14px;
	color: var(--hp-brown-mute);
	line-height: 1.5;
}

/* Rooms */
.mod_rooms,
.mod_room_prices,
.mod_articles_places {
	width: 100%;
	min-width: 0;
}

.hp-room-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}

.hp-room-grid--1 {
	grid-template-columns: minmax(0, 1fr);
}

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

.hp-room {
	background: #fff;
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 10px 30px rgba(120, 90, 50, .10);
	display: flex;
	flex-direction: column;
}

.hp-room-img {
	height: 190px;
}

.hp-room-body {
	padding: 24px;
	display: flex;
	flex-direction: column;
	flex: 1;
}

.hp-room-body h3 {
	font-family: var(--hp-font-head);
	font-weight: var(--hp-font-head-weight);
	font-size: 21px;
	margin: 0 0 8px;
	color: var(--hp-ink);
}

.hp-room-body h3 a {
	color: inherit;
	text-decoration: none;
}

.hp-room-body h3 a:hover {
	color: var(--hp-orange-dark);
}

.hp-room-body p {
	font-size: 14px;
	color: var(--hp-brown-mute);
	line-height: 1.55;
	margin: 0 0 20px;
	flex: 1;
}

.hp-place-intro {
	flex: 1;
}

.mod_articles_places .hp-room-foot {
	justify-content: flex-end;
}

.hp-room-foot {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.hp-price {
	font-family: var(--hp-font-head);
	font-weight: 700;
	font-size: 21px;
	color: var(--hp-orange-dark);
}

.hp-price small {
	font-weight: 400;
	font-size: 13px;
	color: var(--hp-brown-mute);
	margin-left: 3px;
	font-family: var(--hp-font-body);
}

.room-price-original {
	color: var(--hp-brown-soft);
	font-family: var(--hp-font-body);
	font-size: .68em;
	font-weight: 400;
	text-decoration: line-through;
}

.room-price-current {
	color: var(--hp-orange-dark);
}

.hp-price .room-price-eur {
	font-family: var(--hp-font-body);
	font-size: 13px;
	font-weight: 400;
	color: var(--hp-brown-mute);
}

.hp-price-amt .room-price-eur {
	font-family: var(--hp-font-body);
	font-size: 14px;
	font-weight: 400;
	color: var(--hp-brown-mute);
}

.room-book-price .room-price-eur {
	font-family: var(--hp-font-body);
	font-size: 15px;
	font-weight: 400;
	color: var(--hp-brown-mute);
}

.hp-room-foot a {
	color: var(--hp-ink);
	font-weight: 700;
	text-decoration: none;
	font-size: 14px;
}

.hp-room-foot a:hover {
	color: var(--hp-orange-dark);
}

/* Fabrica / restaurant */
.hp-fabrica {
	background: var(--hp-ink);
	color: #F7ECDC;
}

.hp-fabrica .mod-custom {
	display: grid;
	grid-template-columns: 1fr 1fr;
}

.hp-fab-img {
	position: relative;
	min-height: 380px;
}

.hp-fab-img .hp-ph {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
}

.hp-fab-txt {
	padding: 64px 56px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.hp-fab-kicker {
	font-family: var(--hp-font-head);
	font-weight: 700;
	color: var(--hp-gold);
	font-size: 14px;
	letter-spacing: .14em;
	text-transform: uppercase;
}

.hp-fab-h2 {
	font-family: var(--hp-font-head);
	font-weight: var(--hp-font-head-weight);
	font-size: 32px;
	margin: 14px 0 18px;
	color: #fff;
	letter-spacing: -.01em;
}

.hp-fab-p {
	font-size: 17px;
	line-height: 1.65;
	color: #D8C7B2;
	margin: 0 0 28px;
	max-width: 42ch;
}

/* Prices */
.hp-price-list {
	background: #fff;
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 10px 30px rgba(120, 90, 50, .10);
}

.hp-price-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 22px 30px;
	border-bottom: 1px solid #F2E7D7;
	gap: 20px;
}

.hp-price-row:last-child {
	border-bottom: none;
}

.hp-price-row h4 {
	font-family: var(--hp-font-head);
	font-weight: var(--hp-font-head-weight);
	font-size: 18px;
	margin: 0;
	color: var(--hp-ink);
}

.hp-price-row p {
	font-size: 14px;
	color: var(--hp-brown-mute);
	margin: 4px 0 0;
}

.hp-price-amt {
	font-family: var(--hp-font-head);
	font-weight: 700;
	font-size: 22px;
	color: var(--hp-orange-dark);
	white-space: nowrap;
	text-align: end;
}

.hp-price-actions {
	display: flex;
	align-items: center;
	gap: 24px;
}

.hp-price-actions a {
	color: var(--hp-ink);
	font-size: 14px;
	font-weight: 700;
	text-decoration: none;
	white-space: nowrap;
}

.hp-price-actions a:hover {
	color: var(--hp-orange-dark);
}

.hp-price-services .room-price-eur {
	display: block;
}

@media (max-width: 640px) {
	.hp-price-row {
		flex-wrap: wrap;
		gap: 10px 16px;
		padding: 18px 16px;
	}

	.hp-price-row > div:first-child {
		flex: 1 1 160px;
		min-width: 0;
	}

	.hp-price-actions {
		flex: 1 1 100%;
		justify-content: space-between;
		gap: 16px;
	}

	.hp-price-amt {
		font-size: 20px;
	}

}

.hp-price-note {
	font-size: 14px;
	color: var(--hp-brown-mute);
	margin: 20px 4px 0;
	line-height: 1.6;
}

.hp-price-services-title {
	font-family: var(--hp-font-head);
	font-size: 20px;
	color: var(--hp-ink);
	margin: 30px 4px 12px;
}

/* Pet-friendly banner */
.hp-pet {
	background: #33291F;
	color: #fff;
	padding: 48px 56px;
}

.hp-pet .mod-custom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 30px;
	flex-wrap: wrap;
}

.hp-pet h2 {
	font-family: var(--hp-font-head);
	font-weight: var(--hp-font-head-weight);
	font-size: 30px;
	margin: 0 0 8px;
	color: #fff;
}

.hp-pet p {
	font-size: 17px;
	margin: 0;
	color: #FFF3E4;
	max-width: 46ch;
}

/* Gallery */
.hp-gallery {
	background: var(--hp-cream-2);
	padding: 4rem;
}

.hp-gal-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	grid-auto-rows: 240px;
	gap: 14px;
}

.hp-gal-grid > * {
	border-radius: 16px;
	overflow: hidden;
}

.hp-gal-grid > a {
	display: block;
	position: relative;
	cursor: zoom-in;
}

.hp-gal-grid > a img {
	transition: transform 250ms ease, filter 250ms ease;
}

.hp-gal-grid > a:hover img,
.hp-gal-grid > a:focus-visible img {
	transform: scale(1.035);
	filter: brightness(.9);
}

.hp-gal-grid > a:focus-visible {
	outline: 3px solid var(--hp-orange-dark);
	outline-offset: 3px;
}

body.hp-lightbox-open {
	overflow: hidden;
}

.hp-lightbox {
	position: fixed;
	inset: 0;
	z-index: 10000;
	display: grid;
	grid-template-columns: 64px minmax(0, 1fr) 64px;
	grid-template-rows: 64px minmax(0, 1fr) auto;
	align-items: center;
	background: rgba(25, 18, 12, .94);
	color: #fff;
	opacity: 0;
	visibility: hidden;
	transition: opacity 180ms ease, visibility 180ms ease;
}

.hp-lightbox.is-open {
	opacity: 1;
	visibility: visible;
}

.hp-lightbox__image {
	grid-column: 2;
	grid-row: 2;
	justify-self: center;
	max-width: 100%;
	max-height: calc(100vh - 140px);
	object-fit: contain;
	border-radius: 8px;
}

.hp-lightbox__caption {
	grid-column: 2;
	grid-row: 3;
	margin: 12px 0 18px;
	text-align: center;
}

.hp-lightbox__button {
	width: 46px;
	height: 46px;
	padding: 0;
	border: 0;
	border-radius: 50%;
	background: rgba(255, 255, 255, .14);
	color: #fff;
	font-size: 34px;
	line-height: 1;
	cursor: pointer;
}

.hp-lightbox__button:hover,
.hp-lightbox__button:focus-visible {
	background: var(--hp-orange-dark);
}

.hp-lightbox__close {
	grid-column: 3;
	grid-row: 1;
	align-self: center;
}

.hp-lightbox__prev,
.hp-lightbox__next {
	grid-row: 2;
	justify-self: center;
}

.hp-lightbox__prev { grid-column: 1; }
.hp-lightbox__next { grid-column: 3; }

@media (max-width: 600px) {
	.hp-lightbox {
		grid-template-columns: 54px minmax(0, 1fr) 54px;
		grid-template-rows: 58px minmax(0, 1fr) auto;
	}

	.hp-lightbox__button {
		width: 40px;
		height: 40px;
		font-size: 29px;
	}
}

.hp-g-big {
	grid-column: span 2;
	grid-row: span 2;
}

.hp-g-wide {
	grid-column: span 2;
}

/* Location */
.hp-loc-grid {
	display: grid;
	grid-template-columns: 1fr 1.25fr;
	gap: 40px;
	align-items: stretch;
}

.hp-loc-info {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.hp-loc-item b {
	font-family: var(--hp-font-head);
	font-weight: 700;
	font-size: 16px;
	color: var(--hp-ink);
	display: block;
	margin-bottom: 4px;
}

.hp-loc-item span {
	color: var(--hp-brown-soft);
	font-size: 15px;
	line-height: 1.5;
}

.hp-loc-item a {
	color: var(--hp-brown-soft);
	text-decoration: none;
}

.hp-map {
	border-radius: 20px;
	min-height: 320px;
}

.hp-map iframe {
	width: 100%;
	height: 100%;
	min-height: 320px;
	border: 0;
	border-radius: 20px;
	display: block;
}

/* Responsive */
@media (max-width: 980px) {
	.hp-hero .mod-custom,
	.hp-about-grid,
	.hp-fabrica .mod-custom,
	.hp-loc-grid {
		grid-template-columns: 1fr;
	}

	.hp-hero-img,
	.hp-fab-img {
		min-height: 320px;
	}

	.hp-hero-img {
		width: 100%;
	}

	.hp-room-grid {
		grid-template-columns: 1fr;
	}

	.hp-feats {
		grid-template-columns: 1fr;
	}

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

	.hp-g-wide {
		grid-column: span 2;
	}
}

@media (max-width: 1319.98px) {
	.hp-gallery,
	.hp-sec,
	.hp-hero-txt {
		padding: 4rem 1rem;
	}
	.hp-bottom-0.hp-sec {
		padding: 0 1rem 4rem 1rem;
	}
	.hp-fab-txt {
		padding: 4rem 3rem;
	}
}

@media (max-width: 767.98px) {
	.hp-fab-txt {
		padding: 4rem 1rem;
	}

	.container-header {
		padding: 14px 16px;
	}

	.hp-cta {
		padding: 9px 16px;
		font-size: 13px;
	}

	.hp-h1 {
		font-size: 34px;
	}

	.hp-h2 {
		font-size: 27px;
	}

	.hp-pet {
		padding: 40px 24px;
		flex-direction: column;
		align-items: flex-start;
	}

	.container-footer.footer {
		padding: 40px 24px 24px;
	}
}

/* ============ Room detail page (single-room article + sidebar booking module) ============ */
/* Article body: room-detail.html. Sidebar-right module: room-booking-card.html. */

.room-gal.hp-gal-grid {
	grid-template-columns: 2fr 1fr 1fr;
	grid-auto-rows: 160px;
}

.room-gal-main {
	grid-row: span 2;
}

@media (max-width: 640px) {
	.room-gal.hp-gal-grid {
		grid-template-columns: 1fr 1fr;
	}

	.room-gal-main {
		grid-column: span 2;
	}
}

.room-facts {
	display: flex;
	flex-wrap: wrap;
	gap: 28px;
	padding: 22px 0;
	border-top: 1px solid var(--hp-border);
	border-bottom: 1px solid var(--hp-border);
	margin: 24px 0 32px;
}

.room-fact {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.room-fact b {
	font-family: var(--hp-font-head);
	font-weight: var(--hp-font-head-weight);
	font-size: 18px;
	color: var(--hp-ink);
}

.room-fact span {
	font-size: 12px;
	color: var(--hp-brown-mute);
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .04em;
}

.room-h3 {
	font-family: var(--hp-font-head);
	font-weight: var(--hp-font-head-weight);
	font-size: 22px;
	margin: 32px 0 14px;
	color: var(--hp-ink);
}

.room-amenities {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 14px;
	margin-bottom: 12px;
}

.room-amenity {
	display: flex;
	align-items: center;
	gap: 12px;
	font-size: 15px;
	color: var(--hp-ink);
	font-weight: 700;
}

.room-more-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
	gap: 20px;
}

.room-more-grid .hp-room-body h3 {
	font-size: 16px;
	margin-bottom: 10px;
}

@media (max-width: 480px) {
	.room-facts {
		gap: 18px;
	}

	.room-amenities {
		grid-template-columns: 1fr;
	}
}

/* Booking card (sidebar-right Custom HTML module on room detail pages) */
.room-book {
	background: #fff;
	border-radius: 22px;
	box-shadow: 0 14px 40px rgba(120, 90, 50, .14);
	padding: 32px;
}

.container-sidebar-right .room-book {
	position: sticky;
	top: 100px;
}

.room-book-price {
	font-family: var(--hp-font-head);
	font-weight: var(--hp-font-head-weight);
	font-size: 32px;
	color: var(--hp-orange-dark);
}

.room-book-price small {
	font-size: 15px;
	color: var(--hp-brown-mute);
	font-weight: 400;
	font-family: var(--hp-font-body);
}

.room-book-note {
	font-size: 14px;
	color: var(--hp-brown-mute);
	margin: 6px 0 24px;
}

.room-book-row {
	display: flex;
	flex-direction: column;
	gap: 16px;
	margin-bottom: 24px;
}

.room-book-field label {
	display: block;
	font-size: 12px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: .04em;
	color: var(--hp-brown-mute);
	margin-bottom: 6px;
}

.room-book-field input,
.room-book-field select {
	width: 100%;
	border: 1.5px solid var(--hp-border);
	border-radius: 10px;
	padding: 11px 14px;
	font-family: var(--hp-font-body);
	font-size: 15px;
	color: var(--hp-ink);
	background: var(--hp-cream);
}

.room-book-two {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 12px;
}

.room-book-cta {
	width: 100%;
}

.room-book-incl {
	list-style: none;
	padding: 0;
	margin: 22px 0 0;
	display: flex;
	flex-direction: column;
	gap: 10px;
	font-size: 14px;
	color: var(--hp-brown-soft);
}

.room-book-incl li {
	display: flex;
	gap: 10px;
	align-items: center;
}

.view-room .container-footer.footer {
	margin-top: 3rem;
}

.metismenu.mod-menu .mm-toggler {
    color: var(--hp-brown-soft);
}

.metismenu.mod-menu .mm-toggler.mm-toggler-link {
	overflow: visible;
	padding-inline-end: 0.15em;
}

/* Stable outlined chevron; .mm-collapsed is removed during animation. */
.metismenu.mod-menu .mm-toggler.mm-toggler-link::after {
	box-sizing: border-box;
	width: 0.45em;
	height: 0.45em;
	margin: -0.2em 0 0 0.55em;
	content: "";
	border: 0;
	border-right: 1.5px solid currentColor;
	border-bottom: 1.5px solid currentColor;
	opacity: 0.65;
	transform: rotate(45deg);
	transition: transform 180ms ease, opacity 180ms ease;
}

.metismenu.mod-menu .mm-toggler.mm-toggler-link:hover::after {
	opacity: 1;
}

.metismenu.mod-menu .mm-toggler.mm-toggler-link[aria-expanded="true"]::after {
	transform: translateY(0.2em) rotate(225deg);
}

[dir="rtl"] .metismenu.mod-menu .mm-toggler.mm-toggler-link::after {
	margin-right: 0.55em;
	margin-left: 0;
}

.container-search {
	display: flex;
}

div.mod-languages .btn-group .btn {
	border-radius: 999px;
	border: 2px solid #E7D6C0;
}

/* Match the language picker dropdown to the main navigation submenu. */
div.mod-languages .mod-languages__select .dropdown-menu {
	min-width: 220px;
	margin-top: 0.5rem;
	padding: 8px;
	background: var(--hp-cream);
	border: 1px solid var(--hp-border);
	border-radius: 12px;
	box-shadow: 0 12px 30px rgba(51, 41, 31, 0.12);
}

div.mod-languages .mod-languages__select .dropdown-menu > li {
	margin: 0;
	padding: 2px;
	font-size: 14px;
	background: transparent;
}

div.mod-languages .mod-languages__select .dropdown-menu > li > a {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	width: 100%;
	padding: 9px 12px;
	color: var(--hp-brown-soft);
	font-family: var(--hp-font-body);
	font-weight: 700;
	line-height: 1.35;
	text-decoration: none;
	border-radius: 8px;
	transition: color 150ms ease, background-color 150ms ease;
}

div.mod-languages .mod-languages__select .dropdown-menu > li > a:hover,
div.mod-languages .mod-languages__select .dropdown-menu > li > a:focus-visible {
	color: var(--hp-orange-dark);
	background: transparent;
	text-decoration: none;
}

div.mod-languages .mod-languages__select .dropdown-menu > .lang-active > a {
	color: var(--hp-orange-dark);
	background: var(--hp-cream-2);
}

/* Use the same outlined, rotating chevron as the submenu toggler. */
div.mod-languages .mod-languages__select .dropdown-toggle {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	color: var(--hp-brown-soft);
	font-family: var(--hp-font-body);
	font-weight: 700;
}

div.mod-languages .mod-languages__select .dropdown-toggle::after {
	box-sizing: border-box;
	flex: 0 0 auto;
	width: 0.45em;
	height: 0.45em;
	margin: -0.2em 0 0 0.05em;
	content: "";
	border: 0;
	border-right: 1.5px solid currentColor;
	border-bottom: 1.5px solid currentColor;
	opacity: 0.65;
	transform: rotate(45deg);
	transition: transform 180ms ease, opacity 180ms ease;
}

div.mod-languages .mod-languages__select .dropdown-toggle:hover::after {
	opacity: 1;
}

div.mod-languages .mod-languages__select .dropdown-toggle[aria-expanded="true"]::after {
	transform: translateY(0.2em) rotate(225deg);
}

[dir="rtl"] div.mod-languages .mod-languages__select .dropdown-toggle::after {
	margin-right: 0.05em;
	margin-left: 0;
}
