/* ==========================================================
   JT MAISON — Quote Section Widget
   ========================================================== */

.jtm-quote-sec {
    width: 100%;
    padding: 40px 40px;
    background: var(--jtm-white);
}

.jtm-quote-sec__inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
    gap: 60px;
}

/* Left Column: CTA Button */
.jtm-quote-sec__left {
    flex: 0 0 35%;
    display: flex;
    justify-content: flex-start;
    padding-top: 20px; /* Push the button down slightly to align nicely with text */
}

.jtm-quote-sec__btn {
    display: inline-block;
    padding: 16px 32px;
    border: 1px solid var(--jtm-dark);
    color: var(--jtm-dark);
    text-decoration: none;
    text-transform: uppercase;
    font-family: 'DM Sans', sans-serif;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 0.1em;
    background: transparent;
    transition: background 0.2s, color 0.2s;
}

.jtm-quote-sec__btn:hover {
    background: var(--jtm-dark);
    color: var(--jtm-white);
}

/* Right Column: Text & Quote */
.jtm-quote-sec__right {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.jtm-quote-sec__right--full {
    flex: 100%;
    max-width: 800px;
    margin: 0 auto;
}

.jtm-quote-sec__quote {
    font-family: var(--jtm-font-ui);
    font-size: clamp(24px, 4vw, 36px);
    font-weight: 500;
    font-style: italic;
    color: var(--jtm-dark);
    line-height: 1.4;
    margin: 0 0 32px 0;
}

.jtm-quote-sec__desc {
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--jtm-dark);
    margin: 0 0 32px 0;
}

.jtm-quote-sec__desc p {
    margin: 0 0 16px 0;
}
.jtm-quote-sec__desc p:last-child {
    margin-bottom: 0;
}

/* Signature */
.jtm-quote-sec__sig {
    align-self: flex-end; /* Align to the right of the right column */
}

.jtm-quote-sec__sig img {
    max-height: 60px;
    width: auto;
    display: block;
}

.jtm-quote-sec__sig--text {
    font-family: 'La Belle Aurore', 'Caveat', cursive, serif; /* Fallback fonts for signature */
    font-size: 32px;
    color: var(--jtm-dark);
    font-style: italic;
}

/* Responsive Mobile */
@media (max-width: 768px) {
    .jtm-quote-sec {
        padding: 24px 24px;
    }
    
    .jtm-quote-sec__inner {
        flex-direction: column;
        gap: 40px;
    }
    
    .jtm-quote-sec__left {
        display: none;
    }
    
    .jtm-quote-sec__right {
        width: 100%;
    }
    
    .jtm-quote-sec__quote {
        font-size: 24px;
        margin-bottom: 24px;
    }
    
    .jtm-quote-sec__desc {
        font-size: 15px;
    }
}
