.location-features {
    width: 100%;
    display: flex;
    flex-direction: column;
    direction: rtl;
    background: #ffffff;
    border: 1px solid #e8eaf2;
    border-radius: 16px;
    overflow: hidden;
}

/* هر ردیف */
.location-feature {
    display: flex;
    align-items: center;
    width: 100%;
    min-height: 68px;
    padding: 0 20px;
    box-sizing: border-box;
    border-bottom: 1px solid #eeeeee;
    transition: background-color 0.25s ease;
}

/* حذف خط آخر */
.location-feature:last-child {
    border-bottom: none;
}

/* هاور ردیف */
.location-feature:hover {
    background: #f8f9fd;
}

/* آیکون */
.location-feature-icon {
    width: 52px;
    min-width: 52px;
    height: 52px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-left: 16px;

    background: rgba(41, 57, 145, 0.08);
    color: #293991;

    border-radius: 12px;

    font-size: 18px;
}

/* عنوان ویژگی */
.location-feature-label {
    flex: 1;

    font-size: 14px;
    font-weight: 600;
    line-height: 1.8;

    color: #292929;
}

/* جداکننده عمودی */
.location-feature-icon::after {
    content: "";
    display: block;
}

/* موبایل */
@media (max-width: 767px) {

    .location-feature {
        min-height: 62px;
        padding: 0 14px;
    }

    .location-feature-icon {
        width: 42px;
        min-width: 42px;
        height: 42px;

        margin-left: 12px;

        border-radius: 10px;
        font-size: 16px;
    }

    .location-feature-label {
        font-size: 13px;
    }

}