/**
 * CMC Commodities Market  [cmc_commodities_market]
 * Full-width layout: one card per category, side-by-side in a grid.
 */

.cmc-com-mkt-widget {
    font-family: inherit!important;
    width: 100%;
}

/* ── Header ──────────────────────────────────────────────────────────────── */

.cmc-com-mkt-header {
    display: flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 12px;
}

.cmc-com-mkt-title {
    font-size: 15px;
    font-weight: 700;
    color: #0f172a;
}

/* ── Grid of category cards ─────────────────────────────────────────────── */

.cmc-com-mkt-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    width: 100%;
}

@media (max-width: 900px) {
    .cmc-com-mkt-grid { grid-template-columns: 1fr; }
}

.cmc-com-mkt-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 2px;
    overflow: hidden;
    box-shadow: 0 1px 4px rgba(0,0,0,0.06);
    min-width: 0;
}

.cmc-com-mkt-card-hd {
    font-size: 13px;
    font-weight: 700;
    color: #0f172a;
    padding: 9px 12px;
    background: #fafbfc;
    border-bottom: 1px solid #e9ecef;
}

/* ── Widget wrapper ──────────────────────────────────────────────────────── */

.cmc-com-mkt-widget-wrap {
    width: 100%;
    overflow: hidden;
}

.cmc-com-mkt-widget-wrap .tradingview-widget-container,
.cmc-com-mkt-widget-wrap .tradingview-widget-container__widget {
    height: 100% !important;
    width: 100% !important;
}
