.story-track {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: calc((100vw - 72px) / 4);
    gap: 12px;

    padding: 0 18px 4px;
    overflow-x: auto;

    scrollbar-width: none;
    overscroll-behavior-x: contain;
    scroll-snap-type: x proximity;
}

.story-track::-webkit-scrollbar {
    display: none;
}

.story-card {
    min-width: 0;
    padding: 0;

    background: transparent;

    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;

    scroll-snap-align: start;

    transition:
        transform 140ms
        var(--ease-ios);
}

.story-card:active {
    transform: scale(.96);
}

.story-ring {
    display: block;

    width: min(100%, 72px);
    aspect-ratio: 1;

    padding: 2.5px;

    border-radius: 50%;

    background:
        linear-gradient(
            145deg,
            #FFD66B 0%,
            #FC9900 45%,
            #FF5E3A 100%
        );

    box-shadow:
        0 0 0 1px
        rgba(255, 255, 255, .025);
}

.story-inner {
    width: 100%;
    height: 100%;

    padding: 3px;

    display: block;

    border-radius: 50%;
    background: var(--bg);
}

.story-placeholder {
    width: 100%;
    height: 100%;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background:
        radial-gradient(
            circle at 35% 28%,
            #303845,
            #151A22 72%
        );

    color: rgba(255, 255, 255, .76);

    font-size: 19px;
    font-weight: 750;
}

.story-code {
    max-width: 100%;

    color: #D7DBE2;

    font-size: 11px;
    line-height: 1;
    font-weight: 650;

    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.latest-track {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: min(74vw, 325px);

    gap: 14px;

    padding: 0 46px 5px;

    overflow-x: auto;

    scrollbar-width: none;
    scroll-snap-type: x mandatory;
    overscroll-behavior-x: contain;
}

.latest-track::-webkit-scrollbar {
    display: none;
}

.latest-card {
    min-width: 0;

    scroll-snap-align: start;

    cursor: pointer;

    transition:
        transform 140ms
        var(--ease-ios);
}

.latest-card:active {
    transform: scale(.985);
}

.card-cover {
    width: 100%;
    aspect-ratio: 1;

    overflow: hidden;

    border-radius: var(--radius-lg);

    background: var(--surface);

    border:
        1px solid var(--border);
}

.cover-placeholder {
    width: 100%;
    height: 100%;

    display: grid;
    place-items: center;

    background:
        radial-gradient(
            circle at 30% 20%,
            rgba(252, 153, 0, .15),
            transparent 38%
        ),
        linear-gradient(
            145deg,
            #171C25,
            #0F131A
        );
}

.cover-placeholder span {
    color: rgba(255, 255, 255, .18);

    font-size: 32px;
    font-weight: 800;

    letter-spacing: -1px;
}

.latest-meta {
    padding: 11px 2px 0;

    display: grid;
    gap: 3px;
}

.latest-meta strong {
    color: var(--text);

    font-size: 14px;
    line-height: 1.2;
}

.latest-meta span {
    color: var(--muted);

    font-size: 11px;
    line-height: 1.25;

    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.category-grid {
    padding: 0 18px;

    display: grid;
    grid-template-columns: repeat(4, 1fr);

    gap: 10px;
}

.category-card {
    min-width: 0;

    padding: 14px 5px 12px;

    display: flex;
    flex-direction: column;
    align-items: center;

    gap: 8px;

    border:
        1px solid var(--border);

    border-radius: var(--radius-md);

    background:
        linear-gradient(
            160deg,
            rgba(255, 255, 255, .045),
            rgba(255, 255, 255, .018)
        );

    transition:
        transform 140ms var(--ease-ios),
        background-color 160ms ease;
}

.category-card:active {
    transform: scale(.96);
}

.category-icon {
    width: 36px;
    height: 36px;

    display: grid;
    place-items: center;

    border-radius: 12px;

    background:
        var(--accent-soft);

    color: var(--accent);
}

.category-icon svg {
    width: 20px;
    height: 20px;

    fill: none;
    stroke: currentColor;
    stroke-width: 1.65;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.category-label {
    max-width: 100%;

    color: #DBDFE6;

    font-size: 10px;
    font-weight: 650;

    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.all-collections-card {
    width: calc(100% - 36px);

    margin: 12px 18px 0;

    padding: 14px 15px;

    display: grid;
    grid-template-columns:
        auto 1fr auto;

    align-items: center;

    gap: 12px;

    text-align: left;

    border:
        1px solid
        rgba(252, 153, 0, .16);

    border-radius: var(--radius-md);

    background:
        radial-gradient(
            circle at 5% 0%,
            rgba(252, 153, 0, .16),
            transparent 35%
        ),
        linear-gradient(
            135deg,
            #171A20,
            #101319
        );

    transition:
        transform 140ms var(--ease-ios),
        border-color 160ms ease;
}

.all-collections-card:active {
    transform: scale(.985);

    border-color:
        rgba(252, 153, 0, .28);
}

.all-icon {
    width: 42px;
    height: 42px;

    display: grid;
    place-items: center;

    border-radius: 14px;

    color: var(--accent);

    background:
        rgba(252, 153, 0, .11);
}

.all-icon svg,
.all-arrow svg {
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.all-icon svg {
    width: 20px;
    height: 20px;
}

.all-copy {
    min-width: 0;

    display: grid;
    gap: 3px;
}

.all-copy strong {
    color: var(--text);

    font-size: 13px;
    font-weight: 720;
}

.all-copy small {
    color: var(--muted);

    font-size: 10px;

    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.all-arrow {
    color: var(--muted);
}

.all-arrow svg {
    width: 18px;
    height: 18px;
}
.normal-grid {
    padding: 0 18px;

    display: grid;
    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap:
        18px 10px;
}

.normal-card {
    min-width: 0;

    cursor: pointer;

    transition:
        transform 140ms var(--ease-ios);
}

.normal-card:active {
    transform: scale(.97);
}

.normal-cover {
    width: 100%;
    aspect-ratio: 1;

    display: grid;
    place-items: center;

    overflow: hidden;

    border:
        1px solid var(--border);

    border-radius: 14px;

    background:
        linear-gradient(
            145deg,
            #181D26,
            #10141B
        );

    color:
        rgba(255, 255, 255, .16);

    font-size: 16px;
    font-weight: 780;
}

.normal-meta {
    padding:
        8px 2px 0;

    display: grid;
    gap: 2px;
}

.normal-meta strong,
.normal-meta span {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.normal-meta strong {
    color: #E8EAF0;

    font-size: 11px;
}

.normal-meta span {
    color: var(--muted);

    font-size: 9px;
}

@media (min-width: 760px) {

    .story-track {
        grid-auto-columns: 76px;
    }

    .latest-track {
        grid-auto-columns: 325px;
    }
}

/* ===== STORY DOCK ===== */

.dock-stories {
    display: flex;
    align-items: center;
    gap: 6px;

    opacity: 0;
    visibility: hidden;

    transform: translateY(12px);

    pointer-events: none;

    transition:
        opacity 180ms ease,
        transform 240ms cubic-bezier(.32, .72, 0, 1),
        visibility 180ms ease;
}

.top-bar.story-docked .dock-stories {
    opacity: 1;
    visibility: visible;

    transform: translateY(0);
}

.dock-story {
    width: 25px;
    height: 25px;

    padding: 1.5px;

    display: block;

    overflow: hidden;

    border-radius: 50%;

    background:
        linear-gradient(
            145deg,
            #FFD66B,
            #FC9900 48%,
            #FF5E3A
        );

    transform: translateY(10px) scale(.88);
    opacity: 0;

    transition:
        transform 260ms cubic-bezier(.32, .72, 0, 1),
        opacity 180ms ease;
}

.top-bar.story-docked .dock-story {
    transform: translateY(0) scale(1);
    opacity: 1;
}

.top-bar.story-docked .dock-story:nth-child(2) {
    transition-delay: 24ms;
}

.top-bar.story-docked .dock-story:nth-child(3) {
    transition-delay: 48ms;
}

.top-bar.story-docked .dock-story:nth-child(4) {
    transition-delay: 72ms;
}

.dock-story-inner {
    width: 100%;
    height: 100%;

    display: grid;
    place-items: center;

    overflow: hidden;

    border: 2px solid var(--bg);
    border-radius: 50%;

    background: #171C25;

    color: #D9DDE4;

    font-size: 8px;
    font-weight: 800;
}

.dock-story-inner img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
    border-radius: 50%;
}

.story-section.story-docked-source {
    opacity: .98;
}

.story-inner img,
.card-cover img,
.normal-cover img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
}

.story-inner img {
    border-radius: 50%;
}

.card-cover img,
.normal-cover img {
    border-radius: inherit;
}

/* ===== HOME SKELETON LOADING ===== */

.kg-skeleton {
    position: relative;
    overflow: hidden;

    background:
        rgba(255, 255, 255, .055);
}

.kg-skeleton::after {
    content: "";

    position: absolute;
    inset: 0;

    transform: translateX(-100%);

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(255, 255, 255, .075),
            transparent
        );

    animation:
        kgSkeletonShimmer 1.25s ease-in-out infinite;
}

@keyframes kgSkeletonShimmer {
    100% {
        transform: translateX(100%);
    }
}


/* Hottest */

.story-skeleton {
    min-width: 0;

    display: flex;
    flex-direction: column;
    align-items: center;

    gap: 8px;
}

.story-skeleton-circle {
    width: min(100%, 72px);
    aspect-ratio: 1;

    border-radius: 50%;
}

.story-skeleton-code {
    width: 52px;
    height: 9px;

    border-radius: 999px;
}


/* Latest */

.latest-skeleton {
    min-width: 0;
}

.latest-skeleton-cover {
    width: 100%;
    aspect-ratio: 1;

    border-radius: var(--radius-lg);
}

.latest-skeleton-meta {
    padding: 11px 2px 0;

    display: grid;
    gap: 6px;
}

.latest-skeleton-code {
    width: 34%;
    height: 12px;

    border-radius: 999px;
}

.latest-skeleton-name {
    width: 58%;
    height: 9px;

    border-radius: 999px;
}


/* Normal */

.normal-skeleton {
    min-width: 0;
}

.normal-skeleton-cover {
    width: 100%;
    aspect-ratio: 1;

    border-radius: 14px;
}

.normal-skeleton-meta {
    padding: 8px 2px 0;

    display: grid;
    gap: 5px;
}

.normal-skeleton-code {
    width: 55%;
    height: 9px;

    border-radius: 999px;
}

.normal-skeleton-name {
    width: 78%;
    height: 7px;

    border-radius: 999px;
}


@media (prefers-reduced-motion: reduce) {
    .kg-skeleton::after {
        animation: none;
    }
}

/* ===== SEARCH RESULTS ===== */

.search-results-page {
    display: none;
    padding: 22px 0 110px;
}

.search-results-page.is-visible {
    display: block;
}

.search-results-inner {
    width: 100%;
}

.search-results-heading {
    position: relative;
    padding: 0 18px 16px;
}

.search-results-heading h2 {
    margin: 3px 0 0;
    color: var(--text);
    font-size: 26px;
    line-height: 1;
    font-weight: 780;
    letter-spacing: -.7px;
}

.search-results-count {
    position: absolute;
    right: 18px;
    bottom: 16px;
    color: var(--muted);
    font-size: 11px;
    font-weight: 650;
}

.search-results-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px 10px;
    padding: 0 18px;
}

.search-result-card {
    min-width: 0;
    cursor: pointer;
}

.search-result-cover {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 14px;
    background: var(--surface);
    border: 1px solid var(--border);
}

.search-result-cover img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.search-result-meta {
    display: grid;
    gap: 3px;
    padding: 8px 2px 0;
}

.search-result-meta strong {
    overflow: hidden;
    color: var(--text);
    font-size: 11px;
    font-weight: 740;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.search-result-meta span {
    overflow: hidden;
    color: var(--muted);
    font-size: 9px;
    white-space: nowrap;
    text-overflow: ellipsis;
}


/* Search skeleton */

.search-result-skeleton-cover {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 14px;
}

.search-result-skeleton-meta {
    display: grid;
    gap: 6px;
    padding: 8px 2px 0;
}

.search-result-skeleton-code {
    width: 55%;
    height: 9px;
    border-radius: 999px;
}

.search-result-skeleton-name {
    width: 78%;
    height: 7px;
    border-radius: 999px;
}


/* Empty / error */

.search-results-state {
    min-height: 225px;
    margin: 0 18px;
    padding: 25px 20px;
    place-items: center;
    align-content: center;
    text-align: center;
    border-radius: 18px;
    background: rgba(255, 255, 255, .025);
    border: 1px solid rgba(255, 255, 255, .05);
}

.search-results-state:not([hidden]) {
    display: grid;
}

.search-results-state strong {
    color: var(--text);
    font-size: 15px;
    font-weight: 740;
}

.search-results-state span {
    max-width: 260px;
    margin-top: 6px;
    color: var(--muted);
    font-size: 11px;
    line-height: 1.55;
}

.search-results-retry {
    margin-top: 15px;
    min-width: 96px;
    height: 38px;
    padding: 0 18px;
    border: 0;
    border-radius: 999px;
    background: #FC9900;
    color: #0A0D13;
    font-size: 11px;
    font-weight: 760;
}

/* ===== HOME ERROR / RETRY ===== */

.home-error-state {
    grid-column: 1 / -1;
    min-height: 225px;
    margin-top: 4px;
    padding: 25px 20px;

    display: grid;
    place-items: center;
    align-content: center;

    text-align: center;

    border-radius: 18px;
    background: rgba(255, 255, 255, .025);
    border: 1px solid rgba(255, 255, 255, .05);
}

.home-error-state strong {
    color: var(--text);
    font-size: 15px;
    font-weight: 740;
}

.home-error-state span {
    max-width: 260px;
    margin-top: 6px;

    color: var(--muted);
    font-size: 11px;
    line-height: 1.55;
}

.home-retry-button {
    min-width: 96px;
    height: 38px;
    margin-top: 15px;
    padding: 0 18px;

    border: 0;
    border-radius: 999px;

    background: #FC9900;
    color: #0A0D13;

    font-size: 11px;
    font-weight: 760;
}

/* ===== JS STORY SEQUENCE ===== */

/*
   JS controls each story separately.
   No scale / bounce / overshoot.
*/

.top-bar.story-sequencing
.top-actions:not(.search-open)
.dock-story {
    opacity: 0 !important;
    transform: translateY(5px) !important;

    transition:
        opacity 180ms ease-out,
        transform 240ms cubic-bezier(.22, 1, .36, 1) !important;

    transition-delay: 0ms !important;
}

.top-bar.story-sequencing
.top-actions:not(.search-open)
.dock-story.story-visible {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

/* ===== STORY SEQUENCE DISTANCE 24PX ===== */
.top-bar.story-sequencing
.top-actions:not(.search-open)
.dock-story {
    transform: translateY(24px) !important;
}

.top-bar.story-sequencing
.top-actions:not(.search-open)
.dock-story.story-visible {
    transform: translateY(0) !important;
}

/* ===== STORY FADE FASTER ===== */

.top-bar.story-sequencing
.top-actions:not(.search-open)
.dock-story {
    transition:
        opacity 100ms ease-out,
        transform 240ms cubic-bezier(.22, 1, .36, 1) !important;
}

/* ===== STORY FADE EXTRA FAST ===== */

.top-bar.story-sequencing
.top-actions:not(.search-open)
.dock-story {
    transition:
        opacity 60ms ease-out,
        transform 240ms cubic-bezier(.22, 1, .36, 1) !important;
}

/* ===== STORY FADE VERY EARLY ===== */

.top-bar.story-sequencing
.top-actions:not(.search-open)
.dock-story {
    transition:
        opacity 25ms ease-out,
        transform 240ms cubic-bezier(.22, 1, .36, 1) !important;
}

/* ===== STORY FADE EXTRA FAST ===== */

.top-bar.story-sequencing
.top-actions:not(.search-open)
.dock-story {
    transition:
        opacity 60ms ease-out,
        transform 240ms cubic-bezier(.22, 1, .36, 1) !important;
}

/* ===== LATEST PORTRAIT SPACING ===== */
@media (max-width: 600px) and (orientation: portrait) {
    .latest-track {
        padding-left: 72px;
        padding-right: 72px;
    }
}

/* ===== LATEST SNAP EDGE FIX ===== */
.latest-track {
    scroll-padding-left: 25px;
    scroll-padding-right: 25px;
}

@media (max-width: 600px) and (orientation: portrait) {
    .latest-track {
        padding-left: 25px;
        padding-right: 25px;
        scroll-padding-left: 25px;
        scroll-padding-right: 25px;
    }
}

/* ===== RUN 2 · HOME FOUNDATION ===== */

/* Hottest is intentionally smaller than the original story row. */
.story-track {
    grid-auto-columns: 58px;
    gap: 10px;
}

.story-ring,
.story-skeleton-circle {
    width: 56px;
}

.story-ring {
    position: relative;
}

.story-code {
    font-size: 10px;
}

/* Automatic Hottest rank signature: thicker at #1, lighter by #7. */
.story-ring.hottest-rank-1 { padding: 4.6px; }
.story-ring.hottest-rank-2 { padding: 4.2px; }
.story-ring.hottest-rank-3 { padding: 3.8px; }
.story-ring.hottest-rank-4 { padding: 3.4px; }
.story-ring.hottest-rank-5 { padding: 3.1px; }
.story-ring.hottest-rank-6 { padding: 2.8px; }
.story-ring.hottest-rank-7 { padding: 2.5px; }

.hottest-flame {
    position: absolute;
    z-index: 2;
    top: -5px;
    right: -4px;

    display: grid;
    place-items: center;

    border-radius: 999px;
    background: rgba(10, 13, 19, .88);
    box-shadow: 0 1px 8px rgba(0, 0, 0, .34);

    color: #FC9900;
    pointer-events: none;
}

.hottest-flame svg {
    width: 100%;
    height: 100%;
    fill: currentColor;
}

.hottest-flame-1 {
    width: 18px;
    height: 18px;
}

.hottest-flame-2 {
    width: 16px;
    height: 16px;
}

.hottest-flame-3 {
    width: 14px;
    height: 14px;
}

/* Dock grows slightly while preserving the locked sequence animation. */
.dock-story {
    width: 31px;
    height: 31px;
}

/* Classic / Trending share the same premium 3-column card language. */
.trending-section .normal-grid,
.normal-section .normal-grid {
    min-height: 0;
}

/* Last-viewed 3: signature border only, no badge or label. */
.normal-card.recently-viewed .normal-cover {
    border-color: rgba(252, 153, 0, .55);
    box-shadow:
        0 0 0 1px rgba(252, 153, 0, .12),
        0 7px 22px rgba(252, 153, 0, .035);
}

@media (max-width: 390px) {
    .story-track {
        grid-auto-columns: 56px;
        gap: 9px;
    }

    .story-ring,
    .story-skeleton-circle {
        width: 54px;
    }

    .dock-story {
        width: 30px;
        height: 30px;
    }
}

@media (min-width: 760px) {
    .story-track {
        grid-auto-columns: 60px;
    }

    .story-ring,
    .story-skeleton-circle {
        width: 58px;
    }
}

/* Give the top-three flame enough breathing room without growing the story. */
.story-track {
    padding-top: 5px;
}

/* ===== RUN 2 FIX · USER TUNING ===== */
/* Keep the original story density; only make the visible ring slightly smaller. */
.story-track {
    grid-auto-columns: calc((100vw - 72px) / 4);
    gap: 12px;
}

.story-ring,
.story-skeleton-circle {
    width: min(100%, 68px);
}

.story-code {
    font-size: 11px;
}

/* Exact 50% reduction from the first Run 2 rank-ring thicknesses. */
.story-ring.hottest-rank-1 { padding: 2.30px; }
.story-ring.hottest-rank-2 { padding: 2.10px; }
.story-ring.hottest-rank-3 { padding: 1.90px; }
.story-ring.hottest-rank-4 { padding: 1.70px; }
.story-ring.hottest-rank-5 { padding: 1.55px; }
.story-ring.hottest-rank-6 { padding: 1.40px; }
.story-ring.hottest-rank-7 { padding: 1.25px; }

/* Dock: only a small increase, preserving the locked sequence animation. */
.dock-story {
    width: 33px;
    height: 33px;
}

/* Last-viewed signature: a touch clearer, still intentionally subtle. */
.normal-card.recently-viewed .normal-cover {
    border-color: rgba(252, 153, 0, .68);
    box-shadow:
        0 0 0 1px rgba(252, 153, 0, .18),
        0 8px 24px rgba(252, 153, 0, .05);
}

.home-grid-empty {
    grid-column: 1 / -1;
    padding: 16px 14px;
    border: 1px solid rgba(255, 255, 255, .055);
    border-radius: 14px;
    color: var(--muted);
    background: rgba(255, 255, 255, .018);
    text-align: center;
    font-size: 11px;
}

@media (max-width: 390px) {
    .story-track {
        grid-auto-columns: calc((100vw - 72px) / 4);
        gap: 10px;
    }

    .story-ring,
    .story-skeleton-circle {
        width: min(100%, 66px);
    }

    .dock-story {
        width: 32px;
        height: 32px;
    }
}

@media (min-width: 760px) {
    .story-ring,
    .story-skeleton-circle {
        width: min(100%, 70px);
    }
}

/* ===== RUN 2–4 FINAL TUNING · USER LOCK ===== */
/* Hottest: closer to the original size, but still just slightly smaller. */
.story-ring,
.story-skeleton-circle {
    width: min(100%, 70px);
}

/* Docked stories: another small size lift; sequence/timing stays untouched. */
.dock-story {
    width: 35px;
    height: 35px;
}

/* Last-viewed signature: only a little stronger than the approved version. */
.normal-card.recently-viewed .normal-cover {
    border-width: 1.15px;
    border-color: rgba(252, 153, 0, .74);
    box-shadow:
        0 0 0 1.15px rgba(252, 153, 0, .21),
        0 8px 24px rgba(252, 153, 0, .055);
}

/* Latest: native, GPU-friendly glide with looser snap for a flagship feel. */
.latest-track {
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
}

.latest-card {
    scroll-snap-stop: normal;
}

@media (max-width: 390px) {
    .story-ring,
    .story-skeleton-circle {
        width: min(100%, 69px);
    }

    .dock-story {
        width: 34px;
        height: 34px;
    }
}

@media (min-width: 760px) {
    .story-ring,
    .story-skeleton-circle {
        width: min(100%, 72px);
    }
}

/* ===== RUN 2–4 MICRO TUNING · DOCK + HOTTEST EDGE ===== */
/* Preserve the Hottest row's intended 18px edge inset when CSS scroll-snap settles. */
.story-track {
    scroll-padding-left: 18px;
    scroll-padding-right: 18px;
}

/* Docked story final target: balanced below the 44px closed Search circle. */
.dock-story {
    width: 36px;
    height: 36px;
}

@media (max-width: 390px) {
    .dock-story {
        width: 36px;
        height: 36px;
    }
}


/* ===== FINAL OFFLINE / EMPTY HOME STATES ===== */

.story-track.is-empty,
.latest-track.is-empty {
    display: block;
    overflow: hidden;
}

.home-strip-empty {
    width: 100%;
    padding: 16px 14px;

    border:
        1px solid rgba(255,255,255,.055);

    border-radius: 14px;

    color: var(--muted);

    background:
        rgba(255,255,255,.018);

    text-align: center;

    font-size: 11px;
    line-height: 1.4;
}

.story-track.is-empty {
    padding-right: 18px;
}

.latest-track.is-empty {
    padding-right: 46px;
}


/* Match Newest empty state width with Hottest */
.latest-track.is-empty {
    padding-right: 18px !important;
}

/* ===== FINAL EMPTY STATE WIDTH FIX ===== */
.latest-track.is-empty {
    width: 100% !important;
    padding-left: 18px !important;
    padding-right: 18px !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
}

.latest-track.is-empty .home-strip-empty {
    width: 100% !important;
}


/* ===== FINAL EXACT EMPTY WIDTH ===== */
.latest-track.is-empty {
    display: block !important;
    width: auto !important;
    margin: 0 !important;
    padding: 0 18px 5px !important;
}

.latest-track.is-empty .home-strip-empty {
    width: 100% !important;
    margin: 0 !important;
}

.story-track.is-empty {
    padding-left: 18px !important;
    padding-right: 18px !important;
}
