/* Product Service Features
   ------------------------ */

.gk-psf {
    direction: rtl;
    font-size: 13px;
}

/* لیست اصلی */
.gk-psf__list {
    display: flex;
    align-items: center;
    justify-content: space-between;
    column-gap: 96px;
    row-gap: 16px;
}

/* آیتم */
.gk-psf__item {
    display: inline-flex;
    align-items: center;
    position: relative;
    white-space: nowrap;
    font-weight: 400;
    color: #858585;
}

/* جداکننده عمودی بین آیتم‌ها */
.gk-psf--divider .gk-psf__item + .gk-psf__item::before {
    content: '';
    position: absolute;
    right: -48px;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 24px;
    background-color: #e5e5e5;
}

.gk-psf--divider .gk-psf__item:last-child::before {
    display: none;
}

/* آیکن */
.gk-psf__icon {
    display: inline-flex;
    margin-left: 8px; /* از کنترل المنتور override می‌شود */
    font-size: 32px;
    color: #b1b1b1;
}

.gk-psf__icon svg {
    display: block;
}

/* متن */
.gk-psf__text {
    display: flex;
    flex-direction: column;
}

.gk-psf__title {
    line-height: 1.8;
}

.gk-psf__description {
    font-size: 12px;
    margin-top: 2px;
    opacity: 0.8;
}

/* واکنش‌گرا */
@media (max-width: 992px) {
    .gk-psf__list {
        column-gap: 48px;
    }
}

@media (max-width: 767px) {
    .gk-psf--wrap .gk-psf__list {
        flex-wrap: wrap;
        justify-content: center;
        text-align: center;
    }

    .gk-psf--wrap .gk-psf__item {
        margin-bottom: 8px;
        white-space: normal;
    }

    .gk-psf--wrap.gk-psf--divider .gk-psf__item::before {
        display: none; /* در حالت چند ردیفی، جداکننده منطقی نیست */
    }
}
