/* =========================================
   ГЛОБАЛЬНЫЕ СТИЛИ (ОБНОВЛЕНИЕ)
========================================= */

.status-not-for-sale {
    border: 2px solid #444 !important;
    color: #666 !important;
    background: rgba(255,255,255,0.05);
    text-transform: uppercase;
    font-family: 'PT Sans Narrow';
}

:root { 
    /* Цветовая палитра - Премиальная Темная Тема */
    --accent: #ff0033;             /* Красный неон */
    --accent-glow: rgba(255, 0, 51, 0.2);
    --accent-hover: #ff2255;
    
    --bg: #121214;                 /* Насыщенный темный фон */
    --surface: #1e1e22;            /* Фон карточек и панелей */
    --surface-hover: #26262b;      /* Фон при наведении */
    --surface-border: rgba(255, 255, 255, 0.08);
    
    --dark: #000000;
    --blue: #2b4561;
    --blue-neon: #00e5ff;
    
    --gold: #ffd700;               /* Золотой (резидент / супер-админ) */
    --green: #00ff88;              /* Зелёный неон (продажи / рост) */
    
    --text: #f0f0f5;               /* Контрастный белый для основного текста */
    --text-muted: #a0a0ab;         /* Приглушенный серый для второстепенного текста */
    --text-dark: #121214;          /* Темный текст для светлых плашек/кнопок */
    
    --border: rgba(255, 255, 255, 0.1);
    --border-light: rgba(255, 255, 255, 0.05);

    /* Адаптивные фоны для форм (edit-profile и др.) */
    --field-bg: rgba(0, 0, 0, 0.3);
    --field-bg-focus: #0a0a0a;
    --subtle-bg: rgba(255, 255, 255, 0.03);
    --subtle-bg-hover: rgba(255, 255, 255, 0.06);
    --card-bg: rgba(30, 30, 35, 0.6);

    /* Стекло для мобильной навигации / оверлеев (полупрозрачный фон хрома) */
    --glass-bg: rgba(20, 20, 22, 0.9);

    /* Токены компактных отступов */
    --spacing-xs: 4px;
    --spacing-sm: 8px;
    --spacing-md: 12px;
    --spacing-lg: 12px;
    --spacing-xl: 16px;

    /* Радиусы скругления */
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    
    /* Тени */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.4);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.5);
    --shadow-lg: 0 16px 40px rgba(0, 0, 0, 0.6);
}

/* === ЧЁРНАЯ ТЕМА (OLED, истинный #000) === */
:root.theme-black {
    --bg: #000000;
    --surface: #000000;
    --surface-hover: #0a0a0a;
    --surface-border: rgba(255, 255, 255, 0.14);

    --gold: #ffd700;
    --green: #00ff88;

    --text: #f0f0f5;
    --text-muted: #90909a;
    --text-dark: #000000;

    --border: rgba(255, 255, 255, 0.14);
    --border-light: rgba(255, 255, 255, 0.07);

    --field-bg: rgba(0, 0, 0, 0.5);
    --field-bg-focus: #000000;
    --subtle-bg: rgba(255, 255, 255, 0.04);
    --subtle-bg-hover: rgba(255, 255, 255, 0.07);
    --card-bg: rgba(20, 20, 20, 0.6);

    --dark: #000000;
    --blue: #1a2838;

    --glass-bg: rgba(0, 0, 0, 0.9);

    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.85);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.9);
    --shadow-lg: 0 16px 40px rgba(0, 0, 0, 0.95);
}

/* === СВЕТЛАЯ ТЕМА === */
:root.theme-light {
    --bg: #f5f5f7;
    --surface: #ffffff;
    --surface-hover: #f0f0f2;
    --surface-border: rgba(0, 0, 0, 0.08);

    --gold: #c9a700;
    --green: #00a050;

    --text: #1d1d1f;
    --text-muted: #6e6e73;
    --text-dark: #ffffff;

    --border: rgba(0, 0, 0, 0.1);
    --border-light: rgba(0, 0, 0, 0.05);

    --field-bg: rgba(0, 0, 0, 0.04);
    --field-bg-focus: #ffffff;
    --subtle-bg: rgba(0, 0, 0, 0.03);
    --subtle-bg-hover: rgba(0, 0, 0, 0.06);
    --card-bg: rgba(255, 255, 255, 0.85);

    --dark: #ffffff;
    --blue: #e0ebf5;

    --glass-bg: rgba(255, 255, 255, 0.9);

    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 16px 40px rgba(0, 0, 0, 0.16);
}


* { margin: 0; padding: 0; box-sizing: border-box; -webkit-tap-highlight-color: transparent; }

body {
    background-color: var(--bg);
    color: var(--text);
    font-family: 'PT Serif', serif;
    overflow-x: hidden;
    /* PWA / iPhone с чёлкой: не даём контенту уходить под системную навигацию.
       Для страниц с собственной раскладкой (chat, visualizer) эти паддинги
       перекрываются их локальными стилями. */
    padding-top: env(safe-area-inset-top);
    padding-bottom: env(safe-area-inset-bottom);
}

/* Скрываем декоративные заголовки страниц (header без .hero/.profile-hero — контентные оставляем) */
header:not(.hero):not(.profile-hero) { display: none; }

/* ЕДИНЫЙ ЖИВОЙ ФОН ДЛЯ ВСЕХ СТРАНИЦ (ТОЧКИ) */
.ambient-bg {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: var(--bg); 
    z-index: -1;
    overflow: hidden;
}

/* Делаем их похожими на шары/точки, а не на пятна */
.blob {
    position: absolute;
    border-radius: 50%; /* Идеальный круг */
    filter: blur(40px); /* Меньше блюра, чтобы были как шары */
    opacity: 0.4;
    animation: movePoint 20s infinite alternate ease-in-out;
}

.blob-1 { top: 10%; left: 10%; width: 300px; height: 300px; background: var(--blue); animation-duration: 25s; }
.blob-2 { bottom: 20%; right: 10%; width: 250px; height: 250px; background: #5c0011; animation-duration: 30s; animation-delay: -5s; }
.blob-3 { top: 40%; left: 40%; width: 200px; height: 200px; background: rgba(255, 215, 0, 0.15); animation-duration: 35s; animation-delay: -10s; }

@keyframes movePoint {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(60px, -60px) scale(1.1); }
}

/* Шум для текстуры */
.ambient-bg::after {
    content: ""; position: absolute; inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.7' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.04'/%3E%3C/svg%3E");
    pointer-events: none;
}

/* Кнопки */
.btn-main { 
    display: inline-block; background: var(--accent); color: #fff; text-decoration: none; 
    padding: 12px 25px; font-family: 'PT Sans'; font-weight: 900; font-size: 0.8rem; 
    text-transform: uppercase; border: none; cursor: pointer; transition: 0.2s; 
    border-radius: 8px; box-shadow: 0 4px 15px rgba(255,0,51,0.2);
}
.btn-main:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(255,0,51,0.4); filter: brightness(1.1); }

/* 5. МОБИЛЬНОЕ МЕНЮ (НА ВСЮ ШИРИНУ ЭКРАНА + СТЕКЛО) */
.mobile-nav { 
    position: fixed; 
    bottom: 0; 
    left: 0; right: 0; /* Растягиваем на всю ширину */
    
    width: clamp(280px, 95vw, 600px); /* Адаптивная ширина с ограничением */
    margin: 0 auto; /* Центрируем */

    background: var(--glass-bg); /* Темное стекло */
    backdrop-filter: blur(10px); 
    display: flex; 
    justify-content: space-evenly; /* Равные отступы между кнопками */
    padding: 15px 10px; 
    z-index: 9000; 
    border-top: 1px solid rgba(255,255,255,0.05); /* Тонкая граница */
    border-radius: 15px 15px 0 0; /* Скругленные верхние углы */
    box-shadow: 0 -10px 30px rgba(0,0,0,0.5); /* Тень снизу */
}

.mobile-nav a { 
    color: #888; 
    text-decoration: none; 
    font-family: 'PT Sans Narrow'; 
    font-size: 0.75rem; /* Чуть меньше для компактности */
    text-transform: uppercase; 
    letter-spacing: 1px; 
    transition: 0.3s; 
    padding: 5px 0; /* Увеличил кликабельную область */
}

.mobile-nav a.active { 
    color: var(--accent); 
    text-shadow: 0 0 10px rgba(255,0,51,0.4); 
}
/* --- ГЛОБАЛЬНЫЙ ФУТЕР (ЭФФЕКТ ПАРЕНИЯ) --- */
footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    
    /* Делаем полностью прозрачным везде */
    background: transparent !important; 
    border: none !important; 
    
    width: 100%;
    /* Отступ сверху, чтобы контент не прилипал, и снизу под пульт */
    padding: 40px 10px 60px !important; 
    position: relative;
    z-index: 10;
}

footer p {
    font-family: 'PT Sans Narrow', sans-serif; 
    font-size: 0.7rem; 
    letter-spacing: 2px; 
    color: #666; /* Серый цвет, чтобы не отвлекать */
    text-transform: uppercase;
    opacity: 0.6; /* Призрачность */
    margin: 0 auto;
}

/* =========================================
   КЛАССЫ ДЛЯ СИСТЕМНЫХ УВЕДОМЛЕНИЙ (tsNotify)
   ========================================= */
.ts-notify-overlay {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.55);
    z-index: 10000;
    justify-content: center;
    align-items: center;
    padding: var(--spacing-lg);
    backdrop-filter: blur(4px);
    transition: all 0.3s ease;
}

.ts-notify-box {
    background: var(--surface);
    border: 1px solid var(--surface-border);
    padding: var(--spacing-lg) var(--spacing-xl);
    width: 100%;
    max-width: 400px;
    position: relative;
    box-shadow: 10px 10px 0 var(--accent);
    border-radius: var(--radius-md);
    animation: notifyPop 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes notifyPop {
    from { opacity: 0; transform: scale(0.95) translateY(10px); }
    to { opacity: 1; transform: scale(1) translateY(0); }
}

.ts-notify-badge {
    position: absolute;
    top: -12px; left: 20px;
    background: var(--accent);
    color: #fff;
    padding: 3px 12px;
    font-family: 'PT Sans Narrow';
    font-size: 0.65rem;
    font-weight: bold;
    text-transform: uppercase;
    border-radius: var(--radius-sm);
    letter-spacing: 1px;
}

.ts-notify-title {
    font-family: 'PT Sans';
    font-weight: 900;
    color: var(--text);
    margin-top: 5px;
    margin-bottom: var(--spacing-md);
    text-transform: uppercase;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
}

.ts-notify-text {
    font-family: 'PT Serif', serif;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: var(--spacing-lg);
}

.ts-notify-btn {
    width: 100%;
    background: var(--accent);
    color: #fff;
    border: none;
    padding: 12px;
    font-family: 'PT Sans';
    font-weight: 900;
    cursor: pointer;
    border-radius: var(--radius-sm);
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
    transition: all 0.2s ease;
    box-shadow: 0 4px 12px var(--accent-glow);
}

.ts-notify-btn:hover {
    background: var(--accent-hover);
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(255, 0, 51, 0.4);
}
.ts-notify-btn:active {
    transform: translateY(1px);
}

.ts-notify-btn-secondary {
    width: 100%;
    background: var(--surface-hover);
    color: #fff;
    border: 1px solid var(--surface-border);
    padding: 12px;
    font-family: 'PT Sans';
    font-weight: 900;
    cursor: pointer;
    border-radius: var(--radius-sm);
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
    transition: all 0.2s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}
.ts-notify-btn-secondary:hover {
    background: #3a3a42;
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.5);
}
.ts-notify-btn-secondary:active {
    transform: translateY(1px);
}

/* === КРАСИВЫЙ МОДАЛ УСТАНОВКИ PWA === */
.pwa-install-overlay {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 10001;
    justify-content: center;
    align-items: center;
    padding: 20px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}
.pwa-install-overlay.pwa-install-show {
    display: flex;
}

.pwa-install-card {
    background: var(--surface);
    border: 1px solid var(--surface-border);
    border-radius: 24px;
    padding: 40px 28px 28px;
    width: 100%;
    max-width: 360px;
    text-align: center;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    animation: pwaCardPop 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    overflow: hidden;
}
@keyframes pwaCardPop {
    from { opacity: 0; transform: scale(0.9) translateY(20px); }
    to { opacity: 1; transform: scale(1) translateY(0); }
}

.pwa-install-glow {
    position: absolute;
    top: -60px; left: 50%;
    transform: translateX(-50%);
    width: 200px; height: 200px;
    background: radial-gradient(circle, rgba(255, 0, 51, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.pwa-install-close {
    position: absolute;
    top: 12px; right: 16px;
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 1.6rem;
    cursor: pointer;
    line-height: 1;
    padding: 4px 8px;
    border-radius: 8px;
    transition: all 0.2s;
    z-index: 2;
}
.pwa-install-close:hover {
    color: var(--text);
    background: var(--surface-hover);
}

.pwa-install-icon {
    width: 80px; height: 80px;
    margin: 0 auto 16px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(255, 0, 51, 0.3);
    position: relative;
    animation: pwaIconFloat 3s ease-in-out infinite;
}
@keyframes pwaIconFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}
.pwa-install-icon img {
    width: 100%; height: 100%;
    object-fit: cover;
}

.pwa-install-name {
    font-family: 'PT Sans', sans-serif;
    font-weight: 900;
    font-size: 1.4rem;
    color: var(--text);
    margin: 0 0 4px;
    letter-spacing: 0.5px;
}
.pwa-install-tagline {
    font-family: 'PT Serif', serif;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin: 0 0 24px;
}

.pwa-install-section {
    animation: pwaFadeIn 0.3s ease;
}
@keyframes pwaFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Фичи */
.pwa-install-features {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 24px;
}
.pwa-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    background: var(--surface-hover);
    border-radius: 12px;
    font-family: 'PT Sans Narrow', sans-serif;
    font-size: 0.85rem;
    color: var(--text);
    text-align: left;
}
.pwa-feature-icon {
    font-size: 1.2rem;
    flex-shrink: 0;
}

/* iOS шаги */
.pwa-ios-steps {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}
.pwa-ios-step {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    background: var(--surface-hover);
    border-radius: 12px;
    text-align: left;
}
.pwa-ios-step-num {
    background: var(--accent);
    color: #fff;
    width: 24px; height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'PT Sans', sans-serif;
    font-weight: 900;
    font-size: 0.75rem;
    flex-shrink: 0;
}
.pwa-ios-step-icon {
    font-size: 1.3rem;
    flex-shrink: 0;
}
.pwa-ios-step-text {
    font-family: 'PT Sans Narrow', sans-serif;
    font-size: 0.85rem;
    color: var(--text);
    line-height: 1.4;
}
.pwa-ios-step-text b {
    color: var(--accent);
}

/* Fallback */
.pwa-install-manual-text {
    font-family: 'PT Serif', serif;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 24px;
}
.pwa-menu-icon {
    display: inline-block;
    font-size: 1.2rem;
    color: var(--text);
    vertical-align: middle;
}

/* Кнопка CTA */
.pwa-install-cta {
    width: 100%;
    background: var(--accent);
    color: #fff;
    border: none;
    padding: 16px;
    font-family: 'PT Sans', sans-serif;
    font-weight: 900;
    cursor: pointer;
    border-radius: 14px;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: all 0.25s ease;
    box-shadow: 0 6px 20px rgba(255, 0, 51, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.pwa-install-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(255, 0, 51, 0.5);
}
.pwa-install-cta:active {
    transform: translateY(0);
}
.pwa-install-cta-icon {
    font-size: 1.1rem;
}
.pwa-install-cta-secondary {
    background: var(--surface-hover);
    color: var(--text);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--surface-border);
}

/* Успех */
.pwa-success-icon {
    font-size: 3rem;
    margin-bottom: 12px;
    animation: pwaSuccessBounce 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
@keyframes pwaSuccessBounce {
    0% { transform: scale(0); }
    60% { transform: scale(1.2); }
    100% { transform: scale(1); }
}
.pwa-success-text {
    font-family: 'PT Serif', serif;
    color: var(--text);
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 24px;
}

/* === БЕЙДЖ НЕПРОЧИТАННЫХ ЧАТА === */
.chat-unread-badge {
    position: absolute;
    top: -4px; right: -4px;
    background: var(--accent);
    color: #fff;
    font-family: 'PT Sans', sans-serif;
    font-weight: 900;
    font-size: 0.65rem;
    min-width: 20px; height: 20px;
    padding: 0 5px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(255,0,51,0.6);
    animation: chat-badge-pulse 2s infinite;
    z-index: 10;
}
@keyframes chat-badge-pulse {
    0%, 100% { box-shadow: 0 0 8px rgba(255,0,51,0.5); }
    50% { box-shadow: 0 0 16px rgba(255,0,51,0.8); }
}

/* === ПЛАШКА РЕЖИМА НЕВИДИМКИ (GODMODE) === */
.godmode-bar {
    position: fixed; top: 0; left: 0; width: 100%;
    background: var(--accent); color: #fff;
    text-align: center; padding: var(--spacing-md) 20px;
    z-index: 99999;
    font-family: 'PT Sans Narrow', sans-serif; font-weight: bold;
    letter-spacing: 1px; font-size: 0.8rem;
    box-shadow: var(--shadow-md);
}
.godmode-bar-link {
    color: var(--gold); margin-left: 15px;
    text-decoration: underline; font-weight: bold;
}
.godmode-bar-link:hover { text-decoration: none; opacity: 0.85; }

/* === НИЖНИЙ ФУТЕР САЙТА === */
.site-footer {
    text-align: center; padding: 40px 20px 80px;
    background: var(--bg); border-top: 1px solid var(--border);
}
.site-footer-copy {
    font-family: 'PT Sans Narrow', sans-serif;
    font-size: 0.7rem; letter-spacing: 2px;
    color: var(--text-muted); text-transform: uppercase;
}

/* =========================================
   ВВОД И ПОКАЗ КЛЮЧЕВЫХ СЛОВ (теги / чипы)
   ========================================= */

/* Контейнер поля ввода тегов */
.chips-input {
    display: flex; flex-wrap: wrap; gap: 4px;
    padding: 6px 8px;
    min-height: 42px;
    background: var(--field-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    cursor: text;
}
.chips-input:focus-within {
    border-color: var(--accent);
}
.chips-input-tag {
    display: inline; align-items: center;
    padding: 0;
    background: none;
    border: none;
    color: var(--text);
    border-radius: 0;
    font-family: 'PT Sans Narrow', sans-serif;
    font-size: 0.85rem; line-height: 1.5;
    white-space: normal;
}
.chips-input-tag-x {
    cursor: pointer; opacity: 0.5; font-size: 0.8rem; line-height: 1;
    margin-left: 3px; padding: 0; border: none; background: none; color: inherit;
    vertical-align: baseline;
}
.chips-input-tag-x:hover { opacity: 1; }
.chips-input-field {
    flex: 1 1 120px; min-width: 120px;
    background: transparent; border: none; outline: none;
    color: var(--text); padding: 3px 2px;
    font-family: 'PT Sans Narrow', sans-serif; font-size: 0.85rem;
}
.chips-input-field::placeholder { color: var(--text-muted); }

/* Выпадающий список подсказок (autocomplete) */
.chips-suggest {
    position: absolute; z-index: 50;
    max-height: 220px; overflow-y: auto;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-md);
}
.chips-suggest-item {
    padding: 7px 12px; cursor: pointer;
    font-family: 'PT Sans Narrow', sans-serif; font-size: 0.85rem;
    color: var(--text);
}
.chips-suggest-item:hover,
.chips-suggest-item.active {
    background: color-mix(in srgb, var(--accent) 14%, transparent);
}
.chips-suggest-empty {
    padding: 7px 12px; color: var(--text-muted);
    font-family: 'PT Sans Narrow', sans-serif; font-size: 0.82rem;
}

/* Публичный показ тегов (под названием работы / профиля / события) */
.tag-chips {
    display: block;
    margin: 4px 0 0; padding: 0; list-style: none;
    line-height: 1.5;
}
.tag-chips > li.tag-chip,
li.tag-chip {
    display: inline;
    padding: 0; margin: 0;
    background: none; border: none;
    border-radius: 0;
    color: var(--text-muted);
    font-family: 'PT Sans Narrow', sans-serif;
    font-size: 0.72rem; line-height: 1.5;
    letter-spacing: normal;
    text-transform: lowercase;
}
.tag-chips > li.tag-chip::after,
li.tag-chip::after {
    content: " · ";
    color: var(--text-muted);
}
.tag-chips > li.tag-chip:last-child::after,
li.tag-chip:last-child::after {
    content: "";
}