/**
 * CSS for TXS Testimonials Plugin.
 *
 * @package TXS_Testimonials
 */

.txs-testimonials-section {
    padding: 60px 0;
    text-align: center;
    font-family: 'Playfair Display', 'Inter', sans-serif; /* Consistent with WordPress design patterns */
    width: 100%;
    margin: 0 auto;
}

.txs-section-header {
    margin-bottom: 40px;
}

.txs-section-title {
    font-size: 28px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #444;
    margin-bottom: 5px;
}

.txs-section-title-underline {
    width: 250px;
    height: 4px;
    background-color: #d26e4b; /* Orange/gold from image */
    margin: 0 auto;
}

.txs-testimonials-slider {
    padding-bottom: 40px !important; /* Space for pagination */
}

.txs-testimonial-card {
    text-align: left;
    transition: transform 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.txs-testimonial-card:hover {
    transform: translateY(-5px);
}

.txs-testimonial-image-wrapper {
    width: 100%;
    margin-bottom: 15px;
    aspect-ratio: 4 / 3; /* Estimate from image */
    overflow: hidden;
    background-color: #f5f5f5;
}

.txs-testimonial-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.txs-testimonial-content {
    flex-grow: 1;
}

.txs-testimonial-meta {
    font-size: 14px;
    font-weight: 700;
    color: #333;
    margin-bottom: 8px;
    line-height: 1.4;
}

.txs-testimonial-review {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
    margin: 0;
}

/* Swiper overrides for grid layout */
@media screen and (min-width: 992px) {
    .swiper-wrapper {
        display: grid !important;
        grid-template-columns: repeat(5, 1fr) !important;
        transform: translate3d(0, 0, 0) !important;
        gap: 20px;
    }

    .swiper-slide {
        width: auto !important;
        margin-right: 0 !important;
        height: auto !important;
    }

    .swiper-pagination {
        display: none !important;
    }
}

@media screen and (max-width: 991px) {
    .txs-testimonials-section {
        padding: 40px 15px;
    }
}
