.ehc-form {
	display: grid;
	gap: 1rem;
	max-width: 560px;
}

.ehc-field label,
.ehc-email-label {
	display: block;
	font-weight: 600;
	margin-bottom: .35rem;
}

.ehc-field input[type="date"],
.ehc-form input[type="email"] {
	width: 100%;
	padding: .75rem .85rem;
	border: 1px solid #e6e6e6;
	border-radius: .75rem;
	background: #fff;
	font-size: 1rem;
}

.ehc-radio {
	display: inline-flex;
	align-items: center;
	gap: .5rem;
	margin-right: 1rem;
}

.ehc-radio input {
	accent-color: currentColor;
}

.ehc-actions {
	margin-top: .25rem;
}

.ehc-btn {
	appearance: none;
	border: 0;
	border-radius: .9rem;
	padding: .8rem 1.1rem;
	background: #e9b1a8;
	/* Platzhalter – in Bricks übersteuern */
	color: #fff;
	font-weight: 600;
	cursor: pointer;
}

.ehc-btn:hover {
	filter: brightness(.96);
}

.ehc-result[hidden] {
	display: none;
}

.ehc-result {
	border: 1px solid #f0e7e5;
	border-radius: .9rem;
	padding: 1rem;
	background: #fff9f8;
}

.ehc-result-text {
	margin: 0 0 .75rem 0;
	font-weight: 600;
}

.ehc-result-actions {
	display: flex;
	gap: .5rem;
	margin-bottom: .75rem;
}

.ehc-reminder {
	display: grid;
	gap: .5rem;
}

.ehc-reminder-title {
	font-weight: 700;
	margin-bottom: .25rem;
}

.ehc-checkbox {
	display: flex;
	align-items: flex-start;
	gap: .5rem;
	font-size: .95rem;
}

.ehc-checkbox input {
	margin-top: .15rem;
}

.ehc-reminder-msg {
	min-height: 1.25rem;
	font-size: .95rem;
}

.ehc-reminder-msg[data-state="ok"] {
	color: #157347;
}

.ehc-reminder-msg[data-state="error"] {
	color: #b02a37;
}

/* Honeypot verstecken, aber erreichbar für Bots */
.ehc-hp {
	position: absolute;
	left: -9999px;
	width: 1px;
	height: 1px;
	overflow: hidden;
}