.at-models {
    margin: 0 auto 4rem auto;
    text-align: center;
}

.at-models__title {
    font-size: var(--h4Size);
}

.at-models__modelsList {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
    margin-bottom: 1.5rem;
}

.at-models__modelsItem {
    padding: 1.5rem 0;
}

.at-models__itemName {
    font-size: .8rem;
    font-weight: 700;
    text-transform: uppercase;
}

.at-models .button {
    padding-inline: 4rem;
}

@media (min-width: 900px) {
    .at-models {
        width: 90%;
    }

    .at-models__modelsList {
        grid-template-columns: repeat(auto-fill, minmax(105px, 1fr));
    }
}

@media (min-width: 1090px) {
    .at-models {
        width: 80%;
    }
}

/* See template for more styling if there are more then 8 items */
@media (min-width: 1200px) {
    .at-models__modelsList {
        grid-template-columns: repeat(8, auto);
    }
}
