/* =========================================================
   Testimonials Carousel — Default Style
   ========================================================= */

.lof-testimonials {
    position: relative;
    width: 100%;
}

.lof-testimonials h2.testimonials-header {
    font-size: 2.25rem;
    font-weight: 600;
    width: 100%;
    text-align: center;
    margin-bottom: 2em;
}

.lof-testimonials__viewport {
    overflow: hidden;
    width: 100%;
}

.lof-testimonials__track {
    display: flex;
    transition: transform 0.45s ease;
    will-change: transform;
    align-items: stretch;
}

.lof-testimonials__item {
    flex-shrink: 0;
    padding: 0 12px;
    box-sizing: border-box;
}

/* Card */
.lof-testimonials__card {
    background-image: url("http://focusmortgage.com/wp-content/uploads/2026/02/quote-left-solid-full.webp");
    background-position-x: left;
    background-position-y: top;
    background-repeat: no-repeat;
    background-size: 30%;
    padding-left: 12px;
    padding-top: 24px;
    height: 100%;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Quote */
.lof-testimonials__quote {
    margin: 0;
    font-size: 14px;
    line-height: 1.3em;
    color: var(--e-global-color-daa4f05);
    position: relative;
    flex: 1;
    max-width: 26ch;
}

.lof-testimonials__quote_style_2::before {
    content: '\201C';
    position: absolute;
    top: -10px;
    left: -4px;
    font-size: 72px;
    line-height: 1;
    color: var(--e-global-color-a785b72);
    font-family: Georgia, 'Times New Roman', serif;
    opacity: 0.6;
}

/* Author */
.lof-testimonials__meta {
    display: flex;
    flex-direction: column;
    padding-top: 16px;
}

.lof-testimonials__name {
    font-weight: 600;
    font-size: 18px;
    color: var(--e-global-color-daa4f05);
}

.lof-testimonials__date {
    font-size: 16px;
    color: #999;
}

/* Dots */
.lof-testimonials__dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 28px;
    display:none;
}

.lof-testimonials__dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ddd;
    border: none;
    padding: 0;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
}

.lof-testimonials__dot.active {
    background: var(--e-global-color-1eb8886);
    transform: scale(1.25);
}

.lof-testimonials__dot:hover {
    background: var(--e-global-color-a785b72);
}

@media screen and (max-width: 768px){
    .lof-testimonials__quote {
        max-width: 100%;
    }
}