/* ─── lmdm/product-features ──────────────────────────────────────────────────── */

.lmdm-features {
    background-color: var(--wp--preset--color--white);
}

.lmdm-features__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    align-items: center;
}

.lmdm-features--img-left .lmdm-features__inner {
    direction: rtl;
}

.lmdm-features--img-left .lmdm-features__text,
.lmdm-features--img-left .lmdm-features__image-wrap {
    direction: ltr;
}

.lmdm-features__title {
    font-family: var(--wp--preset--font-family--heading);
    font-size: var(--wp--preset--font-size--h2);
    font-weight: 400;
    color: var(--wp--preset--color--primary);
    margin-bottom: 2rem;
}

.lmdm-features__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.lmdm-features__item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.lmdm-features__icon {
    width: 8px;
    height: 8px;
    background-color: var(--wp--preset--color--gold);
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 0.5rem;
}

.lmdm-features__item-title {
    display: block;
    font-family: var(--wp--preset--font-family--body);
    font-weight: 600;
    font-size: 1rem;
    color: var(--wp--preset--color--primary);
    margin-bottom: 0.3rem;
}

.lmdm-features__item-desc {
    font-size: 1.15rem;
    color: var(--wp--preset--color--gray-dark);
    line-height: 1.6;
    margin: 0;
}

.lmdm-features__image-wrap {
    overflow: hidden;
}

.lmdm-features__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@media (max-width: 860px) {
    .lmdm-features__inner {
        grid-template-columns: 1fr;
        direction: ltr !important;
    }

    .lmdm-features__image-wrap {
        order: -1;
    }
}
