/* 유튜브 채널 피드 - 그리드 기본 스타일 */
.ycf-grid {
	display: grid;
	gap: 12px;
	margin: 1.5em 0;
}

.ycf-facade {
	display: block;
	cursor: pointer;
}

.ycf-thumb {
	position: relative;
	display: block;
	width: 100%;
	aspect-ratio: 16 / 9;
	background-size: cover;
	background-position: center;
	background-color: #000;
	border-radius: 6px;
	overflow: hidden;
}

.ycf-play {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 56px;
	height: 56px;
	transform: translate(-50%, -50%);
	background: rgba(0, 0, 0, 0.6);
	border-radius: 50%;
	transition: background 0.15s ease;
}

.ycf-play::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 54%;
	width: 0;
	height: 0;
	transform: translate(-50%, -50%);
	border-style: solid;
	border-width: 10px 0 10px 18px;
	border-color: transparent transparent transparent #fff;
}

.ycf-facade:hover .ycf-play {
	background: rgba(255, 0, 0, 0.85);
}

.ycf-title {
	display: block;
	margin-top: 8px;
	font-size: 14px;
	line-height: 1.4;
}

.ycf-channel-link {
	text-align: right;
}

.ycf-iframe-wrap {
	position: relative;
	width: 100%;
	aspect-ratio: 16 / 9;
	border-radius: 6px;
	overflow: hidden;
	background: #000;
}

.ycf-iframe-wrap iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border: 0;
}

@media (max-width: 600px) {
	.ycf-grid {
		grid-template-columns: repeat(2, 1fr) !important;
	}
}

/* ===== 섹션 헤더 / 화면 전체 폭 배경 ===== */

.ycf-section {
	--ycf-accent: #d6336c;
	--ycf-bg: #fdf3f3;

	width: 100%;
	background: var( --ycf-bg );
	padding: 56px 24px;
	box-sizing: border-box;
	overflow: hidden;
}

/* JS(fullbleed.js)가 실제 화면 좌표를 측정해서 폭을 맞추기 전까지의 안전한 기본값 */
.ycf-section.ycf-fullbleed {
	width: 100%;
}

.ycf-section-inner {
	max-width: 1300px;
	margin: 0 auto;
}

.ycf-header {
	margin-bottom: 32px;
}

.ycf-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin: 0 0 10px;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var( --ycf-accent );
}

.ycf-eyebrow::before {
	content: "";
	display: inline-block;
	width: 32px;
	height: 2px;
	background: var( --ycf-accent );
}

.ycf-caption {
	margin: 0 0 6px;
	font-size: 15px;
	color: #555;
}

.ycf-section-title {
	margin: 0;
	font-size: 26px;
	font-weight: 800;
	color: var( --ycf-accent );
}

.ycf-section .ycf-grid {
	margin: 0;
}
