/* ======== About Section ======== */

#about {
    display: block;
    gap: 0;
}

#about img {
    border-radius: 0.7rem;
    object-fit: cover;
    display: none;
}

@media screen and (min-width: 1280px) {
    #about {
        display: flex;
        gap: 5rem;
    }

    #about img {
        display: block;
    }
}

#about h1 {
    font-size: 2.5rem;
    font-weight: bold;
}

#about p {
    line-height: 1.5rem;
    margin: 3rem 0;
    font-size: 1.3rem;
    line-height: 2rem;
    text-align: justify;
}

#about a {
    width: fit-content;
}

/* ======== Latest Products Section ======== */

#latest-products ul {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
    justify-content: space-between;

    margin: 2.5rem 0;
}

#latest-products li {
    flex-grow: 1;
    flex-basis: 16rem;
}