/* Reservix Events — Kachel-Layout, Breakpoints wie beim alten Vibus-Template */

.reservix-events {
	display: flex;
	flex-wrap: wrap;
	width: 100%;
	margin: 0 -10px;
}

.reservix-event {
	width: 25%;
	padding: 0 10px 25px;
	box-sizing: border-box;
}

.reservix-event__figure {
	margin: 0 0 10px;
}

.reservix-event__figure a {
	display: block;
	overflow: hidden; /* Zoom bleibt im Kachel-Rahmen */
}

.reservix-event__figure img {
	width: 100%;
	height: auto;
	display: block;
	transition: transform 0.4s ease;
	will-change: transform;
}

/* Zoom beim Hovern über die ganze Kachel (nicht nur das Bild) */
.reservix-event:hover .reservix-event__figure img {
	transform: scale(1.07);
}

@media (prefers-reduced-motion: reduce) {
	.reservix-event__figure img {
		transition: none;
	}
	.reservix-event:hover .reservix-event__figure img {
		transform: none;
	}
}

.reservix-event__copyright {
	font-size: 0.7em;
	color: #999;
	text-align: right;
}

.reservix-event__date {
	margin: 10px 0 !important;
}

.reservix-event__venue {
	display: block;
	font-size: 0.9em;
	color: #666;
}

.reservix-event__title {
	font-size: 1.4em;
	margin: 0 0 10px;
	word-break: break-word;
}

.reservix-event__title a {
	text-decoration: none;
}

.reservix-event__notice {
	color: #c00;
	font-weight: 600;
	margin-bottom: 8px;
}

.reservix-event__excerpt {
	margin: 0 0 8px;
}

.reservix-event__price {
	font-weight: 600;
	margin: 0;
}

.reservix-more {
	clear: both;
	padding-top: 10px;
}

.reservix-more__button {
	border-radius: 25px;
	border: 3px solid #004b97;
	color: #004b97;
	padding: 6px 22px;
	display: inline-block;
	text-decoration: none;
	transition: background-color .15s ease, color .15s ease;
}

.reservix-more__button:hover {
	background-color: #004b97;
	color: #fff;
}

/* Tablets */
@media (min-width: 481px) and (max-width: 1024px) {
	.reservix-event { width: 50%; }
}

/* Smartphones */
@media (max-width: 480px) {
	.reservix-event { width: 100%; }
}
