footer > section#enlaces {
    background: var(--color-secondary);
    color: var(--color-onSecondary);
    padding-top: 48px;
    padding-bottom: 24px;
}

footer > section#enlaces > div.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 40px;
}

footer > section#enlaces > div.container > div.item > p.title {
    margin: 0 0 16px 0;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-onSecondary);
}

footer > section#enlaces > div.container > div.item > ul {
    display: flex;
    flex-direction: column;
    gap: 8px;
    list-style: none;
    margin: 0;
    padding: 0;
}

footer > section#enlaces > div.container > div.item > ul > li > a {
    font-size: 15px;
    text-decoration: none;
    color: var(--color-gray-300);
}

footer > section#enlaces > div.container > div.item > ul > li > a:hover {
    color: var(--color-primary-300);
    text-decoration: underline;
}

footer > section#enlaces + section#copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

@media (max-width: 900px) {
    footer > section#enlaces > div.container {
        grid-template-columns: minmax(0, 1fr);
        gap: 32px;
    }
}
