/* ===============================
  CONTAINER
=============================== */
.cts-marquee {
    margin-bottom: 32px;
    overflow: hidden;
    cursor: grab;
}

.cts-marquee .swiper-wrapper {
    display: flex;
    align-items: stretch;
    transition-timing-function: linear !important; /* smooth continuous marquee */
}

/* ===============================
  CARD STYLE
=============================== */
.cts-card {
    background: #DFE9E1;
    padding: 26px;
    border-radius: 14px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    box-sizing: border-box;
    flex-shrink: 0;
}

/* ===============================
  HEADER (IMAGE + NAME + ROLE)
=============================== */
.cts-header {
    display: flex;
    align-items: center;
    gap: 21px;
}

/* AVATAR IMAGE */
.cts-avatar {
    width: 40%;
    object-fit: cover;
    flex-shrink: 0;
}

.cts-meta {
    width: 60%;
}

/* NAME + ROLE */
.cts-meta h4 {
    font-size: 21px;
    margin: 0;
    font-weight: 600;
    color: #03624C;
    font-family: 'Inter';
}

.cts-meta span {
    color: #777;
    line-height: 1.2;
    font-size: 15px;
    font-family: 'Inter';
    font-weight: 300;
    margin: 0;
    margin-top: 10px;
    padding-right: 20px;
}

/* ===============================
  REVIEW TEXT / DESCRIPTION
=============================== */
.cts-text {
    font-size: 14px;
    line-height: 1.6;
    color: #000;
    margin: 20px 0;
}

/* ===============================
  RATING (STARS OR SIMILAR)
=============================== */
.cts-review {
    margin-top: 10px;
    display: flex;
    gap: 2px;
}

.cts-review span {
    font-size: 14px;
    color: #ccc;
}

.cts-review span.filled {
    color: #ffd700;
    font-size: 24px;
}

/* ===============================
  RESPONSIVE BREAKPOINTS
=============================== */

/* MOBILE */
@media (max-width: 767px) {
    .cts-card {
        width: 260px; /* 1 card visible */
    }
}

/* TABLET */
@media (min-width: 768px) and (max-width: 1023px) {
    .cts-card {
        width: 280px; /* 2 cards visible */
    }
}

/* DESKTOP */
@media (min-width: 1024px) {
    .cts-card {
        width: auto; /* Swiper handles 3–4 cards visible */
    }
}
