/* === ALL MEDICATIONS GRID === */

.chcm-products.chcm-product-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px 30px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.chcm-products.chcm-product-list > li {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 12px 14px;
    border: 1px solid #eee;
    border-radius: 6px;
    background: #fff;
}

/* левая часть */
.chcm-product-left {
    max-width: 75%;
}

/* название */
.chcm-product-name {
    font-weight: 600;
    font-size: 15px;
    line-height: 1.3;
    display: inline-block;
    margin-bottom: 4px;
}

/* dosage */
.chcm-product-dosage {
    font-size: 13px;
    color: #777;
}

/* правая часть */
.chcm-product-right {
    text-align: right;
    white-space: nowrap;
}

/* variants */
.chcm-product-variants {
    font-size: 13px;
    color: #555;
}
@media (max-width: 1024px) {
    .chcm-products.chcm-product-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .chcm-products.chcm-product-list {
        grid-template-columns: 1fr;
    }
}