

.footer__link-list {
    display: flex;
    flex-direction: column;
    list-style: none;
    padding: 0;
    margin-top: 0.5rem;
}

/* Horizontal version in columns */
.footer__element--icons .footer__link-list {
    flex-direction: row;
    gap: 0.5rem;
}

@media (min-width: 48rem) {
    /* Rows */
    .page-footer__rows .footer__link-list {
        flex-direction: row;
        column-gap: 1.5rem;
        row-gap: 0;
        flex-wrap: wrap;
        justify-content: center;
        margin-top: 0;
    }
}

