/**
 * Theme Name: TutorStarter Child
 * Template: tutorstarter
 * Author: Themeum
 * Version: 3.0.4
 * Text Domain: tutorstarter-child
 */
 
/* Give search icon the same color as text when search bar is active */
.elementor-widget-hfe-search-button .hfe-search-icon-toggle:focus-within i {
    color: var(--e-global-color-text) !important;
}

/* ============================================================
   QI ADDONS TESTIMONIALS: FIXED POSITION FOR LOCATION PIN
   Prevents the pin from jumping when text only has a single line.
   ============================================================ */

/* Ensure the testimonial item has a relative base for absolute positioning */
.qodef-testimonials-item {
    position: relative;
    display: flex !important;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-height: 100px; /* Adjust based on your longest review */
}

/* Create a stable area for the testimonial text */
.qodef-e-text {
    min-height: 85px; /* Adjust to fit 2 lines of text comfortably */
    margin-bottom: 20px;
}

/* Fix the pin (used in the quote field) to a specific spot */
.qodef-e-quote {
    position: absolute !important;
    left: 50% !important;
    bottom: 60px; /* Position above the country/name field */
    transform: translateX(-50%);
    margin: 0 !important;
}

/* Push the name and country (author data) to the bottom */
.qodef-e-author {
    /*margin-top: auto;
    padding-top: 30px;*/
}