.motorcycle__pieces .motorcycle__pieces__title {
    text-transform: uppercase;
    font-size: 1.563rem;
    margin-bottom: 2rem;
    margin-top: 2rem;
    font-weight: 700;
}
.pieces__container .pieces__title, .motorcycles__container .pieces__title {
    text-transform: uppercase;
    font-size: 1rem;
    line-height: 1.8rem;
    font-weight: 800;
}
.pieces__container .show__more, .motorcycles__container .show__more {
    display: flex;
    color: var(--orange);
    font-size: 1rem;
    line-height: 1.8rem;
    text-decoration: none;
    font-weight: 200;
    cursor: pointer;
    transition: var(--btn-hover-duration) var(--btn-hover-ease) color;
}
.pieces__container .show__more:hover, .motorcycles__container .show__more:hover {
    color: var(--orange-dark);
}
@media only screen and (max-width: 1023px) {
    .motorcycle__pieces .pieces__container {
        grid-template-columns: repeat(4, 1fr);
    }
}
@media only screen and (max-width: 620px) {
    .motorcycle__pieces .pieces__container {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media only screen and (max-width: 435px) {
    .motorcycle__pieces:not(.display__mobile) {
        /*display: none;*/
    }
}