/* ── Card Slider ─────────────────────────────────────── */
.tppb-slider--card .splide__slide {
    display: flex;
    flex-direction: column;
}

.tppb-slider--card .splide__image {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    border-radius: 0.5rem 0.5rem 0 0;
}

.tppb-slider--card .tppb-slide-content {
    padding: 1rem;
    background: #fff;
    border-radius: 0 0 0.5rem 0.5rem;
    flex: 1;
}

.tppb-slider--card .tppb-slide-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.tppb-slider--card .tppb-slide-text {
    font-size: 0.9rem;
    color: #666;
}

/* ── Hero Slider ─────────────────────────────────────── */
.tppb-slider--hero .splide__slide {
    position: relative;
    width: 100% !important;
}

.tppb-slider--hero .splide__image {
    width: 100%;
    height: 70vh;
    object-fit: cover;
}

.tppb-slider--hero .tppb-slide-content {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    color: #fff;
    text-shadow: 0 1px 3px rgba(0,0,0,0.5);
}

.tppb-slider--hero .tppb-slide-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

/* ── Gallery Slider ──────────────────────────────────── */
.tppb-slider--gallery .splide__image {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    border-radius: 0.5rem;
}

/* ── Testimonial Slider ──────────────────────────────── */
.tppb-slider--testimonial .tppb-slide-testimonial {
    text-align: center;
    padding: 2rem;
}

.tppb-slider--testimonial .tppb-slide-avatar img {
    width: 80px;
    height: 80px;
    margin: 0 auto 1rem;
}

.tppb-slider--testimonial .tppb-slide-quote {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 1rem;
    border: none;
}

.tppb-slider--testimonial .tppb-slide-author {
    font-style: normal;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.tppb-slider--testimonial .tppb-slide-role {
    font-size: 0.85rem;
    color: #666;
}


/* ── Logo Slider ─────────────────────────────────────── */
.tppb-slider--logo .splide__slide {
    display: flex;
    align-items: center;
    justify-content: center;
}
 
.tppb-slider--logo .tppb-slide-logo {
    height: 100px;
}
 
.tppb-slider--logo .splide__image {
    max-height: 80px;
    width: auto;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.3s ease;
}
 
.tppb-slider--logo .splide__image:hover {
    filter: grayscale(0%);
    opacity: 1;
}
 