@import url("./Variables.css");

.brands-page {
    margin-top: 4em;
    font-size: 16px;
    padding: 0 1em;
}

.popular-brands-list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    margin-bottom: 4em;
}

.popular-brands-list li {
    width: 150px;
}

.brand-cols { 
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    padding: 1em;
}
.brand-col {
    margin-bottom: 2em;
    line-height: 1.5em;
    font-size: 1em;
}

.brand-col-heading {
    font-size: 1em;
    font-weight: 600;
    padding: 0;
    margin: 0;
}

@media (min-width: 480px) {
    .brand-cols {
        display: block;
        columns: 2 auto;
    }
}

@media (min-width: 768px) {
    .brands-page {
        padding: 0 2em;
    }
    .popular-brands-list li {
        flex-shrink: 1;
        justify-content: space-between;
    }
    .brand-cols {
        display: block;
        columns: 4 auto;
    }
    .brand-col {
        font-size: 1.25em;
    }
    .brand-col-heading {
        font-size: 1.25em;
        line-height: 1.5em;
    }
}

