.csss-wrapper {
    background-color: white; 
    padding: 15px;
    border-radius: 15px;
    width: 270px;
    font-family: 'Inter', sans-serif;
    position: relative;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}
@media only screen and (max-width: 767px) {
  .csss-wrapper {
      width: 100%;
  }
}

.csss-header-pill {
    background-color: #E3261C;
    color: #fff;
    padding: 8px 10px;
    border-radius: 25px;
    font-size: 12.5px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 12px;
    font-family: Poppins, Helvetica, Arial, Lucida, sans-serif;
}

/* Hide all slides except the first one on load */
.csss-slide {
    display: none;
}
.csss-slide:first-child {
    display: block;
}

.csss-title {
    font-size: 15px !important;
    font-weight: 700 !important;
    color: #000 !important;
    margin-bottom: 8px !important;
    line-height: 1.2 !important;
    text-transform: uppercase;
    font-family: Poppins, Helvetica, Arial, Lucida, sans-serif;
}

.csss-text {
    font-size: 12px;
    color: #444;
    font-style: italic;
    line-height: 1.4;
    margin-bottom: 10px;
    font-family: Poppins, Helvetica, Arial, Lucida, sans-serif;
}

.csss-name {
    font-weight: 700;
    font-size: 12px !important;
    color: #111;
    display: block;
}

.csss-stars {
    color: #FFA8AA;
    font-size: 12px;
    margin-bottom: 8px;
}

.csss-case-study-link {
    color: #0073aa;
    text-decoration: underline;
    font-weight: 600;
    font-size: 12px;
}

.csss-nav-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 15px;
}

.csss-prev, .csss-next {
    width: 28px;
    height: 28px;
    border: 1px solid #E3261C;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 12px;
    color: #000;
    transition: 0.3s;
}

.csss-prev:hover, .csss-next:hover {
    background: #FFA8AA;
    color: #fff;
}

.csss-dots-container { display: flex; gap: 5px; }
.csss-dot { width: 6px; height: 6px; background: #ddd; border-radius: 50%; transition: 0.3s; }
.csss-dot.active { width: 18px; border-radius: 10px; background: #FFA8AA; }