.promotion-list {
    display: flex;
    flex-wrap: wrap;
}
.promotion-list .promo-list-item {
        width: 100%;
        margin: 0.4375rem 0;
    }
@media screen and (min-width: 48rem) {
    .promotion-list {
        display: flex;
        flex-wrap: wrap;
    }
        .promotion-list .promo-list-item {
            width: calc(100% / 2 - 0.875rem);
            margin: 0.4375rem;
        }
}
@media screen and (min-width: 80rem) {
    .promotion-list {
        display: flex;
        flex-wrap: wrap;
    }
        .promotion-list .promo-list-item {
            width: calc(100% / 3 - 0.875rem);
            margin: 0.4375rem;
        }
}
.load-more-button-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 1.25rem;
}
.load-more-button-wrapper .btn {
        font-size: 1rem;
        border: 0.0625rem solid #343d4c;
        background: transparent;
        line-height: 1;
        min-width: 15.625rem;
        cursor: pointer;
    }
.load-more-button-wrapper .hidden {
        display: none;
    }