/* ================================
   NUS-ISS Testimonials
================================ */

.nus-testimonials {
    margin-top: 45px;
    padding-top: 35px;
    border-top: 1px solid #e8e8e8;
}

.testimonial-heading {
    text-align: center;
    margin-bottom: 28px;
}

.testimonial-heading span {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    color: #091d50;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 6px;
}

.testimonial-heading h4 {
    margin: 0 0 8px;
    font-size: 24px;
    font-weight: 700;
    color: #091d50;
}

.testimonial-heading p {
    margin: 0 auto;
    max-width: 650px;
    color: #777;
    font-size: 14px;
}

/* Video Card */

.testimonial-video {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    background: #000;
    aspect-ratio: 16 / 9;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.10);
}

.testimonial-player {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    cursor: pointer;
}

/* Play Button */

.testimonial-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

    width: 64px;
    height: 64px;

    border: 0;
    border-radius: 50%;

    background: rgba(9, 29, 80, 0.92);
    color: #fff;

    display: flex;
    align-items: center;
    justify-content: center;

    cursor: pointer;
    z-index: 5;

    transition: all 0.25s ease;
}

.testimonial-play i {
    font-size: 30px;
    margin-left: 3px;
}

.testimonial-play:hover {
    transform: translate(-50%, -50%) scale(1.08);
    background: #091d50;
}

/* Name / Title */

.testimonial-info {
    text-align: left;
    margin-top: 14px;
}

.testimonial-name {
    margin: 0 0 4px;
    font-size: 16px;
    font-weight: 700;
    color: #091d50;
}

.testimonial-title {
    margin: 0;
    font-size: 13px;
    color: #777;
    text-align: left!important;
    line-height: 1.4;
}

/* Hide play button when video is playing */

.testimonial-video.is-playing .testimonial-play {
    opacity: 0;
    pointer-events: none;
}

/* Mobile */

@media (max-width: 767px) {

    .nus-testimonials {
        margin-top: 30px;
        padding-top: 25px;
    }

    .testimonial-heading h4 {
        font-size: 21px;
    }

    .testimonial-play {
        width: 54px;
        height: 54px;
    }

    .testimonial-play i {
        font-size: 26px;
    }

}