/* ==========================================================
   11SECTORS BROKERAGE PLATFORM SECTION
   ========================================================== */

.gw-brokerage-section {
    width: 100%;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


.gw-brokerage-heading-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: start;
    gap: 48px;

    margin: 0 0 18px;
    padding: 0;
}


.gw-brokerage-title {
    color: #00eaff;

    font-size: 13px;
    line-height: 1;

    font-weight: 900;

    letter-spacing: .18em;

    text-transform: uppercase;
}


.gw-brokerage-description {
    color: #7e949d;

    font-size: 12px;
    line-height: 1.55;

    max-width: 540px;
}


.gw-brokerage-grid {
    display: grid;

    grid-template-columns:
        repeat(8, minmax(0, 1fr));

    gap: 10px;

    width: 100%;

    margin: 0;

    padding: 0;
}


.gw-broker-card {
    position: relative;

    display: flex;

    align-items: center;
    justify-content: center;

    gap: 11px;

    min-width: 0;

    height: 112px;

    padding: 12px 10px;

    border: 1px solid #18333c;

    background: #02080b;

    box-sizing: border-box;

    color: #b5bec2;

    text-decoration: none;

    overflow: hidden;

    cursor: pointer;

    transition:
        border-color .15s ease,
        background .15s ease,
        transform .15s ease;
}


.gw-broker-card:hover {
    border-color: #00eaff;

    background: #041015;

    transform: translateY(-2px);
}


.gw-broker-card:focus-visible {
    outline: 2px solid #82ff00;
    outline-offset: 2px;
}


.gw-broker-logo-wrap {
    display: flex;

    align-items: center;
    justify-content: center;

    width: 42px;
    height: 42px;

    flex: 0 0 42px;
}


.gw-broker-logo {
    display: block;

    max-width: 42px;
    max-height: 42px;

    width: auto;
    height: auto;

    object-fit: contain;
}


.gw-broker-fallback {
    display: none;

    align-items: center;
    justify-content: center;

    width: 40px;
    height: 40px;

    border: 1px solid #1e6473;

    color: #00eaff;

    font-size: 11px;
    font-weight: 900;

    letter-spacing: -.03em;

    box-sizing: border-box;
}


.gw-broker-name {
    min-width: 0;

    color: #bbc3c7;

    font-size: 14px;

    line-height: 1.1;

    font-weight: 800;

    white-space: nowrap;

    overflow: hidden;

    text-overflow: ellipsis;
}


.gw-broker-card:hover .gw-broker-name {
    color: #ffffff;
}


.gw-brokerage-disclaimer {
    margin: 14px 0 0;

    color: #506873;

    font-size: 8px;

    line-height: 1.4;
}


/* ==========================================================
   TABLET
   ========================================================== */

@media (max-width: 1200px) {

    .gw-brokerage-grid {
        grid-template-columns:
            repeat(4, minmax(0, 1fr));
    }

}


/* ==========================================================
   PHONE
   ========================================================== */

@media (max-width: 700px) {

    .gw-brokerage-heading-row {
        grid-template-columns: 1fr;

        gap: 10px;
    }


    .gw-brokerage-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }


    .gw-broker-card {
        height: 92px;
    }


    .gw-broker-name {
        font-size: 12px;
    }

}