/* --- Carousel & Container --- */
.wpsm-testimonials-container {
    margin: 20px 0;
}

/* Slick adds extra padding/margin, we need to ensure spacing between slides */
.wpsm-testimonial-slide {
    padding: 10px; /* This creates the gap between carousel items */
    outline: none;
}

.wpsm-testimonial-card {
    background-color: #ffffff;
    border: 1px solid #F58225;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    display: flex !important; /* Override slick's block display */
    flex-direction: column;
    justify-content: space-between;
    min-height: 400px; /* Optional: keeps cards uniform height */
}

/* Maintain your specific styling for child positions if desired, 
   though carousel items often work best with uniform styling. */
.wpsm-testimonial-slide:nth-child(odd) .wpsm-testimonial-card {
    background: #ffffff;
}

/* --- Star Rating Styling --- */
.wpsm-star-rating {
    margin-bottom: 15px;
    line-height: 1;
}

.wpsm-star {
    font-size: 24px;
    color: #F6D021;
    margin-right: 2px;
}

.wpsm-star.empty {
    color: #ffdcb5;
}

/* --- Review Content Styling --- */
.wpsm-review-content {
    font-family: 'Raleway', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    margin-bottom: 25px;
    flex-grow: 1;
}

/* --- Customer Info Styling --- */
.wpsm-customer-info {
    display: flex;
    align-items: center;
    padding-top: 15px;
}

.wpsm-customer-photo {
    margin-right: 15px;
}

.wpsm-testimonial-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #ffaa69;
}

.wpsm-customer-details {
    line-height: 1.2;
}

.wpsm-customer-name {
    font-size: 22px;
    font-weight: bold;
    color: #333;
    margin: 0 0 2px 0 !important;
    font-family: 'Raleway', sans-serif;
}

.wpsm-customer-title, .wpsm-customer-company {
    font-family: 'Raleway', sans-serif;
    font-size: 14px;
    color: #666;
    margin: 0;
}

.wpsm-customer-company {
    font-weight: 700 !important;
}

/* Adjusting Slick Arrows for visibility */
.slick-prev:before, .slick-next:before {
    color: #F58225 !important;
}
@media screen and (min-width: 1024px) {
    .slick-dots {
        display: none !important;
    }
}