#page-apropos {
    display: flex;
    flex-direction: column;
    justify-content: center;
    font-family: 'Montserrat', sans-serif;
    padding: 0 2rem;
    max-width: 80%;
    margin: 0 auto;

    .photo {
        display: flex;
        justify-content: center;
        padding-bottom: 1.5rem;

        img {
            width: 100%;
            height: 100%;
            max-width: 350px;
            max-height: 350px;
            border-radius: 50%;
        }
    }

    .text-container {       
        
        margin: 0 auto;

        .slogan {
            text-align: center;
            font-size: 1.2rem;
            margin-bottom: 3rem;
            font-style: italic;
            font-weight: bold;
            color: #5c1c1c;
            
        }

        .description {    
            margin-bottom: 3rem;       
            p {
                line-height: 1.7rem;
            }
        }

        .big-text1, .big-text2, .container-expositions {
            
            h3 {
                font-size: 1.1rem;
                font-weight: bold;
                color: #5c1c1c;

            }
            p {
                line-height: 1.5rem;
                text-align: justify;
                padding: 0.5rem 0;
            }
            
            p:last-of-type {
                margin-bottom: 2rem;
            }
        } 
        
        .container-expositions {
            margin-bottom: 5rem;
            display: flex;
            flex-direction: column;
            gap: 5rem;

            .exposition {
                display: grid;
                grid-template-columns: repeat(2, 1fr);
                gap: 0.8rem 3rem;
                align-items: start;

                h3 {
                    grid-column: 1 / -1;
                }
            }

            .expo-recente {
                padding-top: 0.5rem;
                width: fit-content;
                margin: 0 auto;

                &::before {
                    content: '';
                    display: block;
                    width: 50px;
                    height: 1px;
                    background-color: #5c1c1c88;
                    margin: 0 auto 0.5rem;
                }
                display: flex;
                flex-direction: column;
                align-items: center;
                gap: 0.2rem;
                text-align: center;

                p {
                    padding: 0;
                    line-height: 1.5rem;
                    margin: 0;

                    &::before {
                        display: none;
                    }
                }

                .expo-recente-dates {
                    font-weight: 700;
                    font-size: 0.95rem;
                    color: #2e1508;
                    letter-spacing: 0.03em;
                }

                .expo-recente-jours {
                    font-size: 0.82rem;
                    color: #7a5040;
                }

                .expo-recente-lieu {
                    font-weight: 700;
                    font-size: 0.9rem;
                    color: #5c1c1c;
                    letter-spacing: 0.08em;
                    text-transform: uppercase;
                    margin-top: 0.3rem;
                }

                .expo-recente-theme {
                    font-style: italic;
                    font-size: 0.85rem;
                    color: #7a5040;
                }

                .expo-recente-adresse {
                    font-size: 0.82rem;
                    color: #5a3a28;
                }
            }

            .legal-info {
                p:nth-child(1) {
                    font-weight: bold;
                }
            }
        }
    }
}

@media screen and (max-width: 700px) {
    #page-apropos {

        .photo {
            img {
                max-width: 300px;
                max-height: 300px;
            }
        }
        .text-container {
            .slogan {
                line-height: 1.3rem;
                font-size: 1rem;
            }
            .big-text2 {
                h3 {
                    line-height: 1.3rem;
                }
            }
        }
        
    }
}

@media screen and (max-width: 600px) {
    #page-apropos {
        max-width: 100%;
        padding: 0 1rem;

        .photo {
            img {
                max-width: 250px;
                max-height: 250px;
            }
        }

        .text-container {
            .big-text1, .big-text2, .container-expositions {
                h3 {
                    font-size: 1rem;
                }
                p {
                    font-size: 0.9rem;
                }
            }
            .container-expositions {
                .exposition {
                    grid-template-columns: 1fr;
                }
            }
        }
    }
}
