.scep-event {
	max-width: 900px;
	margin: 0 auto;
	padding: clamp(1.25rem, 3vw, 2.5rem);
	border: 1px solid #e5e7eb;
	border-radius: 18px;
	background: #fff;
	color: #1f2937;
	box-shadow: 0 12px 35px rgba(15, 23, 42, 0.07);
}

.scep-event__title {
	margin: 0 0 1.25rem;
	font-size: clamp(1.75rem, 4vw, 2.5rem);
	line-height: 1.15;
}

.scep-event__description {
	line-height: 1.7;
}

.scep-event__tickets {
	margin-top: 1.75rem;
	padding-top: 1.25rem;
	border-top: 1px solid #e5e7eb;
}

.scep-event__tickets h3 {
	margin: 0 0 0.75rem;
}

.scep-event__tickets ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.scep-event__tickets li {
	display: flex;
	justify-content: space-between;
	gap: 1rem;
	padding: 0.7rem 0;
	border-bottom: 1px solid #f1f5f9;
}

.scep-event__tickets strong {
	white-space: nowrap;
}

.scep-event__button {
	display: inline-block;
	margin-top: 1.5rem;
	padding: 0.8rem 1.35rem;
	border-radius: 8px;
	background: #16a89e;
	color: #fff !important;
	font-weight: 600;
	text-decoration: none !important;
	transition: background-color 160ms ease, transform 160ms ease;
}

.scep-event__button:hover,
.scep-event__button:focus {
	background: #118a82;
	transform: translateY(-1px);
}

.scep-event__unavailable,
.scep-event-error {
	margin-top: 1rem;
	padding: 0.8rem 1rem;
	border-radius: 8px;
	background: #fff7ed;
	color: #9a3412;
}

@media (max-width: 600px) {
	.scep-event__tickets li {
		align-items: flex-start;
	}
}

