.aywah-event-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 20px;
	margin: 20px 0;
}

.aywah-event-card {
	background: #fff;
	border: 1px solid #e5e7eb;
	border-radius: 14px;
	box-shadow: 0 8px 20px rgba(15, 23, 42, 0.06);
	overflow: hidden;
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.aywah-event-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 14px 28px rgba(15, 23, 42, 0.15);
}

.aywah-event-card--with-media .aywah-event-media {
	background: linear-gradient(135deg, #eef2ff 0%, #e0f2fe 40%, #eff6ff 100%);
	height: 120px;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
}

.aywah-event-card--no-media .aywah-event-media {
	display: none;
}

.aywah-event-logo {
	width: 100%;
	height: 100%;
	object-fit: contain;
	filter: none;
}

.aywah-event-inner {
	display: flex;
	gap: 18px;
	align-items: stretch;
	padding: 18px 18px 18px 20px;
}

.aywah-event-date-badge {
	min-width: 70px;
	background: #111827;
	border-radius: 12px;
	color: #f9fafb;
	text-align: center;
	padding: 10px 8px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.aywah-event-date-month {
	font-size: 11px;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: #e5e7eb;
	margin-bottom: 4px;
}

.aywah-event-date-day {
	font-size: 22px;
	font-weight: 700;
	line-height: 1;
}

.aywah-event-date-year {
	font-size: 11px;
	color: #9ca3af;
	margin-top: 4px;
}

.aywah-event-content {
	padding: 2px 0;
	flex: 1;
}

.aywah-event-title {
	margin: 0 0 6px;
	font-size: 18px;
	line-height: 1.35;
}

.aywah-event-meta {
	list-style: none;
	padding: 0;
	margin: 0;
	display: grid;
	gap: 4px;
	font-size: 14px;
	color: #4b5563;
}

.aywah-event-open-link {
	border: 1px solid #cbd5e1;
	background: #ffffff;
	color: #0f172a;
	border-radius: 9px;
	padding: 6px 10px;
	font-size: 12px;
	font-weight: 600;
	text-decoration: none;
	transition: all 0.2s ease;
}

.aywah-event-open-link:hover {
	background: #0f172a;
	color: #ffffff;
	border-color: #0f172a;
}

.aywah-event-date-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
}

.aywah-empty {
	grid-column: 1 / -1;
	padding: 14px;
	border-radius: 10px;
	background: #f8fafc;
	border: 1px dashed #cbd5e1;
}

.aywah-pagination ul {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin: 14px 0 0;
	padding: 0;
	list-style: none;
}

.aywah-pagination a,
.aywah-pagination span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 34px;
	height: 34px;
	padding: 0 10px;
	border-radius: 8px;
	border: 1px solid #d1d5db;
	background: #fff;
	text-decoration: none;
	color: #1f2937;
	font-size: 14px;
}

.aywah-pagination .current {
	background: #111827;
	color: #fff;
	border-color: #111827;
}

@media (max-width: 640px) {
	.aywah-event-grid {
		grid-template-columns: 1fr;
	}

	.aywah-event-inner {
		padding: 14px;
	}
}
