/* ============================================
   PAGE: Event Detail (Chi tiết sự kiện)
   Detailed information about a specific event
   ============================================ */

/* ============================================
   HERO SECTION
   ============================================ */
.event-detail-hero {
	width: 100%;
	overflow: hidden;
}

.event-detail-hero__image {
	width: 100%;
	height: auto;
	display: block;
}

/* ============================================
   FEATURED IMAGE SECTION
   ============================================ */
.event-detail-featured {
	padding-top: 6rem; /* 60px */
	background-color: var(--color-light);
}

.event-detail-featured__image {
	width: 100%;
	height: 43.8rem; /* 438px */
	object-fit: cover;
	border-radius: var(--radius-10);
	display: block;
	margin: 0 auto;
}

/* ============================================
   EVENT OVERVIEW SECTION
   ============================================ */
.event-detail-overview {
	padding-top: 5.7rem; /* 57px */
	background-color: var(--color-light);
}

.event-detail-overview__title {
	font-family: var(--font-primary);
	font-size: var(--section-title);
	font-weight: 600;
	line-height: 0.88; /* 22/25 */
	color: var(--brand-primary);
	text-transform: capitalize;
	margin: 0 0 1.4rem; /* 14px */
	max-width: 120rem; /* 1200px */
}

.event-detail-overview__text {
	font-family: var(--font-primary);
	font-size: var(--section-description);
	font-weight: 400;
	line-height: 1.57; /* 22/14 */
	color: var(--gray-800);
	margin: 0 0 1rem; /* 10px */
	max-width: 120rem; /* 1200px */
}

.event-detail-divider {
	width: 100%;
	max-width: 120rem; /* 1200px */
	height: 0.1rem; /* 1px */
	background-color: #f0f0f0;
	margin: 3rem 0 2.6rem; /* 30px 0 26px */
}

/* Event Info List */
.event-detail-info {
	list-style: none;
	padding: 0;
	margin: 1.3rem 0 1.1rem; /* 13px 0 11px */
	display: flex;
	flex-direction: column;
	gap: 1rem; /* 10px */
	max-width: 79rem; /* 790px */
}

.event-detail-info__item {
	display: flex;
	align-items: flex-start;
	gap: 2rem; /* 20px */
}

.event-detail-info__icon {
	width: 1.6rem; /* 16px */
	height: 1.6rem; /* 16px */
	flex-shrink: 0;
	display: block;
	margin-top: 0.5rem; /* 5px */
}

.event-detail-info__item span {
	font-family: var(--font-primary);
	font-size: var(--section-description);
	font-weight: 400;
	line-height: 1.86; /* 26/14 */
	color: var(--gray-800);
	flex: 1;
}

/* ============================================
   RESPONSIVE - TABLET (max-width: 1199px)
   ============================================ */
@media (max-width: 1199px) {
	.event-detail-featured__image {
		height: 35rem; /* 350px */
	}

	.event-detail-overview__title {
		font-size: var(--section-title-tablet);
	}

	.event-detail-overview__text,
	.event-detail-info__item span {
		font-size: var(--section-description-tablet);
	}
}

/* ============================================
   RESPONSIVE - MOBILE (max-width: 575px)
   ============================================ */
@media (max-width: 575px) {
	/* Featured Section */
	.event-detail-featured {
		padding-top: var(--sp-4);
	}

	.event-detail-featured__image {
		height: auto;
		aspect-ratio: 16/10;
	}

	/* Overview Section */
	.event-detail-overview {
		padding-top: var(--sp-4);
	}

	.event-detail-overview__title {
		font-size: var(--section-title-mobile);
		margin-bottom: 1rem; /* 10px */
	}

	.event-detail-divider {
		margin: var(--sp-3) 0;
	}

	/* Event Info List */
	.event-detail-info {
		gap: 0.8rem; /* 8px */
		margin: 1rem 0; /* 10px */
	}

	.event-detail-info__item {
		gap: 1.2rem; /* 12px */
	}

	.event-detail-info__icon {
		width: 1.4rem; /* 14px */
		height: 1.4rem; /* 14px */
		margin-top: 0.4rem; /* 4px */
	}

	.event-detail-overview__text,
	.event-detail-info__item span {
		font-size: var(--section-description-mobile);
	}
}
