/* Hundeschule Sinfonie Core – supplementary styles */

.hs-kurs-meta-box {
	background: var(--hs-primary-light, #f9e6eb);
	border-radius: 0.5rem;
	padding: 1.5rem;
	margin: 0;
}

.hs-kurs-meta-box ul {
	list-style: none;
	padding: 0;
	margin: 0 0 1rem;
}

.hs-kurs-meta-box li {
	padding: 0.5rem 0;
	border-bottom: 1px solid rgb(191 44 93 / 0.15);
	font-size: 0.9375rem;
	line-height: 1.5;
}

.hs-kurs-meta-box li strong {
	display: block;
	font-size: 0.75rem;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	color: var(--hs-primary, #bf2c5d);
	margin-bottom: 0.125rem;
}

/* Kurse page */
.hs-kurse-page {
	overflow-x: hidden;
}

.hs-kurse-hero {
	background: linear-gradient(
		135deg,
		var(--hs-primary-dark, #a02549) 0%,
		var(--hs-primary, #bf2c5d) 45%,
		#d9668f 75%,
		#f9e6eb 100%
	);
	padding: clamp(3rem, 7vw, 4.5rem) 0 clamp(2.5rem, 6vw, 3.5rem);
	text-align: center;
	color: #fff;
}

.hs-kurse-hero__title {
	font-size: clamp(2rem, 5vw, 2.75rem);
	margin: 0 0 1rem;
	color: #fff;
	font-weight: 700;
	line-height: 1.15;
}

.hs-kurse-hero__subtitle {
	max-width: 44rem;
	margin: 0 auto;
	color: rgb(255 255 255 / 0.92);
	font-size: clamp(1rem, 2.2vw, 1.125rem);
	line-height: 1.65;
}

.hs-kurse-list-section {
	padding: clamp(2rem, 4vw, 2.5rem) 0 clamp(2.5rem, 5vw, 3rem);
}

.hs-kurs-filter {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	margin-bottom: 1.5rem;
}

.hs-kurs-filter__btn {
	border: 1px solid #d1d5db;
	background: #fff;
	color: #374151;
	border-radius: 9999px;
	padding: 0.5rem 1rem;
	font-size: 0.875rem;
	font-weight: 600;
	cursor: pointer;
	transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.hs-kurs-filter__btn:hover,
.hs-kurs-filter__btn.is-active {
	background: var(--hs-primary, #bf2c5d);
	border-color: var(--hs-primary, #bf2c5d);
	color: #fff;
}

.hs-kurs-card__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	margin-top: auto;
}

.hs-kurse-info {
	padding: 0 0 clamp(2.5rem, 5vw, 3rem);
}

.hs-kurse-info__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.5rem;
}

@media (min-width: 768px) {
	.hs-kurse-info__grid {
		grid-template-columns: 1fr 1fr;
	}
}

.hs-kurse-info__box {
	background: #f9fafb;
	border: 1px solid #e5e7eb;
	border-radius: 0.75rem;
	padding: 1.75rem;
}

.hs-kurse-info__box--accent {
	background: var(--hs-primary-light, #f9e6eb);
	border-color: rgb(191 44 93 / 0.15);
}

.hs-kurse-info__box h2 {
	margin: 0 0 0.75rem;
	font-size: 1.25rem;
}

.hs-kurse-info__box p {
	margin: 0 0 1.25rem;
	color: #374151;
	line-height: 1.6;
}

/* Single kurs */
.hs-main-kurs,
.hs-main-kurse {
	padding: 0;
	max-width: none;
}

.hs-kurs-single__hero {
	background: var(--hs-primary-light, #f9e6eb);
	padding: clamp(1.5rem, 4vw, 2rem) 0 clamp(1.25rem, 3vw, 1.5rem);
}

.hs-kurs-breadcrumb {
	margin-bottom: 0.875rem;
}

.hs-kurs-breadcrumb__list {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.25rem 0;
	list-style: none;
	margin: 0;
	padding: 0;
	font-size: 0.875rem;
	line-height: 1.4;
	color: var(--hs-gray, #6b7280);
}

.hs-kurs-breadcrumb__item {
	display: inline-flex;
	align-items: center;
	max-width: 100%;
}

.hs-kurs-breadcrumb__item:not(:last-child)::after {
	content: "/";
	margin: 0 0.5rem;
	color: #9ca3af;
	font-weight: 400;
}

.hs-kurs-breadcrumb__item a {
	color: var(--hs-primary, #bf2c5d);
	text-decoration: none;
	font-weight: 500;
}

.hs-kurs-breadcrumb__item a:hover {
	color: var(--hs-primary-dark, #a02549);
	text-decoration: underline;
}

.hs-kurs-breadcrumb__item--current {
	color: var(--hs-gray, #6b7280);
	font-weight: 500;
}

.hs-kurs-single__hero .hs-kurs-card__type {
	display: inline-block;
	margin-bottom: 0.625rem;
}

.hs-kurs-single__title {
	font-size: clamp(1.75rem, 4vw, 2.25rem);
	margin: 0;
	line-height: 1.2;
	color: var(--hs-dark, #1f2937);
}

.hs-kurs-single__layout {
	display: grid;
	grid-template-columns: 1fr;
	gap: clamp(1.5rem, 4vw, 2rem);
	padding: clamp(1.5rem, 4vw, 2rem) 0;
}

@media (min-width: 960px) {
	.hs-kurs-single__layout {
		grid-template-columns: minmax(0, 1fr) 18rem;
		align-items: start;
	}
}

.hs-kurs-single__image {
	max-width: 36rem;
	margin-bottom: 1.5rem;
}

.hs-kurs-single__image img {
	width: 100%;
	max-height: 16rem;
	object-fit: cover;
	object-position: center;
	border-radius: 0.75rem;
	display: block;
}

.hs-kurs-single__sidebar {
	position: sticky;
	top: 5rem;
}

.hs-kurs-single__content {
	font-size: 1.0625rem;
	line-height: 1.75;
}

/* Booking trigger (course page) */
.hs-booking-trigger {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 1rem 1.5rem;
	margin: 2rem 0 3rem;
	padding: clamp(1.25rem, 3vw, 1.75rem);
	background: linear-gradient(135deg, var(--hs-primary-light, #f9e6eb) 0%, #fff 70%);
	border: 1px solid #f0dbe2;
	border-radius: 1rem;
	scroll-margin-top: 6rem;
}

.hs-booking-trigger__price {
	display: flex;
	flex-direction: column;
	line-height: 1.2;
}

.hs-booking-trigger__price-label {
	font-size: 0.8125rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	color: #9b6478;
}

.hs-booking-trigger__price strong {
	font-size: 1.875rem;
	font-weight: 800;
	color: var(--hs-primary, #bf2c5d);
}

.hs-kurs-meta-box__cta {
	width: 100%;
	margin-top: 0.5rem;
}

/* Modal */
.hs-modal {
	position: fixed;
	inset: 0;
	z-index: 1000;
	display: flex;
	align-items: flex-start;
	justify-content: center;
	padding: clamp(1rem, 4vw, 3rem) 1rem;
	overflow-y: auto;
	opacity: 0;
	transition: opacity 0.25s ease;
}

.hs-modal.is-open {
	opacity: 1;
}

.hs-modal[hidden] {
	display: none;
}

.hs-modal__overlay {
	position: fixed;
	inset: 0;
	background: rgb(17 24 39 / 0.55);
	backdrop-filter: blur(2px);
}

body.hs-modal-open {
	overflow: hidden;
}

.hs-modal--success {
	z-index: 1010;
}

.hs-modal__dialog {
	position: relative;
	z-index: 1;
	width: 100%;
	max-width: 46rem;
	margin: auto;
	background: #fff;
	border-radius: 1.25rem;
	box-shadow: 0 25px 60px rgb(0 0 0 / 0.28);
	transform: translateY(16px) scale(0.98);
	transition: transform 0.25s ease;
	display: flex;
	flex-direction: column;
	max-height: calc(100vh - 2rem);
	outline: none;
	overflow: hidden;
}

.hs-modal__dialog--success {
	max-width: 28rem;
}

.hs-modal__body--success {
	padding: clamp(1.75rem, 4vw, 2.5rem);
	text-align: center;
}

.hs-booking-success__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 4rem;
	height: 4rem;
	margin: 0 auto 1rem;
	border-radius: 50%;
	background: #dcfce7;
	color: #166534;
}

.hs-booking-success__eyebrow {
	margin: 0 0 0.35rem;
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--hs-primary, #bf2c5d);
}

.hs-booking-success__title {
	margin: 0 0 0.75rem;
	font-size: clamp(1.25rem, 3vw, 1.6rem);
	line-height: 1.25;
	color: var(--hs-dark, #1f2937);
}

.hs-booking-success__text {
	margin: 0 0 1.5rem;
	font-size: 1rem;
	line-height: 1.6;
	color: #4b5563;
}

.hs-booking-success .hs-btn {
	width: 100%;
}

.hs-modal.is-open .hs-modal__dialog {
	transform: translateY(0) scale(1);
}

.hs-modal__header {
	position: relative;
	padding: 1.35rem clamp(1.35rem, 4vw, 2rem) 1.15rem;
	border-bottom: 1px solid #f0e4e9;
	background:
		radial-gradient(120% 120% at 0% 0%, rgb(191 44 93 / 0.08) 0%, transparent 55%),
		linear-gradient(180deg, #fffafb 0%, #fff 100%);
}

.hs-modal__eyebrow {
	margin: 0 0 0.25rem;
	font-size: 0.75rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	color: var(--hs-primary, #bf2c5d);
}

.hs-modal__title {
	margin: 0;
	font-size: clamp(1.125rem, 2.5vw, 1.5rem);
	font-weight: 700;
	padding-right: 2.5rem;
	line-height: 1.3;
}

.hs-modal__close {
	position: absolute;
	top: 1.15rem;
	right: clamp(1.15rem, 3vw, 1.5rem);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2.25rem;
	height: 2.25rem;
	border: none;
	border-radius: 50%;
	background: #f3f4f6;
	color: #4b5563;
	cursor: pointer;
	transition: background-color 0.2s ease, color 0.2s ease;
}

.hs-modal__close:hover {
	background: var(--hs-primary, #bf2c5d);
	color: #fff;
}

.hs-modal__body {
	padding: 1.5rem clamp(1.35rem, 4vw, 2rem) 1.75rem;
	overflow-y: auto;
	background: linear-gradient(180deg, #fff 0%, #fbfbfc 100%);
}

.hs-booking {
	scroll-margin-top: 6rem;
}

.hs-booking-step-intro {
	margin: 0 0 1.25rem;
	color: #6b7280;
	font-size: 0.9375rem;
	line-height: 1.55;
}

.hs-booking-form-head {
	margin-bottom: 0.25rem;
}

/* Step indicator */
.hs-booking-steps {
	display: flex;
	align-items: flex-start;
	list-style: none;
	margin: 0 0 1.75rem;
	padding: 0.85rem 0.5rem 1rem;
	counter-reset: hs-step;
	background: #fff;
	border: 1px solid #f0e4e9;
	border-radius: 1rem;
	box-shadow: 0 8px 24px rgb(191 44 93 / 0.05);
}

.hs-booking-steps__item {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.45rem;
	flex: 1 1 0;
	text-align: center;
	color: #9ca3af;
	font-weight: 600;
	font-size: 0.8125rem;
}

.hs-booking-steps__label {
	line-height: 1.25;
	max-width: 7.5rem;
}

.hs-booking-steps__item:not(:first-child)::before {
	content: "";
	position: absolute;
	top: 1rem;
	right: 50%;
	left: -50%;
	height: 2px;
	background: #ead7de;
	z-index: 0;
}

.hs-booking-steps__item.is-active:not(:first-child)::before,
.hs-booking-steps__item.is-done:not(:first-child)::before {
	background: var(--hs-primary, #bf2c5d);
}

.hs-booking-steps__marker {
	position: relative;
	z-index: 1;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2.1rem;
	height: 2.1rem;
	border-radius: 50%;
	background: #fff;
	border: 2px solid #ead7de;
	color: #9ca3af;
	transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.hs-booking-steps__num {
	font-size: 0.875rem;
	font-weight: 700;
}

.hs-booking-steps__item.is-active {
	color: var(--hs-primary, #bf2c5d);
}

.hs-booking-steps__item.is-active .hs-booking-steps__marker {
	border-color: var(--hs-primary, #bf2c5d);
	color: var(--hs-primary, #bf2c5d);
	box-shadow: 0 0 0 4px rgb(191 44 93 / 0.12);
}

.hs-booking-steps__item.is-done {
	color: var(--hs-primary, #bf2c5d);
}

.hs-booking-steps__item.is-done .hs-booking-steps__marker {
	background: var(--hs-primary, #bf2c5d);
	border-color: var(--hs-primary, #bf2c5d);
	color: #fff;
}

.hs-booking-steps__item.is-done .hs-booking-steps__num {
	font-size: 0;
}

.hs-booking-steps__item.is-done .hs-booking-steps__num::after {
	content: "\2713";
	font-size: 1rem;
}

/* Step 1: course info */
.hs-booking-info__head {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 0.5rem 0.75rem;
	margin-bottom: 1.25rem;
}

.hs-booking-info__type {
	display: inline-block;
	padding: 0.3rem 0.8rem;
	border-radius: 9999px;
	background: var(--hs-primary-light, #f9e6eb);
	color: var(--hs-primary-dark, #a02549);
	font-size: 0.8125rem;
	font-weight: 600;
}

.hs-booking-info__title {
	margin: 0;
	font-size: 1.375rem;
	font-weight: 700;
	flex: 1 1 auto;
}

.hs-booking-info__price {
	font-size: 1.5rem;
	font-weight: 800;
	color: var(--hs-primary, #bf2c5d);
	letter-spacing: -0.02em;
}

.hs-booking-info__facts {
	list-style: none;
	margin: 0 0 1.25rem;
	padding: 0;
	display: grid;
	gap: 0.75rem;
}

@media (min-width: 560px) {
	.hs-booking-info__facts {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

.hs-booking-info__facts li {
	display: flex;
	align-items: flex-start;
	gap: 0.75rem;
	padding: 0.95rem 1rem;
	background: #fff;
	border: 1px solid #f0e4e9;
	border-radius: 0.85rem;
	box-shadow: 0 4px 14px rgb(17 24 39 / 0.03);
}

.hs-booking-info__fact-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
	width: 2rem;
	height: 2rem;
	border-radius: 0.65rem;
	background: var(--hs-primary-light, #f9e6eb);
	color: var(--hs-primary, #bf2c5d);
}

.hs-booking-info__fact-label {
	display: block;
	font-size: 0.6875rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	color: #9ca3af;
	margin-bottom: 0.2rem;
}

.hs-booking-info__fact-value {
	display: block;
	color: var(--hs-dark, #1f2937);
	font-weight: 600;
	font-size: 0.9375rem;
	line-height: 1.4;
}

.hs-booking-info__note {
	background: #fff8e8;
	border: 1px solid #f5e2a8;
	border-left: 4px solid #e2b93d;
	padding: 0.9rem 1rem;
	border-radius: 0.65rem;
	color: #7a5c00;
	margin: 0;
}

/* Actions row */
.hs-booking-actions {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 0.75rem;
	margin-top: 1.5rem;
	padding-top: 1.15rem;
	border-top: 1px solid #f0e4e9;
}

.hs-booking-actions[hidden],
.hs-booking-confirm-footer[hidden],
.hs-booking-panel[hidden],
.hs-booking-step[hidden],
.hs-booking [data-booking-panel][hidden],
.hs-booking [data-booking-actions][hidden] {
	display: none !important;
}

.hs-booking.hs-booking--confirm .hs-booking-actions--form,
.hs-booking.hs-booking--confirm .hs-booking-to-summary {
	display: none !important;
}

.hs-booking-actions--form .hs-btn--outline {
	order: 1;
}

.hs-booking-actions--form .hs-btn--primary {
	order: 2;
	margin-left: auto;
}

/* Step 3 confirm footer */
.hs-booking-confirm-footer {
	margin-top: 1.25rem;
	padding-top: 0.25rem;
}

.hs-booking-confirm-footer__agb {
	margin-bottom: 1rem;
}

.hs-booking-confirm-footer__actions {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 0.75rem;
	padding-top: 1rem;
	border-top: 1px solid #f0e4e9;
}

.hs-booking-confirm-footer__submit {
	display: flex;
	flex: 1 1 auto;
	justify-content: flex-end;
	min-width: min(100%, 14rem);
}

.hs-booking-confirm-footer__submit .wpcf7-submit {
	width: auto;
	min-width: 12rem;
}

@media (max-width: 560px) {
	.hs-booking-confirm-footer__actions {
		flex-direction: column;
		align-items: stretch;
	}

	.hs-booking-confirm-footer__submit {
		justify-content: stretch;
		min-width: 0;
	}

	.hs-booking-confirm-footer__submit .wpcf7-submit {
		width: 100%;
	}
}

/* Step 2: form */
.hs-booking-form-title {
	margin: 0 0 0.35rem;
	font-size: 1.25rem;
	font-weight: 700;
}

.hs-booking-fieldset {
	margin-bottom: 1.35rem;
	padding: 1.15rem 1.15rem 1.25rem;
	background: #fff;
	border: 1px solid #f0e4e9;
	border-radius: 1rem;
	box-shadow: 0 6px 18px rgb(17 24 39 / 0.03);
}

.hs-booking-fieldset__title {
	font-size: 1rem;
	font-weight: 700;
	color: var(--hs-dark, #1f2937);
	margin: 0 0 1rem;
	padding-bottom: 0.65rem;
	border-bottom: 1px solid #f3e7ec;
}

.hs-booking-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1rem 1.1rem;
}

@media (min-width: 640px) {
	.hs-booking-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.hs-booking-grid > label:has(textarea),
	.hs-booking-grid > .hs-booking-check,
	.hs-booking .wpcf7-form .hs-booking-grid > label:has(.wpcf7-textarea) {
		grid-column: 1 / -1;
	}
}

.hs-booking .wpcf7-form label {
	display: block;
	font-size: 0.875rem;
	font-weight: 600;
	color: #374151;
}

.hs-booking .wpcf7-form .hs-booking-grid > label {
	margin: 0;
}

.hs-booking .wpcf7-form input[type="text"],
.hs-booking .wpcf7-form input[type="email"],
.hs-booking .wpcf7-form input[type="tel"],
.hs-booking .wpcf7-form input[type="date"],
.hs-booking .wpcf7-form input[type="number"],
.hs-booking .wpcf7-form select,
.hs-booking .wpcf7-form textarea {
	width: 100%;
	margin-top: 0.4rem;
	padding: 0.75rem 0.9rem;
	border: 1px solid #d7dbe2;
	border-radius: 0.65rem;
	font: inherit;
	color: var(--hs-dark, #1f2937);
	background: #fff;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.hs-booking .wpcf7-form textarea {
	min-height: 6.5rem;
	resize: vertical;
}

.hs-booking .wpcf7-form input:focus,
.hs-booking .wpcf7-form select:focus,
.hs-booking .wpcf7-form textarea:focus {
	outline: none;
	border-color: var(--hs-primary, #bf2c5d);
	box-shadow: 0 0 0 3px rgb(191 44 93 / 0.15);
}

.hs-booking-help {
	margin: 0.4rem 0 0;
	padding: 0.55rem 0.7rem;
	border-radius: 0.5rem;
	background: #f8fafc;
	color: #6b7280;
	font-size: 0.8125rem;
	font-weight: 400;
	line-height: 1.45;
}

.hs-booking-check,
.hs-booking .wpcf7-form .hs-booking-check {
	display: flex;
	align-items: flex-start;
	gap: 0.55rem;
	padding: 0.75rem 0.85rem;
	border: 1px solid #eceff3;
	border-radius: 0.65rem;
	background: #fafbfc;
	font-weight: 500;
	line-height: 1.45;
}

.hs-booking-check input,
.hs-booking-agb input {
	margin-top: 0.2rem;
	flex: 0 0 auto;
}

.hs-booking-agb {
	display: flex;
	align-items: flex-start;
	gap: 0.55rem;
	font-size: 0.9375rem;
	line-height: 1.5;
	margin: 1.25rem 0 0;
	padding: 0.9rem 1rem;
	border-radius: 0.75rem;
	background: #fff8fb;
	border: 1px solid #f0e4e9;
}

.hs-booking:not(.hs-booking--confirm) .hs-booking-agb {
	display: none !important;
}

/* Confirmation / summary */
.hs-booking--confirm .hs-booking-fieldset,
.hs-booking--confirm .hs-booking-panel--form {
	display: none !important;
}

.hs-booking:not(.hs-booking--confirm) .hs-booking-panel--summary {
	display: none !important;
}

.hs-booking-summary {
	background: #fff;
	border: 1px solid #f0e4e9;
	border-radius: 1rem;
	padding: 1.15rem 1.25rem 1.25rem;
	margin: 0 0 1.15rem;
	box-shadow: 0 8px 22px rgb(191 44 93 / 0.06);
}

.hs-booking-summary__title {
	margin: 0 0 1rem;
	font-size: 1.05rem;
	font-weight: 700;
}

.hs-booking-summary__list {
	display: grid;
	gap: 0.65rem;
	margin: 0;
}

.hs-booking-summary__row {
	display: grid;
	grid-template-columns: minmax(8rem, 34%) 1fr;
	gap: 0.35rem 1rem;
	padding: 0.7rem 0.8rem;
	background: #faf7f8;
	border-radius: 0.65rem;
}

.hs-booking-summary__list dt,
.hs-booking-summary__row dt {
	font-weight: 600;
	color: #6b7280;
	font-size: 0.875rem;
}

.hs-booking-summary__list dd,
.hs-booking-summary__row dd {
	margin: 0;
	color: var(--hs-dark, #1f2937);
	white-space: pre-line;
	font-weight: 500;
	font-size: 0.9375rem;
}

.hs-booking-summary__empty {
	margin: 0;
	color: #6b7280;
}

.hs-booking-summary__price {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 1rem;
	margin: 1rem 0 0;
	padding: 0.9rem 1rem;
	border-radius: 0.75rem;
	background: linear-gradient(135deg, var(--hs-primary-light, #f9e6eb) 0%, #fff 75%);
	border: 1px solid #f0dbe2;
	font-size: 1rem;
	font-weight: 600;
}

.hs-booking-summary__price strong {
	color: var(--hs-primary, #bf2c5d);
	font-size: 1.375rem;
	font-weight: 800;
}

.hs-booking-summary__hint {
	margin: 0.85rem 0 0;
	font-size: 0.875rem;
	color: #6b7280;
	line-height: 1.45;
}

/* Submit button – align with theme .hs-btn (fallback if CF7 classes missing) */
.hs-booking .wpcf7-submit {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	box-sizing: border-box;
	min-height: 3rem;
	padding: 0 1.5rem;
	border: 1px solid transparent;
	border-radius: var(--hs-btn-radius, 0.375rem);
	background: var(--hs-primary, #bf2c5d);
	color: #fff;
	font: inherit;
	font-size: 1rem;
	font-weight: 600;
	letter-spacing: 0.01em;
	cursor: pointer;
	transition: background-color 0.2s ease, box-shadow 0.2s ease;
	-webkit-appearance: none;
	appearance: none;
}

.hs-booking .wpcf7-submit:hover {
	background: var(--hs-primary-dark, #a02549);
	box-shadow: 0 4px 14px rgb(191 44 93 / 0.22);
}

.hs-booking .wpcf7-submit:focus-visible {
	outline: 2px solid var(--hs-primary, #bf2c5d);
	outline-offset: 2px;
}

/* Critical: keep submit locked until overview step */
.hs-booking .wpcf7-submit[hidden],
.hs-booking .wpcf7-submit.hs-booking-submit--locked,
.hs-booking:not(.hs-booking--confirm) .wpcf7-submit,
.hs-booking:not(.hs-booking--confirm) [data-hs-submit-slot] {
	display: none !important;
}

.hs-booking.hs-booking--confirm .wpcf7-submit,
.hs-booking.hs-booking--confirm [data-hs-submit-slot] .wpcf7-submit {
	display: inline-flex !important;
}

.hs-booking.hs-booking--confirm .wpcf7-submit:disabled {
	display: inline-flex !important;
	opacity: 0.55;
	cursor: not-allowed;
	box-shadow: none;
}

.hs-booking.hs-booking--confirm .hs-booking-confirm-footer {
	display: block;
}

.hs-booking:not(.hs-booking--confirm) .hs-booking-confirm-footer {
	display: none !important;
}

.hs-booking--sent .hs-booking-summary__hint,
.hs-booking--sent .hs-booking-actions,
.hs-booking--sent .hs-booking-confirm-footer,
.hs-booking--sent .hs-booking-agb,
.hs-booking--sent .wpcf7-submit {
	display: none !important;
}

.hs-booking .wpcf7-spinner {
	margin: 0.75rem auto 0;
	display: block;
}

.hs-booking .wpcf7-response-output {
	margin: 1rem 0 0 !important;
	padding: 0.85rem 1rem;
	border-radius: 0.5rem;
	font-size: 0.9375rem;
}

.hs-booking .wpcf7-not-valid-tip,
.hs-booking-field-error {
	color: #dc2626;
	font-size: 0.8125rem;
	font-weight: 500;
	margin-top: 0.35rem;
	display: block;
}

.hs-booking .wpcf7-not-valid,
.hs-booking .hs-booking-field--invalid,
.hs-booking .wpcf7-form input.wpcf7-not-valid,
.hs-booking .wpcf7-form select.wpcf7-not-valid,
.hs-booking .wpcf7-form textarea.wpcf7-not-valid {
	border-color: #dc2626 !important;
	box-shadow: 0 0 0 3px rgb(220 38 38 / 0.12) !important;
}

@media (max-width: 560px) {
	.hs-booking-steps__label {
		font-size: 0.75rem;
	}

	.hs-booking-summary__row {
		grid-template-columns: 1fr;
	}

	.hs-booking-actions {
		flex-direction: column-reverse;
		align-items: stretch;
	}

	.hs-booking-actions--form .hs-btn--primary {
		margin-left: 0;
	}
}

/* Gallery page */
.hs-galerie-page {
	overflow-x: hidden;
}

.hs-galerie-hero {
	background:
		radial-gradient(120% 90% at 10% 0%, rgb(255 255 255 / 0.18) 0%, transparent 45%),
		linear-gradient(
			135deg,
			var(--hs-primary-dark, #a02549) 0%,
			var(--hs-primary, #bf2c5d) 45%,
			#d9668f 75%,
			#f9e6eb 100%
		);
	padding: clamp(3rem, 7vw, 4.5rem) 0 clamp(2.5rem, 6vw, 3.5rem);
	text-align: center;
	color: #fff;
}

.hs-galerie-hero__eyebrow {
	margin: 0 0 0.5rem;
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: rgb(255 255 255 / 0.85);
}

.hs-galerie-hero__title {
	font-size: clamp(2rem, 5vw, 2.75rem);
	margin: 0 0 1rem;
	color: #fff;
	font-weight: 700;
	line-height: 1.15;
}

.hs-galerie-hero__subtitle {
	max-width: 40rem;
	margin: 0 auto;
	color: rgb(255 255 255 / 0.92);
	font-size: clamp(1rem, 2.2vw, 1.125rem);
	line-height: 1.65;
}

.hs-galerie-section {
	padding: clamp(2rem, 4vw, 2.75rem) 0 clamp(2.5rem, 5vw, 3.5rem);
	background:
		radial-gradient(80% 60% at 100% 0%, rgb(191 44 93 / 0.05) 0%, transparent 55%),
		#fff;
}

.hs-gallery-filter {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	margin-bottom: 1.75rem;
	justify-content: center;
}

.hs-gallery-filter__btn {
	border: 1px solid #e5d0d8;
	background: #fff;
	color: #4b5563;
	border-radius: 9999px;
	padding: 0.55rem 1.1rem;
	font-size: 0.875rem;
	font-weight: 600;
	cursor: pointer;
	transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.hs-gallery-filter__btn:hover {
	border-color: var(--hs-primary, #bf2c5d);
	color: var(--hs-primary, #bf2c5d);
	transform: translateY(-1px);
}

.hs-gallery-filter__btn.is-active {
	background: var(--hs-primary, #bf2c5d);
	border-color: var(--hs-primary, #bf2c5d);
	color: #fff;
}

.hs-gallery-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(min(100%, 16.5rem), 1fr));
	gap: 1.1rem;
}

.hs-gallery-item {
	margin: 0;
	border-radius: 1rem;
	overflow: hidden;
	background: #faf7f8;
	box-shadow: 0 10px 28px rgb(31 41 55 / 0.08);
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.hs-gallery-item.is-hidden,
.hs-gallery-item[hidden] {
	display: none !important;
}

.hs-gallery-item:hover {
	transform: translateY(-3px);
	box-shadow: 0 16px 36px rgb(31 41 55 / 0.14);
}

.hs-gallery-item__link {
	display: block;
	color: inherit;
	text-decoration: none;
}

.hs-gallery-item__media {
	position: relative;
	display: block;
	overflow: hidden;
	aspect-ratio: 4 / 3;
	background: #f3e8ec;
}

.hs-gallery-item__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.45s ease;
}

.hs-gallery-item:hover .hs-gallery-item__media img {
	transform: scale(1.04);
}

.hs-gallery-item__zoom {
	position: absolute;
	inset: auto 0.75rem 0.75rem auto;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2.4rem;
	height: 2.4rem;
	border-radius: 9999px;
	background: rgb(255 255 255 / 0.92);
	color: var(--hs-primary, #bf2c5d);
	opacity: 0;
	transform: translateY(6px);
	transition: opacity 0.25s ease, transform 0.25s ease;
	box-shadow: 0 6px 16px rgb(0 0 0 / 0.12);
}

.hs-gallery-item:hover .hs-gallery-item__zoom,
.hs-gallery-item__link:focus-visible .hs-gallery-item__zoom {
	opacity: 1;
	transform: translateY(0);
}

.hs-gallery-item__caption {
	display: flex;
	flex-direction: column;
	gap: 0.2rem;
	padding: 0.85rem 1rem 1rem;
}

.hs-gallery-item__cat {
	font-size: 0.7rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--hs-primary, #bf2c5d);
}

.hs-gallery-item__title {
	font-size: 0.95rem;
	font-weight: 600;
	color: #1f2937;
	line-height: 1.35;
}

.hs-galerie-cta {
	padding: clamp(2rem, 5vw, 3rem) 0 clamp(2.75rem, 6vw, 3.75rem);
}

.hs-galerie-cta__inner {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 1.25rem 2rem;
	padding: clamp(1.5rem, 4vw, 2rem);
	border-radius: 1.25rem;
	background:
		radial-gradient(90% 120% at 0% 0%, rgb(191 44 93 / 0.1) 0%, transparent 50%),
		linear-gradient(180deg, #fffafb 0%, #fff 100%);
	border: 1px solid #f0e4e9;
}

.hs-galerie-cta__title {
	margin: 0 0 0.4rem;
	font-size: clamp(1.25rem, 3vw, 1.5rem);
	color: #1f2937;
}

.hs-galerie-cta__text {
	margin: 0;
	color: #4b5563;
	line-height: 1.6;
	max-width: 36rem;
}

/* Gallery lightbox */
body.hs-gallery-lightbox-open {
	overflow: hidden;
}

.hs-gallery-lightbox {
	position: fixed;
	inset: 0;
	z-index: 1200;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 1rem;
	opacity: 0;
	transition: opacity 0.25s ease;
}

.hs-gallery-lightbox.is-open {
	opacity: 1;
}

.hs-gallery-lightbox[hidden] {
	display: none;
}

.hs-gallery-lightbox__overlay {
	position: absolute;
	inset: 0;
	background: rgb(17 24 39 / 0.78);
	backdrop-filter: blur(3px);
}

.hs-gallery-lightbox__dialog {
	position: relative;
	z-index: 1;
	width: min(960px, 100%);
	max-height: calc(100vh - 2rem);
	display: flex;
	align-items: center;
	justify-content: center;
}

.hs-gallery-lightbox__figure {
	margin: 0;
	width: 100%;
	text-align: center;
}

.hs-gallery-lightbox__img {
	max-width: 100%;
	max-height: min(78vh, 820px);
	width: auto;
	height: auto;
	border-radius: 0.75rem;
	box-shadow: 0 24px 60px rgb(0 0 0 / 0.35);
	background: #111827;
}

.hs-gallery-lightbox__caption {
	margin-top: 0.85rem;
	color: #fff;
	display: flex;
	flex-direction: column;
	gap: 0.2rem;
	align-items: center;
}

.hs-gallery-lightbox__cat {
	font-size: 0.7rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: #f9a8c4;
}

.hs-gallery-lightbox__title {
	font-size: 1rem;
	font-weight: 600;
}

.hs-gallery-lightbox__close,
.hs-gallery-lightbox__nav {
	position: absolute;
	border: 0;
	background: rgb(255 255 255 / 0.14);
	color: #fff;
	cursor: pointer;
	backdrop-filter: blur(4px);
	transition: background 0.2s ease;
}

.hs-gallery-lightbox__close:hover,
.hs-gallery-lightbox__nav:hover {
	background: rgb(255 255 255 / 0.28);
}

.hs-gallery-lightbox__close {
	top: 0;
	right: 0;
	width: 2.75rem;
	height: 2.75rem;
	border-radius: 9999px;
	font-size: 1.75rem;
	line-height: 1;
	z-index: 2;
}

.hs-gallery-lightbox__nav {
	top: 50%;
	transform: translateY(-50%);
	width: 2.75rem;
	height: 2.75rem;
	border-radius: 9999px;
	font-size: 1.25rem;
	z-index: 2;
}

.hs-gallery-lightbox__nav--prev {
	left: 0;
}

.hs-gallery-lightbox__nav--next {
	right: 0;
}

@media (max-width: 640px) {
	.hs-gallery-lightbox__nav--prev {
		left: 0.15rem;
	}

	.hs-gallery-lightbox__nav--next {
		right: 0.15rem;
	}

	.hs-galerie-cta__inner {
		flex-direction: column;
		align-items: flex-start;
	}
}

/* About page */
.hs-about-page {
	overflow-x: hidden;
}

.hs-about-hero {
	background: linear-gradient(
		135deg,
		var(--hs-primary-dark, #a02549) 0%,
		var(--hs-primary, #bf2c5d) 45%,
		#d9668f 75%,
		#f9e6eb 100%
	);
	padding: clamp(3rem, 7vw, 4.5rem) 0 clamp(2.5rem, 6vw, 3.5rem);
	text-align: center;
	color: #fff;
}

.hs-about-hero__title {
	font-size: clamp(2rem, 5vw, 2.75rem);
	margin: 0 0 1rem;
	color: #fff;
	font-weight: 700;
	line-height: 1.15;
}

.hs-about-hero__subtitle {
	max-width: 44rem;
	margin: 0 auto;
	color: rgb(255 255 255 / 0.92);
	font-size: clamp(1rem, 2.2vw, 1.125rem);
	line-height: 1.65;
}

.hs-about-intro {
	padding: clamp(2rem, 4vw, 3rem) 0;
	background: #fff;
}

.hs-about-intro__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: clamp(2rem, 4vw, 3rem);
	align-items: start;
}

@media (min-width: 960px) {
	.hs-about-intro__grid {
		grid-template-columns: minmax(0, 20rem) minmax(0, 1fr);
		gap: clamp(2.5rem, 5vw, 4rem);
	}
}

.hs-about-intro__media {
	position: relative;
	max-width: 20rem;
	margin: 0 auto;
}

@media (min-width: 960px) {
	.hs-about-intro__media {
		margin: 0;
		position: sticky;
		top: 5rem;
	}
}

.hs-about-intro__photo,
.hs-about-intro__placeholder {
	width: 100%;
	aspect-ratio: 4 / 5;
	object-fit: cover;
	border-radius: 1rem;
	display: block;
	box-shadow: 0 12px 32px rgb(0 0 0 / 0.12);
}

.hs-about-intro__placeholder {
	background: linear-gradient(135deg, var(--hs-primary-light, #f9e6eb) 0%, #fce7f3 100%);
}

.hs-about-intro__badge {
	position: absolute;
	right: -0.75rem;
	bottom: -0.75rem;
	width: 5.5rem;
	height: 5.5rem;
	border-radius: 9999px;
	background: #fff;
	box-shadow: 0 8px 24px rgb(0 0 0 / 0.12);
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0.5rem;
}

.hs-about-intro__badge img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.hs-about-intro__story p {
	margin: 0 0 1.25rem;
	font-size: 1.0625rem;
	line-height: 1.75;
	color: #374151;
}

.hs-about-intro__story p:last-child {
	margin-bottom: 0;
}

.hs-about-section {
	padding: clamp(2rem, 4vw, 3rem) 0;
}

.hs-about-section--alt {
	background: #f9fafb;
}

.hs-about-section h2 {
	font-size: clamp(1.375rem, 3vw, 1.625rem);
	margin: 0 0 1rem;
	color: var(--hs-dark, #1f2937);
}

.hs-about-section h2:not(:first-child) {
	margin-top: 2rem;
}

.hs-about-highlight {
	background: var(--hs-primary-light, #f9e6eb);
	border: 1px solid rgb(191 44 93 / 0.12);
	border-radius: 0.75rem;
	padding: clamp(1.5rem, 3vw, 2rem);
}

.hs-about-highlight h2 {
	margin-top: 0;
}

.hs-about-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 0.75rem;
}

.hs-about-list li {
	font-size: 1rem;
	line-height: 1.6;
	color: #374151;
	padding-left: 0;
}

.hs-about-certs__head {
	text-align: center;
	max-width: 42rem;
	margin: 0 auto 2rem;
}

.hs-about-certs__head p {
	margin: 0;
	color: var(--hs-gray, #6b7280);
	line-height: 1.65;
}

.hs-about-certs__card {
	max-width: 22rem;
	margin: 0 auto;
	background: #fff;
	border: 1px solid #e5e7eb;
	border-radius: 0.75rem;
	overflow: hidden;
	box-shadow: 0 8px 24px rgb(0 0 0 / 0.08);
}

.hs-about-certs__card img {
	width: 100%;
	height: auto;
	display: block;
}

.hs-about-certs__card figcaption {
	padding: 1rem 1.25rem 1.25rem;
	text-align: center;
}

.hs-about-certs__card figcaption strong {
	display: block;
	font-size: 0.9375rem;
	color: var(--hs-dark, #1f2937);
	margin-bottom: 0.25rem;
}

.hs-about-certs__card figcaption span {
	display: block;
	font-size: 0.875rem;
	color: var(--hs-gray, #6b7280);
}

.hs-about-cta {
	padding: clamp(3rem, 6vw, 4.5rem) 0;
	background: linear-gradient(135deg, var(--hs-primary-dark, #a02549) 0%, var(--hs-primary, #bf2c5d) 100%);
	color: #fff;
	text-align: center;
}

.hs-about-cta h2 {
	font-size: clamp(1.75rem, 4vw, 2.25rem);
	margin: 0 0 1rem;
	color: #fff;
}

.hs-about-cta p {
	max-width: 36rem;
	margin: 0 auto 1.5rem;
	font-size: 1.0625rem;
	line-height: 1.65;
	color: rgb(255 255 255 / 0.92);
}

.hs-about-cta .hs-btn--primary {
	background: #fff;
	color: var(--hs-primary, #bf2c5d);
}

.hs-about-cta .hs-btn--primary:hover {
	background: #f3f4f6;
	color: var(--hs-primary-dark, #a02549);
}

/* News page */
.hs-news-page {
	overflow-x: hidden;
}

.hs-news-hero {
	background: linear-gradient(
		135deg,
		var(--hs-primary-dark, #a02549) 0%,
		var(--hs-primary, #bf2c5d) 45%,
		#d9668f 75%,
		#f9e6eb 100%
	);
	padding: clamp(3rem, 7vw, 4.5rem) 0 clamp(2.5rem, 6vw, 3.5rem);
	text-align: center;
	color: #fff;
}

.hs-news-hero__title {
	font-size: clamp(2rem, 5vw, 2.75rem);
	margin: 0 0 1rem;
	color: #fff;
	font-weight: 700;
	line-height: 1.15;
}

.hs-news-hero__subtitle {
	max-width: 44rem;
	margin: 0 auto;
	color: rgb(255 255 255 / 0.92);
	font-size: clamp(1rem, 2.2vw, 1.125rem);
	line-height: 1.65;
}

.hs-news-list-section {
	padding: clamp(2.5rem, 5vw, 3.5rem) 0;
	background: #f9fafb;
}

.hs-news-grid,
.hs-news-list {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.75rem;
	align-items: stretch;
}

@media (min-width: 640px) {
	.hs-news-grid,
	.hs-news-list {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (min-width: 1024px) {
	.hs-news-grid,
	.hs-news-list {
		grid-template-columns: repeat(3, minmax(0, 1fr));
		gap: 2rem;
	}
}

.hs-news-card {
	background: #fff;
	border: 1px solid #eef0f3;
	border-radius: 0.875rem;
	box-shadow: 0 4px 16px rgb(0 0 0 / 0.06);
	overflow: hidden;
	display: flex;
	flex-direction: column;
	height: 100%;
	min-height: 100%;
	transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.hs-news-card:hover {
	box-shadow: 0 12px 32px rgb(191 44 93 / 0.12);
	transform: translateY(-3px);
}

/* Feste Bildhöhe – ein Container, kein Doppel-Layout */
.hs-news-card__media {
	display: block;
	text-decoration: none;
	color: inherit;
}

.hs-news-card__media-frame {
	display: block;
	position: relative;
	width: 100%;
	margin-top: -27px;
	height: 0;
	padding-top: 66.666%;
	overflow: hidden;
	background: linear-gradient(135deg, var(--hs-primary-light, #f9e6eb) 0%, #e8b4c8 55%, #fce7f3 100%);
	border-radius: 0.875rem 0.875rem 0 0;
}

.hs-news-card__media-frame img,
.hs-news-card__media-frame .hs-news-card__img,
.hs-news-card__media-frame .wp-post-image,
.hs-news-card__placeholder {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	display: block;
	border: 0;
	margin: 0;
	padding: 0;
}

.hs-news-card__placeholder {
	background: linear-gradient(135deg, var(--hs-primary-light, #f9e6eb) 0%, #e8b4c8 55%, #fce7f3 100%);
}

.hs-news-card:hover .hs-news-card__media-frame img {
	transform: scale(1.04);
	transition: transform 0.35s ease;
}

.hs-news-card__media-frame img {
	transition: transform 0.35s ease;
}

/* WP-Bild-Styles im Kartenkopf zurücksetzen */
body.hs-theme .hs-news-card__media-frame img,
body.hs-theme .hs-news-card__media-frame .wp-post-image {
	position: absolute !important;
	top: 0 !important;
	left: 0 !important;
	width: 100% !important;
	height: 100% !important;
	max-width: none !important;
	margin: 0 !important;
	vertical-align: top;
}

.hs-news-card__body {
	padding: 1.25rem 1.375rem 1.5rem;
	display: flex;
	flex-direction: column;
	flex: 1 1 auto;
	min-height: 0;
}

.hs-news-card__date {
	display: inline-flex;
	align-items: center;
	gap: 0.375rem;
	font-size: 0.8125rem;
	color: var(--hs-gray, #6b7280);
	font-weight: 500;
	margin-bottom: 0.75rem;
}

.hs-news-card__icon {
	flex-shrink: 0;
	color: #9ca3af;
}

.hs-news-card__title {
	font-size: 1.0625rem;
	line-height: 1.4;
	margin: 0 0 0.625rem;
	font-weight: 700;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
	overflow: hidden;
}

.hs-news-card__title a {
	color: var(--hs-dark, #1f2937);
	text-decoration: none;
}

.hs-news-card__title a:hover {
	color: var(--hs-primary, #bf2c5d);
}

.hs-news-card__excerpt {
	margin: 0 0 1rem;
	color: var(--hs-gray, #6b7280);
	line-height: 1.6;
	font-size: 0.9375rem;
	flex: 1 1 auto;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
	overflow: hidden;
}

.hs-news-card__link {
	display: inline-flex;
	align-items: center;
	gap: 0.375rem;
	margin-top: auto;
	padding-top: 0.25rem;
	font-weight: 600;
	font-size: 0.9375rem;
	color: var(--hs-primary, #bf2c5d);
	text-decoration: none;
}

.hs-news-card__link-text {
	line-height: 1;
}

.hs-news-card__link:hover {
	color: var(--hs-primary-dark, #a02549);
}

.hs-news-card__arrow {
	flex-shrink: 0;
	display: block;
	transition: transform 0.2s ease;
}

.hs-news-card__link:hover .hs-news-card__arrow {
	transform: translateX(3px);
}

.hs-news-card--compact .hs-news-card__title {
	font-size: 1rem;
}

.hs-news-card--compact .hs-news-card__excerpt {
	font-size: 0.875rem;
}

.hs-news-empty {
	text-align: center;
	color: var(--hs-gray, #6b7280);
	padding: 2rem 0;
}

.hs-news-pagination {
	margin-top: 2rem;
}

.hs-news-pagination .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 2.25rem;
	height: 2.25rem;
	margin: 0 0.125rem;
	padding: 0 0.5rem;
	border-radius: 0.375rem;
	text-decoration: none;
	color: #374151;
	border: 1px solid #e5e7eb;
}

.hs-news-pagination .page-numbers.current,
.hs-news-pagination .page-numbers:hover {
	background: var(--hs-primary, #bf2c5d);
	border-color: var(--hs-primary, #bf2c5d);
	color: #fff;
}

.hs-news-pagination ul {
	display: flex;
	flex-wrap: wrap;
	gap: 0.25rem;
	list-style: none;
	margin: 0;
	padding: 0;
	justify-content: center;
}

.hs-news-newsletter {
	padding: clamp(2.5rem, 5vw, 3.5rem) 0 clamp(3rem, 6vw, 4rem);
	background: #f9fafb;
}

.hs-news-newsletter__box {
	background: #fff;
	border: 1px solid #e5e7eb;
	border-radius: 0.75rem;
	padding: clamp(1.5rem, 3vw, 2rem);
	text-align: center;
	box-shadow: 0 4px 16px rgb(0 0 0 / 0.05);
}

.hs-news-newsletter__box h2 {
	margin: 0 0 0.75rem;
	font-size: clamp(1.375rem, 3vw, 1.625rem);
	color: var(--hs-dark, #1f2937);
}

.hs-news-newsletter__box p {
	margin: 0 0 1.25rem;
	color: var(--hs-gray, #6b7280);
	line-height: 1.65;
}

.hs-news-newsletter__form {
	display: grid;
	gap: 0.875rem;
	max-width: 36rem;
	margin: 0 auto;
	text-align: left;
}

.hs-news-newsletter__fields {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

@media (min-width: 640px) {
	.hs-news-newsletter__fields {
		flex-direction: row;
		align-items: stretch;
	}
}

.hs-news-newsletter__form input[type="email"] {
	flex: 1;
	min-width: 0;
	padding: 0.625rem 0.875rem;
	border: 1px solid #d1d5db;
	border-radius: 0.375rem;
	font-size: 1rem;
	box-sizing: border-box;
}

.hs-news-newsletter__form input[type="email"]:focus {
	outline: 2px solid var(--hs-primary, #bf2c5d);
	border-color: var(--hs-primary, #bf2c5d);
}

.hs-news-newsletter__consent {
	display: flex;
	align-items: flex-start;
	gap: 0.625rem;
	font-size: 0.875rem;
	line-height: 1.5;
	color: #4b5563;
}

.hs-news-newsletter__consent input {
	margin-top: 0.2rem;
	flex-shrink: 0;
}

.hs-news-newsletter__form .hs-btn {
	white-space: nowrap;
	flex-shrink: 0;
}

.hs-newsletter-hp {
	position: absolute;
	left: -9999px;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

.hs-newsletter-notice {
	margin: 0 0 1rem;
	padding: 0.875rem 1rem;
	border-radius: 0.5rem;
	font-size: 0.9375rem;
	text-align: left;
}

.hs-newsletter-notice--is-success {
	background: #ecfdf5;
	border: 1px solid #a7f3d0;
	color: #065f46;
}

.hs-newsletter-notice--is-error {
	background: #fef2f2;
	border: 1px solid #fecaca;
	color: #991b1b;
}

.hs-news-newsletter__disabled {
	margin: 0;
	color: #6b7280;
}

.hs-newsletter-page__hero {
	padding: clamp(2.5rem, 5vw, 3.5rem) 0 1.5rem;
	text-align: center;
}

.hs-newsletter-page__hero h1 {
	margin: 0 0 0.75rem;
	font-size: clamp(1.75rem, 4vw, 2.25rem);
}

.hs-newsletter-page__hero p {
	max-width: 40rem;
	margin: 0 auto;
	color: #6b7280;
	line-height: 1.65;
}

.hs-newsletter-page__body {
	padding: 0 0 3rem;
}

.hs-newsletter-unsub-form {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
	max-width: 28rem;
	margin: 0 auto;
}

@media (min-width: 640px) {
	.hs-newsletter-unsub-form {
		flex-direction: row;
		align-items: stretch;
	}
}

.hs-newsletter-unsub-form input[type="email"] {
	flex: 1;
	min-width: 0;
	padding: 0.625rem 0.875rem;
	border: 1px solid #d1d5db;
	border-radius: 0.375rem;
	font-size: 1rem;
	box-sizing: border-box;
}

/* Single news */
.hs-news-single__hero {
	background: var(--hs-primary-light, #f9e6eb);
	padding: clamp(1.5rem, 4vw, 2rem) 0 clamp(1.25rem, 3vw, 1.5rem);
}

.hs-news-breadcrumb {
	margin-bottom: 0.875rem;
}

.hs-news-breadcrumb__list {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.25rem 0;
	list-style: none;
	margin: 0;
	padding: 0;
	font-size: 0.875rem;
	line-height: 1.4;
	color: var(--hs-gray, #6b7280);
}

.hs-news-breadcrumb__item {
	display: inline-flex;
	align-items: center;
	max-width: 100%;
}

.hs-news-breadcrumb__item:not(:last-child)::after {
	content: "/";
	margin: 0 0.5rem;
	color: #9ca3af;
}

.hs-news-breadcrumb__item a {
	color: var(--hs-primary, #bf2c5d);
	text-decoration: none;
	font-weight: 500;
}

.hs-news-breadcrumb__item a:hover {
	text-decoration: underline;
}

.hs-news-breadcrumb__item--current {
	color: var(--hs-gray, #6b7280);
	font-weight: 500;
}

.hs-news-single__date {
	display: block;
	font-size: 0.875rem;
	color: var(--hs-primary, #bf2c5d);
	font-weight: 600;
	margin-bottom: 0.5rem;
}

.hs-news-single__title {
	font-size: clamp(1.75rem, 4vw, 2.25rem);
	margin: 0;
	line-height: 1.2;
	color: var(--hs-dark, #1f2937);
}

.hs-news-single__image {
	max-width: 36rem;
	margin: clamp(1.5rem, 4vw, 2rem) auto 0;
}

.hs-news-single__image img {
	width: 100%;
	max-height: 16rem;
	object-fit: cover;
	border-radius: 0.75rem;
	display: block;
}

.hs-news-single__content {
	padding: clamp(1.5rem, 4vw, 2rem) 0;
	font-size: 1.0625rem;
	line-height: 1.75;
	color: #374151;
}

.hs-news-single__content p {
	margin: 0 0 1.25rem;
}

.hs-news-single__footer {
	padding: 0 0 clamp(2.5rem, 5vw, 3.5rem);
}

/* Contact page */
.hs-contact-page {
	overflow-x: hidden;
}

.hs-contact-hero {
	background: linear-gradient(
		135deg,
		var(--hs-primary-dark, #a02549) 0%,
		var(--hs-primary, #bf2c5d) 45%,
		#d9668f 75%,
		#f9e6eb 100%
	);
	padding: clamp(3rem, 7vw, 4.5rem) 0 clamp(2.5rem, 6vw, 3.5rem);
	text-align: center;
	color: #fff;
}

.hs-contact-hero__title {
	font-size: clamp(2rem, 5vw, 2.75rem);
	margin: 0 0 1rem;
	color: #fff;
	font-weight: 700;
	line-height: 1.15;
}

.hs-contact-hero__subtitle {
	max-width: 44rem;
	margin: 0 auto;
	color: rgb(255 255 255 / 0.92);
	font-size: clamp(1rem, 2.2vw, 1.125rem);
	line-height: 1.65;
}

.hs-contact-body {
	padding: clamp(2.5rem, 5vw, 3.5rem) 0 clamp(3rem, 6vw, 4rem);
	background: #f9fafb;
}

.hs-contact-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 2rem;
	align-items: start;
}

@media (min-width: 1024px) {
	.hs-contact-grid {
		grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
		gap: 3rem;
	}
}

.hs-contact-info h2,
.hs-contact-form-card h2 {
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--hs-dark, #1f2937);
	margin: 0 0 1.5rem;
}

.hs-contact-info__list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 1.5rem;
}

.hs-contact-info__item {
	display: flex;
	align-items: flex-start;
	gap: 1rem;
}

.hs-contact-info__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 3rem;
	height: 3rem;
	border-radius: 0.5rem;
	background: rgb(191 44 93 / 0.1);
	color: var(--hs-primary, #bf2c5d);
	flex-shrink: 0;
}

.hs-contact-info__item h3 {
	margin: 0 0 0.25rem;
	font-size: 1rem;
	font-weight: 600;
	color: var(--hs-dark, #1f2937);
}

.hs-contact-info__item p {
	margin: 0;
	color: #4b5563;
	line-height: 1.6;
}

.hs-contact-info__item a {
	color: #4b5563;
	text-decoration: none;
	transition: color 0.2s ease;
}

.hs-contact-info__item a:hover {
	color: var(--hs-primary, #bf2c5d);
}

.hs-contact-form-card {
	background: #fff;
	border-radius: 0.75rem;
	box-shadow: 0 10px 25px rgb(0 0 0 / 0.08);
	padding: clamp(1.5rem, 3vw, 2rem);
}

.hs-contact-form__fallback {
	color: #6b7280;
	margin: 0;
}

.hs-contact-form {
	display: grid;
	gap: 1.25rem;
}

.hs-contact-form__row {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.25rem;
}

@media (min-width: 640px) {
	.hs-contact-form__row {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

.hs-contact-form__field {
	margin: 0;
}

.hs-contact-form__field label,
.hs-contact-form-card .wpcf7-form label {
	display: block;
	font-size: 0.875rem;
	font-weight: 500;
	color: #374151;
	margin-bottom: 0.5rem;
}

.hs-contact-form-card .wpcf7-form-control-wrap {
	display: block;
}

.hs-contact-form-card input[type="text"],
.hs-contact-form-card input[type="email"],
.hs-contact-form-card input[type="tel"],
.hs-contact-form-card select,
.hs-contact-form-card textarea {
	width: 100%;
	padding: 0.75rem 1rem;
	border: 1px solid #d1d5db;
	border-radius: 0.5rem;
	font: inherit;
	color: var(--hs-dark, #1f2937);
	background: #fff;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.hs-contact-form-card textarea {
	min-height: 9rem;
	resize: vertical;
}

.hs-contact-form-card input:focus,
.hs-contact-form-card select:focus,
.hs-contact-form-card textarea:focus {
	outline: none;
	border-color: var(--hs-primary, #bf2c5d);
	box-shadow: 0 0 0 3px rgb(191 44 93 / 0.15);
}

.hs-contact-form__submit,
.hs-contact-form-card .wpcf7-submit {
	margin: 0.5rem 0 0;
}

.hs-contact-form-card .wpcf7-submit {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.75rem 2rem;
	border: none;
	border-radius: 0.5rem;
	background: var(--hs-primary, #bf2c5d);
	color: #fff;
	font-weight: 600;
	cursor: pointer;
	transition: background-color 0.2s ease;
}

.hs-contact-form-card .wpcf7-submit:hover {
	background: var(--hs-primary-dark, #a02549);
}

.hs-contact-form-card .wpcf7-response-output {
	margin: 1rem 0 0;
	padding: 1rem;
	border-radius: 0.5rem;
	font-size: 0.9375rem;
}

.hs-contact-form-card .wpcf7 form.sent .wpcf7-response-output {
	background: #ecfdf5;
	border: 1px solid #a7f3d0;
	color: #065f46;
}

.hs-contact-form-card .wpcf7 form.invalid .wpcf7-response-output,
.hs-contact-form-card .wpcf7 form.failed .wpcf7-response-output {
	background: #fef2f2;
	border: 1px solid #fecaca;
	color: #991b1b;
}

.hs-contact-form-card .wpcf7-not-valid-tip {
	color: #dc2626;
	font-size: 0.8125rem;
	margin-top: 0.35rem;
}

.hs-contact-form-card .wpcf7-spinner {
	margin-left: 0.75rem;
}

/* Privacy / consent banner */
.hs-privacy {
	position: fixed;
	inset: 0;
	z-index: 100000;
	display: flex;
	align-items: flex-end;
	justify-content: center;
	padding: 1rem;
}

.hs-privacy[hidden] {
	display: none !important;
}

.hs-privacy__overlay {
	position: absolute;
	inset: 0;
	background: rgba(15, 23, 42, 0.55);
}

.hs-privacy__dialog {
	position: relative;
	width: min(100%, 42rem);
	max-height: min(90vh, 720px);
	overflow: auto;
	background: #fff;
	border-radius: 1rem;
	box-shadow: 0 24px 48px rgba(15, 23, 42, 0.25);
	padding: 1.5rem;
	outline: none;
}

.hs-privacy__title {
	margin: 0 0 0.75rem;
	font-size: 1.375rem;
	line-height: 1.3;
	color: var(--hs-dark, #1f2937);
}

.hs-privacy__text {
	margin: 0 0 1rem;
	color: #4b5563;
	line-height: 1.6;
}

.hs-privacy__links {
	margin: 0 0 1.25rem;
	font-size: 0.9375rem;
}

.hs-privacy__links a {
	color: var(--hs-primary, #bf2c5d);
	text-decoration: underline;
}

.hs-privacy__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
}

.hs-privacy__categories {
	list-style: none;
	margin: 0 0 1.25rem;
	padding: 0;
	display: grid;
	gap: 1rem;
}

.hs-privacy__category {
	padding: 1rem;
	border: 1px solid #e5e7eb;
	border-radius: 0.75rem;
	background: #f9fafb;
}

.hs-privacy__category p {
	margin: 0.5rem 0 0;
	color: #4b5563;
	font-size: 0.9375rem;
	line-height: 1.5;
}

.hs-privacy__category-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.75rem;
	cursor: pointer;
}

.hs-privacy__category--locked .hs-privacy__category-head {
	cursor: default;
}

.hs-privacy__always {
	font-size: 0.8125rem;
	font-weight: 600;
	color: #059669;
	white-space: nowrap;
}

.hs-privacy-embed {
	margin: 1.5rem 0;
	padding: 1.25rem;
	border: 1px dashed #d1d5db;
	border-radius: 0.75rem;
	background: #f9fafb;
	text-align: center;
}

.hs-privacy-embed p {
	margin: 0 0 0.75rem;
	color: #4b5563;
}

body.hs-privacy-open {
	overflow: hidden;
}

@media (min-width: 640px) {
	.hs-privacy {
		align-items: center;
	}
}

@media (max-width: 639px) {
	.hs-privacy__actions .hs-btn {
		flex: 1 1 100%;
		justify-content: center;
	}
}

