.brands-wrapper {
    padding-top: 120px;
    padding-bottom: 20px;
}

@media (min-width:900px){
    .brands-wrapper {
        padding-top: 180px    
    }
}

.all-brand-title {
    font-size: 40px;
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 25px;
    margin-top:30px;
}

.brand-card {
    display: block;
    text-align: center;
    background: #fff;
    border-radius: 6px;
    padding: 20px 10px;
    transition: 0.2s ease;
    border: 1px solid #eee;
}

.brand-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-decoration: none;
}

.brand-card:hover .brand-name {
    background: #FF8500;
    transition: 0.4s ease-in-out;
}

.brand-logo {
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

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

.brand-name {
    background: #555;
    color: #fff;
    padding: 10px;
    font-weight: 600;
    font-size: 13px;
    border-radius: 4px;
}
.brand-initials {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #ddd;
    color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 20px;
    letter-spacing: 1px;
}