/* Aggregate Event Header Widget */
.aggregate-event-header-inner {
	display: flex;
	flex-direction: column;
	gap: 12px;
	padding-bottom: 8px;
}

.aggregate-event-header-inner.has-icon {
	padding-left: 60px;
	background-repeat: no-repeat;
	background-position: left top;
	background-size: 48px;
}

.aggregate-event-title {
	font-size: 20px;
	font-weight: 600;
	line-height: 1;
	color: #fff;
}

.aggregate-event-details {
	font-size: 18px;
	font-weight: 400;
	line-height: 1.2;
	color: #fff;
}

.aggregate-event-details--mobile {
	display: none;
}

.aggregate-event-header--empty {
	font-size: 14px;
	font-style: italic;
	opacity: 0.7;
}

@media (max-width: 767px) {
	.aggregate-event-details--desktop {
		display: none;
	}

	.aggregate-event-details--mobile {
		display: block;
	}
}
