/**
 * Upcoming Events sidebar widget.
 * Uses the theme's CSS variables when present, with neutral fallbacks so the
 * widget still looks right in any theme.
 */

.aahs-events-widget {
	list-style: none;
	margin: 0;
	padding: 0;
}

.aahs-events-widget__item {
	padding: 12px 0;
	border-bottom: 1px solid var(--silver-light, #e6e9ee);
}

.aahs-events-widget__item:first-child {
	padding-top: 0;
}

.aahs-events-widget__item:last-child {
	border-bottom: 0;
	padding-bottom: 0;
}

.aahs-events-widget__title {
	display: block;
	font-family: var(--display, 'Saira Condensed', sans-serif);
	font-weight: 700;
	font-size: 17px;
	line-height: 1.25;
	color: var(--navy, #16233f);
	text-decoration: none;
}

.aahs-events-widget__title:hover,
.aahs-events-widget__title:focus-visible {
	color: var(--blue, #2b5fb0);
	text-decoration: underline;
}

.aahs-events-widget__when {
	display: block;
	margin-top: 3px;
	font-size: 13px;
	color: var(--muted, #5c636e);
}

.aahs-events-widget__where {
	display: block;
	font-size: 13px;
	color: var(--muted, #5c636e);
}
