@charset "utf-8";

/* ============================================================
   mmain11 — 타이포 히어로형
   대형 타이포 히어로 → 스크롤 시 좌우로 벌어지며 이미지 노출
   ============================================================ */

.m11-wrap {
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 60px;
}

.m11-cate {
	display: block;
	font-size: clamp(14px, calc(4px + 1.4vw), 18px);
	font-weight: 600;
	color: var(--color-primary);
	margin-bottom: 10px;
}

/* ============================================================
   S1: 타이포 히어로
   ============================================================ */
.m11-hero {
	position: relative;
	height: 100vh;
	min-height: 560px;
	overflow: hidden;
	background: #080808;
	isolation: isolate;
}

/* 뒤 이미지 — 항상 보임 (스텐실이 어둡게 가림) */
.m11-hero-bg {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	z-index: 1;
}

/* 스텐실: 검정 배경 + 흰 글자 + multiply → 글자에만 이미지 비침 */
.m11-stencil {
	position: absolute;
	inset: 0;
	background: #080808;
	mix-blend-mode: multiply;
	z-index: 2;
	display: flex;
	align-items: center;
	justify-content: center;
}

/* 타이포 */
.m11-typo {
	text-align: center;
}

.m11-typo-top,
.m11-typo-bot {
	display: block;
	font-size: clamp(72px, 17vw, 210px);
	font-weight: 900;
	font-family: var(--font-sub-title);
	color: #fff;
	will-change: transform;
	opacity: 0;
	transform: translateY(60%);
}

.m11-typo-mid {
	display: flex;
	align-items: center;
	gap: 20px;
	margin: 12px 0;
	opacity: 0;
	transform: translateY(20px);
}

.m11-typo-line {
	flex: 1;
	height: 1px;
	background: rgba(255, 255, 255, 0.5);
}

.m11-typo-vol {
	font-size: clamp(14px, calc(4px + 1.4vw), 18px);
	font-weight: 500;
	color: rgba(255, 255, 255, 0.85);
	white-space: nowrap;
}

/* 하단 메타 정보 */
.m11-hero-meta {
	position: absolute;
	bottom: 36px;
	left: 0;
	right: 0;
	z-index: 20;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 20px;
	color: rgba(255, 255, 255, 0.5);
	font-size: clamp(14px, calc(4px + 1.4vw), 18px);
	opacity: 0;
}

.m11-meta-div {
	width: 1px;
	height: 14px;
	background: rgba(255, 255, 255, 0.3);
}

.m11-meta-scroll {
	color: rgba(255, 255, 255, 0.3);
}

/* ============================================================
   S2: 피처드 기사
   ============================================================ */
.m11-featured {
	display: grid;
	grid-template-columns: 1fr 1fr;
	min-height: 70vh;
}

.m11-featured-img {
	overflow: hidden;
}

.m11-featured-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.6s ease;
}

.m11-featured-img:hover img {
	transform: scale(1.04);
}

.m11-featured-info {
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 80px 72px;
	background: var(--color-bg-main);
}

.m11-featured-tit {
	font-size: clamp(30px, calc(14px + 2.5vw), 52px);
	font-weight: 900;
	font-family: var(--font-sub-title);
	color: var(--color-text-main);
	margin-bottom: 24px;
}

.m11-featured-desc {
	font-size: clamp(16px, calc(2px + 1.6vw), 20px);
	color: var(--color-text-sub);
	margin-bottom: 36px;
}

.m11-featured-link {
	display: inline-block;
	font-size: clamp(14px, calc(4px + 1.4vw), 18px);
	font-weight: 600;
	color: var(--color-text-main);
	text-decoration: none;
	border-bottom: 1.5px solid var(--color-text-main);
	padding-bottom: 4px;
	transition: color 0.2s, border-color 0.2s;
	align-self: flex-start;
}

.m11-featured-link:hover {
	color: var(--color-primary);
	border-color: var(--color-primary);
}

/* ============================================================
   S3: 기사 그리드
   ============================================================ */
.m11-grid-sec {
	padding: 80px 0 100px;
	background: var(--color-bg-main);
	border-top: 1px solid var(--color-border);
}

.m11-grid-head {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	margin-bottom: 40px;
}

.m11-grid-tit {
	font-size: clamp(22px, calc(10px + 1.8vw), 34px);
	font-weight: 800;
	font-family: var(--font-sub-title);
	color: var(--color-text-main);
}

.m11-grid-more {
	font-size: clamp(14px, calc(4px + 1.4vw), 18px);
	color: var(--color-text-muted);
	text-decoration: none;
	transition: color 0.2s;
}

.m11-grid-more:hover {
	color: var(--color-text-main);
}

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

.m11-card-link {
	display: block;
	text-decoration: none;
}

.m11-card-img {
	aspect-ratio: 4 / 3;
	overflow: hidden;
	border-radius: 8px;
	margin-bottom: 20px;
}

.m11-card-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.5s ease;
}

.m11-card-link:hover .m11-card-img img {
	transform: scale(1.05);
}

.m11-card-tit {
	font-size: clamp(18px, calc(6px + 1.5vw), 24px);
	font-weight: 700;
	color: var(--color-text-main);
	font-family: var(--font-sub-title);
	margin-bottom: 10px;
}

.m11-card-desc {
	font-size: clamp(15px, calc(3px + 1.5vw), 18px);
	color: var(--color-text-sub);
}

/* ============================================================
   S4: 구독 CTA
   ============================================================ */
.m11-cta {
	background: #080808;
	padding: 100px 0;
	text-align: center;
}

.m11-cta-label {
	font-size: clamp(14px, calc(4px + 1.4vw), 18px);
	font-weight: 600;
	color: rgba(255, 255, 255, 0.4);
	margin-bottom: 20px;
}

.m11-cta-tit {
	font-size: clamp(28px, calc(12px + 2.5vw), 52px);
	font-weight: 900;
	font-family: var(--font-sub-title);
	color: #fff;
	margin-bottom: 48px;
}

.m11-cta-form {
	display: flex;
	gap: 12px;
	max-width: 520px;
	margin: 0 auto;
}

.m11-cta-input {
	flex: 1;
	height: 52px;
	padding: 0 20px;
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 4px;
	color: #fff;
	font-size: clamp(15px, calc(3px + 1.5vw), 18px);
	outline: none;
	transition: border-color 0.2s;
}

.m11-cta-input::placeholder {
	color: rgba(255, 255, 255, 0.3);
}

.m11-cta-input:focus {
	border-color: rgba(255, 255, 255, 0.6);
}

.m11-cta-btn {
	height: 52px;
	padding: 0 28px;
	background: #fff;
	color: #080808;
	font-size: clamp(15px, calc(3px + 1.5vw), 18px);
	font-weight: 700;
	border: none;
	border-radius: 4px;
	cursor: pointer;
	white-space: nowrap;
	transition: background 0.2s, color 0.2s;
}

.m11-cta-btn:hover {
	background: rgba(255, 255, 255, 0.85);
}

/* ============================================================
   반응형 — 999px
   ============================================================ */
@media all and (max-width: 999px) {
	.m11-wrap { padding: 0 32px; }

	.m11-featured { grid-template-columns: 1fr; min-height: auto; }

	.m11-featured-img { aspect-ratio: 16 / 9; height: auto; }

	.m11-featured-info { padding: 48px 32px; }

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

	.m11-grid-sec { padding: 64px 0 80px; }

	.m11-cta { padding: 80px 0; }
}

/* ============================================================
   반응형 — 768px
   ============================================================ */
@media all and (max-width: 768px) {
	.m11-wrap { padding: 0 20px; }

	.m11-featured-info { padding: 36px 20px; }

	.m11-grid { grid-template-columns: 1fr; gap: 28px; }

	.m11-grid-sec { padding: 48px 0 64px; }

	.m11-cta-form { flex-direction: column; }

	.m11-cta-input,
	.m11-cta-btn { width: 100%; }
}

/* ============================================================
   반응형 — 499px
   ============================================================ */
@media all and (max-width: 499px) {
	.m11-hero { min-height: 480px; }

	.m11-cta { padding: 64px 0; }

	.m11-grid-sec { padding: 40px 0 56px; }
}
