/* ACU — Tur Videoları (yan yana 2 video) */
.acu-tv, .acu-tv *, .acu-tv *::before, .acu-tv *::after { box-sizing: border-box; }
.acu-tv {
	--acu-orange: #F37021;
	--acu-navy:   #00377B;
	--acu-cream:  #FBF6F0;
	position: relative;
	width: 100%;
	background: var(--acu-cream);
	font-family: var(--acu-font, "Poppins", "Inter", system-ui, sans-serif);
	padding: clamp(40px, 5.5vw, 64px) clamp(20px, 5vw, 72px);
	overflow: hidden;
}
/* Dekoratif lacivert/turuncu yumuşak ışıklar (padding'i bozmaz, absolute) */
.acu-tv-deco { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
.acu-tv-deco::before,
.acu-tv-deco::after {
	content: "";
	position: absolute;
	border-radius: 50%;
	filter: blur(60px);
}
.acu-tv-deco::before { width: 320px; height: 320px; top: -120px; left: -80px; background: rgba(0,55,123,.10); }
.acu-tv-deco::after  { width: 300px; height: 300px; bottom: -120px; right: -70px; background: rgba(243,112,33,.10); }

.acu-tv-inner { position: relative; z-index: 1; max-width: 1320px; margin: 0 auto; }
.acu-tv-head { text-align: center; margin-bottom: clamp(22px, 3vw, 36px); }
.acu-tv-eyebrow {
	display: inline-flex; align-items: center; gap: 9px;
	font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
	color: var(--acu-navy);
}
.acu-tv-eyebrow::before { content: ""; width: 24px; height: 2px; border-radius: 2px; background: var(--acu-orange); }
.acu-tv-title {
	margin: 10px 0 0;
	font-size: clamp(26px, 3.5vw, 40px); line-height: 1.1; font-weight: 700; letter-spacing: -.02em;
	color: #2B211B;
}
.acu-tv-accent { color: var(--acu-orange); }
.acu-tv-lead {
	margin: 12px auto 0;
	max-width: 60ch;
	font-size: clamp(14px, 1.05vw, 16px);
	line-height: 1.6;
	color: rgba(43,33,27,.66);
}
.acu-tv-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: clamp(18px, 2.6vw, 30px);
}
.acu-tv-card {
	min-width: 0;
	padding: 12px;
	background: #fff;
	border: 1px solid rgba(0,55,123,.1);
	border-radius: 20px;
	box-shadow: 0 26px 54px -34px rgba(0,55,123,.4);
}
.acu-tv-frame {
	position: relative;
	aspect-ratio: 4 / 3;
	border-radius: 14px;
	overflow: hidden;
	background: #0a1f3d;
}
.acu-tv-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; display: block; }
.acu-tv-empty {
	position: absolute; inset: 0; display: grid; place-items: center;
	color: rgba(255,255,255,.7); font-size: 14px; font-weight: 600;
}
.acu-tv-cap {
	display: flex; align-items: center; gap: 8px;
	margin: 14px 6px 4px;
	font-size: 14.5px; font-weight: 600; color: #2B211B;
}
.acu-tv-cap::before {
	content: "";
	width: 8px; height: 8px; border-radius: 50%;
	background: var(--acu-orange); flex: none;
}
/* Dekoratif rozet şeridi (alanı doldurur) */
.acu-tv-chips {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 10px;
	margin-top: clamp(20px, 2.6vw, 30px);
}
.acu-tv-chip {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 9px 16px;
	border-radius: 999px;
	background: #fff;
	border: 1px solid rgba(0,55,123,.12);
	box-shadow: 0 10px 24px -18px rgba(0,55,123,.5);
	font-size: 12.5px;
	font-weight: 600;
	color: #00377B;
}
.acu-tv-chip__dot { width: 7px; height: 7px; border-radius: 50%; background: var(--acu-orange); flex: none; }

@media (max-width: 760px) {
	.acu-tv-grid { grid-template-columns: 1fr; }
	.acu-tv-frame { aspect-ratio: 16 / 9; }
	/* Chip'ler tek satıra sığsın */
	.acu-tv-chips { flex-wrap: nowrap; gap: 6px; }
	.acu-tv-chip { padding: 7px 9px; font-size: 10.5px; gap: 5px; white-space: nowrap; }
	.acu-tv-chip__dot { width: 6px; height: 6px; }
}
@media (max-width: 360px) {
	.acu-tv-chip { padding: 6px 7px; font-size: 9.5px; }
}
