/* VA Events – bewusst neutral gehalten, damit das Theme die Optik bestimmt. */

/* Liste */
.va-events-list {
	display: grid;
	gap: 1.5rem;
	margin: 1.5rem 0;
}
.va-events-item {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1rem;
	padding-bottom: 1.5rem;
	border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}
@media (min-width: 600px) {
	.va-events-item:has(.va-events-thumb) {
		grid-template-columns: 220px 1fr;
		align-items: start;
	}
}
.va-events-thumb img {
	display: block;
	width: 100%;
	height: auto;
	border-radius: 4px;
}
.va-events-date {
	margin: 0 0 0.25rem;
	font-size: 0.9em;
	font-weight: 600;
	text-transform: none;
	opacity: 0.75;
}
.va-events-title {
	margin: 0 0 0.5rem;
}
.va-events-title a {
	text-decoration: none;
}
.va-events-excerpt {
	margin: 0 0 0.5rem;
}
.va-events-more {
	margin: 0;
}

/* Anmeldeformular */
.va-booking-form label {
	font-weight: 600;
}
.va-booking-form input[type="text"],
.va-booking-form input[type="email"],
.va-booking-form input[type="tel"] {
	width: 100%;
	max-width: 420px;
	padding: 0.5em 0.75em;
}
.va-form-row {
	display: grid;
	grid-template-columns: 1fr;
	gap: 0 1rem;
	max-width: 420px;
}
@media (min-width: 480px) {
	.va-form-row {
		grid-template-columns: 1fr 1fr;
	}
	.va-form-row-zip {
		grid-template-columns: 120px 1fr;
	}
}
.va-form-row input {
	max-width: 100% !important;
}
.va-booking-form button {
	cursor: pointer;
}

/* Honeypot ausblenden */
.va-hp {
	position: absolute !important;
	left: -9999px !important;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

/* Hinweise */
.va-notice {
	padding: 0.75em 1em;
	border-radius: 4px;
	border: 1px solid;
}
.va-notice-success {
	border-color: #2e7d32;
	background: rgba(46, 125, 50, 0.08);
}
.va-notice-error {
	border-color: #c62828;
	background: rgba(198, 40, 40, 0.08);
}
.va-booking-closed {
	font-style: italic;
	opacity: 0.8;
}
