/* Events Widget 2028 */
.ew2028-list {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.ew2028-card {
	background-color: #1e1e1e;
	border-left: 4px solid #EC4F27;
	border-radius: 6px;
	padding: 20px 24px;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.ew2028-card:hover {
	transform: translateX(4px);
	box-shadow: -4px 0 0 0 #EC4F27;
}

.ew2028-name {
	margin: 0 0 10px;
	font-family: 'Montserrat', sans-serif;
	font-size: 20px;
	font-weight: 700;
	color: #F0F0F0;
	line-height: 1.3;
}

.ew2028-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 12px 20px;
	margin-bottom: 10px;
}

.ew2028-meta span {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-family: 'Montserrat', sans-serif;
	font-size: 13px;
	font-weight: 600;
	color: #EC4F27;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.ew2028-meta span svg {
	width: 14px;
	height: 14px;
	flex-shrink: 0;
	fill: currentColor;
}

.ew2028-notes {
	margin: 8px 0 0;
	font-family: 'Montserrat', sans-serif;
	font-size: 14px;
	font-weight: 400;
	color: #aaaaaa;
	line-height: 1.6;
}

@media (max-width: 767px) {
	.ew2028-name {
		font-size: 17px;
	}
	.ew2028-meta {
		gap: 8px 14px;
	}
}
