/* Extracted from ecosystem/prop-firms/prop-firm-spreads.php. Keep page-specific rules scoped to the prop cluster. */
    .spread-page .spread-grid {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 12px;
        margin-top: 22px;
    }

    .spread-card,
    .spread-note {
        padding: 18px;
        border: 1px solid rgba(255, 255, 255, 0.10);
        border-radius: 18px;
        background: rgba(255, 255, 255, 0.045);
        color: rgba(255, 255, 255, 0.66);
        font-size: 14px;
        line-height: 1.65;
    }

    .spread-card strong {
        display: block;
        color: #FFFFFF;
        font-size: 24px;
        line-height: 1;
    }

    .spread-card span {
        display: block;
        margin-top: 8px;
    }

    .spread-table-wrap {
        margin-top: 24px;
        overflow-x: auto;
        border: 1px solid rgba(255, 255, 255, 0.10);
        border-radius: 20px;
        background: rgba(255, 255, 255, 0.035);
    }

    .spread-table {
        width: 100%;
        min-width: 1260px;
        border-collapse: collapse;
    }

    .spread-table th,
    .spread-table td {
        padding: 14px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        text-align: left;
        vertical-align: top;
        color: rgba(255, 255, 255, 0.70);
        font-size: 13px;
        line-height: 1.55;
    }

    .spread-table th {
        color: rgba(255, 255, 255, 0.48);
        font-size: 11px;
        font-weight: 900;
        letter-spacing: 0.08em;
        text-transform: uppercase;
    }

    .spread-firm {
        color: #FFFFFF;
        font-weight: 850;
    }

    .spread-page .rankings-decision-links {
        min-width: 180px;
    }

    @media (max-width: 760px) {
        .spread-page .spread-grid {
            grid-template-columns: 1fr;
        }
    }
