/*
 * Mangazaar editorial trending leaderboard
 *
 * The component is deliberately self-contained: every selector is rooted at
 * .mz-trending so it cannot alter archive cards, navigation tabs, or readers.
 */

.mz-trending {
    --mz-trending-bg: #050505;
    --mz-trending-panel: #09090b;
    --mz-trending-panel-raised: #0d0d0f;
    --mz-trending-border: rgba(255, 255, 255, 0.075);
    --mz-trending-border-strong: rgba(255, 255, 255, 0.12);
    --mz-trending-muted: #a1a1aa;
    --mz-trending-dim: #71717a;
    --mz-trending-accent: #f59e0b;
    position: relative;
    isolation: isolate;
    overflow: hidden;
    overflow: clip;
    padding: 64px 0;
    background:
        radial-gradient(circle at 82% 18%, rgba(245, 158, 11, 0.055), transparent 31%),
        radial-gradient(circle at 15% 82%, rgba(120, 113, 108, 0.04), transparent 28%),
        var(--mz-trending-bg);
    color: #fff;
    font-family: Vazirmatn, Inter, sans-serif;
    -webkit-font-smoothing: antialiased;
}

.mz-trending::before {
    content: "";
    position: absolute;
    z-index: -1;
    inset: 0;
    pointer-events: none;
    opacity: 0.16;
    background-image: url("../images/noise.svg");
    background-size: 180px 180px;
    /* Preserve the grain without grouping this entire section into a large
     * soft-light compositor surface in Opera. */
    mix-blend-mode: normal;
}

.mz-trending,
.mz-trending * {
    box-sizing: border-box;
}

.mz-trending__container {
    width: min(calc(100% - 40px), 1280px);
    margin-inline: auto;
}

.mz-trending__header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 28px;
    margin-bottom: 24px;
}

.mz-trending__heading {
    display: flex;
    align-items: center;
    gap: 13px;
    min-width: 0;
}

.mz-trending__heading-icon {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    flex: 0 0 auto;
    border: 1px solid rgba(245, 158, 11, 0.19);
    border-radius: 13px;
    background: rgba(245, 158, 11, 0.075);
    color: #fbbf24;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.035);
}

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

.mz-trending__eyebrow {
    margin: 0 0 2px;
    color: #8a857d;
    font-family: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Palatino, Georgia, serif;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.13em;
    line-height: 1.4;
    text-transform: uppercase;
    font-variant-numeric: lining-nums;
}

.mz-trending__title {
    margin: 0;
    color: #fafafa;
    font-size: clamp(22px, 2vw, 27px);
    font-weight: 900;
    letter-spacing: -0.035em;
    line-height: 1.25;
}

.mz-trending__controls {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 0 0 auto;
}

.mz-trending__period-tabs {
    display: flex;
    align-items: center;
    gap: 3px;
    padding: 3px;
    border: 1px solid rgba(255, 255, 255, 0.055);
    border-radius: 11px;
    background: rgba(255, 255, 255, 0.035);
}

.mz-trending__period-tab {
    min-height: 34px;
    padding: 7px 15px;
    border: 0;
    border-radius: 8px;
    background: transparent;
    color: #71717a;
    font: inherit;
    font-size: 11px;
    font-weight: 850;
    line-height: 1;
    white-space: nowrap;
    transition: color 160ms ease, background-color 160ms ease, box-shadow 160ms ease;
}

.mz-trending__period-tab:hover:not([aria-selected="true"]) {
    background: rgba(255, 255, 255, 0.045);
    color: #d4d4d8;
}

.mz-trending__period-tab[aria-selected="true"] {
    background: #f4f4f5;
    color: #09090b;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.24);
}

.mz-trending__view-all {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    min-height: 40px;
    padding: 8px 11px;
    border-radius: 10px;
    color: #a1a1aa;
    font-size: 11px;
    font-weight: 800;
    text-decoration: none;
    white-space: nowrap;
    transition: color 160ms ease, background-color 160ms ease;
}

.mz-trending__view-all svg {
    width: 15px;
    height: 15px;
    transition: transform 160ms ease;
}

.mz-trending__view-all:hover {
    background: rgba(255, 255, 255, 0.045);
    color: #fff;
}

.mz-trending__view-all:hover svg {
    transform: translateX(-2px);
}

.mz-trending__dataset[hidden] {
    display: none !important;
}

.mz-trending__layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 18px;
    direction: ltr;
}

.mz-trending__featured,
.mz-trending__leaderboard {
    min-width: 0;
    border: 1px solid var(--mz-trending-border);
    border-radius: 20px;
    background: var(--mz-trending-panel);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.018);
}

.mz-trending__featured {
    position: relative;
    height: 548px;
    overflow: hidden;
    direction: rtl;
}

.mz-trending__featured::after {
    content: "";
    position: absolute;
    z-index: 0;
    inset: auto -12% -56% 24%;
    height: 74%;
    pointer-events: none;
    background: radial-gradient(ellipse, rgba(245, 158, 11, 0.05), transparent 68%);
}

.mz-trending__feature {
    position: absolute;
    z-index: 1;
    inset: 0;
    display: grid;
    grid-template-columns: minmax(0, 1fr) clamp(260px, 26vw, 320px);
    grid-template-areas: "copy cover";
    align-items: center;
    gap: clamp(24px, 3vw, 38px);
    padding: 24px;
    direction: ltr;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(6px);
    transition: opacity 220ms ease, transform 260ms ease, visibility 220ms ease;
}

.mz-trending__feature.is-active {
    z-index: 2;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

.mz-trending__feature-copy {
    grid-area: copy;
    align-self: center;
    min-width: 0;
    padding-inline: 6px 0;
    direction: rtl;
    text-align: right;
}

.mz-trending__feature-kicker {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 7px;
    margin-bottom: 15px;
}

.mz-trending__rank-pill,
.mz-trending__type-pill,
.mz-trending__genre {
    display: inline-flex;
    align-items: center;
    min-height: 25px;
    border-radius: 8px;
    font-size: 10px;
    font-weight: 800;
    line-height: 1;
}

.mz-trending__rank-pill {
    gap: 5px;
    padding: 5px 9px;
    border: 1px solid rgba(245, 158, 11, 0.2);
    background: rgba(245, 158, 11, 0.075);
    color: #fcd34d;
}

.mz-trending__rank-pill b {
    font-family: Montserrat, Vazirmatn, sans-serif;
    font-size: 11px;
    font-weight: 800;
}

.mz-trending__type-pill {
    padding: 5px 9px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(255, 255, 255, 0.03);
    color: #a1a1aa;
}

.mz-trending__feature-title {
    margin: 0;
    color: #fafafa;
    font-size: clamp(28px, 2.5vw, 34px);
    font-weight: 900;
    letter-spacing: -0.035em;
    line-height: 1.3;
    text-wrap: balance;
}

.mz-trending__feature-title a {
    color: inherit;
    text-decoration: none;
    transition: color 160ms ease;
}

.mz-trending__feature-title a:hover {
    color: #fcd34d;
}

.mz-trending__feature-description {
    display: -webkit-box;
    overflow: hidden;
    margin: 15px 0 0;
    color: #a1a1aa;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.9;
    overflow-wrap: anywhere;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.mz-trending__genres {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
    margin: 15px 0 0;
    padding: 0;
    list-style: none;
}

.mz-trending__genre {
    padding: 5px 8px;
    border: 1px solid rgba(255, 255, 255, 0.055);
    background: rgba(255, 255, 255, 0.024);
    color: #71717a;
    font-size: 9px;
}

.mz-trending__metrics {
    display: flex;
    align-items: stretch;
    gap: 0;
    margin: 22px 0 0;
    padding: 13px 0;
    border-block: 1px solid rgba(255, 255, 255, 0.06);
}

.mz-trending__metric {
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 0;
    margin: 0;
    padding-inline: 16px;
    border-inline-start: 1px solid rgba(255, 255, 255, 0.06);
}

.mz-trending__metric:first-child {
    padding-inline-start: 0;
    border-inline-start: 0;
}

.mz-trending__metric dt,
.mz-trending__metric dd {
    margin: 0;
}

.mz-trending__metric dt {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #71717a;
    font-size: 9px;
    font-weight: 700;
    white-space: nowrap;
}

.mz-trending__metric dt svg {
    width: 13px;
    height: 13px;
}

.mz-trending__metric--rating dt svg {
    color: #fbbf24;
}

.mz-trending__metric--likes dt svg {
    color: #fb7185;
}

.mz-trending__metric--views dt svg {
    color: #60a5fa;
}

.mz-trending__metric dd {
    color: #f4f4f5;
    font-family: Montserrat, Vazirmatn, sans-serif;
    font-size: 12px;
    font-weight: 800;
    white-space: nowrap;
}

.mz-trending__feature-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-top: 20px;
}

.mz-trending__status {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    min-width: 0;
    color: #71717a;
    font-size: 10px;
    font-weight: 800;
    white-space: nowrap;
}

.mz-trending__status-dot {
    width: 6px;
    height: 6px;
    flex: 0 0 auto;
    border-radius: 999px;
    background: #4ade80;
    box-shadow: 0 0 0 4px rgba(74, 222, 128, 0.07), 0 0 10px rgba(74, 222, 128, 0.35);
}

.mz-trending__read-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 42px;
    padding: 10px 16px;
    border: 1px solid #f4f4f5;
    border-radius: 11px;
    background: #f4f4f5;
    color: #09090b;
    font-size: 11px;
    font-weight: 900;
    text-decoration: none;
    white-space: nowrap;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
    transition: color 160ms ease, background-color 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.mz-trending__read-button svg {
    width: 16px;
    height: 16px;
}

.mz-trending__read-button:hover {
    border-color: #f59e0b;
    background: #f59e0b;
    color: #18181b;
    transform: translateY(-1px);
}

.mz-trending__cover {
    position: relative;
    grid-area: cover;
    align-self: center;
    justify-self: end;
    width: 100%;
    aspect-ratio: 2 / 3;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 16px;
    background: #111113;
    direction: rtl;
    box-shadow: 0 22px 45px rgba(0, 0, 0, 0.34);
    transform: translateZ(0);
}

.mz-trending__cover::before {
    content: "";
    position: absolute;
    z-index: 2;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.48), transparent 30%);
}

.mz-trending__cover::after {
    content: "";
    position: absolute;
    z-index: 3;
    inset: 0;
    border-radius: inherit;
    pointer-events: none;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.09);
}

.mz-trending__cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 500ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.mz-trending__cover:hover img {
    transform: scale(1.025);
}

.mz-trending__cover-rank {
    position: absolute;
    z-index: 4;
    inset-inline-start: 13px;
    inset-block-end: 13px;
    display: inline-flex;
    align-items: center;
    gap: 3px;
    min-height: 27px;
    padding: 5px 9px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 8px;
    background: rgba(9, 9, 11, 0.66);
    color: #f4f4f5;
    font-family: Montserrat, Vazirmatn, sans-serif;
    font-size: 11px;
    font-weight: 800;
    line-height: 1;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
}

.mz-trending__feature.is-rank-gold .mz-trending__cover {
    border-color: rgba(245, 158, 11, 0.24);
}

.mz-trending__feature.is-rank-gold .mz-trending__cover-rank {
    border-color: rgba(245, 158, 11, 0.25);
    background: rgba(90, 57, 8, 0.55);
    color: #fde68a;
}

.mz-trending__leaderboard {
    display: flex;
    flex-direction: column;
    height: 548px;
    overflow: hidden;
    direction: rtl;
}

.mz-trending__leaderboard-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    min-height: 64px;
    padding: 12px 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.mz-trending__leaderboard-label {
    margin: 0 0 2px;
    color: #716c64;
    font-family: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Palatino, Georgia, serif;
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.11em;
    line-height: 1.3;
    text-transform: uppercase;
    font-variant-numeric: lining-nums;
}

.mz-trending__leaderboard-title {
    margin: 0;
    color: #d4d4d8;
    font-size: 12px;
    font-weight: 850;
    line-height: 1.4;
}

.mz-trending__leaderboard-count {
    display: grid;
    place-items: center;
    min-width: 36px;
    height: 25px;
    padding-inline: 7px;
    border: 1px solid rgba(255, 255, 255, 0.055);
    border-radius: 7px;
    background: rgba(255, 255, 255, 0.025);
    color: #71717a;
    font-size: 9px;
    font-weight: 800;
}

.mz-trending__ranking {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    gap: 2px;
    min-height: 0;
    margin: 0;
    padding: 7px;
    list-style: none;
}

.mz-trending__ranking-item {
    min-height: 0;
    flex: 1 1 0;
}

.mz-trending__ranking-button {
    position: relative;
    display: flex;
    align-items: center;
    gap: 9px;
    width: 100%;
    height: 100%;
    min-height: 42px;
    padding: 3px 9px;
    overflow: hidden;
    border: 1px solid transparent;
    border-radius: 10px;
    background: transparent;
    color: inherit;
    font: inherit;
    text-align: right;
    transition: background-color 150ms ease, border-color 150ms ease;
}

.mz-trending__ranking-button::after {
    content: "";
    position: absolute;
    inset-block: 11px;
    inset-inline-start: 0;
    width: 2px;
    border-radius: 999px;
    background: #f59e0b;
    opacity: 0;
    transform: scaleY(0.3);
    transition: opacity 150ms ease, transform 180ms ease;
}

.mz-trending__ranking-button:hover {
    background: rgba(255, 255, 255, 0.035);
}

.mz-trending__ranking-button.is-active {
    border-color: rgba(245, 158, 11, 0.09);
    background: rgba(245, 158, 11, 0.065);
}

.mz-trending__ranking-button.is-active::after {
    opacity: 1;
    transform: scaleY(1);
}

.mz-trending__ranking-number {
    width: 28px;
    flex: 0 0 28px;
    color: #52525b;
    font-family: Montserrat, Vazirmatn, sans-serif;
    font-size: 13px;
    font-weight: 800;
    line-height: 1;
    text-align: center;
}

.mz-trending__ranking-number.is-gold {
    color: #fcd34d;
}

.mz-trending__ranking-number.is-silver {
    color: #d4d4d8;
}

.mz-trending__ranking-number.is-bronze {
    color: #d97706;
}

.mz-trending__ranking-thumb {
    width: 31px;
    height: 40px;
    flex: 0 0 31px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.075);
    border-radius: 6px;
    background: #18181b;
}

.mz-trending__ranking-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mz-trending__ranking-copy {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
}

.mz-trending__ranking-name {
    overflow: hidden;
    color: #a1a1aa;
    font-size: 11.5px;
    font-weight: 800;
    line-height: 1.45;
    text-overflow: ellipsis;
    white-space: nowrap;
    transition: color 150ms ease;
}

.mz-trending__ranking-button.is-active .mz-trending__ranking-name,
.mz-trending__ranking-button:hover .mz-trending__ranking-name {
    color: #f4f4f5;
}

.mz-trending__ranking-type {
    overflow: hidden;
    margin-top: 1px;
    color: #52525b;
    font-size: 8.5px;
    font-weight: 700;
    line-height: 1.35;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.mz-trending__ranking-score {
    display: inline-flex;
    align-items: center;
    justify-content: flex-end;
    gap: 3px;
    min-width: 34px;
    flex: 0 0 auto;
    color: #71717a;
    font-family: Montserrat, Vazirmatn, sans-serif;
    font-size: 9px;
    font-weight: 800;
    direction: ltr;
}

.mz-trending__ranking-score svg {
    width: 10px;
    height: 10px;
    color: #a16207;
}

.mz-trending__period-tab:focus-visible,
.mz-trending__ranking-button:focus-visible,
.mz-trending__view-all:focus-visible,
.mz-trending__feature-title a:focus-visible,
.mz-trending__read-button:focus-visible,
.mz-trending__cover:focus-visible {
    outline: 2px solid #f59e0b;
    outline-offset: 2px;
}

@media (max-width: 1179.98px) {
    .mz-trending {
        padding-block: 56px;
    }

    .mz-trending__layout {
        grid-template-columns: minmax(0, 1fr);
    }

    .mz-trending__featured {
        height: 470px;
    }

    .mz-trending__feature {
        grid-template-columns: minmax(0, 1fr) clamp(250px, 35vw, 290px);
        gap: clamp(22px, 4vw, 34px);
    }

    .mz-trending__feature-description {
        -webkit-line-clamp: 2;
    }

    .mz-trending__leaderboard {
        height: auto;
    }

    .mz-trending__ranking {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 4px 8px;
        padding: 8px;
    }

    .mz-trending__ranking-item,
    .mz-trending__ranking-button {
        min-height: 52px;
    }

    .mz-trending__ranking-thumb {
        width: 35px;
        height: 44px;
        flex-basis: 35px;
    }
}

/* Fractional boundary avoids DPR rounding leaving a one-pixel layout gap. */
@media (max-width: 767.98px) {
    .mz-trending {
        padding-block: 46px;
    }

    .mz-trending__container {
        width: min(calc(100% - 32px), 1280px);
    }

    .mz-trending__header {
        align-items: stretch;
        flex-direction: column;
        gap: 17px;
        margin-bottom: 18px;
    }

    .mz-trending__heading-icon {
        width: 38px;
        height: 38px;
        border-radius: 11px;
    }

    .mz-trending__heading-icon svg {
        width: 18px;
        height: 18px;
    }

    .mz-trending__title {
        font-size: 21px;
    }

    .mz-trending__controls {
        width: 100%;
        gap: 8px;
    }

    .mz-trending__period-tabs {
        flex: 1 1 auto;
        min-width: 0;
    }

    .mz-trending__period-tab {
        flex: 1 1 0;
        min-width: 0;
        padding-inline: 8px;
        font-size: 10px;
    }

    .mz-trending__view-all {
        min-height: 40px;
        border: 1px solid rgba(255, 255, 255, 0.055);
        background: rgba(255, 255, 255, 0.025);
    }

    .mz-trending__layout {
        gap: 12px;
    }

    .mz-trending__featured,
    .mz-trending__leaderboard {
        border-radius: 16px;
    }

    .mz-trending__featured {
        height: 318px;
    }

    .mz-trending__feature {
        grid-template-columns: minmax(0, 1fr) clamp(132px, 28vw, 190px);
        gap: 15px;
        padding: 15px;
    }

    .mz-trending__feature-copy {
        padding: 0;
    }

    .mz-trending__feature-kicker {
        gap: 5px;
        margin-bottom: 9px;
    }

    .mz-trending__rank-pill,
    .mz-trending__type-pill {
        min-height: 22px;
        padding: 4px 7px;
        border-radius: 7px;
        font-size: 8.5px;
    }

    .mz-trending__rank-pill b {
        font-size: 9px;
    }

    .mz-trending__feature-title {
        display: -webkit-box;
        overflow: hidden;
        font-size: clamp(18px, 5.3vw, 22px);
        line-height: 1.38;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
    }

    .mz-trending__feature-description,
    .mz-trending__genres {
        display: none;
    }

    .mz-trending__metrics {
        gap: 9px;
        margin-top: 13px;
        padding-block: 9px;
    }

    .mz-trending__metric {
        gap: 3px;
        padding: 0;
        border: 0;
    }

    .mz-trending__metric dt span {
        display: none;
    }

    .mz-trending__metric dt svg {
        width: 11px;
        height: 11px;
    }

    .mz-trending__metric dd {
        font-size: 9px;
    }

    .mz-trending__feature-footer {
        gap: 8px;
        margin-top: 13px;
    }

    .mz-trending__status {
        font-size: 8.5px;
    }

    .mz-trending__status-dot {
        width: 5px;
        height: 5px;
    }

    .mz-trending__read-button {
        min-height: 36px;
        padding: 8px 10px;
        border-radius: 9px;
        font-size: 9px;
    }

    .mz-trending__read-button svg {
        width: 13px;
        height: 13px;
    }

    .mz-trending__cover {
        width: clamp(132px, 28vw, 190px);
        border-radius: 12px;
    }

    .mz-trending__cover-rank {
        inset-inline-start: 8px;
        inset-block-end: 8px;
        min-height: 23px;
        padding: 4px 7px;
        border-radius: 6px;
        font-size: 9px;
    }

    .mz-trending__leaderboard-header {
        min-height: 58px;
        padding-inline: 14px;
    }

    .mz-trending__ranking {
        grid-template-columns: minmax(0, 1fr);
        gap: 3px;
        padding: 7px;
    }

    .mz-trending__ranking-item,
    .mz-trending__ranking-button {
        min-height: 52px;
    }

    .mz-trending__ranking-button {
        padding-inline: 8px;
    }
}

@media (min-width: 600px) and (max-width: 767.98px) {
    .mz-trending__featured {
        height: 340px;
    }

    .mz-trending__feature {
        padding: 18px;
        gap: 20px;
    }

    .mz-trending__feature-description {
        display: -webkit-box;
        margin-top: 10px;
        font-size: 12.5px;
        line-height: 1.75;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
    }

    .mz-trending__ranking {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap-inline: 6px;
    }

    .mz-trending__ranking-button {
        gap: 7px;
        padding-inline: 6px;
    }
}

@media (max-width: 430.98px) {
    .mz-trending__container {
        width: min(calc(100% - 24px), 1280px);
    }

    .mz-trending__view-all span {
        position: absolute;
        width: 1px;
        height: 1px;
        padding: 0;
        margin: -1px;
        overflow: hidden;
        clip: rect(0, 0, 0, 0);
        white-space: nowrap;
        border: 0;
    }

    .mz-trending__view-all {
        width: 40px;
        padding: 0;
        justify-content: center;
    }

    .mz-trending__featured {
        height: 300px;
    }

    .mz-trending__feature {
        grid-template-columns: minmax(0, 1fr) 112px;
        gap: 12px;
        padding: 13px;
    }

    .mz-trending__cover {
        width: 112px;
    }

    .mz-trending__type-pill {
        display: none;
    }

    .mz-trending__feature-title {
        font-size: 18px;
    }

    .mz-trending__feature-footer {
        gap: 6px;
    }

    .mz-trending__status {
        flex: 0 0 auto;
        font-size: 8px;
    }

    .mz-trending__status-text {
        display: inline;
        white-space: nowrap;
    }

    .mz-trending__read-button {
        padding-inline: 9px;
    }
}

@media (max-width: 350.98px) {
    .mz-trending__featured {
        height: 322px;
    }

    .mz-trending__feature-footer {
        align-items: flex-start;
        flex-direction: column;
        gap: 7px;
        margin-top: 10px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .mz-trending *,
    .mz-trending *::before,
    .mz-trending *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }
}
