.pied {
    background-color: #000;
    color: #fff;
    padding: 60px 20px 40px;
    font-family: "Helvetica Neue", Arial, sans-serif;

    .pied-conteneur {
        max-width: 1200px;
        margin: 0 auto;
    
        display: flex;
        flex-direction: column;
        gap: 40px;
        align-items: center;
        text-align: center;
    
        article {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 1rem;
    
            h3 {
            }
    
            ul {
                list-style-type: none;
    
                display: flex;
                flex-direction: row;
                flex-wrap: wrap;
                justify-content: center;
                align-content: flex-start;
                gap: 1rem;
    
                li {
                    a {
                        text-decoration: none;
                        color: white;
    
                        background-color: black;
                        border-radius: 0.5rem;
    
                        display: flex;
                        flex-direction: row;
                        justify-content: space-between;
                        align-items: center;
                        gap: 0.5rem;
    
                        padding: 0.5rem;
    
                        transition: 200ms ease-in-out;

                        &:hover {
                            background-color: white;
                            color: black;

                            svg {
                                fill: black;
                            }
                        }
    
                        svg {
                            width: 1.5rem;
                            height: 1.5rem;
    
                            object-fit: contain;
                            object-position: center;

                            fill: white;

                            transition: fill 200ms ease-in-out;
                        }
    
                        p {
    
                        }
                    }
                }
            }
        }
        
        .pied-liens {
            display: flex;
            gap: 30px;
        
            a {
                color: #fff;
                text-decoration: none;
                font-size: 0.85rem;
                letter-spacing: 0.12em;
                text-transform: uppercase;
                position: relative;
        
                &::after {
                    content: "";
                    position: absolute;
                    left: 0;
                    bottom: -4px;
                    width: 0;
                    height: 1px;
                    background-color: #fff;
                    transition: width 0.3s ease;
                }
        
                &:hover::after {
                    width: 100%;
                }
            }
        }

        .pied-copie {
            font-size: 0.75rem;
            letter-spacing: 0.1em;
            color: #a0a0a0;
        }
    }
}

body:has(main.chargement) .pied {
    pointer-events: none;
    filter: brightness(0.5);
}

/* Responsive */
@media (orientation: portrait) and (max-width: 768px),
       (orientation: landscape) and (max-height: 768px) {
    .pied-conteneur {
        gap: 30px;
    }

    .pied-liens {
        flex-direction: column;
        gap: 15px;
    }
}
