/* ==========================================================
   JT MAISON — Project Features Widget (Zig-Zag)
   ========================================================== */

.jtm-project-features {
    padding: 100px 0;
    background: var(--jtm-white);
    width: 100%;
    box-sizing: border-box;
}

.jtm-project-features__inner {
    max-width: 100%;
    width: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 120px;
}

.jtm-project-features__item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 80px;
}

/* Reverse layout for even items */
.jtm-project-features__item--reverse {
    flex-direction: row-reverse;
}

.jtm-project-features__image-col {
    flex: 0 0 30%; /* Reduced from 45% so images are smaller on desktop */
}

.jtm-project-features__image-col img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

.jtm-project-features__text-col {
    flex: 0 0 45%; /* Retained at 45% (or 50%) to allow text to breathe */
}

.jtm-project-features__num {
    display: block;
    font-family: var(--jtm-font-ui);
    font-size: 16px;
    font-weight: 700;
    color: var(--jtm-dark);
    margin-bottom: 24px;
}

.jtm-project-features__title {
    font-family: var(--jtm-font-ui);
    font-size: clamp(32px, 4vw, 40px);
    font-weight: 600;
    color: var(--jtm-dark);
    line-height: 1.2;
    margin: 0 0 24px 0;
}

.jtm-project-features__desc {
    font-family: var(--jtm-font-ui);
    font-size: 16px;
    color: rgba(0,0,0,0.5);
    line-height: 1.6;
}

.jtm-project-features__desc p:last-child {
    margin-bottom: 0;
}

/* ==========================================================
   RESPONSIVE MOBILE
   ========================================================== */
@media (max-width: 768px) {
    .jtm-project-features {
        padding: 60px 0;
    }
    
    .jtm-project-features__inner {
        gap: 80px;
        padding: 0;
    }
    
    .jtm-project-features__item,
    .jtm-project-features__item--reverse {
        flex-direction: column;
        align-items: flex-start;
        gap: 32px;
    }
    
    .jtm-project-features__image-col,
    .jtm-project-features__text-col {
        flex: 1 1 100%;
        width: 100%;
    }
    
    .jtm-project-features__title {
        font-size: 28px;
    }
}
