.about{
    display: grid;
    grid-template-columns: 2.5fr 3fr;
    gap: 2rem; 
    position: relative;
    border-top: 1px solid;
    padding-top: 40px;
}
.about .about_img img{
    max-width: 100%;
    border-radius: 20px;
    object-fit: cover;
}
.about_text{
    display: flex; 
    align-items: start;
    flex-direction: column;
}
.about .about_text ul li::marker{
    content: url(/wp-content/uploads/2025/06/icon-right.svg);
}
.about .about_text ul li{
    padding-left: 5px;
    margin-bottom: 5px;
}
.about .about_text h3{
    margin-bottom: 20px;
    text-transform: uppercase;
}
.about .about_text p{
    max-width: 30rem;
}
.about .about_text svg{
    width: 120px;
    height: auto;
    position: absolute;
    right: 0;
    bottom: -50px;
}
.about .about_text a{
    margin-top: auto;
}

body.home .about .etoile-about{
    display: none;
}

@media screen and (max-width: 1024px) {
    .about {
        grid-template-columns: 1fr;
        gap: 0;
    }
    .about .about_text svg{
        width: 60px;
    }
    .about .about_text h3{
        margin-bottom: 15px;
    }
    .about .about_img img{
        height: 300px;
    }
    .about .about_text a{
        margin-top: 15px;
    }
}