/* общий контейнер (чтобы блок был аккуратный как на референсе) */
.mp-marketplaces{
    max-width: 1024px;
    margin-left: auto;
    margin-right: auto;
}

/* заголовок/подзаголовок */
.mp-marketplaces-head{
    text-align: left; /* как на референсе */
    margin-bottom: 18px;
}

.mp-marketplaces-title{
    font-size: 34px;
    line-height: 1.15;
    margin: 0 0 10px 0;
    color: #1b1f2a;
}

.mp-marketplaces-subtitle{
    margin: 0;
    font-size: 14px;
    color: rgba(0,0,0,.65);
}

/* сетка карточек */
.mp-marketplaces-grid{
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

/* карточка */
.mp-marketplace-card{
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 22px 22px;
    border-radius: 14px;
    background: #fff;
    border: 1px solid rgba(0,0,0,.08);
    box-shadow: 0 10px 26px rgba(0,0,0,.06);
    text-decoration: none !important;
    transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
    min-height: 96px;
}

.mp-marketplace-card:hover{
    transform: translateY(-2px);
    box-shadow: 0 16px 34px rgba(0,0,0,.10);
    border-color: rgba(0,0,0,.12);
}

/* логотип — цветной, без фильтров */
.mp-marketplace-logo{
    height: 34px;       /* подгони под свои лого */
    width: auto;
    max-width: 120px;
    object-fit: contain;
    filter: none !important;  /* важно: не делать ч/б */
    opacity: 1 !important;
}

/* название справа */
.mp-marketplace-name{
    font-size: 16px;
    font-weight: 600;
    color: rgba(0,0,0,.75);
}

.mp-marketplaces-space{
    margin-top: 40px;
    margin-bottom: 64px;
}