article.product-details {
    display: flex;
    flex-flow: column;
    gap: 2rem;
}

div.images {
    width: 100%;
}

img.product-image {
    display: block;
    width: 100%;
    max-height: 600px;
    object-fit: contain;
    object-position: top center;
}

@media (min-width: 720px) {
    article.product-details {
        display: flex;
        flex-flow: row;
        gap: 2rem;
    }

    div.images {
        width: 30%;
        min-width: 210px;
    }
}

h1 {
    margin-top: 0;
}

ul {
    padding-left: 1rem;
}

li {
    margin-bottom: .4rem;
}

a {
    color: #000099;
    text-decoration: none;
}

.attributes {
    margin: 2rem 0;

    font-family: sans-serif;
    font-size: 1rem;

    display: flex;
    flex-direction: column;
    gap: 1rem;
}
