/* ============================================================
   BURGOCAR LANDING CORE — Promoters Section Styles
   ============================================================ */

.blc-promoters-section {
    padding: 60px 20px;
    background-color: #ffffff;
}

.blc-promoters-section__inner {
    max-width: 1200px;
    margin: 0 auto;
}

.blc-promoters-section__grid {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

.blc-promoters-section__logo {
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.blc-promoters-section__logo:hover {
    transform: scale(1.05);
    opacity: 0.9;
}

.blc-promoters-section__logo img {
    max-height: 60px;
    width: auto;
    object-fit: contain;
}

.blc-promoters-section__logo a {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Responsive */
@media (max-width: 767px) {
    .blc-promoters-section {
        padding: 40px 15px;
    }
    
    .blc-promoters-section__grid {
        gap: 30px;
    }
    
    .blc-promoters-section__logo img {
        max-height: 50px;
    }
}
