.models {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    padding: 5%;
    gap: 40px;
}
.models h1 {
    font-family: Roboto-Medium;
    font-size: 38px;
}
.models .list {
    display: flex;
    justify-content: space-evenly;
    align-items: flex-start;
    gap: 40px;
}
.models .car {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 30px;
    flex-grow: 1;
    width: 320px;
}
.models .car h3 {
    font-family: "Roboto-Medium";
    font-size: 25px;
}
.models .car bold {
    font-family: "Roboto-Medium";
}
.models .car img {
    width: 320px;
    height: 300px;
    object-fit: contain;
}
.models .car .info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.models .car p {
    text-align: justify;
    min-height: 240px;
}
@media (max-width: 767px) {
    /* Styles spécifiques aux téléphones */
    .models {
        padding: 100px 10% 100px 10%;
        flex-direction: column;
    }
    .models h1 {
        text-align: center;
    }
    .models .list {
        flex-direction: row;
        flex-wrap: wrap;
    }
    .models .car {
        border-top: 1px solid lightgray;
        justify-content: center;
        align-items: center;
    }
    .models .car img {
        height: 260px;
    }
    .models .car p {
        min-height: fit-content;
    }
    .models .car .end {
        display: flex;
        align-items: center;
        flex-direction: row-reverse;
    }
    .models .car .end img {
        width: 120px;
    }
}
