/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */

.product-brand-container {
    display: flex;
    flex-wrap: wrap;
}

.product-brand-container .col {
    flex: 0 0 calc(25%); /* 4 columns, minus gap */
    padding: 1rem;
    box-sizing: border-box;
}

@media (max-width: 768px) {
    .product-brand-container .col {
        flex: 0 0 calc(50%); /* 2 columns */
    }
}

@media (max-width: 480px) {
    .product-brand-container .col {
        flex: 0 0 100%; /* 1 column */
    }
}

.product-brand {
    display: block;
    border: 1px solid #e5e5e5;
    border-bottom: 2px solid #e5e5e5;
    color: #333333;
    padding: 10px;
    font-size: 18px;
    font-weight: 600;
}

.product-brand a {
    color: #000000;
}

.product-brand:hover a {
    color: #ef7f1f;
}

.product-brand:hover {
    background: #000;
    color: #ef7f1f;
    text-decoration: none;
    border-color: #000;
}