.b3-brand-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    padding: 15px;
}

.b3-brand-item {
    background: #fff;
    padding: 12px;
    transition: transform 0.3s ease;
    cursor: pointer;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid #dadada;
}

.b3-brand-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.b3-brand-image {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.b3-brand-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.b3-brand-name {
    color: #333;
    margin: 0;
}

@media (max-width: 1024px) {
    .b3-brand-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .b3-brand-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .b3-brand-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .b3-brand-item {
        flex-direction: column;
        text-align: center;
    }

    .b3-brand-image {
        width: 70px;
        height: 70px;
    }
}

.b3-brand-view-more {
    background: #f8f9fa;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: all 0.3s ease;
}

.b3-brand-view-more:hover {
    background: #e9ecef;
    color: #000;
}

.b3-brand-view-more i {
    margin-bottom: 5px;
}