/* Sounds UI Overhaul — Splice-like aesthetic */
:root {
    --sd-bg: #ffffff;
    --sd-text: #121212;
    --sd-muted: #707070;
    --sd-accent: #121212;
    --sd-active: #ffab00;
    --sd-border: #eeeeee;
    --sd-row-hover: #f9f9f9;
    --sd-header-bg: #ffffff;
}

.sd-container {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    color: var(--sd-text);
    background: var(--sd-bg);
    padding: 24px;
    max-width: 1400px;
    margin: 0 auto;
}

/* Header & Filters */
.sd-header {
    margin-bottom: 30px;
}

.sd-breadcrumbs {
    font-size: 13px;
    color: var(--sd-muted);
    margin-bottom: 8px;
}

.sd-title {
    font-size: 32px;
    font-weight: 700;
    margin: 0 0 20px 0;
}

.sd-tabs {
    display: flex;
    gap: 24px;
    border-bottom: 1px solid var(--sd-border);
    margin-bottom: 24px;
}

.sd-tab {
    padding: 12px 4px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    color: var(--sd-muted);
    border-bottom: 2px solid transparent;
}

.sd-tab.is-active {
    color: var(--sd-text);
    border-bottom: 3px solid var(--sd-active);
}

.sd-tab-vt {
    background: none;
    border: none;
    border-bottom: 2px solid transparent;
    cursor: pointer;
    font-family: inherit;
    display: flex;
    align-items: center;
    gap: 5px;
}
.sd-tab-vt img { opacity: 0.6; }

.sd-filters {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.sd-select {
    padding: 8px 12px;
    border: 1px solid var(--sd-border);
    border-radius: 6px;
    font-size: 14px;
    background: white;
    cursor: pointer;
    min-width: 120px;
}

.sd-search-bar {
    display: flex;
    align-items: center;
    background: #f4f4f4;
    border-radius: 8px;
    padding: 8px 16px;
    margin-bottom: 24px;
    max-width: 600px;
}

.sd-search-input {
    background: transparent;
    border: none;
    font-size: 14px;
    width: 100%;
    padding-left: 10px;
}

.sd-search-input:focus {
    outline: none;
}

/* Sort & Meta */
.sd-meta-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    font-size: 13px;
    color: var(--sd-muted);
}

/* Table View */
.sd-table {
    width: 100%;
    border-collapse: collapse;
}

.sd-table th {
    text-align: left;
    font-size: 12px;
    text-transform: uppercase;
    color: var(--sd-muted);
    padding: 12px 16px;
    border-bottom: 1px solid var(--sd-border);
    font-weight: 600;
}

/* Row Styles */
.sd-row {
    border-bottom: 1px solid var(--sd-border);
    transition: background 0.2s;
}

.sd-row:hover {
    background: var(--sd-row-hover);
}

.sd-cell {
    padding: 12px 16px;
    font-size: 14px;
    vertical-align: middle;
}

.sd-cell-pack {
    width: 48px;
}

.sd-pack-img {
    width: 40px;
    height: 40px;
    border-radius: 4px;
    object-fit: cover;
    background: #eee;
}

.sd-cell-play {
    width: 40px;
    text-align: center;
}

.sd-play-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: none;
    background: transparent;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--sd-border);
}

.sd-play-btn:hover {
    border-color: var(--sd-text);
}

.sd-cell-name {
    min-width: 200px;
}

.sd-track-name {
    font-weight: 500;
    display: block;
    margin-bottom: 2px;
}

.sd-track-artist {
    font-size: 12px;
    color: var(--sd-muted);
}

.sd-cell-waveform {
    flex-grow: 1;
    min-width: 150px;
}

.sd-wave-placeholder {
    height: 24px;
    background: #f0f0f0;
    border-radius: 2px;
    position: relative;
    overflow: hidden;
}

.sd-wave-progress {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 0%;
    background: var(--sd-accent);
    opacity: 0.3;
    transition: width 0.1s linear;
}

.sd-row.is-active {
    background: var(--sd-row-hover);
    border-left: 3px solid var(--sd-accent);
}

.sd-cell-actions {
    width: 120px;
    text-align: right;
}

.sd-action-icons {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
    align-items: center;
}

.sd-icon-btn {
    color: var(--sd-muted);
    cursor: pointer;
    background: none;
    border: none;
    padding: 4px;
}

.sd-icon-btn:hover {
    color: var(--sd-text);
}

.tcard-play-btn {
    background: transparent;
    border: none;
    width: 36px;
    height: 36px;
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s;
}

.tcard-play-btn:hover {
    transform: scale(1.1);
}

.tcard-play-btn img {
    display: block;
}

/* Push page content above player bar when it's visible */
body.ms-player-active {
    padding-bottom: 90px;
}

/* Persistent Player Bar */
.ms-player-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #ffffff;
    color: var(--sd-text);
    padding: 12px 20px;
    z-index: 1000;
    border-top: 1px solid var(--sd-border);
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.03);
}

.ms-player-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 20px;
}

.ms-player-controls {
    display: flex;
    align-items: center;
    gap: 10px;
}

.ms-ctrl-btn {
    background: transparent;
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
    color: var(--sd-text);
}

.ms-play-trigger {
    background: transparent;
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
    color: var(--sd-text);
}

.ms-play-trigger img {
    transition: transform 0.2s;
}

.ms-play-trigger:hover img {
    transform: scale(1.1);
}

.ms-ctrl-btn:hover {
    background: rgba(255, 255, 255, 0.1);
}

.ms-player-info {
    flex: 1;
    min-width: 150px;
}

.ms-player-title {
    display: block;
    font-weight: 600;
    font-size: 14px;
}

.ms-player-artist {
    font-size: 12px;
    opacity: 0.7;
}

.ms-player-timeline {
    flex: 2;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 11px;
}

.ms-seek-bar {
    flex: 1;
    height: 4px;
    background: rgba(0, 0, 0, 0.1);
    position: relative;
    cursor: pointer;
    border-radius: 2px;
}

.ms-seek-fill {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    background: var(--sd-accent);
    width: 0%;
    border-radius: 2px;
}

.ms-dl-link {
    color: var(--sd-text);
    opacity: 0.7;
    transition: opacity 0.2s;
}

.ms-dl-link:hover {
    opacity: 1;
}

@media (max-width: 900px) {

    .sd-cell-waveform,
    .sd-cell-key,
    .sd-cell-bpm {
        display: none;
    }
}

@media (max-width: 600px) {
    .sd-cell-actions {
        width: auto;
        white-space: nowrap;
    }
    .sd-action-icons {
        gap: 4px;
        flex-wrap: nowrap;
    }
    .ms-fav-icon {
        margin-right: 0 !important;
    }
    .sd-table td, .sd-table th {
        padding: 10px 4px;
    }
}

.sd-track-link { color: inherit; text-decoration: none; }
.sd-track-link:hover { text-decoration: underline; }

.sd-row.is-playing { background: #f0f7ff; }
.sd-row.is-playing .sd-track-name,
.sd-row.is-playing .sd-track-link { color: #1f4aff; }

/* ── Pagination ──────────────────────────────────────────────────────────── */
.sd-pagination {
    display: flex;
    align-items: center;
    gap: 6px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
    padding-bottom: 1rem;
}

.sd-pagination a,
.sd-pagination .sd-page-btn,
.sd-pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 7px 13px;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    color: #111;
    background: #fff;
    transition: all .15s;
    line-height: 1;
}

.sd-pagination a:hover,
.sd-pagination .sd-page-btn:hover,
.sd-pagination .page-numbers:hover {
    background: #f5f5f5;
    border-color: #bbb;
}

.sd-pagination .sd-page-btn.is-active,
.sd-pagination .page-numbers.current {
    background: #111;
    color: #fff;
    border-color: #111;
}

.sd-pagination .sd-page-prev,
.sd-pagination .sd-page-next,
.sd-pagination .prev.page-numbers,
.sd-pagination .next.page-numbers {
    font-weight: 600;
    padding: 7px 16px;
}

.sd-pagination .sd-page-dots,
.sd-pagination .dots {
    padding: 7px 6px;
    color: #999;
    font-size: 13px;
    border: none;
    background: none;
}

/* ── Tag archive ─────────────────────────────────────────────────────────── */
.sd-tag-context { display:flex; align-items:center; gap:12px; padding:12px 0 4px; }
.sd-tag-context-title { font-size:22px; font-weight:700; margin:0; }
.sd-tag-context-count { font-size:13px; color:#888; }

/* ── Single station ──────────────────────────────────────────────────────── */
.st-main { padding-top:24px; max-width:900px; }
.st-title-row { display:flex; align-items:center; flex-wrap:wrap; gap:10px; margin-bottom:6px; }
.st-title { font-size:clamp(28px,2.6vw,40px); margin:0; line-height:1.15; }
.st-artist { color:#666; font-size:15px; margin:0 0 20px; }

.st-genre-chip {
    display:inline-block; padding:6px 14px; border-radius:999px;
    background:#111; color:#fff; font-size:13px; text-decoration:none;
    transition:opacity .2s; white-space:nowrap;
}
.st-genre-chip:hover { opacity:.75; }
.st-genre-chip--tag { background:#f0f0f0; color:#333; }
.st-genre-chip--tag:hover { background:#e0e0e0; opacity:1; }
.st-tags { display:flex; flex-wrap:wrap; gap:8px; margin-bottom:32px; }

.st-card { border:1px solid #eee; border-radius:12px; overflow:hidden; margin-bottom:24px; }

.st-meta {
    display:flex; flex-wrap:wrap; gap:24px;
    padding:16px 0; border-top:1px solid #eee; border-bottom:1px solid #eee;
    margin-bottom:20px; align-items:center;
}
.st-meta-item { display:flex; flex-direction:column; gap:2px; }
.st-meta-label { font-size:11px; text-transform:uppercase; letter-spacing:.06em; color:#999; }
.st-meta-value { font-size:15px; font-weight:600; color:#111; }

.st-related { margin-top:32px; }
.st-related-title { font-size:18px; font-weight:600; margin:0 0 12px; }

@media (max-width:980px) {
    .ms-container-wide { padding:0 12px; }
}

/* ── Playlist hint text ──────────────────────────────────────────────────── */
.ms-pl-hint {
    font-size: 14px;
    color: #666;
    margin: 0 0 16px;
    padding: 12px 16px;
    background: #f9f9f9;
    border-left: 3px solid #111;
    border-radius: 0 8px 8px 0;
    line-height: 1.6;
}

/* ── Playlists index page ────────────────────────────────────────────────── */
.ms-playlists-section {
    margin-bottom: 32px;
}

.ms-playlists-section-title {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .07em;
    color: #999;
    margin: 0 0 8px 16px;
}

.ms-playlists-grid {
    display: flex;
    flex-direction: column;
    gap: 2px;
    border: 1px solid #eee;
    border-radius: 12px;
    overflow: hidden;
}

.ms-pl-card { border-radius: 0; }
.ms-pl-card:not(:last-child) { border-bottom: 1px solid #f0f0f0; }

.ms-pl-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    border-radius: 10px;
    text-decoration: none;
    color: #111;
    transition: background .15s;
}
.ms-pl-card:hover { background: #f5f5f5; }

.ms-pl-card-icon {
    width: 40px; height: 40px;
    border-radius: 8px;
    background: #f0f0f0;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}

.ms-pl-card-info {
    display: flex;
    flex-direction: column;
    gap: 3px;
    flex: 1;
    min-width: 0;
}

.ms-pl-card-title {
    font-size: 15px;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.ms-pl-card-meta {
    font-size: 12px;
    color: #888;
    display: flex;
    align-items: center;
    gap: 8px;
}

.ms-pl-card-badge {
    background: #111;
    color: #fff;
    font-size: 10px;
    font-weight: 600;
    padding: 2px 7px;
    border-radius: 99px;
    letter-spacing: .03em;
}

.ms-pl-card-arrow { color: #ccc; flex-shrink: 0; }
.ms-pl-card:hover .ms-pl-card-arrow { color: #111; }

/* ── Playlist 2-column layout ────────────────────────────────────────────── */
.ms-pl-layout {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.ms-pl-tracks {
    flex: 0 0 30%;
    min-width: 0;
    overflow-x: hidden;
    overflow-y: auto;
    max-height: calc(100vh - 220px);
}

/* Fit table inside narrow column */
.ms-pl-tracks .sd-table { table-layout: fixed; width: 100%; }
.ms-pl-tracks .sd-table-container { overflow: hidden; }

/* Hide time column — not enough room */
.ms-pl-tracks .sd-th-time,
.ms-pl-tracks .sd-cell-time { display: none; }

/* Compact actions — show download icon only, no overflow */
.ms-pl-tracks .sd-cell-actions { width: 36px; padding: 12px 4px; }
.ms-pl-tracks .sd-action-icons { gap: 6px; justify-content: center; }

/* Name cell takes remaining space */
.ms-pl-tracks .sd-cell-name { min-width: 0; overflow: hidden; }
.ms-pl-tracks .sd-track-name,
.ms-pl-tracks .sd-track-link { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; display: block; }
.ms-pl-tracks .sd-track-artist { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

/* Play button column stays fixed */
.ms-pl-tracks .sd-th-play,
.ms-pl-tracks .sd-cell-play { width: 40px; flex-shrink: 0; }

.ms-pl-video-col {
    flex: 0 0 calc(70% - 20px);
    position: sticky;
    top: 80px;
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    overflow: hidden;
}

.ms-pl-video-label {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 8px 14px;
    font-size: 12px;
    font-weight: 600;
    color: #555;
    border-bottom: 1px solid #eee;
    background: #fafafa;
}

.ms-pl-video-frame {
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #000;
}

.ms-pl-video-controls {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 12px 16px;
    background: #fafafa;
    border-top: 1px solid #eee;
}

.ms-pl-vol-row {
    display: flex; align-items: center; gap: 10px; width: 100%;
}
.ms-pl-vol-label { font-size: 12px; font-weight: 600; color: #555; white-space: nowrap; }
.ms-pl-vol-slider { flex: 1; accent-color: #111; cursor: pointer; }
.ms-pl-vol-val { font-size: 11px; color: #999; min-width: 30px; text-align: right; }

@media (max-width: 768px) {
    .ms-pl-layout { flex-direction: column; }
    .ms-pl-tracks { flex: 0 0 100% !important; width: 100% !important; max-height: none; position: static; overflow-x: hidden; }
    .ms-pl-video-col { flex: 0 0 100% !important; width: 100% !important; position: static; }
    .ms-pl-tracks .sd-table { table-layout: auto; }
    .ms-pl-tracks .sd-th-time,
    .ms-pl-tracks .sd-cell-time { display: table-cell; }
    .ms-pl-tracks .sd-cell-actions { width: auto; padding: 12px 16px; }
}

/* ── Video Tester Widget ──────────────────────────────────────────────────── */
.ms-vt {
    position: fixed;
    z-index: 8888;
    display: none;
    flex-direction: column;
    width: 400px;
    min-width: 320px;
    min-height: 220px;
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 14px;
    box-shadow: 0 8px 32px rgba(0,0,0,.12);
    overflow: visible;
    font-family: 'Satoshi', -apple-system, BlinkMacSystemFont, sans-serif;
}


/* Drag handle / header */
.ms-vt__drag {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 14px;
    background: #111;
    cursor: grab;
    user-select: none;
    flex-shrink: 0;
}
.ms-vt__drag:active { cursor: grabbing; }

.ms-vt__drag-label {
    font-size: 12px;
    font-weight: 600;
    color: #fff;
    letter-spacing: .02em;
}

.ms-vt__drag-actions { display: flex; gap: 6px; }
.ms-vt__drag-actions button {
    background: rgba(255,255,255,.12);
    border: none;
    color: #fff;
    width: 22px; height: 22px;
    border-radius: 50%;
    font-size: 13px;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    line-height: 1;
    transition: background .15s;
}
.ms-vt__drag-actions button:hover { background: rgba(255,255,255,.25); }

/* Body */
.ms-vt__body { display: flex; flex-direction: column; flex: 1; min-height: 0; }

/* Source tabs / setup */
.ms-vt__setup { padding: 14px 14px 10px; }

.ms-vt__tabs { display: flex; gap: 6px; margin-bottom: 12px; }
.ms-vt__tab {
    flex: 1;
    padding: 7px 4px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    background: #fff;
    color: #888;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    font-family: inherit;
    transition: all .15s;
}
.ms-vt__tab.active { background: #111; color: #fff; border-color: #111; }
.ms-vt__tab:hover:not(.active) { background: #f5f5f5; color: #111; border-color: #ccc; }

.ms-vt__input-group { display: flex; gap: 8px; align-items: center; }
.ms-vt__input {
    flex: 1;
    padding: 8px 11px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 13px;
    font-family: inherit;
    color: #111;
    outline: none;
    background: #fafafa;
    transition: border-color .15s;
}
.ms-vt__input:focus { border-color: #111; background: #fff; }
.ms-vt__input::placeholder { color: #bbb; }

.ms-vt__load {
    padding: 8px 14px;
    border: none;
    border-radius: 8px;
    background: #111;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    white-space: nowrap;
    transition: opacity .15s;
}
.ms-vt__load:hover { opacity: .8; }

.ms-vt__file-label {
    display: block;
    padding: 10px 14px;
    border: 1px dashed #ccc;
    border-radius: 8px;
    color: #111;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    text-align: center;
    width: 100%;
    box-sizing: border-box;
    transition: all .15s;
}
.ms-vt__file-label:hover { border-color: #111; background: #f5f5f5; }
.ms-vt__file-input { display: none; }

/* Video area */
.ms-vt__player { display: none; flex-direction: column; flex: 1; min-height: 0; }
.ms-vt__screen { flex: 1; min-height: 0; background: #000; overflow: hidden; }
.ms-vt__bar {
    display: flex;
    justify-content: center;
    padding: 8px 14px;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    background: #fafafa;
}
.ms-vt__change {
    background: #111;
    border: none;
    border-radius: 6px;
    padding: 6px 14px;
    font-size: 12px;
    font-weight: 600;
    color: #fff;
    cursor: pointer;
    font-family: inherit;
    transition: opacity .15s;
}
.ms-vt__change:hover { opacity: .8; }

/* Volume rows */
.ms-vt__volumes { padding: 12px 14px 14px; display: none; }
.ms-vt__vol-row {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 0;
}
.ms-vt__vol-row + .ms-vt__vol-row { border-top: 1px solid #f0f0f0; }

.ms-vt__vol-icon { font-size: 14px; flex-shrink: 0; }
.ms-vt__vol-name { font-size: 12px; font-weight: 600; color: #555; min-width: 42px; }
.ms-vt__vol-slider {
    flex: 1;
    accent-color: #111;
    cursor: pointer;
    height: 4px;
}
.ms-vt__vol-val { font-size: 11px; color: #999; min-width: 30px; text-align: right; }

/* Resize handle */
.ms-vt__resize {
    position: absolute;
    bottom: 0; right: 0;
    width: 16px; height: 16px;
    cursor: se-resize;
    background: linear-gradient(135deg, transparent 50%, #ccc 50%);
    border-bottom-right-radius: 14px;
}

/* ── Collections (Playlists) index page ─────────────────────────────── */
.ms-pl-section {
    margin-bottom: 40px;
}
.ms-pl-section__head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    margin-bottom: 16px;
    border-bottom: 1px solid var(--sd-border);
    padding-bottom: 10px;
}
.ms-pl-section__title {
    font-size: 18px;
    font-weight: 700;
    margin: 0;
    color: var(--sd-text);
}
.ms-pl-section__toggle {
    background: none;
    border: 1px solid var(--sd-border);
    border-radius: 20px;
    padding: 4px 14px;
    font-size: 12px;
    font-weight: 600;
    color: var(--sd-muted);
    cursor: pointer;
    transition: border-color .15s, color .15s;
}
.ms-pl-section__toggle:hover {
    border-color: var(--sd-text);
    color: var(--sd-text);
}

.ms-pl-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 16px;
}

/* Playlist card */
.ms-plc {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: var(--sd-text);
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid var(--sd-border);
    transition: box-shadow .15s, transform .15s;
    background: #fff;
}
.ms-plc:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,.1);
    transform: translateY(-2px);
}
.ms-plc__thumb {
    position: relative;
    aspect-ratio: 16/9;
    background: #f4f4f4;
    overflow: hidden;
}
.ms-plc__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.ms-plc__thumb-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f0f0f0;
}
.ms-plc__video-badge {
    position: absolute;
    bottom: 6px;
    left: 6px;
    background: rgba(0,0,0,.7);
    color: #fff;
    font-size: 10px;
    font-weight: 600;
    padding: 3px 7px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 4px;
}
.ms-plc__info {
    padding: 10px 12px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.ms-plc__title {
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.ms-plc__meta {
    font-size: 11px;
    color: var(--sd-muted);
}

@media (max-width: 600px) {
    .ms-pl-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
}
}