/* Montrose Blocks — front-end + editor styles */

/* Slideshow */
.mbc-slideshow {
	position: relative;
	overflow: hidden;
	width: 100%;
}
.mbc-slideshow .mbc-slide {
	position: absolute;
	inset: 0;
	opacity: 0;
	transition: opacity 1.2s ease-in-out;
}
.mbc-slideshow .mbc-slide.is-active {
	opacity: 1;
}
.mbc-slideshow .mbc-slide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

/* Event grid (home page "Upcoming Events") */
.wp-block-montrose-event-grid,
.home-events {
	display: flex;
	flex-wrap: wrap;
}
.wp-block-montrose-event-grid > .event-box:nth-child(odd) { padding-right: 20px; }
.wp-block-montrose-event-grid > .event-box:nth-child(even) { padding-right: 0; }

/* Event card (grid variant) */
.event-box {
	width: 293px;
	padding: 15px 20px 15px 0;
	box-sizing: content-box;
}
.event-box img {
	display: block;
	margin-bottom: 10px;
	width: 293px;
	height: 80px;
	object-fit: cover;
}
.event-box h3 { margin-top: 0; font-weight: normal; margin-bottom: 5px; text-transform: none; }
.event-box h3 a { font-size: 20px; line-height: 24px; color: #95ab00; text-transform: none; }
.event-box span.date { display: block; padding: 0 0 5px 0; font-size: 14px; line-height: 20px; color: #333; }
.event-box p { padding: 0; margin: 0; font-size: 12px; line-height: 16px; }

/* Editor previews */
.mbc-slideshow-editor-preview { position: relative; }
.mbc-slideshow-editor-preview img { width: 100%; height: 300px; object-fit: cover; display: block; }
.mbc-slideshow-editor-count {
	position: absolute;
	bottom: 8px;
	right: 8px;
	background: rgba(0, 0, 0, 0.6);
	color: #fff;
	font-size: 12px;
	padding: 2px 8px;
	border-radius: 3px;
}
