/**
 * Video library — CSS on UX columns.
 * Match Stitch th_vi_n_video_b_c_s_v_vn.
 */

body.drvu-videos-page .drvu-vid-hero.section {
	padding-top: 80px !important;
}

body.drvu-videos-page.admin-bar .drvu-vid-hero.section {
	padding-top: 80px !important;
}

body.drvu-videos-page .drvu-vid-hero .drvu-kicker {
	margin: 0 0 16px;
	font: var(--drvu-label-md);
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--drvu-secondary);
}

body.drvu-videos-page .drvu-vid-hero h1 {
	max-width: 36rem;
}

body.drvu-videos-page .drvu-vid-hero .drvu-lead {
	max-width: 36rem;
}

body.drvu-videos-page .drvu-page p.drvu-vid-pill {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	width: auto;
	margin: 0 16px 8px 0;
	padding: 8px 16px;
	border-radius: var(--drvu-radius-full);
	background: rgba(255, 255, 255, 0.8);
	backdrop-filter: blur(8px);
	border: 1px solid var(--drvu-outline-variant);
	box-shadow: var(--drvu-shadow-sm);
	font: var(--drvu-label-md);
	color: var(--drvu-on-surface);
}

body.drvu-videos-page .drvu-page p.drvu-vid-pill::before {
	font-family: "Material Symbols Outlined";
	font-size: 20px;
	color: var(--drvu-secondary);
	font-variation-settings: "FILL" 0, "wght" 400, "GRAD" 0, "opsz" 24;
	font-feature-settings: "liga";
}

body.drvu-videos-page .drvu-page p.drvu-vid-pill--play::before {
	content: "play_circle";
}

body.drvu-videos-page .drvu-page p.drvu-vid-pill--check::before {
	content: "verified_user";
}

/* Filters */
body.drvu-videos-page .col.drvu-vid-filters > .col-inner {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 12px;
	margin-bottom: 24px;
}

body.drvu-videos-page .drvu-page .button.drvu-filter {
	margin: 0;
	padding: 8px 24px;
	border-radius: var(--drvu-radius-full) !important;
	background: #fff !important;
	border: 1px solid var(--drvu-outline-variant) !important;
	color: var(--drvu-on-surface) !important;
	box-shadow: none !important;
}

body.drvu-videos-page .drvu-page .button.drvu-filter:hover {
	border-color: var(--drvu-secondary) !important;
}

body.drvu-videos-page .drvu-page .button.drvu-filter.is-active {
	background: var(--drvu-secondary) !important;
	border-color: var(--drvu-secondary) !important;
	color: var(--drvu-on-secondary) !important;
}

/* Video cards */
body.drvu-videos-page .col.drvu-vcard {
	display: flex;
	margin-bottom: 24px;
}

body.drvu-videos-page .col.drvu-vcard > .col-inner {
	display: flex;
	flex-direction: column;
	width: 100%;
	height: 100%;
	padding: 0 0 24px;
	background: #fff;
	border-radius: var(--drvu-radius-lg);
	overflow: hidden;
	box-shadow: var(--drvu-shadow-card);
}

body.drvu-videos-page .col.drvu-vcard--feat > .col-inner {
	padding-bottom: 32px;
}

body.drvu-videos-page .col.drvu-vcard .img,
body.drvu-videos-page .col.drvu-vcard .img-inner {
	position: relative;
	margin: 0;
	overflow: hidden;
}

body.drvu-videos-page .col.drvu-vcard .image-cover {
	padding-top: 56.25% !important;
	height: 0;
	position: relative;
}

body.drvu-videos-page .col.drvu-vcard .image-cover img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	max-width: none;
	object-fit: cover;
	transition: transform 0.5s ease;
}

body.drvu-videos-page .col.drvu-vcard:hover .image-cover img {
	transform: scale(1.05);
}

body.drvu-videos-page .col.drvu-vcard .img::after {
	content: "play_arrow";
	font-family: "Material Symbols Outlined";
	position: absolute;
	top: 50%;
	left: 50%;
	z-index: 2;
	width: 48px;
	height: 48px;
	margin: -24px 0 0 -24px;
	border-radius: var(--drvu-radius-full);
	background: #fff;
	color: var(--drvu-primary);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 24px;
	font-variation-settings: "FILL" 1, "wght" 400, "GRAD" 0, "opsz" 24;
	font-feature-settings: "liga";
	box-shadow: var(--drvu-shadow-md);
	opacity: 0;
	transform: scale(0.9);
	transition: opacity 0.3s ease, transform 0.3s ease;
	pointer-events: none;
}

body.drvu-videos-page .col.drvu-vcard--feat .img::after {
	width: 80px;
	height: 80px;
	margin: -40px 0 0 -40px;
	font-size: 36px;
}

body.drvu-videos-page .col.drvu-vcard:hover .img::after {
	opacity: 1;
	transform: scale(1);
}

body.drvu-videos-page .col.drvu-vcard--feat .img::before {
	content: "Nổi bật";
	position: absolute;
	top: 16px;
	left: 16px;
	z-index: 2;
	padding: 4px 12px;
	border-radius: var(--drvu-radius-full);
	background: var(--drvu-secondary);
	color: var(--drvu-on-secondary);
	font: var(--drvu-caption);
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

body.drvu-videos-page .col.drvu-vcard .drvu-vcard__meta,
body.drvu-videos-page .col.drvu-vcard h3,
body.drvu-videos-page .col.drvu-vcard > .col-inner > p:not(.drvu-vcard__meta) {
	margin-left: 24px;
	margin-right: 24px;
}

body.drvu-videos-page .col.drvu-vcard--feat .drvu-vcard__meta,
body.drvu-videos-page .col.drvu-vcard--feat h3,
body.drvu-videos-page .col.drvu-vcard--feat > .col-inner > p:not(.drvu-vcard__meta) {
	margin-left: 32px;
	margin-right: 32px;
}

body.drvu-videos-page .col.drvu-vcard .drvu-vcard__meta {
	margin-top: 24px;
	margin-bottom: 8px;
	font: var(--drvu-label-md);
	color: var(--drvu-secondary);
}

body.drvu-videos-page .col.drvu-vcard--feat h3 {
	font: var(--drvu-headline-lg);
	margin-bottom: 16px;
}

body.drvu-videos-page .col.drvu-vcard > .col-inner > p:not(.drvu-vcard__meta) {
	margin-bottom: 0;
}

body.drvu-videos-page .col.drvu-vcard.is-hidden {
	display: none;
}

body.drvu-videos-page .drvu-page .button.drvu-btn-more {
	margin: 40px auto 0;
	display: inline-flex !important;
	float: none !important;
	background: transparent !important;
	border: 2px solid var(--drvu-primary) !important;
	color: var(--drvu-primary) !important;
	padding: 16px 32px;
}

body.drvu-videos-page .drvu-page .button.drvu-btn-more:hover {
	background: var(--drvu-primary) !important;
	color: var(--drvu-on-primary) !important;
}

body.drvu-videos-page .drvu-page .button.drvu-btn-more::before {
	content: "refresh";
	font-family: "Material Symbols Outlined";
	font-size: 18px;
	font-variation-settings: "FILL" 0, "wght" 400, "GRAD" 0, "opsz" 24;
	font-feature-settings: "liga";
}

/* Subscribe band */
body.drvu-videos-page .drvu-vid-news h2 {
	color: var(--drvu-on-primary);
}

body.drvu-videos-page .drvu-vid-news p {
	color: rgba(255, 255, 255, 0.8);
	margin-bottom: 0;
}

@media (max-width: 849px) {
	body.drvu-videos-page .col.drvu-vcard--feat h3 {
		font: var(--drvu-headline-md);
	}

	body.drvu-videos-page .col.drvu-vcard .drvu-vcard__meta,
	body.drvu-videos-page .col.drvu-vcard h3,
	body.drvu-videos-page .col.drvu-vcard > .col-inner > p:not(.drvu-vcard__meta),
	body.drvu-videos-page .col.drvu-vcard--feat .drvu-vcard__meta,
	body.drvu-videos-page .col.drvu-vcard--feat h3,
	body.drvu-videos-page .col.drvu-vcard--feat > .col-inner > p:not(.drvu-vcard__meta) {
		margin-left: 20px;
		margin-right: 20px;
	}
}
/* ==========================================================================
   VIDEO PAGE - BANNER HERO & VIDEO LAYOUT
   ========================================================================== */
.drvu-vid-hero {
    background: #f7fafc !important;
    overflow: hidden;
}

.drvu-vid-hero-container {
    max-width: none;
    width: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    box-sizing: border-box;
}

@media (min-width: 960px) {
    .drvu-vid-hero-container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
}

.drvu-vid-hero-left {
    flex: 1;
    max-width: 580px;
}

.drvu-vid-hero-kicker {
    display: inline-block;
    color: #006a63;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.drvu-vid-hero-title {
    font-family: var(--drvu-font) !important;
    font-size: 36px !important;
    font-weight: 800 !important;
    color: #002045 !important;
    line-height: 1.25 !important;
    margin: 0 0 16px 0 !important;
}

@media (min-width: 960px) {
    .drvu-vid-hero-title {
        font-size: 46px !important;
    }
}

.drvu-vid-hero-desc {
    font-size: 16px !important;
    line-height: 1.65 !important;
    color: #43474e !important;
    margin-bottom: 28px !important;
}

.drvu-vid-hero-badges {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.drvu-badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 18px;
    background: #ffffff;
    border: 1px solid rgba(0, 32, 69, 0.1);
    border-radius: 9999px;
    font-size: 14px;
    font-weight: 600;
    color: #002045;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.drvu-badge-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
}

.drvu-badge-icon--teal {
    background: rgba(0, 106, 99, 0.12);
    color: #006a63;
}

.drvu-badge-icon--blue {
    background: rgba(0, 32, 69, 0.1);
    color: #002045;
}

/* Hero Right: Doctor Portrait with Floating Elements */
.drvu-vid-hero-right {
    flex: 1;
    display: flex;
    justify-content: center;
    position: relative;
    max-width: 520px;
    width: 100%;
}

.drvu-doctor-card-wrapper {
    position: relative;
    width: 100%;
    max-width: 440px;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.drvu-doctor-blob {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 380px;
    height: 380px;
    background: radial-gradient(circle, rgba(121, 247, 234, 0.35) 0%, rgba(214, 227, 255, 0.4) 60%, transparent 80%);
    border-radius: 60% 40% 70% 30% / 50% 60% 40% 50%;
    z-index: 1;
    animation: drvuMorph 10s ease-in-out infinite alternate;
}

@keyframes drvuMorph {
    0% { border-radius: 60% 40% 70% 30% / 50% 60% 40% 50%; }
    100% { border-radius: 40% 60% 30% 70% / 60% 40% 60% 40%; }
}

.drvu-doctor-portrait {
    position: relative;
    z-index: 2;
    max-height: 440px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 15px 25px rgba(0, 32, 69, 0.12));
}

/* Floating Badges */
.drvu-floating-card {
    position: absolute;
    z-index: 3;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 16px;
    padding: 12px 16px;
    box-shadow: 0 10px 25px rgba(0, 32, 69, 0.08);
    display: flex;
    align-items: center;
    gap: 12px;
}

.drvu-floating-card--left {
    top: 25%;
    left: -15px;
}

.drvu-floating-card--right {
    bottom: 20%;
    right: -10px;
}

.drvu-floating-play-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #006a63;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 106, 99, 0.3);
}

.drvu-shield-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: #e6f6f4;
    color: #006a63;
    display: flex;
    align-items: center;
    justify-content: center;
}

.drvu-floating-text {
    display: flex;
    flex-direction: column;
}

.drvu-floating-text strong {
    font-size: 13px;
    color: #002045;
}

.drvu-floating-text span {
    font-size: 11.5px;
    color: #74777f;
}

.drvu-doctor-tag {
    position: absolute;
    bottom: 35%;
    right: 20%;
    background: #ffffff;
    padding: 6px 14px;
    border-radius: 8px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
    z-index: 3;
    display: flex;
    flex-direction: column;
}

.drvu-doctor-tag strong {
    font-size: 12px;
    color: #002045;
}

.drvu-doctor-tag span {
    font-size: 10px;
    color: #74777f;
}

/* ==========================================================================
   VIDEO LIBRARY GRID & TABS
   ========================================================================== */
.drvu-video-library-wrapper {
    max-width: none;
    width: 100%;
    margin: 0;
}

/* Tabs */
.drvu-vid-filter-bar {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 36px;
    overflow-x: auto;
    padding-bottom: 8px;
}

.drvu-tab-btn {
    padding: 10px 22px;
    border-radius: 9999px;
    font-size: 14.5px;
    font-weight: 600;
    color: #002045;
    background: #ffffff;
    border: 1px solid #e0e3e5;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.2s ease;
}

.drvu-tab-btn:hover {
    border-color: #006a63;
    color: #006a63;
}

.drvu-tab-btn.is-active {
    background: #006a63 !important;
    color: #ffffff !important;
    border-color: #006a63 !important;
    box-shadow: 0 4px 12px rgba(0, 106, 99, 0.25);
}

/* Top Grid (Featured Left + Side Right) */
.drvu-vid-top-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 36px;
}

@media (min-width: 850px) {
    .drvu-vid-top-grid {
        grid-template-columns: 62% 38%;
    }
}

/* Featured Video Card (Left) */
.drvu-feat-video-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 32, 69, 0.06);
    border: 1px solid rgba(0, 32, 69, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.drvu-feat-video-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 32px rgba(0, 32, 69, 0.1);
}

.drvu-feat-video-card__media {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    background: #181c1e;
    overflow: hidden;
}

.drvu-feat-video-card__media img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.drvu-feat-video-card:hover .drvu-feat-video-card__media img {
    transform: scale(1.03);
}

.drvu-feat-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: #006a63;
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 14px;
    border-radius: 9999px;
    z-index: 2;
}

.drvu-play-circle-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.85);
    color: #002045;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    transition: all 0.3s ease;
}

.drvu-feat-video-card:hover .drvu-play-circle-center {
    background: #ffffff;
    color: #006a63;
    transform: translate(-50%, -50%) scale(1.1);
}

.drvu-feat-video-card__info {
    padding: 20px 24px;
}

.drvu-vid-tag {
    color: #006a63;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 6px;
}

.drvu-feat-video-card__title {
    font-size: 20px !important;
    font-weight: 700 !important;
    color: #002045 !important;
    margin: 0 0 8px 0 !important;
}

/* Side Video Card (Right) */
.drvu-side-video-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 32, 69, 0.06);
    border: 1px solid rgba(0, 32, 69, 0.06);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.drvu-side-video-card__media {
    position: relative;
    width: 100%;
    padding-top: 60%;
    background: #181c1e;
    overflow: hidden;
}

.drvu-side-video-card__media img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.drvu-play-circle-sm {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.85);
    color: #002045;
    display: flex;
    align-items: center;
    justify-content: center;
}

.drvu-side-video-card__info {
    padding: 18px 20px;
    flex: 1;
}

.drvu-side-video-card__title {
    font-size: 16.5px !important;
    font-weight: 700 !important;
    color: #002045 !important;
    margin: 0 0 6px 0 !important;
}

.drvu-vid-meta {
    font-size: 13px;
    color: #74777f;
}

/* Sub Grid 3 Cards */
.drvu-vid-sub-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 24px;
}

@media (min-width: 768px) {
    .drvu-vid-sub-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.drvu-sub-video-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 6px 18px rgba(0, 32, 69, 0.05);
    border: 1px solid rgba(0, 32, 69, 0.06);
    transition: transform 0.25s ease;
}

.drvu-sub-video-card:hover {
    transform: translateY(-3px);
}

.drvu-sub-video-card__media {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    background: #181c1e;
}

.drvu-sub-video-card__media img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.drvu-sub-video-card__info {
    padding: 16px 18px;
}

.drvu-sub-video-card__title {
    font-size: 15.5px !important;
    font-weight: 700 !important;
    color: #002045 !important;
    margin: 0 0 6px 0 !important;
    line-height: 1.4 !important;
}

/* ==========================================================================
   VIDEO LIBRARY — STITCH SAMPLE MATCH + HERO RIGHT
   ========================================================================== */
body.drvu-videos-page .drvu-vid-hero.section {
	padding-top: 48px !important;
	padding-bottom: 48px !important;
}

body.drvu-videos-page.admin-bar .drvu-vid-hero.section {
	padding-top: 48px !important;
}

.drvu-hero-scan {
	position: absolute;
	top: 8%;
	right: -6%;
	width: 58%;
	max-width: 280px;
	height: auto;
	border-radius: 18px;
	object-fit: cover;
	opacity: 0.28;
	z-index: 1;
	filter: saturate(0.85);
	pointer-events: none;
}

.drvu-floating-play {
	position: absolute;
	z-index: 4;
	top: 58%;
	left: 4%;
	width: 56px;
	height: 56px;
	border-radius: 50%;
	background: #006a63;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 8px 20px rgba(0, 106, 99, 0.35);
}

.drvu-floating-ico {
	width: 40px;
	height: 40px;
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.drvu-floating-ico--mint {
	background: #e6f6f4;
}

.drvu-vid-section {
	background: #f7fafc !important;
}

body.drvu-videos-page .drvu-vid-section.section {
	padding-top: 28px !important;
}

.drvu-vid-bento {
	margin-top: 8px;
}

.drvu-video-library-wrapper {
	max-width: none;
	width: 100%;
	margin: 0;
}

.drvu-vid-filter-bar {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: flex-start;
	gap: 12px;
	margin-bottom: 48px;
}

.drvu-tab-btn {
	margin: 0;
	padding: 8px 24px;
	border-radius: 9999px;
	font-family: var(--drvu-font);
	font-size: 14px;
	font-weight: 600;
	letter-spacing: 0.05em;
	line-height: 1.2;
	color: #181c1e;
	background: #ffffff;
	border: 1px solid #c4c6cf;
	cursor: pointer;
	white-space: nowrap;
	box-shadow: none;
	transition: border-color 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.drvu-tab-btn:hover {
	border-color: #006a63;
	color: #006a63;
}

.drvu-tab-btn.is-active {
	background: #006a63 !important;
	color: #ffffff !important;
	border-color: #006a63 !important;
}

.drvu-vid-bento {
	display: grid;
	grid-template-columns: 1fr;
	gap: 24px;
}

@media (min-width: 850px) {
	.drvu-vid-bento {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.drvu-vlib-card--feat {
		grid-column: span 2;
	}
}

.drvu-vlib-card {
	background: #ffffff;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.drvu-vlib-card:hover {
	transform: translateY(-2px);
	box-shadow: 0 10px 28px rgba(0, 32, 69, 0.08);
}

.drvu-vlib-card.is-hidden,
.drvu-vlib-card.is-extra {
	display: none !important;
}

.drvu-vlib-more-wrap {
	margin-top: 48px;
	display: flex;
	justify-content: center;
}

.drvu-vlib-more-wrap.is-hidden {
	display: none !important;
}

.drvu-vlib-more-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	padding: 14px 36px;
	border-radius: 10px;
	font-family: var(--drvu-font);
	font-size: 15px;
	font-weight: 600;
	letter-spacing: 0.03em;
	color: #002045;
	background: #ffffff;
	border: 2px solid #002045;
	cursor: pointer;
	box-shadow: 0 2px 8px rgba(0, 32, 69, 0.06);
	transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.drvu-vlib-more-btn .material-symbols-outlined {
	font-size: 20px;
	transition: transform 0.4s ease;
}

.drvu-vlib-more-btn:hover {
	background: #002045;
	color: #ffffff;
	transform: translateY(-2px);
	box-shadow: 0 8px 24px rgba(0, 32, 69, 0.18);
}

.drvu-vlib-more-btn:hover .material-symbols-outlined {
	transform: rotate(180deg);
}

.drvu-vlib-more-btn:active {
	transform: translateY(0);
}

@keyframes drvuFadeIn {
	from {
		opacity: 0;
		transform: translateY(12px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.animate-fade-in {
	animation: drvuFadeIn 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.drvu-vlib-card__link {
	display: flex;
	flex-direction: column;
	height: 100%;
	color: inherit;
	text-decoration: none !important;
}

.drvu-vlib-card__media {
	position: relative;
	width: 100%;
	padding-top: 56.25%;
	background: #181c1e;
	overflow: hidden;
}

.drvu-vlib-card__media img,
.drvu-vid-thumb-empty {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}

.drvu-vid-thumb-empty {
	background: linear-gradient(135deg, #002045 0%, #006a63 100%);
}

.drvu-vlib-card:hover .drvu-vlib-card__media img {
	transform: scale(1.05);
}

.drvu-feat-badge {
	position: absolute;
	top: 16px;
	left: 16px;
	z-index: 2;
	background: #006a63;
	color: #ffffff;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	padding: 4px 12px;
	border-radius: 9999px;
}

.drvu-vlib-card__dur {
	position: absolute;
	right: 12px;
	bottom: 12px;
	z-index: 2;
	padding: 4px 8px;
	border-radius: 6px;
	background: rgba(0, 0, 0, 0.72);
	color: #fff;
	font: 700 12px/1 var(--drvu-font);
}

.drvu-vlib-card__play {
	position: absolute;
	top: 50%;
	left: 50%;
	z-index: 2;
	width: 48px;
	height: 48px;
	margin: 0;
	border-radius: 50%;
	background: #fff;
	color: #002045;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
	opacity: 0;
	transform: translate(-50%, -50%) scale(0.9);
	transition: opacity 0.3s ease, transform 0.3s ease;
	pointer-events: none;
}

.drvu-vlib-card--feat .drvu-vlib-card__play {
	width: 80px;
	height: 80px;
}

.drvu-vlib-card:hover .drvu-vlib-card__play {
	opacity: 1;
	transform: translate(-50%, -50%) scale(1);
}

.drvu-vlib-card__play .material-symbols-outlined {
	font-size: 28px;
	font-variation-settings: "FILL" 1, "wght" 400, "GRAD" 0, "opsz" 24;
}

.drvu-vlib-card--feat .drvu-vlib-card__play .material-symbols-outlined {
	font-size: 40px;
}

.drvu-vlib-card__info {
	padding: 24px;
}

.drvu-vlib-card--feat .drvu-vlib-card__info {
	padding: 32px;
}

.drvu-vlib-card__meta {
	display: flex;
	align-items: center;
	gap: 8px;
	margin: 0 0 8px;
	flex-wrap: wrap;
}

.drvu-vid-tag {
	color: #006a63;
	font-size: 14px;
	font-weight: 600;
	letter-spacing: 0.05em;
	text-transform: none;
	margin: 0;
}

.drvu-vlib-card__dot,
.drvu-vid-duration {
	color: #74777f;
	font-size: 12px;
	line-height: 1.4;
}

.drvu-vlib-card__title {
	font-family: var(--drvu-font) !important;
	font-weight: 600 !important;
	color: #002045 !important;
	margin: 0 0 8px !important;
	line-height: 1.4 !important;
}

.drvu-vlib-card--feat .drvu-vlib-card__title {
	font-size: 32px !important;
	line-height: 1.3 !important;
	margin-bottom: 16px !important;
}

.drvu-vlib-card:not(.drvu-vlib-card--feat) .drvu-vlib-card__title {
	font-size: 24px !important;
}

.drvu-vlib-card__excerpt {
	margin: 0;
	color: #43474e;
	font-size: 16px;
	line-height: 1.6;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

@media (max-width: 849px) {
	.drvu-vid-filter-bar {
		justify-content: center;
		margin-bottom: 32px;
	}

	.drvu-vlib-card--feat .drvu-vlib-card__title {
		font-size: 24px !important;
	}

	.drvu-vlib-card:not(.drvu-vlib-card--feat) .drvu-vlib-card__title {
		font-size: 20px !important;
	}

	.drvu-vlib-card__info,
	.drvu-vlib-card--feat .drvu-vlib-card__info {
		padding: 20px;
	}

	.drvu-floating-card--left {
		left: 0;
	}

	.drvu-floating-card--right {
		right: 0;
	}

	.drvu-hero-scan {
		display: none;
	}
}
