/* Footer widget styles */
.site-footer {
    background: var(--black);
    color: rgba(255, 255, 255, 0.55);
    padding: 3rem 0;
    font-size: 0.9rem;
    border-top: 1px solid color-mix(in srgb, var(--light-gray) 15%, transparent);
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.footer-inner img {
    height: 91px !important;
    opacity: 0.7;
    width: auto;
}

.footer-links ul {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.5);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--white);
}

.footer-credit {
    text-align: center;
    padding-top: 1.5rem;
    margin-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.35);
}

.footer-credit a {
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
    transition: var(--transition);
}

.footer-credit a:hover {
    color: var(--blue-sky);
}

@media (max-width: 768px) {
    .footer-inner {
        flex-direction: column;
        text-align: center;
    }

    .footer-links ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }
}