/* =========================
   PAST EVENTS
========================= */
.past-event-item {
	position: relative;
	padding: 50px 20px;
	overflow: hidden;
}

.past-event-item:nth-child(odd) {
	background: #efefef;
}

.past-event-item:nth-child(even) {
	background: #ffffff;
}

.past-event-inner {
	max-width: 1240px;
	margin: 0 auto;
	position: relative;
	z-index: 2;
}

/* BACKGROUND AMOUNT */
.event-amount-bg {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	font-size: 220px;
	font-weight: 700;
	color: rgba(230, 57, 70, 0.2);
	white-space: nowrap;
	pointer-events: none;
	z-index: 1;
}

/* DATE + LOCATION */
.event-meta-top {
	margin-bottom: 30px;
}

.event-date {
	font-size: 24px;
	color: var(--second-color);
	font-weight: 700;
}

.event-location {
	font-size: 28px;
	font-weight: 700;
	color: var(--second-color);
}

/* NUMBER + TITLE */
.event-header {
	display: flex;
	align-items: center;
	gap: 30px;
	margin-bottom: 30px;
}

.event-number {
	font-size: 160px;
	font-weight: 700;
	color: var(--accent-color);
	line-height: 1;
}

.event-title, .event-title p {
	font-size: 28px;
	line-height: 1.2em;
	color: var(--second-color);
	margin: 0;
	text-transform: none;
	font-weight: 300;
}

/* DESCRIPTION */
.event-description {
	margin: 45px 0;
}

.event-description p {
	font-size: 24px;
	line-height: 1.6;
	color: var(--second-color);
	margin-bottom: 30px;
	text-align: center;
	font-weight: 300;
}

/* GALLERY */
.event-gallery {
	max-width: 700px;
	padding-bottom: 45px;
}

.swiper-pagination {
	bottom: 5px;
}

.swiper-pagination-bullet {
	background: transparent;
	border: 1px solid var(--accent-color);
	opacity: 1;
}

.swiper-pagination-bullet-active {
	background: var(--accent-color);
	opacity: 1;
}

.event-gallery img {
	width: 100%;
	height: auto;
	display: block;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 900px) {

	.event-header {
		flex-direction: column;
		align-items: flex-start;
	}

	.event-number {
		font-size: 120px;
	}

	.event-title, .event-title p {
		font-size: 28px;
	}

	.event-location {
		font-size: 26px;
	}

	.event-amount-bg {
		font-size: 120px;
	}
}