@charset "UTF-8";

:root {
	--am2-bg: #ffffff;
	--am2-text: #1a1a1a;
	--am2-text-muted: #777777;
	--am2-accent: #1a4a6b;
	--am2-border: #e5e5e5;
}

/* ─── 공통 ─── */
.am2-inner {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 48px;
}

.am2-sec-head {
	margin-bottom: 32px;
	padding-bottom: 14px;
	border-bottom: 2px solid var(--am2-text);
}

.am2-sec-tit {
	font-size: clamp(20px, calc(12px + 1.2vw), 28px);
	font-weight: 700;
	color: var(--am2-text);
	font-family: "Paperlogy", sans-serif;
}

/* ─── 히어로 ─── */
.am2-hero {
	margin-top: 90px;
	padding: 56px 0;
	border-bottom: 1px solid var(--am2-border);
}

.am2-hero .am2-inner {
	display: flex;
	gap: 56px;
	align-items: center;
}

.am2-hero-img {
	flex: 0 0 52%;
	aspect-ratio: 16 / 10;
	overflow: hidden;
}

.am2-hero-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.6s ease;
}
.am2-hero-img:hover img {
	transform: scale(1.03);
}

.am2-hero-body {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.am2-hero-issue {
	font-size: clamp(14px, calc(8px + 0.6vw), 18px);
	color: var(--am2-text-muted);
	font-family: "Paperlogy", sans-serif;
}

.am2-hero-cat {
	display: inline-block;
	font-size: clamp(14px, calc(8px + 0.6vw), 18px);
	color: var(--am2-accent);
	font-family: "Paperlogy", sans-serif;
	font-weight: 700;
	border: 1px solid var(--am2-accent);
	padding: 3px 12px;
	width: fit-content;
}

.am2-hero-tit {
	font-size: clamp(28px, calc(16px + 2vw), 48px);
	font-weight: 800;
	color: var(--am2-text);
	font-family: "Paperlogy", sans-serif;
}

.am2-hero-desc {
	font-size: clamp(16px, calc(10px + 0.7vw), 20px);
	color: var(--am2-text-muted);
	font-family: "Paperlogy", sans-serif;
}

.am2-hero-btn {
	display: inline-block;
	font-size: clamp(14px, calc(8px + 0.6vw), 18px);
	font-family: "Paperlogy", sans-serif;
	color: var(--am2-accent);
	text-decoration: none;
	border-bottom: 1px solid var(--am2-accent);
	padding-bottom: 2px;
	width: fit-content;
	transition: opacity 0.2s;
}
.am2-hero-btn:hover {
	opacity: 0.65;
}

/* ─── 2분할 섹션 ─── */
.am2-split-wrap {
	padding: 48px 0;
}

.am2-split {
	display: flex;
	height: 480px;
}

.am2-split-panel {
	flex: 1;
	position: relative;
	overflow: hidden;
	cursor: pointer;
	transition: flex 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.am2-split:hover .am2-split-panel {
	flex: 0.55;
}
.am2-split-panel:hover {
	flex: 1.45 !important;
}

.am2-split-bg {
	position: absolute;
	inset: 0;
}

.am2-split-bg img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.6s ease;
}
.am2-split-panel:hover .am2-split-bg img {
	transform: scale(1.04);
}

.am2-split-panel::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.1) 55%, transparent 100%);
}

.am2-split-body {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 1;
	padding: 36px 40px;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.am2-split-tag {
	font-size: clamp(14px, calc(8px + 0.6vw), 18px);
	color: rgba(255, 255, 255, 0.7);
	font-family: "Paperlogy", sans-serif;
	font-weight: 600;
}

.am2-split-body .tit {
	font-size: clamp(24px, calc(14px + 1.6vw), 40px);
	font-weight: 800;
	color: #fff;
	font-family: "Paperlogy", sans-serif;
}

.am2-split-list {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 8px;
	opacity: 0;
	transform: translateY(10px);
	transition:
		opacity 0.35s ease,
		transform 0.35s ease;
}

.am2-split-panel:hover .am2-split-list {
	opacity: 1;
	transform: translateY(0);
}

.am2-split-list li a {
	font-size: clamp(14px, calc(8px + 0.6vw), 18px);
	color: rgba(255, 255, 255, 0.85);
	font-family: "Paperlogy", sans-serif;
	text-decoration: none;
	border-bottom: 1px solid rgba(255, 255, 255, 0.3);
	padding-bottom: 2px;
	transition: color 0.2s;
}
.am2-split-list li a:hover {
	color: #fff;
}

/* ─── 기사 그리드 ─── */
.am2-articles {
	padding: 72px 0 88px;
}

.am2-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 40px 32px;
}

.am2-card {
	text-decoration: none;
	display: flex;
	flex-direction: column;
}

.am2-card-img {
	aspect-ratio: 16 / 10;
	overflow: hidden;
	margin-bottom: 16px;
}

.am2-card-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.5s ease;
}
.am2-card:hover .am2-card-img img {
	transform: scale(1.04);
}

.am2-card-body {
	display: flex;
	flex-direction: column;
	gap: 8px;
	padding-bottom: 20px;
	border-bottom: 1px solid var(--am2-border);
	flex: 1;
}

.am2-card-cat {
	font-size: clamp(14px, calc(8px + 0.5vw), 18px);
	color: var(--am2-accent);
	font-family: "Paperlogy", sans-serif;
	font-weight: 600;
}

.am2-card-body .tit {
	font-size: clamp(18px, calc(11px + 0.8vw), 22px);
	font-weight: 700;
	color: var(--am2-text);
	font-family: "Paperlogy", sans-serif;
	flex: 1;
}

.am2-card-arr {
	font-size: clamp(14px, calc(8px + 0.5vw), 18px);
	color: var(--am2-text-muted);
	transition:
		color 0.2s,
		transform 0.2s;
	display: inline-block;
}
.am2-card:hover .am2-card-arr {
	color: var(--am2-accent);
	transform: translateX(4px);
}

/* ─── 공연/전시 일정 슬라이더 ─── */
.am2-schedule-wrap {
	padding: 72px 0 88px;
	border-top: 1px solid var(--am2-border);
}

.am2-schedule-swiper {
	overflow: hidden;
	margin: 0 -48px;
	padding: 0 48px;
}


.am2-schedule-card {
	display: flex;
	flex-direction: column;
	gap: 12px;
	padding: 24px;
	border: 1px solid var(--am2-border);
	text-decoration: none;
	transition:
		border-color 0.3s,
		background-color 0.3s;
	cursor: pointer;
}

.am2-schedule-card:hover {
	border-color: var(--am2-accent);
	background-color: rgba(26, 74, 107, 0.03);
}

.am2-schedule-cat {
	display: inline-block;
	font-size: clamp(12px, calc(7px + 0.5vw), 14px);
	color: var(--am2-accent);
	font-family: "Paperlogy", sans-serif;
	font-weight: 700;
	width: fit-content;
}

.am2-schedule-card .tit {
	font-size: clamp(16px, calc(10px + 0.8vw), 20px);
	font-weight: 700;
	color: var(--am2-text);
	font-family: "Paperlogy", sans-serif;
	margin: 4px 0;
	line-height: 1.4;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: normal;
	height: 56px;
	word-wrap: break-word;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
}

.am2-schedule-date {
	font-size: clamp(13px, calc(8px + 0.5vw), 15px);
	color: var(--am2-text-muted);
	font-family: "Paperlogy", sans-serif;
	margin-top: 8px;
}

.am2-schedule-venue {
	font-size: clamp(12px, calc(7px + 0.5vw), 14px);
	color: var(--am2-text-muted);
	font-family: "Paperlogy", sans-serif;
}

/* ─── 반응형 ─── */
@media (max-width: 999px) {
	.am2-hero {
		margin-top: 70px;
		padding: 40px 0;
	}
	.am2-hero .am2-inner {
		gap: 36px;
	}
	.am2-hero-img {
		flex: 0 0 48%;
	}

	.am2-split {
		height: 380px;
	}
	.am2-split-body {
		padding: 24px 28px;
	}

	.am2-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 32px 24px;
	}

	.am2-schedule-swiper {
		margin: 0 -36px;
		padding: 0 36px;
	}
}

@media (max-width: 768px) {
	.am2-inner {
		padding: 0 24px;
	}

	.am2-hero {
		padding: 32px 0;
	}
	.am2-hero .am2-inner {
		flex-direction: column;
		gap: 24px;
	}
	.am2-hero-img {
		flex: none;
		width: 100%;
	}

	.am2-split {
		flex-direction: column;
		height: auto;
	}
	.am2-split-panel {
		height: 260px;
		flex: none !important;
	}
	.am2-split:hover .am2-split-panel {
		flex: none !important;
	}
	.am2-split-list {
		opacity: 1;
		transform: none;
	}

	.am2-articles {
		padding: 48px 0 56px;
	}
	.am2-grid {
		grid-template-columns: 1fr;
		gap: 28px;
	}

	.am2-schedule-wrap {
		padding: 48px 0 56px;
	}

	.am2-schedule-swiper {
		margin: 0 -24px;
		padding: 0 24px;
	}
}

@media (max-width: 499px) {
	.am2-inner {
		padding: 0 20px;
	}
	.am2-split-panel {
		height: 220px;
	}
	.am2-articles {
		padding: 32px 0 40px;
	}

	.am2-schedule-wrap {
		padding: 32px 0 40px;
	}

	.am2-schedule-swiper {
		margin: 0 -20px;
		padding: 0 20px;
	}
}
