.product {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.product > img {
    border-radius: 0.5rem;
}

.product > .text-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1rem;
}

.product > .text-container > .title {
    font-weight: bold;
}

@container (min-width: 60rem) {
    .product {
        flex-direction: row;
        gap: 2rem;
    }

    .product > img {
        max-height: 10rem;
        max-width: 15rem;
    }
}
