.cee-event-card {
	--cee-accent: #e63946;
	--cee-accent-dark: #a4161a;
	--cee-gold: #d4af37;
	display: grid;
	grid-template-columns: 42% 58%;
	align-items: stretch;
	max-width: 680px;
	margin: 2em auto;
	background: linear-gradient(180deg, #1a0808 0%, #0c0c0c 100%);
	border: 1px solid rgba(212, 175, 55, 0.28);
	border-radius: 14px;
	overflow: hidden;
	color: #f5f5f5;
	box-shadow: 0 18px 40px rgba(0, 0, 0, 0.55);
	font-family: inherit;
}

.cee-event-image {
	position: relative;
	overflow: hidden;
	min-height: 100%;
}

.cee-event-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: top center;
	display: block;
}

.cee-event-body {
	padding: 1.6em 1.75em;
	display: flex;
	flex-direction: column;
	justify-content: center;
	min-width: 0;
}

.cee-event-title {
	margin: 0;
	font-size: 1.35em;
	font-weight: 800;
	line-height: 1.25;
	letter-spacing: 0.5px;
	text-transform: uppercase;
	color: #fff;
}

.cee-event-divider {
	display: block;
	width: 38px;
	height: 3px;
	margin: 0.75em 0 1em;
	background: linear-gradient(90deg, var(--cee-gold), rgba(212, 175, 55, 0.15));
	border-radius: 2px;
}

.cee-event-meta {
	display: flex;
	align-items: flex-start;
	gap: 0.5em;
	margin: 0 0 0.5em;
	font-size: 0.9em;
	line-height: 1.4;
	color: rgba(245, 245, 245, 0.78);
}

.cee-event-icon {
	flex: none;
	width: 15px;
	height: 15px;
	margin-top: 0.15em;
	color: var(--cee-gold);
}

.cee-event-description {
	margin: 1em 0 1.4em;
	font-size: 0.92em;
	line-height: 1.55;
	color: rgba(245, 245, 245, 0.85);
}

.cee-event-button {
	display: inline-block;
	align-self: flex-start;
	text-align: center;
	padding: 0.8em 1.7em;
	background: linear-gradient(135deg, var(--cee-accent), var(--cee-accent-dark));
	color: #fff;
	text-decoration: none;
	border-radius: 7px;
	font-weight: 700;
	font-size: 0.92em;
	text-transform: uppercase;
	letter-spacing: 0.6px;
	box-shadow: 0 8px 20px rgba(230, 57, 70, 0.35);
	transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.cee-event-button:hover {
	color: #fff;
	transform: translateY(-2px);
	box-shadow: 0 12px 26px rgba(230, 57, 70, 0.48);
	background: linear-gradient(135deg, #ff4d5a, var(--cee-accent));
}

.cee-event-button:active {
	transform: translateY(0);
}

.cee-event-button--soldout,
.cee-event-button--soldout:hover {
	background: #3a3a3a;
	color: rgba(255, 255, 255, 0.65);
	box-shadow: none;
	cursor: not-allowed;
	transform: none;
}

.cee-error {
	max-width: 420px;
	margin: 1em auto;
	padding: 1em;
	background: #fdecea;
	border: 1px solid #f5c2c0;
	color: #8a1f1f;
	border-radius: 4px;
}

@media (max-width: 640px) {
	.cee-event-card {
		grid-template-columns: 1fr;
		max-width: 420px;
	}
	.cee-event-image {
		height: 260px;
		min-height: 0;
	}
	.cee-event-body {
		padding: 1.4em 1.4em 1.6em;
	}
	.cee-event-button {
		align-self: stretch;
	}
}
