footer {
    background: var(--ink);
    color: #ffffff;
    padding: 34px 6vw;
}

.footer-inner {
    align-items: center;
    display: flex;
    gap: 24px;
    justify-content: space-between;
}

footer strong {
    display: block;
    font-size: 1.1rem;
    margin-bottom: 4px;
}

footer p {
    color: rgba(255, 255, 255, 0.72);
}

footer nav {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: flex-end;
}

footer a {
    color: rgba(255, 255, 255, 0.78);
    font-weight: 700;
}

footer a:hover {
    color: var(--yellow);
}

@media (max-width: 680px) {
    .footer-inner {
        align-items: flex-start;
        flex-direction: column;
    }

    footer nav {
        justify-content: flex-start;
    }
}
