/* ================================================
   HOMEPAGE SECTION WRAPPER
================================================ */
.mw-home-section {
	max-width: 1200px;
	margin: 60px auto;
	padding: 0 20px;
	text-align: center;
}

/* Section titles use theme typography */
.mw-home-section-title {
	margin-bottom: 25px;
}

/* ================================================
   SECTION BACKGROUND STYLING
================================================ */

/* UPCOMING EVENTS – warmer very light tint */
.mw-upcoming-events {
	background: #faf3eb;           /* warm cream */
	padding: 50px 20px;
	border-radius: 14px;
}

/* PAST EVENTS – cooler tint for contrast */
.mw-past-events {
	background: #eef7f3;
	padding: 50px 20px;
	border-radius: 14px;
	margin-top: 60px;
}

/* ================================================
   EVENT GRID & CARDS
================================================ */
.mw-events-grid {
	display: flex;
	justify-content: center;
	gap: 40px;
	flex-wrap: wrap;
	margin-top: 30px;
}

.mw-event-card {
	background: #ffffff;
	border-radius: 12px;
	padding: 20px 20px 16px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
	text-align: center;
	width: 420px;
	transition: transform 0.18s ease-out,
				box-shadow 0.18s ease-out;
}

.mw-event-card:hover {
	transform: translateY(-3px);
}

.mw-event-card img {
	width: 100%;
	border-radius: 8px;
}

/* Allow global typography to handle text size/weight */
.mw-event-card-title { margin-top: 12px; }
.mw-event-card-date  { color: #666; }

/* ================================================
   CAPTCHA clean-up
================================================ */
.gfield_label[for*="g-recaptcha"] { display: none !important; }