.mw-card.live {
    position: relative;
    display: grid;
    grid-template-columns: minmax(78px, 1fr) minmax(72px, 0.9fr) minmax(78px, 1fr);
    align-items: center;
    min-width: 256px;
    height: 56px;
    padding: 5px 10px;
    gap: 8px;
    overflow: hidden;
    text-align: center;
}

.mw-card-price {
    min-width: 0;
    line-height: 1;
}

.mw-card-bid {
    justify-self: start;
    text-align: left;
}

.mw-card-ask {
    justify-self: end;
    text-align: right;
}

.mw-card-center {
    display: flex;
    min-width: 0;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    line-height: 1;
}

.mw-card-center .mw-symbol {
    width: 100%;
    margin: 0;
    text-align: center;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0;
}

.mw-center-metric {
    font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0;
}

.mw-center-delta {
    font-size: 13px;
}

.mw-center-sentiment {
    font-size: 12px;
}

.mw-price-source {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
}

.mw-price-display {
    display: inline-flex;
    align-items: baseline;
    font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
    letter-spacing: 0;
    white-space: nowrap;
}

.mw-price-major,
.mw-price-plain {
    font-size: 18px;
    font-weight: 750;
}

.mw-price-minor {
    margin-left: 1px;
    font-size: 23px;
    font-weight: 850;
}

.mw-card.signal-green .mw-price-display,
.mw-center-metric.positive {
    color: rgba(72, 178, 126, 0.9);
}

.mw-card.signal-red .mw-price-display,
.mw-center-metric.negative {
    color: rgba(205, 83, 86, 0.9);
}

.mw-card.signal-blue .mw-price-display {
    color: rgba(77, 150, 210, 0.9);
}

.mw-card.signal-yellow .mw-price-display {
    color: rgba(214, 188, 84, 0.9);
}

.mw-card.signal-flat .mw-price-display,
.mw-center-metric.flat {
    color: rgba(166, 184, 210, 0.72);
}

.mw-center-sentiment.positive {
    color: rgba(77, 150, 210, 0.9);
}

.mw-center-sentiment.negative {
    color: rgba(214, 188, 84, 0.9);
}

@media (max-width: 820px) {
    .mw-card.live {
        min-width: 236px;
        grid-template-columns: minmax(70px, 1fr) minmax(68px, 0.9fr) minmax(70px, 1fr);
    }

    .mw-price-major,
    .mw-price-plain {
        font-size: 16px;
    }

    .mw-price-minor {
        font-size: 21px;
    }
}
