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

    .country-page .country-card,
    .country-page .country-note,
    .country-page .country-link-card,
    .country-page .country-faq-item {
        padding: 18px;
        border: 1px solid rgba(255, 255, 255, 0.10);
        border-radius: 18px;
        background: rgba(255, 255, 255, 0.045);
    }

    .country-page .country-card strong {
        display: block;
        color: #FFFFFF;
        font-size: 28px;
        line-height: 1;
    }

    .country-page .country-card span,
    .country-page .country-note,
    .country-page .country-link-card span,
    .country-page .country-faq-item p {
        color: rgba(255, 255, 255, 0.64);
        font-size: 13px;
        line-height: 1.6;
    }

    .country-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);
    }

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

    .country-table th,
    .country-table td {
        padding: 14px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        text-align: left;
        vertical-align: top;
    }

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

    .country-table td {
        color: rgba(255, 255, 255, 0.70);
        font-size: 13px;
        line-height: 1.55;
    }

    .country-firm {
        display: flex;
        align-items: center;
        gap: 10px;
        color: #FFFFFF;
        font-weight: 850;
    }

    .country-status {
        display: inline-flex;
        align-items: center;
        width: fit-content;
        min-height: 28px;
        padding: 0 10px;
        border-radius: 999px;
        font-size: 11px;
        font-weight: 900;
        white-space: nowrap;
    }

    .country-status--mapped {
        border: 1px solid rgba(77, 171, 154, 0.34);
        background: rgba(77, 171, 154, 0.12);
        color: #B8FFF3;
    }

    .country-status--verify,
    .country-status--unknown {
        border: 1px solid rgba(245, 200, 92, 0.36);
        background: rgba(245, 200, 92, 0.12);
        color: #FFE7A3;
    }

    .country-status--unavailable {
        border: 1px solid rgba(248, 113, 113, 0.38);
        background: rgba(248, 113, 113, 0.14);
        color: #FCA5A5;
    }

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

    .country-links,
    .country-faq-list {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 12px;
        margin-top: 22px;
    }

    .country-link-card {
        display: block;
        color: #FFFFFF;
        font-weight: 850;
    }

    .country-faq-item h3 {
        margin: 0 0 8px;
        color: #FFFFFF;
        font-size: 15px;
    }

    @media (max-width: 760px) {
        .country-page .country-grid,
        .country-links,
        .country-faq-list {
            grid-template-columns: 1fr;
        }
    }
