/* Plugin Styles */
.all-brands {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.brand-thumbnail {
    width: calc(25% - 20px); /* 25% width with margin */
    margin-bottom: 20px;
    text-align: center;
}

.brand-thumbnail img {
    display: block;
    width: 250px;
    height: 100px;
    object-fit: contain;
    margin-bottom: 10px;
}

.brand-thumbnail .brand-image-placeholder {
    width: 250px;
    height: 100px;
    background-color: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}

.brand-thumbnail span {
    display: block;
    max-width: 250px; /* Limiting the width of the brand name */
}

/* Media query for smaller screens (phones) */
@media (max-width: 768px) {
    .brand-thumbnail {
        width: 100%; /* Full width for each brand on smaller screens */
        margin-bottom: 20px;
        display: flex;
        justify-content: center;
    }
}