/* -- Testimonial Pattern -- */

.lp-testimonial {
    position: relative;
    overflow: hidden;
}

/* Teal accent line */
.lp-testimonial::before {
    content: '';
    display: block;
    width: 40px;
    height: 3px;
    background-color: var(--wp--preset--color--tertiary);
    margin-bottom: var(--wp--preset--spacing--space-800);
}

/* Background watermark quotation mark */
.lp-testimonial::after {
    content: '\201C';
    position: absolute;
    top: -1rem;
    right: 1.5rem;
    font-size: 22rem;
    line-height: 1;
    color: rgba(255, 255, 255, 0.04);
    font-family: Georgia, 'Times New Roman', serif;
    pointer-events: none;
    z-index: 0;
}

.lp-testimonial > * {
    position: relative;
    z-index: 1;
}
