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

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

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

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

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

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

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

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

.jtm-project-features-v2__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-v2__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-v2__desc {
    font-family: var(--jtm-font-ui);
    font-size: 16px;
    color: rgba(0, 0, 0, 0.5);
    line-height: 1.6;
}

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

.jtm-project-features-v2__quote {
    font-family: var(--jtm-font-heading, "Times New Roman", Times, serif);
    font-size: clamp(28px, 3vw, 36px);
    font-style: italic;
    font-weight: 400;
    line-height: 1.2;
    color: var(--jtm-dark);
    margin-bottom: 30px;
}

.jtm-project-features-v2__divider {
    border: 0;
    border-top: 1px solid rgba(0, 0, 0, 0.2);
    margin: 30px 0;
}

.jtm-project-features-v2__brand {
    font-family: var(--jtm-font-ui);
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--jtm-dark);
    margin: 40px 0 20px 0;
}

.jtm-project-features-v2__scope {
    font-family: var(--jtm-font-ui);
    margin-top: 20px;
}

.jtm-project-features-v2__scope-label {
    font-size: 14px;
    font-weight: 400;
    color: rgba(0, 0, 0, 0.6);
    text-transform: uppercase;
    display: block;
    margin-bottom: 5px;
}

.jtm-project-features-v2__scope-value {
    font-size: 16px;
    font-weight: 600;
    color: var(--jtm-dark);
    text-transform: uppercase;
    display: block;
}

/* ==========================================================
   RESPONSIVE MOBILE
   ========================================================== */
@media (max-width: 768px) {
    .jtm-project-features-v2 {
        padding: 60px 0;
    }

    .jtm-project-features-v2__inner {
        gap: 80px;
        padding: 0;
    }

    .jtm-project-features-v2__item,
    .jtm-project-features-v2__item--reverse {
        flex-direction: column;
        align-items: flex-start;
        gap: 32px;
    }

    .jtm-project-features-v2__image-col,
    .jtm-project-features-v2__text-col {
        flex: 1 1 100%;
        width: 100%;
    }

    .jtm-project-features-v2__title {
        font-size: 28px;
    }
}