/* product detail page */

.product-data-container {
    display: flex;
    flex-direction: column;
}
.product-data__image {
    width: 350px;

    border: 2px solid dodgerblue;
    border-radius: 5px;
}
.product-data-wrapper {
    margin-top: 0.75rem;
}
.product-data-table {
    margin-top: 0.25rem;
    font-size: 1rem;
    line-height: 1.1;
}
.product-data-table__label {
    padding-right: 0.5rem;
    font-weight: bold;
}
.product-data-table__spacer {
    height: 0.25rem;
}
.product-data-features {
    list-style-type: disc;    
    line-height: 1.2;
}
.product-data-features__item {
    margin-left: 1.5rem;
    padding-bottom: 0.2rem;
}


.product-data-sheet {
    width: 7rem;
    height: 9rem;

    border: 2px solid limegreen;
    border-radius: 3px;
}
.product-data-sheet:hover {
    border: 2px solid red;
    box-shadow: 2px 2px 2px gray;
}
.product-data-sheet__title {
    height: 2rem;
    background-color: limegreen;
    color: white;
    text-align: center;
}
.product-data-sheet__title h2 {
    font-size: 1rem;
    font-weight: normal;
}
.product-data-sheet__image img {
    width: 100%;
    height: 100%;
}


/* desktop, tablet, etc... */
@media (min-width: 480px) {

    .product-data-container {
        /* display: flex; */
        flex-direction: row;
    }

    .product-data-wrapper {
        margin-left: 2rem;
        margin-top: 0;
    }
        
}
