/* ==========================================================
   JT MAISON — Project Intro Widget
   ========================================================== */

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

.jtm-project-intro__inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 80px;
}

.jtm-project-intro__left {
    flex: 0 0 35%; /* Left column slightly narrower */
}

.jtm-project-intro__subtitle {
    font-family: var(--jtm-font-ui);
    font-size: 11px;
    letter-spacing: 0.1em;
    color: var(--jtm-dark);
    text-transform: uppercase;
    margin: 0 0 24px 0;
    font-weight: 500;
}

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

.jtm-project-intro__right {
    flex: 1; /* Right column takes remaining space */
}

.jtm-project-intro__quote {
    font-family: var(--jtm-font-ui);
    font-size: clamp(24px, 3vw, 32px);
    font-style: italic;
    font-weight: 600;
    color: var(--jtm-dark);
    margin: 0 0 32px 0;
    line-height: 1.3;
}

.jtm-project-intro__divider {
    width: 100%;
    height: 1px;
    background: rgba(0,0,0,0.1);
    margin-bottom: 32px;
}

.jtm-project-intro__desc {
    font-family: var(--jtm-font-ui);
    font-size: 14px;
    color: rgba(0,0,0,0.5); /* light grey text */
    line-height: 1.8;
}

.jtm-project-intro__desc p {
    margin-top: 0;
    margin-bottom: 20px;
}

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

/* Responsive Mobile */
@media (max-width: 768px) {
    .jtm-project-intro {
        padding: 60px 24px;
    }
    
    .jtm-project-intro__inner {
        flex-direction: column;
        gap: 0;
    }
    
    .jtm-project-intro__left {
        display: none;
    }
    
    .jtm-project-intro__title {
        font-size: 28px;
    }
    
    .jtm-project-intro__quote {
        font-size: 22px;
    }
}
