.offer-payment-methods {
    display: grid;
    gap: .5rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    list-style: none;
    margin: 0;
    padding: 0;
    width: 100%;
}

.offer-payment-methods__item {
    margin: 0;
    min-width: 0;
}

.offer-payment-methods__link {
    align-items: center;
    background: #fff;
    border: 1px solid #d7dde3;
    border-radius: .45rem;
    color: #263746;
    display: flex;
    gap: .6rem;
    justify-content: center;
    min-height: 64px;
    padding: .55rem .65rem;
    text-decoration: none;
    width: 100%;
}

.offer-payment-methods__link img {
    height: auto;
    max-height: 40px;
    max-width: 115px;
    min-width: 0;
    object-fit: contain;
}

.offer-payment-methods__item--prepayment img {
    max-width: 132px;
}

.offer-payment-methods__link:focus-visible {
    outline: 3px solid #d65d00;
    outline-offset: 2px;
}

.offer-payment-methods--footer {
    grid-template-columns: repeat(6, minmax(88px, 112px));
    justify-content: center;
    margin: 1.5rem auto;
    max-width: 72rem;
    padding-left: 1rem;
    padding-right: 1rem;
}

.offer-payment-methods--footer .offer-payment-methods__link {
    min-height: 44px;
    padding: .35rem .5rem;
}

.offer-payment-methods--footer .offer-payment-methods__link img {
    max-height: 28px;
    max-width: 88px;
}

@media (max-width: 767px) {
    .offer-payment-methods--footer {
        grid-template-columns: repeat(3, minmax(88px, 112px));
    }
}

@media (max-width: 479px) {
    .offer-payment-methods {
        grid-template-columns: minmax(0, 1fr);
    }

    .offer-payment-methods--footer {
        grid-template-columns: repeat(2, minmax(88px, 112px));
    }
}
