/* Home section */
#heroSection .content {
    margin-bottom: 30px;
}

#heroSection .content p {
    margin: 15px 0 25px 0;
}

#heroSection figure img {
    border-radius: var(--hight-radius);
    box-shadow: var(--shadow);
}



/* Catégories Section */
#categories .section-container {
    padding: 0 0 calc(3rem - 10px) 0;
}

#categories h2 {
    margin: 0 20px 20px 20px;
}

#categories .cards-container {
    display: flex;
    gap: 20px;
    overflow: scroll;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 0 20px 10px 20px;
}

#categories .cards-container::-webkit-scrollbar {
    display: none;
}

#categories a {
    min-width: 200px;
    max-width: 200px;
}

#categories article {
    border-radius: var(--medium-radius);
    display: flex;
    flex-direction: column;
    text-align: center;
    box-shadow: var(--shadow);
    background: var(--beige);
}

#categories article h3 {
    padding: 8px;
    color: black;
}

#categories article figure {
    overflow: hidden;
    border-top-left-radius: var(--medium-radius);
    border-top-right-radius: var(--medium-radius);
    display: flex;
}

#categories article figure img {
    height: 150px;
    object-position: center;
}


/* Section Articles */
#articles {
    background: var(--background);
}

#articles .section-container {
    padding: 3rem 0 calc(3rem - 10px) 0;
}

#articles h2 {
    margin: 0 20px 20px 20px;
}

#articles .articles-container {
    margin-top: 20px;
    display: flex;
    gap: 20px;
    overflow: scroll;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 0 20px 10px 20px;
}

#articles .articles-container::-webkit-scrollbar {
    display: none;
}

#articles article {
    box-shadow: var(--shadow);
    border-radius: var(--medium-radius);
    overflow: hidden;
    background: var(--white);
    min-width: 300px;
    max-width: 300px;
    text-wrap: initial;
}

#articles article img {
    height: 200px;
}

#articles article .content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

#articles article a {
    margin-top: 10px;
    padding: 10px 25px;
}



/* Pad Version */
    @media screen and (min-width: 768px) {
        /* Home section */
        #heroSection .section-container {
            display: flex;
            gap: 40px;
            justify-content: space-between;
            align-items: center;
        }

        #heroSection .content {
            width: 60%;
            margin: 0;
        }

        #heroSection .content p {
            margin: 20px 0 30px 0;
        }

        #heroSection figure {
            width: 50%;
            display: flex;
        }

        #heroSection figure img {
            height: 243px;
        }


        /* Catégories Section */
        #categories .section-container {
            padding: 0 0 calc(7rem - 10px) 0;
        }

        #categories h2 {
            margin: 0 40px 25px 40px;
        }

        #categories .cards-container {
            padding-left: 40px;
            padding-right: 40px;
        }

        #categories a {
            min-width: 250px;
            max-width: 250px;
        }

        #categories article figure img {
            height: 175px;
        }


        /* Section Articles */
    }

        /* Desktop Version */
        @media screen and (min-width: 992px) {
            /* Home section */
            #heroSection .section-container {
                gap: 60px;
            }

            #heroSection .content p {
                margin: 25px 0 35px 0;
            }

            #heroSection figure img {
                height: auto;
            }


            /* Catégories Section */
            #categories .section-container {
                padding: 0 60px 7rem 60px;
            }

            #categories h2 {
                margin: 0 0 30px 0;
            }

            #categories .cards-container {
                padding: 0;
                overflow: visible;
            }

            #categories a {
                width: 100%;
                min-width: unset;
                max-width: unset;
            }

            #categories article figure img {
                height: 175px;
            }


            /* Section Articles */
        }