/* === JazzyGrid Testimonial Grid (text only) === */

/* The grid container — add CSS class "testimonial-grid-page" to the Group block */
.testimonial-grid-page {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

/* Each testimonial card (Kadence Testimonial block) */
.testimonial-grid-page .kt-blocks-testimonial {
    position: relative;
    background: #fff;
    color: #222;
    padding: 2rem 2rem 2rem 4rem;
    border-radius: 6px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease-in-out;
}

/* Decorative quotation mark */
.testimonial-grid-page .kt-blocks-testimonial::before {
    content: open-quote;
    position: absolute;
    left: 1.2rem;
    top: 0.4rem;
    font-size: 5rem;
    color: var(--wp--preset--color--primary, #e1b967);
    line-height: 0.8;
    opacity: 0.25;
    font-family: "Georgia", serif;
    pointer-events: none;
}

/* Testimonial text */
.testimonial-grid-page .kt-blocks-testimonial .kt-blocks-testimonial-text {
    font-size: 1.05rem;
    line-height: 1.7;
    margin: 0;
}

/* Author name */
.testimonial-grid-page .kt-blocks-testimonial .kt-blocks-testimonial-name {
    margin-top: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--wp--preset--color--primary, #e1b967);
    letter-spacing: 0.05em;
}

/* Gentle hover lift animation */
.testimonial-grid-page .kt-blocks-testimonial:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
}
