/**
 * Quote CTA Block Component Styles
 */

.quote-cta-block {
    width: 100%;
    position: relative;
    /* margin: 60px 0; */
}

.quote-cta-container {
    display: flex;
    flex-wrap: wrap;
    min-height: 332px;
    position: relative;
    background: #fff;
}

/* Left Side - Image */
.quote-cta-image {
    position: relative;
    width: 42.5%;
    min-height: 332px;
    overflow: hidden;
}

.quote-cta-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.quote-cta-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.1);
    pointer-events: none;
}

/* Right Side - Content */
.quote-cta-content {
    position: relative;
    width: 57.5%;
    min-height: 332px;
    background: #ffba00;
    padding: 40px 50px;
    /* display: flex;
    align-items: center; */
}

.quote-cta-text-wrapper {
    width: 100%;
    max-width: 631px;
    /* margin: 0 auto; */
}

/* Quote Text */
.quote-cta-quote {
    font-family: 'Bai Jamjuree', sans-serif;
    font-weight: 600;
    font-style: italic;
    font-size: 18px;
    line-height: 1.5;
    color: #000;
    margin: 0 0 20px 0;
}

/* Author Info */
.quote-cta-author {
    text-align: right;
    font-family: 'Bai Jamjuree', sans-serif;
    font-weight: 600;
    font-style: italic;
    font-size: 20px;
    line-height: 1.5;
    color: #000;
    margin: 0 0 30px 0;
}

/* Decorative Stripes */
.quote-cta-stripes {
    margin: 30px 0;
    margin-left: -50px;
    opacity: 0.5;
}

.quote-cta-stripes svg {
    display: block;
    max-width: 428px;
}

/* Footer - Stripes and CTA Button */
.quote-cta-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

/* CTA Button */
.quote-cta-button {
    display: inline-flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
    background: #fff;
    color: #000;
    text-decoration: none;
    padding: 4px;
    padding-left: 17px;
    border: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    max-width: 287px;
    width: 100%;
}

.quote-cta-button span:first-child {
    font-family: 'Bai Jamjuree', sans-serif;
    font-weight: 700;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.quote-cta-arrow {
    background: #000;
    width: 45px;
    height: 41px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

/* .quote-cta-button:hover .quote-cta-arrow {   
    transform: translateX(5px);
} */

.quote-cta-button:hover {
    background: #f5f5f5;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .quote-cta-image {
        width: 100%;
        min-height: 250px;
    }
    
    .quote-cta-content {
        width: 100%;
        padding: 40px 30px;
    }
    
    .quote-cta-quote {
        font-size: 16px;
    }
    
    .quote-cta-author {
        font-size: 18px;
    }
    
    .quote-cta-button {
        max-width: 250px;
    }
    
    .quote-cta-button span:first-child {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    /* .quote-cta-block {
        margin: 30px 0;
    } */
    
    .quote-cta-container {
        min-height: auto;
    }
    
    .quote-cta-image {
        min-height: 200px;
    }
    
    .quote-cta-content {
        padding: 30px 20px;
    }
    
    .quote-cta-quote {
        font-size: 15px;
    }
    
    .quote-cta-author {
        font-size: 16px;
    }
    
    .quote-cta-button {
        padding: 12px 20px;
        gap: 10px;
        max-width: 230px;
    }
    
    .quote-cta-button span:first-child {
        font-size: 14px;
    }
    
    .quote-cta-arrow {
        width: 35px;
        height: 35px;
    }
    
    .quote-cta-arrow svg {
        width: 14px;
        height: 12px;
    }
    
    .quote-cta-stripes svg {
        max-width: 100%;
        height: auto;
    }
}

@media (max-width: 480px) {
    .quote-cta-content {
        padding: 20px 15px;
    }
    
    .quote-cta-quote {
        font-size: 14px;
    }
    
    .quote-cta-author {
        font-size: 14px;
    }
    
    .quote-cta-button {
        max-width: 100%;
        padding: 10px 15px;
    }
    
    .quote-cta-button span:first-child {
        font-size: 13px;
    }
}
