@media (max-width: 768px) {
    .mobile-bottom-nav--article-actions {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .mobile-bottom-nav--article-actions .p0-mobile-action {
        appearance: none;
        min-width: 0;
        min-height: 52px;
        margin: 0;
        padding: 4px 2px;
        border: 0;
        background: transparent;
        color: inherit;
        font: inherit;
        cursor: pointer;
    }

    .mobile-bottom-nav--article-actions .p0-mobile-action:focus-visible {
        outline: 2px solid var(--accent, #d9272e);
        outline-offset: -3px;
        border-radius: 10px;
    }

    .mobile-bottom-nav--article-actions .p0-mobile-action.is-active,
    .mobile-bottom-nav--article-actions .p0-mobile-action[aria-pressed="true"] {
        color: var(--accent, #d9272e);
        font-weight: 700;
    }

    .mobile-bottom-nav--article-actions .p0-mobile-action:disabled {
        opacity: 0.55;
        cursor: not-allowed;
    }

    .has-p0-mobile-article-actions .global-back-to-top {
        bottom: calc(76px + env(safe-area-inset-bottom, 0px));
    }

    .p0-mobile-progressive-pagination {
        display: grid;
        grid-template-columns: 1fr;
        gap: 8px;
        padding: 8px 0 4px;
        text-align: center;
    }

    .p0-mobile-progressive-pagination > :not(.p0-mobile-load-more):not(.pagination__meta):not(.p0-mobile-feed-status) {
        display: none !important;
    }

    .p0-mobile-progressive-pagination .p0-mobile-load-more {
        display: inline-flex;
        width: 100%;
        min-height: 48px;
        align-items: center;
        justify-content: center;
        box-sizing: border-box;
        padding: 11px 18px;
        border: 1px solid color-mix(in srgb, var(--accent, #d9272e) 35%, #d1d5db);
        border-radius: 12px;
        background: #fff;
        color: var(--accent, #d9272e);
        font-weight: 700;
        text-decoration: none;
    }

    .p0-mobile-progressive-pagination.is-loading .p0-mobile-load-more,
    .p0-mobile-progressive-pagination .p0-mobile-load-more[aria-disabled="true"] {
        opacity: 0.6;
        pointer-events: none;
    }

    .p0-mobile-progressive-pagination .pagination__meta,
    .p0-mobile-feed-status {
        margin: 0;
        color: #64748b;
        font-size: 0.8rem;
        line-height: 1.5;
    }

    .p0-mobile-progressive-pagination.is-complete .p0-mobile-feed-status {
        padding: 10px 0;
    }

    .p0-mobile-feed-item--new {
        animation: p0-mobile-feed-reveal 220ms ease-out both;
    }
}

@keyframes p0-mobile-feed-reveal {
    from {
        opacity: 0;
        transform: translateY(8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (prefers-reduced-motion: reduce) {
    .p0-mobile-feed-item--new {
        animation: none;
    }
}
