﻿/* =========================================
   Layout (Shared)
   Footer styles used by _Layout.cshtml
========================================= */

.tz-footer {
    border-top: 1px solid var(--mk-border, #e8edf3);
    background: var(--tz-footer-bg, #f4f6f8);
    color: var(--tz-footer-text, #334155);
}

.tz-footer__inner {
    max-width: 1180px;
    margin: 0 auto;
    padding: 14px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.tz-footer__left {
    font-size: 13px;
}

.tz-footer__links {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.tz-footer__link {
    font-size: 13px;
    color: var(--mk-text, #0f172a);
    text-decoration: none;
    opacity: 0.85;
    padding: 6px 8px;
    border-radius: 10px;
}

    .tz-footer__link:hover {
        opacity: 1;
        background: rgba(0, 79, 139, 0.06);
    }

/* Responsive */
@media (max-width: 700px) {
    .tz-footer__inner {
        flex-direction: column;
        align-items: flex-start;
    }
}
