/* =====================================================
   HPO Testimonial Slider – Frontend Styles
   ===================================================== */

.hpo-slider-wrapper {
    max-width: 1300px;
    margin: 0 auto;
    position: relative;
    padding: 0 40px;
    box-sizing: border-box;
}

.hpo-testimonial-slider {
    display: flex;
    overflow: hidden;
    scroll-behavior: smooth;
}

.hpo-testimonial-item {
    min-width: 300px;
    max-width: 300px;
    background: #fff;
    padding: 15px;
    margin-right: 20px;
    box-sizing: border-box;
    flex-shrink: 0;
}

.hpo-testimonial-item p {
    margin-bottom: 10px;
    margin-top: 0;
}

.hpo-testimonial-name {
    font-weight: 700;
    margin-bottom: 2px;
}

.hpo-stars {
    color: #061B5D;
    font-size: 20px;
    line-height: 1.2;
}

/* ---- Reviewer Header (image left, name+stars right) ---- */
.hpo-reviewer-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.hpo-reviewer-image {
    flex-shrink: 0;
}

.hpo-reviewer-image img {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
    border: 2px solid #e8e8e8;
}

.hpo-reviewer-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* ---- Arrows ---- */
.hpo-slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 38px;
    height: 38px;
    background: #0E3690 !important;
    border: none !important;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 20;
    font-size: 16px;
    line-height: 1;
    padding: 0;
    color: #fff !important;
    transition: background 0.2s;
    box-shadow: 0 2px 6px rgba(14,54,144,0.25);
}

.hpo-slider-arrow:hover {
    background: #0b2d7a !important;
}

.hpo-slider-arrow:focus {
    outline: 2px solid #0E3690;
    outline-offset: 3px;
}

.hpo-arrow-left  { left: 0; }
.hpo-arrow-right { right: 0; }

/* ---- Responsive ---- */
@media (max-width: 768px) {
    .hpo-slider-wrapper {
        padding: 0 20px;
    }

    .hpo-testimonial-item {
        min-width: 85%;
        max-width: 85%;
    }
}
