﻿.store-footer {
    margin-top: 36px;
    border-top: 1px solid #e3e9f5;
    background: #fbfdff;
}

.store-footer__inner {
    min-height: 120px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 32px;
    align-items: center;
}

.store-footer__brand b {
    display: block;
    color: #10204a;
    font-size: 18px;
    font-weight: 900;
}

.store-footer__brand p {
    margin: 8px 0 0;
    color: #66728a;
    line-height: 1.45;
}

.store-footer__column {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

    .store-footer__column a {
        color: #23439c;
        font-size: 14px;
        font-weight: 700;
        text-decoration: none;
    }

        .store-footer__column a:hover {
            text-decoration: underline;
        }

.store-footer__column--center {
    align-items: center;
    text-align: center;
}

.store-footer__column--right {
    align-items: flex-end;
    text-align: right;
}

@media (max-width: 760px) {
    .store-footer__inner {
        grid-template-columns: 1fr;
        gap: 18px;
        padding-top: 22px;
        padding-bottom: 22px;
        text-align: center;
    }

    .store-footer__column--center,
    .store-footer__column--right {
        align-items: center;
        text-align: center;
    }
}
