            /* ========================================
               BLOG LIST PAGE STYLES
               ======================================== */

            /* ===== ACTIVE / INACTIVE POST TOGGLE ===== */
            .blog-post-card[data-active="false"] {
                display: none !important;
            }

            /* --- Section Header --- */
            .blog-section-header {
            	margin: 0 0 30px 0;
            	padding: 0 0 16px 0;
            	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
            }

            .blog-section-header p {
            	margin: 8px 0 0 0;
            	font-size: 14px;
            	color: #777777;
            	line-height: 1.6;
            }


            /* ===== CATEGORY FILTER DROPDOWN ===== */
            .blog-filter-bar {
                position: relative;
                z-index: 50;
                background: transparent;
                margin: 0 0 32px 0;
                padding: 0;
                border-bottom: 0;
            }
            .filter-dropdown-wrap {
                position: relative;
                display: inline-block;
                min-width: 280px;
            }
            .filter-dropdown-trigger {
                display: flex;
                align-items: center;
                justify-content: space-between;
                gap: 12px;
                padding: 10px 18px;
                font-family: 'Poppins';
                font-size: 13px;
                font-weight: 600;
                color: #ffffff;
                background: rgba(255, 255, 255, 0.07);
                border: 1px solid rgba(255, 255, 255, 0.12);
                border-radius: 10px;
                cursor: pointer;
                transition: all 0.25s ease;
                user-select: none;
            }
            .filter-dropdown-trigger:hover {
                background: rgba(255, 255, 255, 0.1);
                border-color: rgba(255, 255, 255, 0.2);
            }
            .filter-dropdown-trigger.open {
                background: rgba(90, 194, 78, 0.12);
                border-color: rgba(90, 194, 78, 0.35);
                border-radius: 10px 10px 0 0;
            }
            .filter-dropdown-trigger .trigger-label { flex: 1; }
            .filter-dropdown-trigger .trigger-arrow {
                font-size: 16px;
                color: #777;
                transition: transform 0.25s ease;
                flex-shrink: 0;
            }
            .filter-dropdown-trigger.open .trigger-arrow {
                transform: rotate(180deg);
                color: #5ac24e;
            }
            .filter-dropdown-menu {
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: #1e1f23;
                border: 1px solid rgba(255, 255, 255, 0.12);
                border-top: none;
                border-radius: 0 0 10px 10px;
                z-index: 200;
                overflow-x: hidden;
                overflow-y: auto;
                max-height: 0;
                opacity: 0;
                transition: max-height 0.3s ease, opacity 0.25s ease;
                pointer-events: none;
                box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
                scrollbar-width: thin;
                scrollbar-color: rgba(90, 194, 78, 0.55) rgba(255, 255, 255, 0.06);
            }
            .filter-dropdown-menu.open {
                max-height: min(520px, calc(100vh - 220px));
                opacity: 1;
                pointer-events: auto;
            }
            .filter-dropdown-menu::-webkit-scrollbar {
                width: 8px;
            }
            .filter-dropdown-menu::-webkit-scrollbar-track {
                background: rgba(255, 255, 255, 0.06);
            }
            .filter-dropdown-menu::-webkit-scrollbar-thumb {
                background: rgba(90, 194, 78, 0.55);
                border-radius: 8px;
            }
            .filter-dropdown-menu::-webkit-scrollbar-thumb:hover {
                background: rgba(90, 194, 78, 0.75);
            }
            .filter-dropdown-menu .filter-option {
                display: flex;
                align-items: center;
                gap: 10px;
                padding: 10px 18px;
                font-family: 'Poppins';
                font-size: 13px;
                font-weight: 500;
                color: #a9a9a9;
                cursor: pointer;
                transition: background 0.15s ease, color 0.15s ease;
                border-bottom: 1px solid rgba(255, 255, 255, 0.04);
            }
            .filter-dropdown-menu .filter-option:last-child { border-bottom: none; }
            .filter-dropdown-menu .filter-option:hover {
                background: rgba(255, 255, 255, 0.05);
                color: #ffffff;
            }
            .filter-dropdown-menu .filter-option.active {
                color: #5ac24e;
                background: rgba(90, 194, 78, 0.08);
            }
            .filter-dropdown-menu .filter-option .option-dot {
                width: 8px;
                height: 8px;
                border-radius: 50%;
                flex-shrink: 0;
                background: rgba(255, 255, 255, 0.15);
                transition: background 0.2s ease;
            }
            .filter-dropdown-menu .filter-option.active .option-dot { background: #5ac24e; }

            /* Per-category dot colors */
            .filter-dropdown-menu .filter-option[data-filter="ai"] .option-dot { background: rgba(167,139,250,0.35); }
            .filter-dropdown-menu .filter-option[data-filter="ai"].active .option-dot { background: #a78bfa; }
            .filter-dropdown-menu .filter-option[data-filter="audio"] .option-dot { background: rgba(0,200,255,0.35); }
            .filter-dropdown-menu .filter-option[data-filter="audio"].active .option-dot { background: #00c8ff; }
            .filter-dropdown-menu .filter-option[data-filter="creative"] .option-dot { background: rgba(100,216,203,0.35); }
            .filter-dropdown-menu .filter-option[data-filter="creative"].active .option-dot { background: #64d8cb; }
            .filter-dropdown-menu .filter-option[data-filter="crush"] .option-dot { background: rgba(255,80,150,0.35); }
            .filter-dropdown-menu .filter-option[data-filter="crush"].active .option-dot { background: #ff5096; }
            .filter-dropdown-menu .filter-option[data-filter="design"] .option-dot { background: rgba(244,114,182,0.35); }
            .filter-dropdown-menu .filter-option[data-filter="design"].active .option-dot { background: #f472b6; }
            .filter-dropdown-menu .filter-option[data-filter="gaming"] .option-dot { background: rgba(123,237,159,0.35); }
            .filter-dropdown-menu .filter-option[data-filter="gaming"].active .option-dot { background: #7bed9f; }
            .filter-dropdown-menu .filter-option[data-filter="geek"] .option-dot { background: rgba(192,132,252,0.35); }
            .filter-dropdown-menu .filter-option[data-filter="geek"].active .option-dot { background: #c084fc; }
            .filter-dropdown-menu .filter-option[data-filter="me-stuff"] .option-dot { background: rgba(251,191,36,0.35); }
            .filter-dropdown-menu .filter-option[data-filter="me-stuff"].active .option-dot { background: #fbbf24; }
            .filter-dropdown-menu .filter-option[data-filter="movies"] .option-dot { background: rgba(239,68,68,0.35); }
            .filter-dropdown-menu .filter-option[data-filter="movies"].active .option-dot { background: #ef4444; }
            .filter-dropdown-menu .filter-option[data-filter="music"] .option-dot { background: rgba(129,140,248,0.35); }
            .filter-dropdown-menu .filter-option[data-filter="music"].active .option-dot { background: #818cf8; }
            .filter-dropdown-menu .filter-option[data-filter="playlist"] .option-dot { background: rgba(45,212,191,0.35); }
            .filter-dropdown-menu .filter-option[data-filter="playlist"].active .option-dot { background: #2dd4bf; }
            .filter-dropdown-menu .filter-option[data-filter="podcast"] .option-dot { background: rgba(251,146,60,0.35); }
            .filter-dropdown-menu .filter-option[data-filter="podcast"].active .option-dot { background: #fb923c; }
            .filter-dropdown-menu .filter-option[data-filter="quote"] .option-dot { background: rgba(180,100,255,0.35); }
            .filter-dropdown-menu .filter-option[data-filter="quote"].active .option-dot { background: #b464ff; }
            .filter-dropdown-menu .filter-option[data-filter="rant"] .option-dot { background: rgba(255,107,53,0.35); }
            .filter-dropdown-menu .filter-option[data-filter="rant"].active .option-dot { background: #ff6b35; }
            .filter-dropdown-menu .filter-option[data-filter="tech"] .option-dot { background: rgba(69,183,209,0.35); }
            .filter-dropdown-menu .filter-option[data-filter="tech"].active .option-dot { background: #45b7d1; }
            .filter-dropdown-menu .filter-option[data-filter="tv-shows"] .option-dot { background: rgba(163,230,53,0.35); }
            .filter-dropdown-menu .filter-option[data-filter="tv-shows"].active .option-dot { background: #a3e635; }
            .filter-dropdown-menu .filter-option[data-filter="video"] .option-dot { background: rgba(255,80,80,0.35); }
            .filter-dropdown-menu .filter-option[data-filter="video"].active .option-dot { background: #ff5050; }
            .filter-dropdown-menu .filter-option[data-filter="writing"] .option-dot { background: rgba(212,165,116,0.35); }
            .filter-dropdown-menu .filter-option[data-filter="writing"].active .option-dot { background: #d4a574; }


            /* ===== BLOG POST CARD (shared base) ===== */
            .blog-post-card {
            	margin: 0 0 32px 0;
            	background: rgba(255, 255, 255, 0.05);
            	box-shadow: 0 0 50px rgba(0, 0, 0, 0.2);
            	border-radius: 18px;
            	overflow: hidden;
            	transition: all 0.4s ease, opacity 0.35s ease, transform 0.35s ease;
            }

            .blog-post-card:hover {
            	box-shadow: 0 15px 55px rgba(0, 0, 0, 0.3);
            }



            /* ===== 3-COLUMN POST GRID ===== */
            .blog-posts-grid {
            	display: grid;
            	grid-template-columns: 1fr;
            	gap: 24px;
            	margin: 0 0 32px 0;
            }

            .blog-posts-grid .blog-post-card {
            	margin: 0;
            }

            /* Hide grid entirely when all children are hidden (filter) */
            .blog-posts-grid:not(:has(.blog-post-card.is-visible)) {
            	display: none;
            }

            /* Responsive: 2-col on tablet */


            	.blog-post-card.post-featured {
            		flex-direction: column;
            	}

            	.blog-post-card.post-featured .post-media,
            	.blog-post-card.post-featured .inline-player {
            		width: 100%;
            		min-height: 0;
            	}

            	.blog-post-card.post-featured .inline-player {
            		padding-top: 0;
            	}

            	.blog-post-card.post-featured .media-close-btn {
            		left: auto;
            		right: 12px;
            	}

            /* Responsive: 1-col on mobile */
            @media (max-width: 600px) {
            	.blog-posts-grid {
            		grid-template-columns: 1fr;
            	}
            }

            /* Filter animation */
            .blog-post-card.is-hidden {
            	display: none;
            	opacity: 0;
            	transform: translateY(12px) scale(0.97);
            	max-height: 0;
            	margin: 0;
            	overflow: hidden;
            	pointer-events: none;
            }

            .blog-post-card.is-visible {
            	display: block;
            	opacity: 1;
            	transform: translateY(0) scale(1);
            	max-height: 5000px;
            }

            /* Category accent stripe */
            .blog-post-card .cat-stripe {
            	height: 4px;
            	width: 100%;
            }

            .blog-post-card[data-primary-cat="ai"] .cat-stripe         { background: #a78bfa; }
            .blog-post-card[data-primary-cat="audio"] .cat-stripe      { background: #00c8ff; }
            .blog-post-card[data-primary-cat="creative"] .cat-stripe   { background: #64d8cb; }
            .blog-post-card[data-primary-cat="crush"] .cat-stripe      { background: #ff5096; }
            .blog-post-card[data-primary-cat="design"] .cat-stripe     { background: #f472b6; }
            .blog-post-card[data-primary-cat="gaming"] .cat-stripe     { background: #7bed9f; }
            .blog-post-card[data-primary-cat="geek"] .cat-stripe       { background: #c084fc; }
            .blog-post-card[data-primary-cat="me-stuff"] .cat-stripe   { background: #fbbf24; }
            .blog-post-card[data-primary-cat="movies"] .cat-stripe     { background: #ef4444; }
            .blog-post-card[data-primary-cat="music"] .cat-stripe      { background: #818cf8; }
            .blog-post-card[data-primary-cat="playlist"] .cat-stripe   { background: #2dd4bf; }
            .blog-post-card[data-primary-cat="podcast"] .cat-stripe    { background: #fb923c; }
            .blog-post-card[data-primary-cat="quote"] .cat-stripe      { background: #b464ff; }
            .blog-post-card[data-primary-cat="rant"] .cat-stripe       { background: #ff6b35; }
            .blog-post-card[data-primary-cat="tech"] .cat-stripe       { background: #45b7d1; }
            .blog-post-card[data-primary-cat="tv-shows"] .cat-stripe   { background: #a3e635; }
            .blog-post-card[data-primary-cat="video"] .cat-stripe      { background: #ff5050; }
            .blog-post-card[data-primary-cat="writing"] .cat-stripe    { background: #d4a574; }


            /* ===== MEDIA AREA (fluid height — image dictates aspect ratio) ===== */
            .blog-post-card .post-media {
            	position: relative;
            	width: 100%;
            	background: #262628;
            	overflow: hidden;
            	cursor: pointer;
            }

            .blog-post-card .post-media img,
            .blog-post-card .post-media video {
            	width: 100%;
            	height: auto;
            	display: block;
            	transition: transform 0.5s ease;
            }

            .blog-post-card:hover .post-media img,
            .blog-post-card:hover .post-media video {
            	transform: scale(1.03);
            }

            .blog-post-card[data-type="iframe-embed"] .post-media {
                cursor: default;
            }

            .blog-post-card .music-embed-wrap {
                position: relative;
                width: 100%;
                aspect-ratio: 16 / 9;
                background: #111;
            }

            .blog-post-card .music-embed-wrap iframe {
                position: absolute;
                inset: 0;
                width: 100%;
                height: 100%;
                border: none;
                display: block;
            }

            /* Type icon overlay */
            .blog-post-card .post-media .media-overlay {
            	position: absolute;
            	top: 0;
            	left: 0;
            	width: 100%;
            	height: 100%;
            	display: flex;
            	align-items: center;
            	justify-content: center;
            	background: rgba(24, 24, 24, 0.3);
            	transition: background 0.3s ease;
            	z-index: 3;
            }

            .blog-post-card:hover .post-media .media-overlay {
            	background: rgba(24, 24, 24, 0.5);
            }

            .blog-post-card .post-media .media-overlay .play-btn {
            	width: 72px;
            	height: 72px;
            	border-radius: 50%;
            	background: rgba(90, 194, 78, 0.9);
            	display: flex;
            	align-items: center;
            	justify-content: center;
            	box-shadow: 0 4px 30px rgba(90, 194, 78, 0.35);
            	transition: all 0.3s ease;
            }

            .blog-post-card:hover .post-media .media-overlay .play-btn {
            	transform: scale(1.1);
            }

            .blog-post-card .post-media .media-overlay .play-btn .icon {
            	font-size: 28px;
            	color: #ffffff;
            	margin-left: 4px;
            }

            /* Gallery overlay uses search icon */
            .blog-post-card .post-media .media-overlay .gallery-btn {
            	width: 72px;
            	height: 72px;
            	border-radius: 50%;
            	background: rgba(255, 255, 255, 0.15);
            	display: flex;
            	align-items: center;
            	justify-content: center;
            	backdrop-filter: blur(4px);
            	transition: all 0.3s ease;
            }

            .blog-post-card:hover .post-media .media-overlay .gallery-btn {
            	transform: scale(1.1);
            	background: rgba(255, 255, 255, 0.25);
            }

            .blog-post-card .post-media .media-overlay .gallery-btn .icon {
            	font-size: 28px;
            	color: #ffffff;
            }

            .blog-post-card .post-media .media-overlay .slideup-btn {
                width: 72px;
                height: 72px;
                border-radius: 50%;
                background: rgba(90, 194, 78, 0.92);
                display: flex;
                align-items: center;
                justify-content: center;
                box-shadow: 0 4px 30px rgba(90, 194, 78, 0.35);
                transition: all 0.3s ease;
            }

            .blog-post-card:hover .post-media .media-overlay .slideup-btn {
                transform: translateY(-4px) scale(1.08);
                background: rgba(90, 194, 78, 1);
            }

            .blog-post-card .post-media .media-overlay .slideup-btn .icon {
                font-size: 30px;
                color: #ffffff;
            }

            .slideup-hidden-label {
                position: absolute;
                width: 1px;
                height: 1px;
                margin: -1px;
                padding: 0;
                border: 0;
                overflow: hidden;
                clip: rect(0 0 0 0);
            }

            .blog-post-slideup .blog-slideup-panel {
                margin: 0;
                background: var(--td-surface, #1f1f23);
                border-top: 1px solid rgba(255, 255, 255, 0.08);
            }

            .blog-post-slideup .blog-slideup-panel.is-visible {
                animation: blog-slideup-in 0.35s ease;
            }

            @keyframes blog-slideup-in {
                from {
                    opacity: 0;
                    transform: translateY(24px);
                }

                to {
                    opacity: 1;
                    transform: translateY(0);
                }
            }

            .blog-slideup-bar {
                min-height: 58px;
                padding: 12px 16px;
                display: flex;
                align-items: center;
                justify-content: space-between;
                gap: 16px;
                background: rgba(18, 18, 20, 0.96);
                border-bottom: 1px solid rgba(255, 255, 255, 0.08);
                position: sticky;
                top: 0;
                z-index: 4;
            }

            .blog-slideup-bar strong {
                display: block;
                color: #ffffff;
                font-family: "Poppins";
                font-size: 13px;
                font-weight: 600;
                line-height: 1.3;
            }

            .blog-slideup-kicker {
                display: block;
                color: var(--td-accent, #5ac24e);
                font-family: "Poppins";
                font-size: 10px;
                font-weight: 700;
                line-height: 1.2;
                text-transform: uppercase;
            }

            .blog-slideup-close {
                width: 36px;
                height: 36px;
                border: 1px solid rgba(255, 255, 255, 0.1);
                border-radius: 50%;
                background: rgba(255, 255, 255, 0.06);
                color: #ffffff;
                display: flex;
                align-items: center;
                justify-content: center;
                cursor: pointer;
                transition: all 0.2s ease;
                flex: 0 0 auto;
            }

            .blog-slideup-close:hover {
                background: var(--td-danger, #e05555);
                border-color: var(--td-danger, #e05555);
            }

            .blog-slideup-close .icon {
                font-size: 18px;
            }

            .blog-post-slideup .blog-slideup-panel iframe {
                width: 100%;
                height: 67vh;
                min-height: 360px;
                max-height: 760px;
                border: 0;
                border-radius: 0;
                background: var(--td-surface-2, #1a1a1e);
                display: block;
            }

            @media (max-width: 600px) {
                .blog-post-slideup .blog-slideup-panel iframe {
                    height: 67vh;
                    min-height: 360px;
                }
            }

            /* Duration / count badges */
            .blog-post-card .post-media .badge-br {
            	position: absolute;
            	bottom: 12px;
            	right: 12px;
            	padding: 4px 10px;
            	background: rgba(0, 0, 0, 0.75);
            	color: #ffffff;
            	font-family: 'Poppins';
            	font-size: 12px;
            	font-weight: 500;
            	border-radius: 4px;
            	z-index: 4;
            }

            /* Type badge top-left */
            .blog-post-card .post-media .badge-tl {
            	position: absolute;
            	top: 12px;
            	left: 12px;
            	padding: 4px 10px;
            	display: flex;
            	align-items: center;
            	gap: 5px;
            	background: rgba(0, 0, 0, 0.55);
            	color: #ffffff;
            	font-family: 'Poppins';
            	font-size: 10px;
            	font-weight: 700;
            	text-transform: uppercase;
            	letter-spacing: 0.06em;
            	border-radius: 4px;
            	z-index: 5;
            }

            .badge-tl .icon { font-size: 13px; }

            /* Category-specific badge colors */
            .blog-post-card[data-primary-cat="ai"] .badge-tl         { background: rgba(167,139,250,0.7); }
            .blog-post-card[data-primary-cat="audio"] .badge-tl      { background: rgba(0,200,255,0.7); }
            .blog-post-card[data-primary-cat="creative"] .badge-tl   { background: rgba(100,216,203,0.7); }
            .blog-post-card[data-primary-cat="crush"] .badge-tl      { background: rgba(255,80,150,0.7); }
            .blog-post-card[data-primary-cat="design"] .badge-tl     { background: rgba(244,114,182,0.7); }
            .blog-post-card[data-primary-cat="gaming"] .badge-tl     { background: rgba(123,237,159,0.7); }
            .blog-post-card[data-primary-cat="geek"] .badge-tl       { background: rgba(192,132,252,0.7); }
            .blog-post-card[data-primary-cat="me-stuff"] .badge-tl   { background: rgba(251,191,36,0.7); }
            .blog-post-card[data-primary-cat="movies"] .badge-tl     { background: rgba(239,68,68,0.7); }
            .blog-post-card[data-primary-cat="music"] .badge-tl      { background: rgba(129,140,248,0.7); }
            .blog-post-card[data-primary-cat="playlist"] .badge-tl   { background: rgba(45,212,191,0.7); }
            .blog-post-card[data-primary-cat="podcast"] .badge-tl    { background: rgba(251,146,60,0.7); }
            .blog-post-card[data-primary-cat="quote"] .badge-tl      { background: rgba(180,100,255,0.7); }
            .blog-post-card[data-primary-cat="rant"] .badge-tl       { background: rgba(255,107,53,0.7); }
            .blog-post-card[data-primary-cat="tech"] .badge-tl       { background: rgba(69,183,209,0.7); }
            .blog-post-card[data-primary-cat="tv-shows"] .badge-tl   { background: rgba(163,230,53,0.7); }
            .blog-post-card[data-primary-cat="video"] .badge-tl      { background: rgba(255,80,80,0.7); }
            .blog-post-card[data-primary-cat="writing"] .badge-tl    { background: rgba(212,165,116,0.7); }


            /* ===== MEDIA LIGHTBOX ===== */
            .media-lightbox {
            	position: fixed;
            	inset: 0;
            	z-index: 500;
            	background: rgba(0, 0, 0, 0.94);
            	display: none;
            	align-items: center;
            	justify-content: center;
            	flex-direction: column;
            	padding: 24px;
            }
            .media-lightbox.active { display: flex; }

            .media-lightbox .lb-close {
            	position: absolute;
            	top: 20px;
            	right: 24px;
            	width: 44px;
            	height: 44px;
            	background: rgba(255, 255, 255, 0.1);
            	border: none;
            	border-radius: 50%;
            	color: #ffffff;
            	font-size: 24px;
            	line-height: 44px;
            	text-align: center;
            	cursor: pointer;
            	transition: background 0.3s ease;
            	z-index: 10;
            	padding: 0;
            }
            .media-lightbox .lb-close:hover { background: rgba(90, 194, 78, 0.6); }

            .media-lightbox .lb-title {
            	font-family: 'Poppins';
            	font-size: 13px;
            	font-weight: 600;
            	color: #a9a9a9;
            	margin-bottom: 16px;
            	text-align: center;
            	letter-spacing: 0.03em;
            }

            .media-lightbox .lb-youtube-fallback {
            	display: none;
            	margin: -6px 0 16px 0;
            	font-family: 'Poppins';
            	font-size: 12px;
            	font-weight: 600;
            	color: #5ac24e;
            	text-align: center;
            	text-decoration: underline;
            }

            .media-lightbox .lb-youtube-fallback:hover {
            	color: #ffffff;
            }

            /* Video */
            .media-lightbox .lb-video-wrap {
            	width: 100%;
            	max-width: 960px;
            	aspect-ratio: 16 / 9;
            	background: #000;
            	border-radius: 12px;
            	overflow: hidden;
            	box-shadow: 0 24px 80px rgba(0, 0, 0, 0.7);
            }
            .media-lightbox .lb-video-wrap iframe,
            .media-lightbox .lb-video-wrap video {
            	width: 100%;
            	height: 100%;
            	border: none;
            	display: block;
            }

            /* Audio */
            .media-lightbox .lb-audio-wrap {
            	width: 100%;
            	max-width: 480px;
            	background: rgba(255, 255, 255, 0.05);
            	border: 1px solid rgba(255, 255, 255, 0.08);
            	border-radius: 20px;
            	overflow: hidden;
            	box-shadow: 0 24px 80px rgba(0, 0, 0, 0.6);
            }
            .media-lightbox .lb-audio-cover {
            	width: 100%;
            	aspect-ratio: 16 / 9;
            	object-fit: cover;
            	display: block;
            }
            .media-lightbox .lb-audio-body {
            	padding: 24px 28px 28px;
            }
            .media-lightbox .lb-audio-title {
            	font-family: 'Poppins';
            	font-size: 18px;
            	font-weight: 700;
            	color: #ffffff;
            	margin: 0 0 4px 0;
            }
            .media-lightbox .lb-audio-sub {
            	font-family: 'Poppins';
            	font-size: 12px;
            	color: #777777;
            	margin: 0 0 20px 0;
            }
            .media-lightbox .lb-audio-controls {
            	display: flex;
            	align-items: center;
            	gap: 14px;
            }
            .media-lightbox .lb-audio-play-btn {
            	width: 48px;
            	height: 48px;
            	border: none;
            	border-radius: 50%;
            	background: #5ac24e;
            	color: #ffffff;
            	font-size: 20px;
            	display: flex;
            	align-items: center;
            	justify-content: center;
            	cursor: pointer;
            	flex-shrink: 0;
            	padding: 0;
            	transition: all 0.2s ease;
            }
            .media-lightbox .lb-audio-play-btn:hover { background: #4db343; transform: scale(1.06); }
            .media-lightbox .lb-audio-play-btn .icon { margin-left: 3px; }
            .media-lightbox .lb-audio-play-btn.playing .icon { margin-left: 0; }

            .media-lightbox .lb-audio-progress-wrap {
            	flex: 1;
            	height: 6px;
            	background: rgba(255, 255, 255, 0.1);
            	border-radius: 3px;
            	cursor: pointer;
            	position: relative;
            }
            .media-lightbox .lb-audio-progress-fill {
            	height: 100%;
            	background: #5ac24e;
            	border-radius: 3px;
            	width: 0%;
            	transition: width 0.1s linear;
            	pointer-events: none;
            }
            .media-lightbox .lb-audio-time {
            	font-family: 'Poppins';
            	font-size: 11px;
            	color: #777777;
            	flex-shrink: 0;
            	min-width: 88px;
            	text-align: right;
            }


            /* ===== POST BODY (info + expandable excerpt) ===== */
            .blog-post-card .post-body {
            	padding: 24px 28px 28px 28px;
            }

            .blog-post-card .post-body .post-title {
            	margin: 0 0 6px 0;
            	font-family: 'Poppins';
            	font-size: 20px;
            	font-weight: 700;
            	color: #ffffff;
            	line-height: 28px;
            }

            .blog-post-card .post-body .post-meta {
            	margin: 0 0 14px 0;
            	font-family: 'Poppins';
            	font-size: 12px;
            	color: #777777;
            	display: flex;
            	flex-wrap: wrap;
            	align-items: center;
            	gap: 0;
            }

            .blog-post-card .post-body .post-meta span + span {
            	margin-left: 8px;
            	padding-left: 8px;
            	border-left: 1px solid rgba(255, 255, 255, 0.12);
            }

            .blog-post-card .post-body .post-meta .cat-label {
            	display: inline-block;
            	padding: 2px 10px;
            	font-size: 10px;
            	font-weight: 700;
            	text-transform: uppercase;
            	letter-spacing: 0.06em;
            	border-radius: 4px;
            	color: #ffffff;
            	border: none;
            	margin-left: 0;
            	padding-left: 10px;
            }

            .cat-label.ai       { background: rgba(167,139,250,0.3); color: #c4b5fd; }
            .cat-label.audio    { background: rgba(0,200,255,0.3); color: #66e0ff; }
            .cat-label.creative { background: rgba(100,216,203,0.3); color: #8eeade; }
            .cat-label.crush    { background: rgba(255,80,150,0.3); color: #ff99c4; }
            .cat-label.design   { background: rgba(244,114,182,0.3); color: #f9a8d4; }
            .cat-label.gaming   { background: rgba(123,237,159,0.3); color: #a5f3c0; }
            .cat-label.geek     { background: rgba(192,132,252,0.3); color: #d8b4fe; }
            .cat-label.me-stuff { background: rgba(251,191,36,0.3); color: #fcd34d; }
            .cat-label.movies   { background: rgba(239,68,68,0.3); color: #fca5a5; }
            .cat-label.music    { background: rgba(129,140,248,0.3); color: #a5b4fc; }
            .cat-label.playlist { background: rgba(45,212,191,0.3); color: #5eead4; }
            .cat-label.podcast  { background: rgba(251,146,60,0.3); color: #fdba74; }
            .cat-label.quote    { background: rgba(180,100,255,0.3); color: #d4a0ff; }
            .cat-label.rant     { background: rgba(255,107,53,0.3); color: #ff9a76; }
            .cat-label.tech     { background: rgba(69,183,209,0.3); color: #7dcde3; }
            .cat-label.tv-shows { background: rgba(163,230,53,0.3); color: #bef264; }
            .cat-label.video    { background: rgba(255,80,80,0.3); color: #ff8080; }
            .cat-label.writing  { background: rgba(212,165,116,0.3); color: #dbb896; }

            .blog-post-card .post-body .post-excerpt {
            	margin: 0 0 16px 0;
            	font-size: 15px;
            	color: #a9a9a9;
            	line-height: 1.7;
            }

            /* Expandable content */
            .blog-post-card .post-body .post-full-content {
            	display: none;
            	margin: 0 0 16px 0;
            	font-size: 15px;
            	color: #a9a9a9;
            	line-height: 1.7;
            }

            .blog-post-card .post-body .post-full-content p {
            	margin: 0 0 16px 0;
            }

            .blog-post-card .post-body .expand-btn {
            	display: inline-block;
            	padding: 0;
            	font-family: 'Poppins';
            	font-size: 13px;
            	font-weight: 600;
            	color: #5ac24e;
            	background: none;
            	border: none;
            	border-bottom: 1px dashed rgba(90, 194, 78, 0.4);
            	cursor: pointer;
            	transition: all 0.2s ease;
            	width: auto;
            	height: auto;
            }

            .blog-post-card .post-body .expand-btn:hover {
            	border-bottom-color: #5ac24e;
            }

            .blog-post-card .post-body .expand-btn .icon {
            	font-size: 14px;
            	margin-left: 4px;
            	position: relative;
            	top: 1px;
            	transition: transform 0.2s ease;
            }

            .blog-post-card.is-expanded .post-body .expand-btn .icon {
            	transform: rotate(180deg);
            }

            .blog-post-card.is-expanded .post-body .post-full-content { display: block; }


            /* ===== QUOTE POST CARD (special — no image) ===== */
            .blog-post-card.post-type-quote {
            	background: linear-gradient(135deg, rgba(180, 100, 255, 0.08) 0%, rgba(90, 60, 180, 0.12) 100%);
            	border: 1px solid rgba(180, 100, 255, 0.12);
            }

            .blog-post-card.post-type-quote:hover {
            	border-color: rgba(180, 100, 255, 0.25);
            }

            .blog-post-card.post-type-quote .quote-body {
            	padding: 48px 36px 40px 36px;
            	text-align: center;
            	position: relative;
            }

            .blog-post-card.post-type-quote .quote-body .quote-icon {
            	display: block;
            	font-size: 96px;
            	color: rgba(180, 100, 255, 0.25);
            	margin-bottom: 20px;
            	font-family: 'Cormorant Garamond';
            	font-weight: 700;
            	line-height: 1;
            	user-select: none;
            }

            .blog-post-card.post-type-quote .quote-body .quote-text {
            	margin: 0 0 20px 0;
            	font-family: 'Cormorant Garamond';
            	font-size: 28px;
            	font-weight: 500;
            	font-style: italic;
            	color: #ffffff;
            	line-height: 1.5;
            	letter-spacing: -0.01em;
            }

            .blog-post-card.post-type-quote .quote-body .quote-attribution {
            	margin: 0 0 20px 0;
            	font-family: 'Poppins';
            	font-size: 14px;
            	color: #b464ff;
            	font-weight: 600;
            }

            .blog-post-card.post-type-quote .quote-body .quote-attribution span {
            	display: block;
            	font-size: 12px;
            	color: #777777;
            	font-weight: 400;
            	margin-top: 2px;
            }

            .blog-post-card.post-type-quote .quote-body .quote-meta {
            	margin: 0;
            	font-family: 'Poppins';
            	font-size: 12px;
            	color: #777777;
            }

            .blog-post-card.post-type-quote .quote-body .quote-meta span + span {
            	margin-left: 8px;
            	padding-left: 8px;
            	border-left: 1px solid rgba(255, 255, 255, 0.1);
            }

            /* Quote decorative border line */
            .blog-post-card.post-type-quote .quote-body::before {
            	content: '';
            	position: absolute;
            	top: 0;
            	left: 50%;
            	transform: translateX(-50%);
            	width: 60px;
            	height: 3px;
            	background: rgba(180, 100, 255, 0.3);
            	border-radius: 2px;
            }

            @media (max-width: 560px) {
            	.blog-post-card.post-type-quote .quote-body {
            		padding: 36px 20px 32px 20px;
            	}

            	.blog-post-card.post-type-quote .quote-body .quote-text {
            		font-size: 22px;
            	}

            	.filter-dropdown-wrap {
            		min-width: 100%;
            	}
            }


            /* ===== VIDEO-LINK / AUDIO-LINK: platform badge on thumbnail ===== */
            .post-media .platform-badge {
            	position: absolute;
            	bottom: 12px;
            	left: 12px;
            	display: flex;
            	align-items: center;
            	gap: 6px;
            	padding: 5px 12px;
            	border-radius: 20px;
            	font-family: 'Poppins';
            	font-size: 11px;
            	font-weight: 700;
            	text-transform: uppercase;
            	letter-spacing: 0.05em;
            	color: #ffffff;
            	z-index: 5;
            }
            .platform-badge.youtube   { background: rgba(255, 0, 0, 0.75); }
            .platform-badge.vimeo     { background: rgba(26, 183, 234, 0.75); }
            .platform-badge.soundcloud{ background: rgba(255, 85, 0, 0.75); }
            .platform-badge.spotify   { background: rgba(30, 215, 96, 0.75); }
            .platform-badge.apple     { background: rgba(252, 60, 68, 0.75); }
            .platform-badge.external  { background: rgba(120, 120, 120, 0.75); }
            .platform-badge .icon     { font-size: 14px; }

            /* External-link play button (grey instead of green) */
            .blog-post-card[data-type="video-link"] .post-media .media-overlay .play-btn,
            .blog-post-card[data-type="audio-link"] .post-media .media-overlay .play-btn {
            	background: rgba(255, 255, 255, 0.18);
            	box-shadow: 0 4px 20px rgba(0,0,0,0.3);
            }
            .blog-post-card[data-type="video-link"] .post-media .media-overlay .play-btn .icon,
            .blog-post-card[data-type="audio-link"] .post-media .media-overlay .play-btn .icon {
            	/* keep white icon */
            }

            /* ===== PLAYLIST POST CARDS (audio & video) ===== */
            .post-playlist {
            	border-top: 1px solid rgba(255, 255, 255, 0.06);
            	padding: 0 0 8px 0;
            }

            /* Audio-playlist cards: tracklist hidden until cover is clicked */
            .blog-post-card[data-type="audio-playlist"] .post-playlist {
            	display: none;
            }

            .playlist-header {
            	display: flex;
            	align-items: center;
            	gap: 10px;
            	padding: 14px 24px 10px;
            	font-family: 'Poppins';
            	font-size: 11px;
            	font-weight: 700;
            	text-transform: uppercase;
            	letter-spacing: 0.07em;
            	color: #555;
            }

            .playlist-track {
            	display: flex;
            	align-items: center;
            	gap: 12px;
            	padding: 8px 24px;
            	cursor: pointer;
            	transition: background 0.2s ease;
            	border-radius: 0;
            }

            .playlist-track:nth-child(even) {
            	background: rgba(255, 255, 255, 0.02);
            }
            .playlist-track:hover {
            	background: rgba(255,255,255,0.04);
            }
            .playlist-track:nth-child(even):hover {
            	background: rgba(255, 255, 255, 0.05);
            }

            .playlist-track.is-active {
            	background: rgba(90, 194, 78, 0.07);
            }

            .playlist-track .track-num {
            	width: 20px;
            	text-align: right;
            	font-family: 'Poppins';
            	font-size: 12px;
            	color: #555;
            	flex-shrink: 0;
            }

            .playlist-track.is-active .track-num {
            	color: #5ac24e;
            }

            .playlist-track .track-icon {
            	width: 20px;
            	text-align: center;
            	font-size: 13px;
            	color: #5ac24e;
            	flex-shrink: 0;
            	display: none;
            }

            .playlist-track.is-active .track-icon { display: block; }
            .playlist-track.is-active .track-num  { display: none; }

            /* Audio playlist: small square cover art per track */
            .playlist-track .track-art {
            	width: 38px;
            	height: 38px;
            	border-radius: 4px;
            	object-fit: cover;
            	flex-shrink: 0;
            	background: #2a2a2c;
            }

            /* Video playlist: small 16:9 thumbnail per track */
            .playlist-track .track-thumb {
            	width: 68px;
            	height: 38px;
            	border-radius: 4px;
            	object-fit: cover;
            	flex-shrink: 0;
            	background: #2a2a2c;
            	position: relative;
            }

            .playlist-track .track-info {
            	flex: 1;
            	min-width: 0;
            }

            .playlist-track .track-title {
            	font-family: 'Poppins';
            	font-size: 13px;
            	font-weight: 600;
            	color: #dddddd;
            	white-space: nowrap;
            	overflow: hidden;
            	text-overflow: ellipsis;
            	line-height: 1.3;
            }

            .playlist-track.is-active .track-title { color: #ffffff; }

            .playlist-track .track-sub {
            	font-family: 'Poppins';
            	font-size: 12px;
            	color: rgba(90, 194, 78, 0.9);
            	margin-top: 2px;
            }

            .playlist-track .track-dur {
            	font-family: 'Poppins';
            	font-size: 12px;
            	color: #555;
            	flex-shrink: 0;
            	margin-left: auto;
            }

            .playlist-track.is-active .track-dur { color: #5ac24e; }

            /* Inline mini-player bar (audio playlist only) — DEPRECATED, replaced by sticky player */

            /* ===== INLINE EMBEDDED AUDIO PLAYER (per-playlist) ===== */
            .inline-playlist-player {
                max-height: 0;
                overflow: hidden;
                opacity: 0;
                border-top: 1px solid transparent;
                background: rgba(255,255,255,0.03);
                padding: 0 20px;
                transition: max-height 0.4s cubic-bezier(0.25,0.46,0.45,0.94),
                            opacity 0.3s ease 0.05s,
                            padding 0.4s cubic-bezier(0.25,0.46,0.45,0.94),
                            border-color 0.3s ease;
            }
            .inline-playlist-player.is-active {
                max-height: 80px;
                opacity: 1;
                padding: 12px 20px;
                border-top-color: rgba(255,255,255,0.06);
            }
            .ipp-row {
                display: flex;
                align-items: center;
                gap: 12px;
            }
            .ipp-art {
                width: 40px;
                height: 40px;
                border-radius: 6px;
                object-fit: cover;
                flex-shrink: 0;
                background: #2a2a2c;
            }
            .ipp-info {
                flex: 0 1 auto;
                min-width: 0;
                max-width: 140px;
            }
            .ipp-title {
                font-family: 'Poppins';
                font-size: 12px;
                font-weight: 600;
                color: #ffffff;
                white-space: nowrap;
                overflow: hidden;
                text-overflow: ellipsis;
                line-height: 1.3;
            }
            .ipp-sub {
                font-family: 'Poppins';
                font-size: 10px;
                color: #777;
                white-space: nowrap;
                overflow: hidden;
                text-overflow: ellipsis;
            }
            .ipp-play-btn {
                width: 34px;
                height: 34px;
                border: none;
                border-radius: 50%;
                background: #5ac24e;
                color: #fff;
                font-size: 15px;
                display: flex;
                align-items: center;
                justify-content: center;
                cursor: pointer;
                flex-shrink: 0;
                padding: 0;
                transition: all 0.2s ease;
            }
            .ipp-play-btn:hover { background: #4db343; transform: scale(1.06); }
            .ipp-play-btn .icon { margin-left: 2px; }
            .ipp-play-btn.playing .icon { margin-left: 0; }
            .ipp-progress-wrap {
                flex: 1;
                height: 5px;
                background: rgba(255,255,255,0.1);
                border-radius: 3px;
                cursor: pointer;
                position: relative;
                min-width: 40px;
            }
            .ipp-progress-fill {
                height: 100%;
                background: #5ac24e;
                border-radius: 3px;
                width: 0%;
                transition: width 0.1s linear;
                pointer-events: none;
            }
            .ipp-time {
                font-family: 'Poppins';
                font-size: 10px;
                color: #777;
                flex-shrink: 0;
                min-width: 72px;
                text-align: right;
            }
            .ipp-close-btn {
                width: 28px;
                height: 28px;
                background: rgba(255,255,255,0.06);
                border: 1px solid rgba(255,255,255,0.08);
                border-radius: 50%;
                color: #888;
                font-size: 14px;
                cursor: pointer;
                padding: 0;
                flex-shrink: 0;
                display: flex;
                align-items: center;
                justify-content: center;
                transition: all 0.2s ease;
            }
            .ipp-close-btn:hover {
                color: #fff;
                background: rgba(255,255,255,0.12);
                border-color: rgba(255,255,255,0.18);
            }

            @media (max-width: 560px) {
                .ipp-info { max-width: 80px; }
                .ipp-time { display: none; }
            }

            /* Video playlist: swap area above tracklist */
            .video-playlist-player {
            	position: relative;
            	width: 100%;
            	padding-top: 56.25%;
            	background: #000;
            	overflow: hidden;
            }

            .video-playlist-player iframe,
            .video-playlist-player video {
            	position: absolute;
            	top: 0; left: 0;
            	width: 100%; height: 100%;
            	border: none;
            }

            .video-playlist-player .vp-placeholder {
            	position: absolute;
            	top: 0; left: 0;
            	width: 100%; height: 100%;
            	display: flex;
            	align-items: center;
            	justify-content: center;
            	cursor: pointer;
            }

            .video-playlist-player .vp-placeholder img {
            	width: 100%;
            	height: 100%;
            	object-fit: cover;
            }

            .video-playlist-player .vp-placeholder .play-btn {
            	position: absolute;
            	width: 72px;
            	height: 72px;
            	border-radius: 50%;
            	background: rgba(90, 194, 78, 0.9);
            	display: flex;
            	align-items: center;
            	justify-content: center;
            	box-shadow: 0 4px 30px rgba(90, 194, 78, 0.35);
            	transition: transform 0.3s ease;
            	z-index: 2;
            }

            .video-playlist-player .vp-placeholder:hover .play-btn { transform: scale(1.1); }
            .video-playlist-player .vp-placeholder .play-btn .icon { font-size: 28px; color: #fff; margin-left: 4px; }

            /* ===== LIGHTBOX GALLERY CAROUSEL ===== */
            .gallery-overlay {
            	position: fixed;
            	top: 0;
            	left: 0;
            	width: 100%;
            	height: 100%;
            	background: rgba(0, 0, 0, 0.92);
            	z-index: 400;
            	display: none;
            	align-items: center;
            	justify-content: center;
            	flex-direction: column;
            }

            .gallery-overlay.active { display: flex; }

            .gallery-overlay .gallery-main {
            	position: relative;
            	max-width: 90%;
            	max-height: 75vh;
            	display: flex;
            	align-items: center;
            	justify-content: center;
            }

            .gallery-overlay .gallery-main img {
            	max-width: 100%;
            	max-height: 75vh;
            	border-radius: 8px;
            	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
            	object-fit: contain;
            }

            /* Gallery nav arrows */
            .gallery-overlay .gallery-arrow {
            	position: absolute;
            	top: 50%;
            	transform: translateY(-50%);
            	width: 48px;
            	height: 48px;
            	background: rgba(255, 255, 255, 0.1);
            	border: none;
            	border-radius: 50%;
            	color: #ffffff;
            	font-size: 22px;
            	line-height: 48px;
            	text-align: center;
            	cursor: pointer;
            	transition: background 0.3s ease;
            	z-index: 5;
            	padding: 0;
            }

            .gallery-overlay .gallery-arrow:hover { background: rgba(90, 194, 78, 0.5); }
            .gallery-overlay .gallery-arrow.prev { left: -60px; }
            .gallery-overlay .gallery-arrow.next { right: -60px; }

            /* Gallery counter */
            .gallery-overlay .gallery-counter {
            	margin-top: 16px;
            	font-family: 'Poppins';
            	font-size: 13px;
            	color: #a9a9a9;
            }

            .gallery-overlay .gallery-counter strong {
            	color: #ffffff;
            }

            /* Gallery close */
            .gallery-overlay .gallery-close {
            	position: absolute;
            	top: 20px;
            	right: 24px;
            	width: 44px;
            	height: 44px;
            	background: rgba(255, 255, 255, 0.1);
            	border: none;
            	border-radius: 50%;
            	color: #ffffff;
            	font-size: 24px;
            	line-height: 44px;
            	text-align: center;
            	cursor: pointer;
            	transition: background 0.3s ease;
            	z-index: 10;
            	padding: 0;
            }

            .gallery-overlay .gallery-close:hover { background: rgba(90, 194, 78, 0.5); }

            /* Thumbnail strip */
            .gallery-overlay .gallery-thumbs {
            	margin-top: 16px;
            	display: flex;
            	gap: 8px;
            	justify-content: center;
            	flex-wrap: wrap;
            	max-width: 90%;
            }

            .gallery-overlay .gallery-thumbs .g-thumb {
            	width: 56px;
            	height: 38px;
            	border-radius: 4px;
            	overflow: hidden;
            	cursor: pointer;
            	opacity: 0.4;
            	transition: all 0.2s ease;
            	border: 2px solid transparent;
            }

            .gallery-overlay .gallery-thumbs .g-thumb.active {
            	opacity: 1;
            	border-color: #5ac24e;
            }

            .gallery-overlay .gallery-thumbs .g-thumb:hover { opacity: 0.8; }

            .gallery-overlay .gallery-thumbs .g-thumb img {
            	width: 100%;
            	height: 100%;
            	object-fit: cover;
            	display: block;
            }

            @media (max-width: 560px) {
            	.gallery-overlay .gallery-arrow.prev { left: 10px; }
            	.gallery-overlay .gallery-arrow.next { right: 10px; }
            	.gallery-overlay .gallery-thumbs .g-thumb { width: 44px; height: 30px; }
            }


            /* ===== NO RESULTS ===== */
            .no-results {
            	display: none;
            	text-align: center;
            	padding: 60px 20px;
            	color: #777777;
            	font-family: 'Poppins';
            	font-size: 15px;
            }

            .no-results .icon {
            	display: block;
            	font-size: 48px;
            	color: #555;
            	margin-bottom: 12px;
            }

            .no-results.active { display: block; }


            /* ===== RESPONSIVE ===== */
            @media (max-width: 560px) {
            	.blog-post-card .post-body { padding: 20px; }
            	.blog-post-card .post-body .post-title { font-size: 18px; line-height: 26px; }
            	.blog-post-card .audio-player-inline { padding: 16px 20px; }
            }

            /* ── Blue bold links inside post excerpts ── */
            .blog-post-card .post-body .post-excerpt a {
            	color: #4d9fea;
            	font-weight: 700;
            	text-decoration: underline;
            	text-decoration-color: rgba(77, 159, 234, 0.4);
            }
            .blog-post-card .post-body .post-excerpt a:hover {
            	color: #74b8f4;
            }

            .card-inner .card-wrap .simplebar-content {
                padding: 70px 20px 20px !important;
            }


/* Extracted from inline style attributes */
.td-f-blog-list-frame-style-001 { font-size: 13px; margin-right: 4px; }
.td-f-blog-list-frame-style-002 { font-size: 13px; margin-right: 4px; }
.td-f-blog-list-frame-style-003 { font-size: 13px; margin-right: 4px; }
.td-f-blog-list-frame-style-004 { font-size: 13px; margin-right: 4px; }
.td-f-blog-list-frame-style-005 { animation-delay: 10s; }
.td-f-blog-list-frame-style-006 { animation-delay: 0s; }
.td-f-blog-list-frame-style-007 { display: none; }
.td-f-blog-list-frame-style-008 { display: none; }
.td-f-blog-list-frame-style-009 { display: none; }
.td-f-blog-list-frame-style-010 { display: none; }

/* Spotify-themed inline audio playlists */
.blog-post-card[data-type="audio-playlist"] .post-playlist {
    background: #535353;
    border-top: 0;
    border-radius: 12px;
    overflow: hidden;
    padding: 0 0 8px 0;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.playlist-header {
    padding: 16px 24px 10px;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    text-transform: none;
    letter-spacing: 0;
}

.playlist-header .icon {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #535353;
    background: #fff;
    font-size: 16px;
}

.playlist-track {
    align-items: flex-start;
    min-height: 55px;
    padding: 8px 24px 9px;
    gap: 14px;
    border-radius: 0;
}

.playlist-track.is-active {
    background: rgba(255, 255, 255, 0.06);
}

.playlist-track .track-num {
    width: 26px;
    text-align: right;
    font-size: 13px;
    font-weight: 400;
    color: #e2e2e2;
    line-height: 38px;
}

.playlist-track.is-active .track-num {
    color: #fff;
}

.playlist-track .track-icon {
    width: 26px;
    color: #fff;
    line-height: 38px;
}

.playlist-track .track-art {
    width: 38px;
    height: 38px;
    border-radius: 5px;
    background: #f4f4f4;
}

.playlist-track .track-title {
    font-size: 14px;
    font-weight: 400;
    color: #fff;
    line-height: 20px;
}

.playlist-track .track-sub {
    margin-top: 1px;
    font-size: 11px;
    font-weight: 400;
    line-height: 15px;
    color: #d0d0d0;
}

.playlist-track .track-dur {
    color: #fff;
    font-size: 13px;
    line-height: 38px;
}

.playlist-track.is-active .track-title,
.playlist-track.is-active .track-dur {
    color: #fff;
}

.inline-playlist-player {
    background: #3f3f3f;
}

.inline-playlist-player.is-active {
    border-top-color: rgba(255, 255, 255, 0.08);
}

.ipp-art {
    border-radius: 5px;
}

.ipp-play-btn {
    background: #fff;
    color: #333;
}

.ipp-play-btn:hover {
    background: #f3f3f3;
}

.ipp-progress-fill {
    background: #fff;
}
