/* Testimonial Grid Styles */

.testimonial-quote {
    position: relative;
    margin-bottom: 1rem;
}

.testimonial-item-title {
    margin-bottom: 0;
}

.testimonial-item-text {
    display: inline;
    margin: 0;
    position: relative;
    font-style: italic;
}

.testimonial-item-text::before {
    content: "\201C";
    color: var(--secondary);
    font-size: 7.5em;
    font-weight: 700;
    opacity: 0.44;
    position: absolute;
    top: -0.4em;
    left: -0.2em;
    z-index: -10;
    line-height: 1;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .testimonial-item-text::before {
        font-size: 5em;
        top: -0.3em;
    }
}

