/* Vireza — compact footer */

.vz-footer {
    background: #141414;
    color: rgba(255, 255, 255, 0.78);
    padding: 22px 0 16px;
}

.vz-footer a {
    color: rgba(255, 255, 255, 0.86);
}

.vz-footer a:hover {
    color: #fff;
}

.vz-footer-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 14px 28px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.vz-footer-brand {
    display: flex;
    align-items: center;
    min-width: 0;
}

.vz-footer-name {
    font-family: var(--vz-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.02em;
    line-height: 1;
}

.vz-footer-brand .custom-logo-link {
    display: inline-flex;
    align-items: center;
    line-height: 0;
}

.vz-footer-brand .custom-logo-link img,
.vz-footer-brand .custom-logo {
    max-height: 28px;
    width: auto;
    filter: brightness(0) invert(1);
}

.vz-footer-nav {
    flex: 1 1 auto;
    min-width: 0;
}

.vz-footer-list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 6px 18px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.vz-footer-list a {
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.01em;
    white-space: nowrap;
    transition: color 0.2s ease, opacity 0.2s ease;
}

.vz-footer-list a:hover {
    opacity: 1;
}

.vz-footer-social {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.vz-footer-social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.85);
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

a.vz-footer-social-link:hover {
    background: rgba(255, 255, 255, 0.16);
    color: #fff;
    transform: translateY(-1px);
}

.vz-footer-bottom {
    padding-top: 12px;
    text-align: center;
}

.vz-footer-copy {
    margin: 0;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.42);
    letter-spacing: 0.02em;
}

@media (max-width: 800px) {
    .vz-footer {
        padding: 18px 0 14px;
    }

    .vz-footer-inner {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 12px;
        padding-bottom: 12px;
    }

    .vz-footer-list {
        justify-content: center;
        gap: 8px 14px;
    }

    .vz-footer-bottom {
        padding-top: 10px;
    }
}

@media (max-width: 480px) {
    .vz-footer-list {
        gap: 6px 12px;
    }

    .vz-footer-list a {
        font-size: 0.75rem;
    }
}
