/* Testimonial Block Styles */
.testimonial {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    padding-top: 6rem; /* py-24 = 6rem */
    padding-bottom: 6rem;
}

@media (min-width: 640px) {
    .testimonial {
        padding-top: 8rem; /* sm:py-32 = 8rem */
        padding-bottom: 8rem;
    }
}

@media (min-width: 640px) {
    .testimonial::after {
        margin-right: 7rem; /* sm:mr-28 = 7rem */
    }
}

@media (min-width: 1024px) {
    .testimonial::after {
        margin-right: 0; /* lg:mr-0 */
    }
}

@media (min-width: 1280px) {
    .testimonial::after {
        margin-right: 4rem; /* xl:mr-16 = 4rem */
        transform-origin: center; /* xl:origin-center */
    }
}

/* Centered container */
.testimonial > .mx-auto {
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
}

/* Heading */
.testimonial h2 {
    font-size: 2.25rem; /* text-4xl = 2.25rem */
    font-weight: 600; /* font-semibold */
    letter-spacing: -0.025em; /* tracking-tight */
    text-align: center;
    color: #111827; /* text-gray-900 */
    line-height: 1.2; /* text-pretty */
}

@media (min-width: 640px) {
    .testimonial h2 {
        font-size: 3rem; /* sm:text-5xl = 3rem */
    }
}

/* Figure */
.testimonial figure {
    margin-top: 2.5rem; /* mt-10 = 2.5rem */
}

/* Blockquote */
.testimonial blockquote {
    text-align: center;
    font-size: 1.25rem; /* text-xl = 1.25rem */
    line-height: 1.5; /* text-xl/8 = 1.5 */
    font-weight: 600; /* font-semibold */
    color: #111827; /* text-gray-900 */
}

@media (min-width: 640px) {
    .testimonial blockquote {
        font-size: 1.5rem; /* sm:text-2xl = 1.5rem */
        line-height: 1.5; /* sm:text-2xl/9 = 1.5 */
    }
}

/* Figcaption */
.testimonial figcaption {
    margin-top: 2.5rem; /* mt-10 = 2.5rem */
}

/* Image container */
.testimonial .image-container {
    margin-left: auto;
    margin-right: auto;
    width: 2.5rem; /* size-10 = 2.5rem */
    height: 2.5rem;
    border-radius: 9999px; /* rounded-full */
    overflow: hidden;
    background-color: #f3f4f6; /* bg-gray-100 */
    position: relative;
}

.testimonial .image-container img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Author and role */
.testimonial .author-container {
    margin-top: 1rem; /* mt-4 = 1rem */
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem; /* space-x-3 = 0.75rem */
    font-size: 0.875rem; /* text-base = 0.875rem (adjusted for typical base font) */
}

.testimonial .author {
    font-weight: 600; /* font-semibold */
    color: #111827; /* text-gray-900 */
}

.testimonial .separator {
    fill: #111827; /* fill-gray-900 */
}

.testimonial .role {
    color: #4b5563; /* text-gray-600 */
}

/* Alignment classes */
.testimonial.alignleft {
    text-align: left;
}

.testimonial.alignright {
    text-align: right;
}

.testimonial.aligncenter {
    text-align: center;
}

/* Custom ACF color class */
.testimonial.has-custom-acf-color {
    /* Inline styles from background_color and text_color will override */
}