/* ===============================
   SECTION & WRAPPER
================================ */
.testimonial-section {
    padding: 80px 0;
}

.testimonial-wrapper {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    cursor: grab;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    align-items: center;
    padding: 40px 20px;
    scroll-behavior: smooth;
}

.testimonial-wrapper::-webkit-scrollbar {
    display: none;
}

.testimonial-wrapper.is-dragging {
    cursor: grabbing;
    user-select: none;
}

/* ===============================
   CARD
================================ */
.testimonial-card {
    position: relative;
    flex: 0 0 300px;
    background: #3A1F3F;
    color: #fff;
    padding: 100px 20px 30px;
    border-radius: 14px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 400px;
    margin-top: -30px;
    transition: transform 0.3s;
}

.testimonial-card:hover {
    transform: translateY(-10px);
}

.testimonial-card.video {
    padding: 0 20px 0;
    min-height: auto;
    margin-top: -20px;
}

/* ===============================
   FOTO DI ATAS CARD (1 photo)
================================ */
.testimonial-photos {
    display: flex;
    justify-content: center;
    margin-top: -60px;
    z-index: 2;
}

.testimonial-photo {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid #fff;
    background: rgba(255,255,255,0.1);
}

.testimonial-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ===============================
   TEXT / VIDEO
================================ */
.testimonial-content {
    font-size: 15px;
    line-height: 1.6;
}

.testimonial-video {
    position: relative;
    width: 100%;
}

.testimonial-video video {
    width: 100%;
    padding: 5%;
    height: auto;
    border-radius: 12px;
    object-fit: cover;
}

/* ===============================
   NAME & POSITION
================================ */
.testimonial-name-position {
    margin-top: 14px;
}

.testimonial-name {
    font-weight: 600;
}

.testimonial-position {
    font-size: 0.85em;
    opacity: 0.85;
}

.testimonial-card.video .testimonial-name-position {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    text-align: center;
    color: #fff;
    text-shadow: 0 2px 6px rgba(0,0,0,0.6);
    background: rgba(0,0,0,0.25);
    padding: 8px 0;
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
}

/* ===============================
   RESPONSIVE
================================ */
@media (max-width:768px){
    .testimonial-card {
        flex: 0 0 80%;
        margin-top: -20px;
    }
}
