/* GEON — компактный футер: 2 колонки юр.ссылок + платёжные логотипы справа.
   Вынесено в отдельный CSS, т.к. Tailwind на сервере не пересобирается. */

.geon-footer {
    background: #282828;
    color: #b5b5b5;
    padding: 14px 16px;
}

.geon-footer__inner {
    display: grid;
    gap: 10px;
    justify-items: center;
    text-align: center;
    font-size: 11px;
    line-height: 1.45;
}

.geon-footer__col {
    display: grid;
    gap: 5px;
}

.geon-footer a {
    color: inherit;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.geon-footer a:hover {
    text-decoration: none;
}

/* платёжные логотипы (Visa / Mastercard) — заметно меньше прежних 48px */
.geon-footer__pay {
    display: flex;
    align-items: center;
    justify-content: center;
}

.geon-footer__pay img {
    display: block;
    height: 26px;
    width: auto;
}

/* планшет / десктоп: 2-2-1 колонки ссылок + логотипы — всё в один ряд */
@media (min-width: 768px) {
    .geon-footer {
        padding: 12px 30px;
    }

    .geon-footer__inner {
        grid-template-columns: auto auto auto auto;
        align-items: center;
        justify-content: space-between;
        justify-items: start;
        text-align: left;
        gap: 6px 18px;
        font-size: 11px;
        max-width: 1280px;
        margin: 0 auto;
    }

    .geon-footer__pay {
        justify-content: flex-end;
    }

    .geon-footer__pay img {
        height: 28px;
    }
}

@media (min-width: 1280px) {
    .geon-footer {
        padding: 12px 0;
    }

    .geon-footer__inner {
        gap: 6px 28px;
        font-size: 12px;
    }

    .geon-footer__pay img {
        height: 30px;
    }
}
