.ppt-autocomplete-wrapper {
    position: relative;
}

.ppt-autocomplete-results {
    display: none;
    position: relative !important;
    top: 0px;
    left: 10px;
    right: 0;
    z-index: 9999;

    max-height: 300px;
    overflow-y: scroll;

    background: var(--light-purple) !important;
    border: 1px solid var(--purple) !important;
    border-radius: 8px;
    padding: 5px 10px !important;
    max-width: max-content !important;
}

.ppt-autocomplete-item {
    display: block;
    width: 100%;
    padding: 12px 15px;

    background: #fff;
    border: 0;
    border-bottom: 1px solid #eee;

    color: inherit;
    font: inherit;
    line-height: 1.35;
    text-align: left;

    cursor: pointer;
    transition: background 0.15s ease;
}

.ppt-autocomplete-item:last-child {
    border-bottom: 0;
}

.ppt-autocomplete-item:hover,
.ppt-autocomplete-item:focus {
    background: #f6f3f8;
    outline: none;
}

.ppt-autocomplete-loading {
    padding: 12px 15px;
    font-style: italic;
    opacity: 0.65;
}


/* =========================================================
   TESTIMONIAL GRID
   ========================================================= */

.ppt-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    width: 100%;
}


/* Individual testimonial */

.ppt-testimonial {
    display: flex;
    flex-direction: column;

    padding: 28px;

    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 10px;

    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.06);
}


/* Stars */

.ppt-testimonial-stars {
    margin-bottom: 18px;

    font-size: 1.15rem;
    letter-spacing: 2px;
    line-height: 1;
}


/* Testimonial */

.ppt-testimonial-text {
    margin: 0 0 22px;
    padding: 0;
    border: 0;

    font-size: 1rem;
    line-height: 1.65;
}

.ppt-testimonial-text p {
    margin: 0 0 1em;
}

.ppt-testimonial-text p:last-child {
    margin-bottom: 0;
}


/* Customer */

.ppt-testimonial-author {
    margin-top: auto;

    font-weight: 600;
}


/* Product */

.ppt-testimonial-product {
    margin-top: 4px;

    font-size: 0.875rem;
    opacity: 0.7;
}


/* Tablet */

@media (max-width: 900px) {

    .ppt-testimonials-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

}


/* Phone */

@media (max-width: 600px) {

    .ppt-testimonials-grid {
        grid-template-columns: 1fr;
    }

    .ppt-testimonial {
        padding: 22px;
    }

}