/* ===== Event Page ===== */

.event-page {
	margin: 0;
	padding: 0;
	background: #1A1A1A;
	font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
	overflow-x: hidden;
}

.event-page__layout {
	display: flex;
	flex-direction: column;
	width: 100%;
	max-width: 100vw;
	overflow-x: hidden;
	-webkit-overflow-scrolling: touch;
}

/* Main Content */
.event-page__main {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 100dvh;
	padding: 0 80px 80px;
	background: var(--Background-Gray, #F3F3F3);
}

.event-page__main-inner {
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 870px;
	max-width: 100%;
}

.event-page__logo {
	margin-bottom: 20px;
	align-self: flex-start;
}

.event-page__logo svg {
	display: block;
	width: 218px;
	height: 36px;
}

.event-page__card {
	background: var(--Background-White, #FFF);
	border-radius: 0;
	width: 870px;
	max-width: 100%;
	height: 500px;
	padding: 80px 60px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
}

.event-page__icon {
	margin-bottom: 24px;
}

.event-page__title {
	font-family: var(--Family-Google-Sans-Flex, "Google Sans Flex");
	font-size: var(--Size-H1, 56px);
	font-style: normal;
	font-weight: 500;
	line-height: 130%;
	color: var(--Text-Primary, #171B1E);
	text-align: center;
	margin: 0 0 20px;
	padding-bottom: 4px;
	border-bottom: 1px solid var(--Border-Secondary, #E2E2E2);
	max-width: 420px;
	width: 100%;
}

.event-page__title-br {
	display: none;
}

.event-page__desc-br {
	display: none;
}

.event-page__description {
	font-family: var(--Family-Pretendard, Pretendard);
	font-size: var(--Size-H6, 24px);
	font-style: normal;
	font-weight: 400;
	line-height: 150%;
	letter-spacing: -0.48px;
	color: var(--Text-Secondary, #4A4D50);
	text-align: center;
	margin: 0 0 40px;
}

.event-page__button {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	height: 56px;
	padding: 0 24px;
	border: 1.5px solid #DDDDDD;
	border-radius: 999px;
	background: transparent;
	color: var(--Text-Primary, #171B1E);
	font-family: var(--Family-Pretendard, Pretendard);
	font-size: var(--Size-P2, 18px);
	font-style: normal;
	font-weight: 600;
	line-height: 140%;
	letter-spacing: -0.36px;
	text-decoration: none;
	cursor: pointer;
	transition: border-color 400ms cubic-bezier(0.42, 0, 0.34, 0.99),
				color 400ms cubic-bezier(0.42, 0, 0.34, 0.99);
}

.event-page__button:hover {
	border-color: #FF3100;
	color: #FF3100;
}

.event-page__button-arrows {
	position: relative;
	display: inline-flex;
	width: 14px;
	height: 12px;
	overflow: hidden;
}

.event-page__button-arrow {
	position: absolute;
	top: 0;
	left: 0;
}

.event-page__button-arrow--default {
	transform: translateX(0);
	transition: transform 200ms cubic-bezier(0.42, 0, 0.34, 0.99);
}

.event-page__button-arrow--hover {
	transform: translateX(-100%);
	transition: transform 200ms cubic-bezier(0.42, 0, 0.34, 0.99);
}

.event-page__button:hover .event-page__button-arrow--default {
	transform: translateX(100%);
}

.event-page__button:hover .event-page__button-arrow--hover {
	transform: translateX(0);
	transition: transform 200ms cubic-bezier(0.42, 0, 0.34, 0.99) 80ms;
}

/* Responsive */
@media (max-width: 1199px) {
	.event-page__main {
		padding: 0 40px 60px;
	}
}

@media (max-width: 767px) {
	.event-page__main {
		height: 100dvh;
		min-height: auto;
		box-sizing: border-box;
		padding: 80px 20px 96px;
	}

	.event-page__logo svg {
		width: 145px;
		height: 24px;
	}

	.event-page__card {
		padding: 60px 30px;
		width: 100%;
		height: auto;
	}

	.event-page__icon svg {
		width: 64px;
		height: 64px;
	}

	.event-page__title {
		color: var(--Text-Primary, #171B1E);
		text-align: center;
		font-family: var(--Family-Google-Sans-Flex, "Google Sans Flex");
		font-size: var(--Size-H1, 34px);
		font-style: normal;
		font-weight: 500;
		line-height: 130%;
		margin-bottom: 20px;
		padding-bottom: 4px;
		border-bottom: 1px solid var(--Border-Secondary, #E2E2E2);
		max-width: 420px;
		width: 100%;
	}

	.event-page__title-br {
		display: inline;
	}

	.event-page__description {
		color: var(--Text-Secondary, #4A4D50);
		text-align: center;
		font-family: var(--Family-Pretendard, Pretendard);
		font-size: var(--Size-H6, 20px);
		font-style: normal;
		font-weight: 400;
		line-height: 150%;
		letter-spacing: -0.4px;
	}

	.event-page__desc-br {
		display: inline;
	}

	.event-page__button {
		height: 46px;
		padding: 0 20px;
		color: var(--Text-Primary, #171B1E);
		font-family: var(--Family-Pretendard, Pretendard);
		font-size: var(--Size-P2, 16px);
		font-style: normal;
		font-weight: 600;
		line-height: 140%;
		letter-spacing: -0.32px;
	}
}
