/**
 * Reels — vertical 9:16 feed + homepage strip.
 */

.dr-reels-section {
	padding: var(--dr-section-space, clamp(3rem, 7vw, 5rem)) 0;
	background: var(--dr-surface);
}

.dr-reels-section__head {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 1rem;
	margin-bottom: 1.5rem;
	flex-wrap: wrap;
}

.dr-reels-section__head h2 {
	margin: 0;
	font-size: clamp(1.35rem, 2.5vw, 1.75rem);
	font-weight: 800;
}

.dr-reels-section__head p {
	margin: 0.35rem 0 0;
	color: var(--dr-ink-soft);
	font-size: 0.92rem;
}

/* ── Full feed (/reels/) — legacy cards ── */
.dr-reels-page {
	background: #0F172A;
	min-height: 100vh;
}

.dr-reels-page .dr-page-hero {
	background: linear-gradient(180deg, #0F172A 0%, #1E293B 100%);
	border-bottom-color: rgba(255, 255, 255, 0.08);
}

.dr-reels-page .dr-page-hero__title,
.dr-reels-page .dr-section-eyebrow {
	color: #fff;
}

.dr-reels-page .dr-page-hero__desc {
	color: rgba(255, 255, 255, 0.72);
}

.dr-reels-feed--full {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1.5rem;
	padding: clamp(1.5rem, 4vw, 2.5rem) 0 clamp(3rem, 6vw, 4rem);
	max-width: 420px;
	margin-inline: auto;
	scroll-snap-type: y proximity;
}

.dr-reels-feed--full .dr-reel-item {
	width: 100%;
	scroll-snap-align: center;
	background: #1E293B;
	border-radius: var(--dr-radius);
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.08);
	box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}

.dr-reels-feed--full .dr-reel-item__media {
	position: relative;
	aspect-ratio: 9 / 16;
	background: #000;
}

.dr-reels-feed--full .dr-reel-item__video,
.dr-reels-feed--full .dr-reel-item__poster-only {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.dr-reel-item__play {
	position: absolute;
	inset: 0;
	margin: auto;
	width: 56px;
	height: 56px;
	border: none;
	border-radius: 50%;
	background: rgba(14, 165, 164, 0.92);
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: transform 0.2s ease, opacity 0.2s ease;
	z-index: 2;
}

.dr-reel-item__play svg {
	width: 22px;
	height: 22px;
	margin-inline-start: 3px;
}

.dr-reel-item.is-playing .dr-reel-item__play {
	opacity: 0;
	pointer-events: none;
}

.dr-reel-item__media:hover .dr-reel-item__play {
	opacity: 1;
	pointer-events: auto;
}

.dr-reel-item.is-playing .dr-reel-item__media:hover .dr-reel-item__play {
	opacity: 0.85;
	pointer-events: auto;
}

.dr-reel-item__mute {
	position: absolute;
	top: 0.75rem;
	inset-inline-end: 0.75rem;
	width: 36px;
	height: 36px;
	border: none;
	border-radius: 50%;
	background: rgba(15, 23, 42, 0.65);
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	z-index: 3;
	backdrop-filter: blur(4px);
}

.dr-reel-item__mute svg {
	width: 18px;
	height: 18px;
}

.dr-reel-item.is-unmuted .dr-reel-item__mute {
	background: rgba(14, 165, 164, 0.85);
}

.dr-reel-item__info {
	padding: 1rem 1.1rem 1.15rem;
	color: #fff;
}

.dr-reels-feed--full .dr-reel-item__title {
	margin: 0 0 0.35rem;
	font-size: 1rem;
	font-weight: 800;
	color: #fff;
}

.dr-reel-item__desc {
	margin: 0 0 0.5rem;
	font-size: 0.85rem;
	line-height: 1.65;
	color: rgba(255, 255, 255, 0.78);
}

.dr-reel-item__tags {
	margin: 0;
	font-size: 0.78rem;
	color: var(--dr-primary-light, #99F6E4);
	font-weight: 600;
}

/* ── Homepage strip ── */
.dr-reels-feed--strip {
	display: flex;
	gap: 1rem;
	overflow-x: auto;
	padding-bottom: 0.5rem;
	scroll-snap-type: x proximity;
	-webkit-overflow-scrolling: touch;
}

.dr-reels-feed--strip::-webkit-scrollbar {
	height: 4px;
}

.dr-reels-feed--strip .dr-reel-item {
	flex: 0 0 min(220px, 72vw);
	scroll-snap-align: start;
	background: #fff;
	border: 1px solid var(--dr-border);
	border-radius: var(--dr-radius-sm);
	overflow: hidden;
	box-shadow: 0 4px 16px rgba(15, 23, 42, 0.06);
}

.dr-reels-feed--strip .dr-reel-item__media {
	aspect-ratio: 9 / 16;
	position: relative;
	background: var(--dr-paper);
}

.dr-reels-feed--strip .dr-reel-item__video,
.dr-reels-feed--strip .dr-reel-item__poster-only {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.dr-reels-feed--strip .dr-reel-item__info {
	padding: 0.85rem;
}

.dr-reels-feed--strip .dr-reel-item__title {
	margin: 0;
	font-size: 0.88rem;
	font-weight: 800;
	color: var(--dr-ink);
}

.dr-reels-feed--strip .dr-reel-item__desc,
.dr-reels-feed--strip .dr-reel-item__tags {
	display: none;
}

.dr-reels-empty {
	text-align: center;
	color: var(--dr-ink-soft);
	padding: 2rem;
}

/* ── Gallery lightbox ── */
.dr-ba-lightbox {
	position: fixed;
	inset: 0;
	z-index: 9999;
	background: rgba(15, 23, 42, 0.92);
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 1.5rem;
}

.dr-ba-lightbox[hidden] {
	display: none;
}

.dr-ba-lightbox__inner {
	position: relative;
	max-width: min(520px, 100%);
	width: 100%;
}

.dr-ba-lightbox__img {
	width: 100%;
	height: auto;
	border-radius: var(--dr-radius-sm);
	display: block;
}

.dr-ba-lightbox__caption {
	margin: 0.75rem 0 0;
	text-align: center;
	color: #fff;
	font-size: 0.9rem;
}

.dr-ba-lightbox__close {
	position: absolute;
	top: -2.5rem;
	inset-inline-end: 0;
	width: 40px;
	height: 40px;
	border: none;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.15);
	color: #fff;
	font-size: 1.5rem;
	line-height: 1;
	cursor: pointer;
}

.dr-ba-card__img[data-dr-ba-lightbox] {
	cursor: zoom-in;
}

.dr-ba-card__img::after {
	content: "دکتر احمدی";
	position: absolute;
	bottom: 0.45rem;
	inset-inline-end: 0.45rem;
	padding: 0.2rem 0.45rem;
	font-size: 0.58rem;
	font-weight: 700;
	color: rgba(255, 255, 255, 0.92);
	background: rgba(15, 23, 42, 0.55);
	border-radius: 4px;
	pointer-events: none;
	z-index: 1;
}

.dr-bmi-section__cta {
	margin-top: 1.25rem;
	text-align: center;
}

.dr-bmi-section__cta .dr-btn {
	min-width: 200px;
}

@media (max-width: 480px) {
	.dr-reels-feed--full {
		max-width: 100%;
		padding-inline: 1rem;
	}
}

/* ── Feed links to SEO singles ── */
.dr-reel-item__title a {
	color: inherit;
	text-decoration: none;
}

.dr-reel-item__title a:hover {
	color: var(--dr-primary-light, #99F6E4);
}

.dr-reel-item__link {
	display: inline-block;
	margin-top: 0.65rem;
	font-size: 0.82rem;
	font-weight: 700;
	color: var(--dr-primary-light, #99F6E4);
	text-decoration: none;
}

.dr-reel-item__link:hover {
	text-decoration: underline;
}

.dr-reels-feed--strip .dr-reel-item__title a {
	color: var(--dr-ink);
}

/* ══════════════════════════════════════════
   YouTube Shorts–style viewer (/reels/)
   ══════════════════════════════════════════ */

body.dr-shorts-viewer-active {
	background: #000;
	overflow: hidden;
	height: 100svh;
	max-height: 100svh;
}

body.dr-shorts-viewer-active .dr-page-breadcrumb,
body.dr-shorts-viewer-active footer,
body.dr-shorts-viewer-active .wp-block-group.dr-site-footer {
	display: none !important;
}

body.dr-shorts-viewer-active .dr-page-content,
body.dr-shorts-viewer-active .dr-page-sections,
body.dr-shorts-viewer-active .dr-page-sections__content {
	padding: 0 !important;
	margin: 0 !important;
	max-width: none !important;
}

body.dr-shorts-viewer-active .dr-site-header {
	position: fixed;
	inset-inline: 0;
	top: 0;
	z-index: 300;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.2) 70%, transparent 100%);
	border-bottom-color: transparent;
	box-shadow: none;
	backdrop-filter: blur(6px);
	-webkit-backdrop-filter: blur(6px);
}

body.dr-shorts-viewer-active .dr-site-header .dr-brand__text,
body.dr-shorts-viewer-active .dr-site-header .dr-brand__text small,
body.dr-shorts-viewer-active .dr-site-header .dr-primary-nav a,
body.dr-shorts-viewer-active .dr-site-header .dr-nav-toggle {
	color: #fff;
}

body.dr-shorts-viewer-active .dr-site-header .dr-brand__icon {
	background: rgba(255, 255, 255, 0.14);
	color: #fff;
}

body.dr-shorts-viewer-active .dr-site-header .dr-header-cta .dr-btn--primary {
	background: rgba(255, 255, 255, 0.16);
	border-color: rgba(255, 255, 255, 0.28);
	color: #fff;
	box-shadow: none;
}

body.dr-shorts-viewer-active .dr-site-header .dr-primary-nav a:hover,
body.dr-shorts-viewer-active .dr-site-header .dr-header-cta .dr-btn--primary:hover {
	color: #fff;
	background: rgba(255, 255, 255, 0.24);
}

.dr-shorts-viewer {
	position: relative;
	width: 100%;
	height: 100svh;
	max-height: 100svh;
	background: #000;
}

.dr-shorts-feed {
	position: relative;
	width: 100%;
	height: 100svh;
	max-height: 100svh;
	overflow-y: auto;
	overflow-x: hidden;
	scroll-snap-type: y mandatory;
	scroll-behavior: smooth;
	overscroll-behavior-y: contain;
	scrollbar-width: none;
}

.dr-shorts-feed::-webkit-scrollbar {
	display: none;
}

.dr-short {
	position: relative;
	width: 100%;
	height: 100svh;
	min-height: 100svh;
	max-height: 100svh;
	scroll-snap-align: start;
	scroll-snap-stop: always;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #000;
	overflow: visible;
}

.dr-short__stage {
	position: relative;
	width: min(100%, 480px);
	height: 100%;
	margin-inline: auto;
	box-sizing: border-box;
	--dr-short-header-offset: clamp(3.5rem, 8vh, 4.75rem);
	padding-top: var(--dr-short-header-offset);
	padding-bottom: env(safe-area-inset-bottom, 0);
	overflow: visible;
}

.dr-short__media {
	position: absolute;
	inset: 0;
	background: #000;
	border-radius: 12px;
	overflow: hidden;
	z-index: 1;
}

.dr-short__canvas {
	position: absolute;
	inset: 0;
	border-radius: inherit;
	overflow: hidden;
	background: #000;
	z-index: 1;
}

.dr-short__video,
.dr-short__poster {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	background: #000;
}

.dr-short__play {
	position: absolute;
	inset: 0;
	margin: auto;
	width: 68px;
	height: 68px;
	border: none;
	border-radius: 50%;
	background: rgba(0, 0, 0, 0.45);
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	z-index: 4;
	backdrop-filter: blur(4px);
	transition: opacity 0.2s ease, transform 0.2s ease;
}

.dr-short__play svg {
	width: 30px;
	height: 30px;
	margin-inline-start: 4px;
}

.dr-short.is-playing .dr-short__play {
	opacity: 0;
	pointer-events: none;
}

.dr-short.is-paused .dr-short__play {
	opacity: 1;
	pointer-events: auto;
}

.dr-short__shade {
	position: absolute;
	inset: 0;
	z-index: 2;
	pointer-events: none;
	border-radius: 12px;
	background:
		linear-gradient(180deg, rgba(0, 0, 0, 0.38) 0%, transparent 20%),
		linear-gradient(0deg, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.35) 38%, transparent 62%);
}

.dr-short__meta {
	position: absolute;
	inset-inline: 0;
	bottom: 0;
	z-index: 20;
	display: flex;
	flex-direction: column;
	align-items: stretch;
	gap: 0.4rem;
	padding: 1.5rem 0.9rem calc(1.75rem + env(safe-area-inset-bottom, 0));
	padding-inline-end: 4.6rem;
	color: #fff;
	text-align: right;
	pointer-events: none;
	overflow: visible;
	background: linear-gradient(0deg, rgba(0, 0, 0, 0.94) 0%, rgba(0, 0, 0, 0.62) 58%, transparent 100%);
	border-radius: 0 0 12px 12px;
	transform: translateZ(0);
}

body.dr-shorts-viewer-active .dr-shorts-feed .dr-short__title,
body.dr-shorts-viewer-active .dr-shorts-feed .dr-short__title a,
body.dr-shorts-viewer-active .dr-shorts-feed .dr-short__desc,
body.dr-shorts-viewer-active .dr-shorts-feed .dr-short__author,
body.dr-shorts-viewer-active .dr-shorts-feed .dr-short__tags,
body.dr-shorts-viewer-active .dr-shorts-feed .dr-short__tag,
body.dr-shorts-viewer-active .dr-shorts-feed .dr-short__more {
	color: #fff !important;
}

.dr-short__channel {
	display: flex;
	align-items: center;
	gap: 0.55rem;
	margin-bottom: 0;
	flex-wrap: wrap;
	pointer-events: auto;
}

.dr-short__avatar {
	width: 34px;
	height: 34px;
	border-radius: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, #0d9488, #38bdf8);
	color: #fff;
	font-size: 0.82rem;
	font-weight: 800;
	flex-shrink: 0;
}

.dr-short__author {
	font-size: 0.9rem;
	font-weight: 800;
}

.dr-short__follow {
	display: inline-flex;
	align-items: center;
	padding: 0.28rem 0.7rem;
	border-radius: 999px;
	border: 1px solid rgba(255, 255, 255, 0.85);
	color: #fff;
	font-size: 0.72rem;
	font-weight: 800;
	text-decoration: none;
	transition: background 0.2s ease;
}

.dr-short__follow:hover {
	background: rgba(255, 255, 255, 0.14);
	color: #fff;
}

.dr-short__title {
	margin: 0;
	font-size: 1rem;
	font-weight: 800;
	line-height: 1.55;
	color: #fff;
	text-shadow: 0 1px 8px rgba(0, 0, 0, 0.45);
	flex-shrink: 0;
}

.dr-short__title a {
	color: #fff;
	text-decoration: none;
	pointer-events: auto;
}

.dr-short__title a:hover {
	text-decoration: underline;
}

.dr-short__desc {
	margin: 0;
	font-size: 0.86rem;
	line-height: 1.7;
	color: #fff !important;
	-webkit-text-fill-color: #fff;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-shadow: 0 1px 6px rgba(0, 0, 0, 0.42);
	flex-shrink: 0;
}

.dr-short__desc.is-expanded {
	display: block;
	-webkit-line-clamp: unset;
	overflow: visible;
}

.dr-short__more {
	margin: 0.35rem 0 0;
	padding: 0;
	border: none;
	background: transparent;
	color: rgba(255, 255, 255, 0.88);
	font: inherit;
	font-size: 0.78rem;
	font-weight: 800;
	cursor: pointer;
	pointer-events: auto;
	text-shadow: 0 1px 6px rgba(0, 0, 0, 0.42);
}

.dr-short__more:hover {
	color: #fff;
}

.dr-short__tags {
	margin: 0;
	display: flex !important;
	visibility: visible !important;
	opacity: 1 !important;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.35rem;
	max-width: 100%;
	position: relative;
	z-index: 30;
	flex-shrink: 0;
	min-height: 1.6rem;
}

.dr-short__tag {
	display: inline-flex !important;
	align-items: center;
	padding: 0.3rem 0.7rem;
	border-radius: 999px;
	background: #0d9488 !important;
	border: 1px solid #5eead4;
	font-size: 0.78rem !important;
	font-weight: 800;
	line-height: 1.3;
	color: #fff !important;
	-webkit-text-fill-color: #fff;
	text-shadow: none;
	white-space: nowrap;
	flex-shrink: 0;
}

.dr-short__rail {
	position: absolute;
	inset-inline-end: 0.55rem;
	bottom: calc(6.5rem + env(safe-area-inset-bottom, 0));
	z-index: 6;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.85rem;
}

.dr-short__action {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.2rem;
	width: 52px;
	padding: 0;
	border: none;
	background: transparent;
	color: #fff;
	text-decoration: none;
	cursor: pointer;
	font: inherit;
}

.dr-short__action-icon {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: rgba(15, 23, 42, 0.42);
	backdrop-filter: blur(6px);
	transition: background 0.2s ease, transform 0.2s ease;
}

.dr-short__action-icon svg {
	width: 22px;
	height: 22px;
}

.dr-short__action:hover .dr-short__action-icon,
.dr-short__action:focus-visible .dr-short__action-icon {
	background: rgba(15, 23, 42, 0.62);
	transform: scale(1.04);
}

.dr-short__action-label {
	font-size: 0.66rem;
	font-weight: 700;
	line-height: 1.2;
	text-align: center;
}

.dr-short__icon-unmuted {
	display: none;
}

.dr-short.is-unmuted .dr-short__icon-muted {
	display: none;
}

.dr-short.is-unmuted .dr-short__icon-unmuted {
	display: block;
}

.dr-short__progress {
	position: absolute;
	inset-inline: 0;
	bottom: 0;
	height: 3px;
	z-index: 6;
	background: rgba(255, 255, 255, 0.18);
}

.dr-short__progress-bar {
	display: block;
	width: 0;
	height: 100%;
	background: #fff;
	transition: width 0.08s linear;
}

.dr-shorts-feed .dr-reels-empty {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 100dvh;
	color: rgba(255, 255, 255, 0.72);
}

@media (min-width: 768px) {
	.dr-short__stage {
		width: min(100%, 420px);
		border-inline: 1px solid rgba(255, 255, 255, 0.06);
	}
}

@media (max-width: 768px) {
	body.dr-shorts-viewer-active .dr-contact-rail,
	body.dr-shorts-viewer-active .dr-scroll-top,
	body.dr-shorts-viewer-active .dr-mobile-fab,
	body.dr-shorts-viewer-active .dr-mobile-nav {
		display: none !important;
	}

	body.dr-shorts-viewer-active {
		padding-bottom: 0;
	}

	.dr-short__stage {
		--dr-short-header-offset: 3.25rem;
	}

	.dr-short__meta {
		padding: 1.25rem 0.75rem calc(1.5rem + env(safe-area-inset-bottom, 0));
		padding-inline-end: 4.2rem;
	}

	.dr-short__tags {
		gap: 0.3rem;
	}

	.dr-short__tag {
		font-size: 0.74rem !important;
		padding: 0.26rem 0.58rem;
	}

	.dr-short__rail {
		inset-inline-end: 0.35rem;
		bottom: calc(7.25rem + env(safe-area-inset-bottom, 0));
	}
}

/* ── Single reel page (uses blog-single layout) ── */
body.dr-reel-single-active.dr-single-active main.dr-reel-single-shell {
	padding: 0;
	margin: 0;
}

.dr-reel-single-post > .dr-cta {
	margin-block-start: 0 !important;
	margin-block-end: 0 !important;
}

.dr-reel-single__main {
	max-width: 760px;
	margin-inline: auto;
}

.dr-reel-single__player-wrap {
	margin-bottom: clamp(1.75rem, 4vw, 2.5rem);
}

.dr-reel-single__player {
	width: min(100%, 340px);
	margin-inline: auto;
	aspect-ratio: 9 / 16;
	background: #0f172a;
	border-radius: var(--dr-radius);
	overflow: hidden;
	box-shadow: 0 20px 48px rgba(15, 23, 42, 0.14);
}

.dr-reel-single__video,
.dr-reel-single__poster-only {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.dr-reel-single__lead {
	font-size: 1.08rem;
	line-height: 1.9;
	color: var(--dr-ink-soft);
	margin: 0 0 1.5rem;
}

.dr-reel-single__back {
	text-decoration: none;
}

/* ── YouTube-style related videos (single reel) — horizontal row ── */
.dr-reel-related {
	padding: clamp(1.75rem, 4vw, 2.75rem) 0 clamp(2.5rem, 5vw, 3.5rem);
	background: #f8fafc;
	border-top: 1px solid var(--dr-border);
	overflow: hidden;
}

.dr-reel-related__inner {
	max-width: var(--dr-container, 1280px);
}

.dr-reel-related__head {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 1rem;
	margin-bottom: 1rem;
	flex-wrap: wrap;
}

.dr-reel-related__title {
	margin: 0.35rem 0 0;
	font-size: clamp(1.15rem, 2.2vw, 1.35rem);
	font-weight: 800;
	color: var(--dr-ink);
}

.dr-reel-related__more {
	display: inline-flex;
	align-items: center;
	gap: 0.15rem;
	font-size: 0.88rem;
	font-weight: 700;
	color: var(--dr-primary);
	text-decoration: none;
	padding: 0.45rem 0.65rem;
	border-radius: 999px;
	transition: background 0.2s ease, color 0.2s ease;
}

.dr-reel-related__more:hover {
	background: rgba(13, 148, 136, 0.08);
	color: #0f766e;
}

.dr-reel-related__more svg {
	flex-shrink: 0;
}

.dr-yt-related__scroller {
	margin-inline: -1.25rem;
	padding-inline: 1.25rem;
	overflow-x: auto;
	overflow-y: hidden;
	-webkit-overflow-scrolling: touch;
	scroll-snap-type: x proximity;
	scrollbar-width: thin;
	scrollbar-color: rgba(15, 23, 42, 0.22) transparent;
}

.dr-yt-related__scroller:focus-visible {
	outline: 2px solid var(--dr-primary);
	outline-offset: 4px;
	border-radius: 8px;
}

.dr-yt-related__scroller::-webkit-scrollbar {
	height: 6px;
}

.dr-yt-related__scroller::-webkit-scrollbar-thumb {
	background: rgba(15, 23, 42, 0.18);
	border-radius: 999px;
}

.dr-yt-related__list {
	display: flex;
	flex-direction: row;
	align-items: stretch;
	gap: 0.85rem;
	width: max-content;
	min-width: 100%;
	padding-block-end: 0.35rem;
}

.dr-yt-related__item {
	display: flex;
	flex-direction: column;
	flex: 0 0 auto;
	width: clamp(9.5rem, 22vw, 11.5rem);
	scroll-snap-align: start;
	text-decoration: none;
	color: inherit;
	border-radius: 12px;
	transition: transform 0.18s ease;
}

.dr-yt-related__item:hover,
.dr-yt-related__item:focus-visible {
	transform: translateY(-2px);
	outline: none;
}

.dr-yt-related__thumb {
	position: relative;
	width: 100%;
	aspect-ratio: 9 / 16;
	border-radius: 10px;
	overflow: hidden;
	background: #0f172a;
	box-shadow: 0 6px 18px rgba(15, 23, 42, 0.12);
}

.dr-yt-related__thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.25s ease;
}

.dr-yt-related__item:hover .dr-yt-related__thumb img,
.dr-yt-related__item:focus-visible .dr-yt-related__thumb img {
	transform: scale(1.03);
}

.dr-yt-related__badge {
	position: absolute;
	inset-inline: 0.35rem;
	bottom: 0.35rem;
	display: inline-flex;
	align-items: center;
	gap: 0.2rem;
	padding: 0.18rem 0.42rem;
	border-radius: 4px;
	background: rgba(15, 23, 42, 0.82);
	color: #fff;
	font-size: 0.62rem;
	font-weight: 800;
	line-height: 1.2;
	backdrop-filter: blur(4px);
}

.dr-yt-related__badge svg {
	flex-shrink: 0;
	opacity: 0.95;
}

.dr-yt-related__body {
	min-width: 0;
	padding-block: 0.55rem 0.15rem;
}

.dr-yt-related__title {
	margin: 0;
	font-size: 0.88rem;
	font-weight: 700;
	line-height: 1.4;
	color: var(--dr-ink);
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow: hidden;
}

.dr-yt-related__channel {
	margin: 0.28rem 0 0;
	font-size: 0.76rem;
	color: var(--dr-ink-soft);
	line-height: 1.35;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.dr-yt-related__meta {
	margin: 0.15rem 0 0;
	font-size: 0.72rem;
	color: #64748b;
	line-height: 1.35;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.dr-yt-related__dot {
	color: #94a3b8;
}

.dr-yt-related__tag {
	color: var(--dr-primary);
	font-weight: 600;
}

.dr-yt-related__desc {
	display: none;
}

@media (min-width: 768px) {
	.dr-yt-related__list {
		gap: 1rem;
	}

	.dr-yt-related__item {
		width: clamp(10rem, 14vw, 12rem);
	}

	.dr-yt-related__title {
		font-size: 0.92rem;
	}
}

@media (max-width: 480px) {
	.dr-reel-single__player {
		width: min(100%, 280px);
	}
}
