/* Shared mobile result-card geometry. Activity Signals and transaction cards
   intentionally use the same flat, stacked layout. */
@media (max-width: 767.98px) {
    .mobile-result-card {
        background: #fff;
        border: 1px solid #e1e7ee;
        border-radius: 6px;
        margin-bottom: 0.7rem;
        padding: 0.7rem 0;
    }

    .mobile-result-card > .mobile-result-card__row {
        border: 0;
        display: flex;
        justify-content: space-between;
        gap: 1rem;
        padding: 0.25rem 0.85rem;
        text-align: right;
    }

    .mobile-result-card > .mobile-result-card__row::before {
        content: attr(data-label);
        color: #6c757d;
        flex: 0 0 auto;
        font-size: 0.72rem;
        font-weight: 700;
        text-align: left;
        text-transform: uppercase;
    }

    .mobile-result-card > .mobile-result-card__primary {
        display: block;
        padding: 0.25rem 0.85rem;
        text-align: left;
    }

    .mobile-result-card > .mobile-result-card__primary::before {
        display: none;
    }

    .mobile-result-card__row > :last-child,
    .mobile-result-card__value {
        min-width: 0;
        margin-left: auto;
        text-align: right;
    }

    .mobile-result-card__row a,
    .mobile-result-card__row button {
        min-height: 1.75rem;
    }
}
