.payment-page {
    color: #222;
}

.payment-page__hero {
    padding: 42px 0 24px;
}

.payment-page h1 {
    margin: 0;
    font-size: clamp(38px, 5vw, 56px);
    line-height: 1.08;
}

.payment-page__content {
    padding: 10px 0 72px;
}

.pay__title {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 10px 0;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.35;
    text-align: center;
}

.pay__list {
    display: flex;
    justify-content: space-evenly;
}

.pay__item {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    width: 170px;
}

.pay__item-image {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 170px;
}

.pay__item-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.pay__item-name {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    font-size: 16px;
    line-height: 1.3;
    text-align: center;
}

@media (max-width: 560px) {
    .payment-page__hero {
        padding: 30px 0 18px;
    }

    .payment-page__content {
        padding-bottom: 50px;
    }

    .pay__list {
        flex-wrap: wrap;
        gap: 16px 30px;
    }
}
