:root {
	font-family: "IRANSansXFaNum", Tahoma, Arial, sans-serif;
}

@font-face {
	font-family: "IRANSansXFaNum";
	src: url("../fonts/IRANSansXFaNum-Regular.woff2") format("woff2");
	font-weight: 400;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: "IRANSansXFaNum";
	src: url("../fonts/IRANSansXFaNum-Medium.woff2") format("woff2");
	font-weight: 500;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: "IRANSansXFaNum";
	src: url("../fonts/IRANSansXFaNum-Bold.woff2") format("woff2");
	font-weight: 700;
	font-style: normal;
	font-display: swap;
}

:root {
	--theme-bg: #f4f5f7;
	--theme-card: #ffffff;
	--theme-card-2: #f8f8fa;
	--theme-text: #202126;
	--theme-muted: #747986;
	--theme-border: #e5e7ee;
	--theme-primary: #7c3aed;
	--theme-primary-soft: rgba(124, 58, 237, 0.14);
	--theme-button: var(--theme-primary);
	--theme-button-text: #ffffff;
	--theme-shadow: 0 12px 30px rgba(22, 24, 30, 0.08);
	--theme-radius: 8px;
	--theme-download-bg: #8f96a3;
	--theme-download-border: #e5e7ee;
	--theme-download-text: #ffffff;
	--theme-download-hover-bg: var(--theme-primary);
	--theme-content-link: #202126;
	--theme-separator-start: #9096a3;
	--theme-separator-center: #d4d7de;
	--theme-soft-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
	--theme-player-bg: #ffffff;
	--theme-player-text: #202126;
	--theme-player-progress: var(--theme-primary);
	--theme-player-progress-bg: #e5e7ee;
	--theme-download-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M19 9h-4V3H9v6H5l7 7 7-7zM5 18v2h14v-2H5z'/%3E%3C/svg%3E");
	--theme-music-note-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23444'%3E%3Cpath d='M12 3v10.55c-.59-.34-1.27-.55-2-.55-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4V7h4V3h-6z'/%3E%3C/svg%3E");
}

[data-theme="dark"],
.theme-dark {
	--theme-bg: #15171c;
	--theme-card: #20232a;
	--theme-card-2: #282c35;
	--theme-text: #f4f6fb;
	--theme-muted: #b2b8c5;
	--theme-border: #363b46;
	--theme-primary-soft: rgba(232, 77, 91, 0.2);
	--theme-shadow: 0 14px 34px rgba(0, 0, 0, 0.32);
	--theme-download-bg: #2f3542;
	--theme-download-border: #454c5c;
	--theme-download-text: #ffffff;
	--theme-download-hover-bg: var(--theme-primary);
	--theme-content-link: #f5f5f5;
	--theme-separator-start: #3f4654;
	--theme-separator-center: #6b7280;
	--theme-soft-shadow: 0 2px 12px rgba(0, 0, 0, 0.25);
	--theme-player-bg: #17191f;
	--theme-player-text: #f8fafc;
	--theme-player-progress-bg: rgba(255, 255, 255, 0.18);
	--theme-music-note-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23f5f5f5'%3E%3Cpath d='M12 3v10.55c-.59-.34-1.27-.55-2-.55-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4V7h4V3h-6z'/%3E%3C/svg%3E");
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
	margin: 0;
	background: var(--theme-bg);
	color: var(--theme-text);
	font-family: "IRANSansXFaNum", Tahoma, Arial, sans-serif;
	font-size: 14px;
	line-height: 1.9;
	direction: rtl;
}
a { color: inherit; text-decoration: none; transition: color .2s ease, background .2s ease, border-color .2s ease, transform .2s ease; }
a:hover { color: var(--theme-primary); }
img, svg { max-width: 100%; }
button, input, textarea, select { font: inherit; }
.screen-reader-text { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.site-container { width: min(1180px, calc(100% - 28px)); margin-inline: auto; }
.site-header { background: var(--theme-card); border-bottom: 1px solid var(--theme-border); box-shadow: 0 8px 25px rgba(0,0,0,.04); position: sticky; top: 0; z-index: 50; }
.header-main { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.header-main { min-height: 82px; }
.site-branding { display: flex; align-items: center; min-width: 0; }
.site-logo-link { display: inline-flex; align-items: center; min-width: 0; }
.site-logo { width: auto; max-width: min(230px, 52vw); height: auto; max-height: 58px; display: block; object-fit: contain; }
.custom-logo { max-height: 66px; width: auto; display: block; }
.primary-navigation ul { display: flex; align-items: center; gap: 8px; padding: 0; margin: 0; list-style: none; }
.primary-navigation a { display: block; padding: 9px 13px; border-radius: 8px; border: 1px solid var(--theme-border); background: var(--theme-card-2); color: var(--theme-text); font-weight: 700; box-shadow: var(--theme-soft-shadow); }
.primary-navigation a:hover, .primary-navigation .current-menu-item > a { background: var(--theme-primary); border-color: var(--theme-primary); color: var(--theme-button-text); transform: translateY(-1px); }
.menu-toggle, .theme-switch, .back-to-top, .search-submit { border: 0; cursor: pointer; }
.menu-toggle { display: none; width: 42px; height: 42px; border-radius: var(--theme-radius); background: var(--theme-card-2); border: 1px solid var(--theme-border); }
.menu-toggle span { display: block; width: 20px; height: 2px; background: var(--theme-text); margin: 5px auto; }
.theme-switch { display: inline-flex; align-items: center; gap: 7px; min-height: 34px; border-radius: 999px; background: var(--theme-card-2); border: 1px solid var(--theme-border); color: var(--theme-muted); padding: 4px 8px; }
.header-search { padding-bottom: 16px; }
.search-form { display: flex; align-items: stretch; background: var(--theme-card-2); border: 1px solid var(--theme-border); border-radius: var(--theme-radius); overflow: hidden; }
.search-form label { flex: 1; }
.search-field { width: 100%; min-height: 44px; border: 0; background: transparent; color: var(--theme-text); padding: 0 16px; outline: 0; }
.search-submit { width: 52px; background: var(--theme-button); color: var(--theme-button-text); display: inline-flex; align-items: center; justify-content: center; }
.search-submit svg { width: 22px; height: 22px; fill: currentColor; }
.site-main { padding: 24px 0 0; }
.layout-with-sidebar { display: grid; grid-template-columns: minmax(0, 1fr) 310px; gap: 22px; align-items: start; }
.layout-fullwidth { display: block; }
.layout-fullwidth .post-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.layout-single .content-area { width: 100%; max-width: 1040px; margin-inline: auto; }
.layout-single .related-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.content-area, .site-sidebar { min-width: 0; }
.archive-header, .single-panel, .comments-area, .related-posts, .widget, .breadcrumb, .empty-state { background: var(--theme-card); border: 1px solid var(--theme-border); border-radius: var(--theme-radius); box-shadow: var(--theme-shadow); }
.archive-header { padding: 18px 20px; margin-bottom: 18px; }
.archive-header h1 { margin: 0; font-size: 22px; }
.archive-description { color: var(--theme-muted); }
.post-grid, .related-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.post-card { background: var(--theme-card); border: 1px solid var(--theme-border); border-radius: var(--theme-radius); overflow: hidden; box-shadow: var(--theme-shadow); }
.post-card-link { display: block; color: var(--theme-text); }
.post-card-thumb { aspect-ratio: 1 / 1; background: var(--theme-card-2); overflow: hidden; }
.card-image, .post-card-thumb img { width: 100%; height: 100%; object-fit: contain; display: block; background: var(--theme-card-2); }
.post-card-title { margin: 0; padding: 12px 14px 14px; font-size: 15px; line-height: 1.7; text-align: center; min-height: 66px; display: flex; align-items: center; justify-content: center; }
.post-card:hover { transform: translateY(-2px); }
.post-card:hover .post-card-title { color: var(--theme-primary); }
.ava-thumb-placeholder { display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg, var(--theme-card-2), var(--theme-primary-soft)); color: var(--theme-primary); }
.ava-thumb-placeholder svg { width: 52px; height: 52px; fill: currentColor; opacity: .8; }
.breadcrumb { padding: 10px 14px; margin-bottom: 16px; display: flex; flex-wrap: wrap; gap: 8px; color: var(--theme-muted); font-size: 12px; }
.breadcrumb a { color: var(--theme-primary); }
[data-theme="dark"] .breadcrumb a,
.theme-dark .breadcrumb a { color: #c4b5fd; }
.single-panel { padding: 20px; }
.single-header { text-align: center; margin-bottom: 14px; }
.single-date-badge { display: inline-flex; align-items: center; justify-content: center; gap: 8px; margin: 0 auto 12px; padding: 7px 13px; border-radius: 999px; background: linear-gradient(135deg, var(--theme-primary-soft), var(--theme-card-2)); color: var(--theme-muted); border: 1px solid var(--theme-border); box-shadow: 0 8px 22px rgba(124, 58, 237, .10); font-size: 12px; line-height: 1.6; }
.single-date-icon { width: 28px; height: 28px; border-radius: 999px; display: inline-flex; align-items: center; justify-content: center; background: var(--theme-primary); color: var(--theme-button-text); flex: 0 0 auto; }
.single-date-icon svg { width: 16px; height: 16px; fill: currentColor; display: block; }
.single-date-label { color: var(--theme-muted); font-weight: 500; }
.single-date-badge time { color: var(--theme-text); font-weight: 800; letter-spacing: -.01em; }
[data-theme="dark"] .single-date-badge,
.theme-dark .single-date-badge { background: linear-gradient(135deg, rgba(139, 92, 246, .18), rgba(255, 255, 255, .045)); color: #cbd5e1; border-color: rgba(255,255,255,.10); box-shadow: 0 10px 28px rgba(0, 0, 0, .22); }
[data-theme="dark"] .single-date-badge time,
.theme-dark .single-date-badge time { color: #f8fafc; }
@media (min-width: 721px) {
	.single-header { display: flex; align-items: center; justify-content: space-between; gap: 16px; text-align: right; }
	.single-header .single-title { order: 1; margin-inline-end: 0; }
	.single-header .single-date-badge { order: 2; margin: 0; flex: 0 0 auto; }
}
.single-title { margin: 0; font-size: clamp(20px, 2.4vw, 28px); line-height: 1.45; }
.single-content { font-size: 15px; }
.single-content p,
.entry-content p { text-align: justify; text-align-last: auto; }
.single-title { display: inline-block; padding: 5px 14px; border-radius: 8px; border-inline-start: 5px solid var(--theme-primary); background: var(--theme-primary-soft); }
.archive-header h1,
.widget-title,
.related-title,
.footer-menu h2 { display: flex; align-items: center; gap: 9px; }
.entry-content h1,
.entry-content h2,
.entry-content h3 { font-size: 1.25rem; line-height: 1.8; margin: 1.4em 0 .75em; }
.entry-content h2 { padding: 0; border-radius: 0; background: transparent; }
.archive-header h1::before,
.widget-title::before,
.related-title::before,
.footer-menu h2::before { content: ""; width: 7px; height: 24px; border-radius: 999px; background: linear-gradient(180deg, var(--theme-primary), var(--theme-primary-soft)); flex: 0 0 auto; }
.site-sidebar { display: grid; gap: 16px; position: sticky; top: 150px; }
.widget { padding: 16px; }
.widget-title { margin: 0 0 14px; font-size: 16px; }
.widget ul { padding: 0; margin: 0; list-style: none; }
.widget li + li { margin-top: 10px; }
.latest-widget { overflow: hidden; }
.latest-widget .widget-title { display: flex; align-items: center; gap: 8px; }
.latest-widget .widget-title::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--theme-primary); box-shadow: 0 0 0 5px var(--theme-primary-soft); }
.sidebar-posts { counter-reset: latest-playlists; display: grid; gap: 9px; padding-inline-end: 0 !important; }
.sidebar-posts li { counter-increment: latest-playlists; margin-top: 0 !important; }
.sidebar-posts a { position: relative; display: grid; grid-template-columns: 54px minmax(0, 1fr); gap: 10px; align-items: center; min-height: 68px; padding: 7px; border: 1px solid var(--theme-border); border-radius: var(--theme-radius); background: var(--theme-card-2); color: var(--theme-text); }
.sidebar-posts a::after { content: counter(latest-playlists); position: absolute; inset-block-start: 6px; inset-inline-start: 6px; min-width: 22px; height: 22px; padding-inline: 5px; border-radius: 999px; display: inline-flex; align-items: center; justify-content: center; background: var(--theme-card); color: var(--theme-primary); border: 1px solid var(--theme-border); font-size: 11px; font-weight: 800; line-height: 1; }
.sidebar-posts a:hover { border-color: var(--theme-primary); background: var(--theme-primary-soft); transform: translateY(-1px); }
.sidebar-thumb { width: 54px; height: 54px; object-fit: cover; border-radius: var(--theme-radius); background: var(--theme-card); }
.sidebar-posts span { line-height: 1.65; font-size: 13px; font-weight: 700; }
.sidebar-posts a:hover span { color: var(--theme-primary); }
.pagination-wrap { margin: 22px 0; }
.pagination-wrap ul { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; padding: 0; margin: 0; list-style: none; }
.pagination-wrap a, .pagination-wrap span { min-width: 38px; height: 38px; border-radius: var(--theme-radius); border: 1px solid var(--theme-border); background: var(--theme-card); display: inline-flex; align-items: center; justify-content: center; color: var(--theme-text); }
.pagination-wrap .current, .pagination-wrap a:hover { background: var(--theme-primary); border-color: var(--theme-primary); color: #fff; }
.related-posts { margin-top: 20px; padding: 18px; }
.related-title { margin: 0 0 16px; font-size: 17px; font-weight: 800; color: var(--theme-text); }
.comments-area { margin-top: 20px; padding: 18px; }
.comment-list { padding: 0; margin: 0 0 18px; list-style: none; }
.comment-body { border-bottom: 1px solid var(--theme-border); padding: 14px 0; }
.empty-state { padding: 28px; text-align: center; color: var(--theme-muted); }
.narrow-page { max-width: 760px; }
.site-footer { margin-top: 34px; background: var(--theme-card); border-top: 1px solid var(--theme-border); padding: 28px 0; }
.footer-category-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; padding-bottom: 22px; border-bottom: 1px solid var(--theme-border); }
.footer-menu h2 { margin: 0 0 12px; font-size: 15px; color: var(--theme-text); }
.footer-menu h2 a { color: inherit; text-decoration: none; }
.footer-menu h2 a:hover { color: var(--theme-primary); }
.footer-menu ul, .footer-social { display: grid; gap: 9px; padding: 0; margin: 0; list-style: none; }
.footer-social a, .footer-menu a { color: var(--theme-muted); }
.footer-social a:hover, .footer-menu a:hover { color: var(--theme-primary); }
.footer-menu-list a { display: inline-flex; align-items: center; gap: 8px; }
.footer-menu-list a::before { content: ""; width: 3px; height: 14px; border-radius: 999px; background: var(--theme-border); flex: 0 0 auto; }
.footer-menu-list a:hover::before { background: var(--theme-primary-soft); }
[data-theme="dark"] .footer-social a:hover,
[data-theme="dark"] .footer-menu a:hover,
.theme-dark .footer-social a:hover,
.theme-dark .footer-menu a:hover { color: #c4b5fd; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 18px; padding-top: 18px; color: var(--theme-muted); flex-wrap: wrap; }
.footer-brand-links { display: flex; align-items: center; justify-content: flex-start; gap: 16px; flex-wrap: wrap; margin-inline-end: auto; }
.footer-home-link { display: inline-flex; align-items: center; gap: 8px; font-weight: 800; color: var(--theme-text); white-space: nowrap; }
.footer-brand-icon { width: 34px; height: 34px; object-fit: contain; display: block; flex: 0 0 auto; }
.footer-pages ul { display: flex; align-items: center; justify-content: flex-start; gap: 14px; padding: 0; margin: 0; list-style: none; flex-wrap: wrap; }
.footer-copy { font-size: 12px; }
.back-to-top { position: fixed; left: 18px; bottom: 18px; width: 42px; height: 42px; border-radius: 50%; background: var(--theme-primary); color: #fff; box-shadow: var(--theme-shadow); opacity: 0; visibility: hidden; transform: translateY(8px); z-index: 60; }
.back-to-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }

@media (max-width: 920px) {
	.layout-with-sidebar { grid-template-columns: 1fr; }
	.layout-fullwidth .post-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.layout-single .related-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.site-sidebar { order: 2; position: static; }
	.footer-category-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.footer-bottom { justify-content: flex-start; text-align: right; }
	.footer-brand-links { width: 100%; }
	.footer-menu ul, .footer-social { justify-content: start; }
}

@media (max-width: 720px) {
	.site-container { width: min(100% - 20px, 1180px); }
	.header-main { min-height: 68px; }
	.menu-toggle { display: block; }
	.primary-navigation { display: none; position: absolute; inset: 100% 10px auto 10px; background: var(--theme-card); border: 1px solid var(--theme-border); border-radius: var(--theme-radius); padding: 10px; box-shadow: var(--theme-shadow); }
	.primary-navigation.is-open { display: block; }
	.primary-navigation ul { display: block; }
	.primary-navigation a { padding: 12px; }
	.post-grid, .related-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
	.single-panel { padding: 14px; }
	.single-header { display: flex; flex-direction: column; align-items: stretch; text-align: right; }
	.single-header .single-date-badge { align-self: center; margin: 0 auto 10px; font-size: 11px; gap: 6px; padding: 6px 10px; }
	.single-header .single-title { display: inline-block; width: auto; max-width: 100%; align-self: center; box-sizing: border-box; text-align: center; }
	.single-date-icon { width: 25px; height: 25px; }
	.post-card-title { min-height: 58px; padding: 9px 8px 11px; font-size: 12px; line-height: 1.55; }
	.post-card-thumb { aspect-ratio: 1 / 1; }
	.sidebar-posts a { grid-template-columns: 50px minmax(0, 1fr) 30px; padding: 7px 9px; }
	.sidebar-posts a::after { position: static; grid-column: 3; grid-row: 1; align-self: center; justify-self: end; min-width: 28px; height: 28px; }
	.sidebar-thumb { width: 50px; height: 50px; }
	.footer-category-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; text-align: right; }
	.footer-menu h2 { font-size: 13px; }
	.footer-menu a, .footer-pages a { font-size: 12px; }
}



/* Global track search */
.ava-global-search { position: relative; width: 100%; }
.search-archive-header p { margin: 8px 0 0; color: var(--theme-muted); font-size: 13px; }
.ava-track-search-section,
.ava-post-search-section { margin-top: 18px; }
.ava-post-search-section { margin-top: 28px; }
.ava-search-section-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 15px 17px;
	margin-bottom: 12px;
	border: 1px solid var(--theme-border);
	border-radius: var(--theme-radius);
	background: linear-gradient(135deg, var(--theme-card), var(--theme-card-2));
}
.ava-search-section-header h2 { margin: 0; color: var(--theme-text); font-size: 17px; line-height: 1.7; }
.ava-search-section-header p { margin: 3px 0 0; color: var(--theme-muted); font-size: 11px; }
.ava-search-section-header > span { flex: 0 0 auto; padding: 6px 10px; border-radius: 999px; background: var(--theme-primary-soft); color: var(--theme-primary); font-size: 11px; font-weight: 800; }
.ava-search-section-header-simple { padding-inline: 0; border: 0; border-radius: 0; background: transparent; }

.ava-track-search-results { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
.ava-track-search-item {
	display: grid;
	grid-template-columns: 58px minmax(0, 1fr) 28px;
	align-items: center;
	gap: 12px;
	min-height: 78px;
	padding: 9px;
	border: 1px solid var(--theme-border);
	border-radius: var(--theme-radius);
	background: var(--theme-card);
	color: var(--theme-text);
	box-shadow: 0 8px 25px rgba(15, 23, 42, .035);
}
.ava-track-search-item:hover { border-color: var(--theme-primary); background: var(--theme-primary-soft); transform: translateY(-2px); color: var(--theme-text); }
.ava-track-search-thumb { width: 58px; height: 58px; display: inline-flex; align-items: center; justify-content: center; overflow: hidden; border-radius: 12px; background: var(--theme-primary-soft); color: var(--theme-primary); }
.ava-track-search-thumb img { width: 100%; height: 100%; display: block; object-fit: cover; }
.ava-track-search-thumb svg { width: 27px; height: 27px; fill: currentColor; }
.ava-track-search-copy { min-width: 0; display: grid; gap: 3px; }
.ava-track-search-copy strong { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; font-size: 13px; line-height: 1.65; }
.ava-track-search-copy span { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; color: var(--theme-muted); font-size: 11px; }
.ava-track-search-copy small { width: fit-content; padding: 2px 7px; border: 1px solid var(--theme-border); border-radius: 999px; background: var(--theme-card-2); color: var(--theme-muted); font-size: 10px; }
.ava-track-search-go { color: var(--theme-primary); font-size: 20px; text-align: center; transition: transform .18s ease; }
.ava-track-search-item:hover .ava-track-search-go { transform: translateX(-3px); }
.ava-track-search-note { margin: 12px 0 0; padding: 10px 13px; border-radius: var(--theme-radius); background: var(--theme-card-2); color: var(--theme-muted); font-size: 11px; text-align: center; }

.ava-track-search-locked {
	display: flex;
	align-items: center;
	gap: 12px;
	flex-wrap: wrap;
	padding: 14px 16px;
	margin-top: 16px;
	border: 1px solid var(--theme-border);
	border-radius: var(--theme-radius);
	background: var(--theme-card);
	color: var(--theme-text);
}
.ava-track-search-locked strong { font-size: 13px; }
.ava-track-search-locked span { color: var(--theme-muted); font-size: 11px; flex: 1 1 300px; }
.ava-track-search-login { border: 0; border-radius: 999px; padding: 8px 13px; background: var(--theme-primary); color: #fff; font: inherit; font-size: 11px; font-weight: 800; cursor: pointer; }
.ava-track-search-login:hover { color: #fff; filter: brightness(1.05); }
.ava-search-empty strong { display: block; margin-bottom: 7px; color: var(--theme-text); font-size: 16px; }
.ava-search-empty .ava-global-search { max-width: 620px; margin: 18px auto 0; }

[data-theme="dark"] .ava-track-search-item,
.theme-dark .ava-track-search-item { box-shadow: 0 10px 28px rgba(0, 0, 0, .18); }

@media (max-width: 720px) {
	.ava-search-section-header { align-items: flex-start; padding: 13px; }
	.ava-search-section-header h2 { font-size: 14px; }
	.ava-search-section-header > span { font-size: 10px; }
	.ava-track-search-results { grid-template-columns: 1fr; }
	.ava-track-search-item { grid-template-columns: 52px minmax(0, 1fr) 22px; min-height: 70px; gap: 9px; padding: 8px; }
	.ava-track-search-thumb { width: 52px; height: 52px; border-radius: 11px; }
	.ava-track-search-copy strong { font-size: 12px; }
	.ava-track-search-copy span { font-size: 10px; }
	.ava-track-search-locked { align-items: flex-start; }
}

/* Lightweight account trigger is global; the full account dialog bundle is conditional. */
.account-trigger {
	position: relative;
	min-height: 34px;
	padding: 5px 11px;
	border: 1px solid var(--theme-border);
	border-radius: 999px;
	background: var(--theme-card-2);
	color: var(--theme-text);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 7px;
	font-weight: 700;
	font-size: 11px;
	cursor: pointer;
	box-shadow: var(--theme-soft-shadow);
	transition: border-color .2s ease, color .2s ease, background .2s ease, transform .2s ease;
}

.account-trigger:hover,
.account-trigger:focus-visible {
	border-color: var(--theme-primary);
	color: var(--theme-primary);
	transform: translateY(-1px);
	outline: 0;
}

.account-trigger svg {
	width: 17px;
	height: 17px;
	fill: currentColor;
	flex: 0 0 auto;
}

.account-trigger i {
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: #22c55e;
	box-shadow: 0 0 0 3px rgba(34, 197, 94, .14);
	flex: 0 0 auto;
}

@supports (content-visibility: auto) {
	.site-footer,
	.ava-recommended-playlists {
		content-visibility: auto;
		contain-intrinsic-size: auto 520px;
	}
}


/* Publication and manual update dates */
.single-date-item { display: inline-flex; align-items: center; gap: 5px; white-space: nowrap; }
.single-date-label { font-weight: 750; }
.single-date-divider { width: 1px; height: 18px; background: var(--theme-border); flex: 0 0 auto; }
.single-updated-date .single-date-label { color: #15803d; font-weight: 800; }
[data-theme="dark"] .single-updated-date .single-date-label,
.theme-dark .single-updated-date .single-date-label { color: #86efac; }
@media (max-width: 720px) {
  .single-date-badge { flex-wrap: wrap; }
  .single-date-divider { height: 14px; }
  .single-date-item { gap: 4px; }
}
