/* Shared between the product description and the Visual editor. */
.salecnc-description-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    width: 100%;
    margin: 24px 0;
    clear: both;
}
.salecnc-description-grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.salecnc-description-grid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.salecnc-description-grid > .salecnc-description-grid__cell {
    min-width: 0;
    overflow-wrap: anywhere;
}
.salecnc-description-grid__cell img {
    max-width: 100%;
    height: auto;
}
.salecnc-description-grid__cell > :first-child { margin-top: 0; }
.salecnc-description-grid__cell > :last-child { margin-bottom: 0; }
/* Editing outlines are not shown on the storefront. */
body.mce-content-body .salecnc-description-grid__cell {
    min-height: 100px;
    padding: 12px;
    outline: 1px dashed #aab4c2;
}
@media (max-width: 989px) {
    .salecnc-description-grid--4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 767px) {
    .salecnc-description-grid { grid-template-columns: minmax(0, 1fr); gap: 16px; }
}
