/* Teknoblog YouTube — Block Front-End Styles (block.css)
   Video bloğu ve video altı abone ol bandı stilleri.
   Marka: #F04A0A (turuncu) / #0A64F0 (mavi)
*/

/* ── Ortak wrapper ──────────────────────────── */
.tby-block {
	margin: 0;
	border-radius: 10px;
	overflow: hidden;
	background: #0d0d0d;
	color: #f0f0f0;
	font-family: 'Open Sans', 'Fira Sans Condensed', system-ui, sans-serif;
}

/* ── Player alanı (tüm stiller) ─────────────── */
.tby-block__player {
	position: relative;
	aspect-ratio: 16 / 9;
	overflow: hidden;
	background: #000;
	cursor: pointer;
}

.tby-embed-thumb {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.3s ease;
}

.tby-block__player:hover .tby-embed-thumb {
	transform: scale(1.03);
}

/* iframe enjekte edilince */
.tby-block__player iframe {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	border: 0;
}

/* ── Play butonu ─────────────────────────────── */
.tby-play-btn {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	background: none;
	border: none;
	cursor: pointer;
	padding: 0;
	transition: opacity 0.2s;
}

.tby-play-btn:hover {
	opacity: 0.85;
}

.tby-play-btn svg {
	width: 68px;
	height: 48px;
	filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.5));
}

/* ── Süre etiketi ─────────────────────────────── */
.tby-duration {
	position: absolute;
	bottom: 8px;
	right: 8px;
	background: rgba(0, 0, 0, 0.85);
	color: #fff;
	font-size: 12px;
	font-weight: 700;
	padding: 2px 7px;
	border-radius: 3px;
	letter-spacing: 0.3px;
	pointer-events: none;
}

/* ── Kart: meta bilgi ────────────────────────── */
.tby-block__card-body {
	padding: 14px 18px 4px;
}

.tby-block__card-title {
	margin: 0 0 6px;
	font-size: 16px;
	font-weight: 700;
	line-height: 1.4;
}

.tby-block__card-title a {
	color: #f0f0f0;
	text-decoration: none;
}

.tby-block__card-title a:hover {
	color: #F04A0A;
}

.tby-block__card-meta {
	display: flex;
	gap: 12px;
	font-size: 13px;
	color: #999;
	flex-wrap: wrap;
}

/* ── Minimal: başlık ─────────────────────────── */
.tby-block__minimal-title {
	margin: 10px 0 4px;
	font-size: 14px;
	font-weight: 600;
}

.tby-block__minimal-title a {
	color: #f0f0f0;
	text-decoration: none;
}

.tby-block__minimal-title a:hover {
	color: #F04A0A;
}

/* ── Abone Ol Bandı ──────────────────────────── */
.tby-block__subscribe {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 14px 18px;
	background: #161616;
	border-top: 1px solid #2a2a2a;
	flex-wrap: wrap;
}

.tby-block__sub-avatar {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	object-fit: cover;
	flex-shrink: 0;
	border: 2px solid #F04A0A;
}

.tby-block__sub-text {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 1px;
	min-width: 100px;
}

.tby-block__sub-name {
	font-size: 14px;
	font-weight: 700;
	color: #f0f0f0;
}

.tby-block__sub-count {
	font-size: 12px;
	color: #888;
}

.tby-block__sub-btn {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	background: #ff0000;
	color: #fff !important;
	font-size: 13px;
	font-weight: 700;
	padding: 9px 20px;
	border-radius: 20px;
	text-decoration: none !important;
	white-space: nowrap;
	transition: background 0.2s, transform 0.15s;
	flex-shrink: 0;
}

.tby-block__sub-btn:hover {
	background: #cc0000;
	transform: scale(1.04);
}

/* ── Responsive ──────────────────────────────── */
@media (max-width: 480px) {
	.tby-block__subscribe {
		gap: 10px;
		padding: 12px 14px;
	}

	.tby-block__sub-btn {
		width: 100%;
		justify-content: center;
	}
}
