.rc-96c34076-carousel-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 0;
}

/* Side Edge Fades */
.rc-96c34076-carousel-wrapper::before,
.rc-96c34076-carousel-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 32px; /* Keep dots clear */
    width: 80px;
    z-index: 10;
    pointer-events: none;
    transition: opacity 0.3s ease;
    opacity: 0; /* JS will toggle these based on scroll position */
}

.rc-96c34076-carousel-wrapper::before {
    left: 0;
    background: linear-gradient(to right, rgba(26, 26, 26, 0.95), transparent);
}

.rc-96c34076-carousel-wrapper::after {
    right: 0;
    background: linear-gradient(to left, rgba(26, 26, 26, 0.95), transparent);
}

.rc-96c34076-carousel-wrapper.has-scroll-left::before {
    opacity: 1;
}

.rc-96c34076-carousel-wrapper.has-scroll-right::after {
    opacity: 1;
}

.rc-96c34076-carousel {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    padding: 10px 0 20px 0;
    scrollbar-width: none; /* Hide standard Firefox scrollbar */
}

.rc-96c34076-carousel::-webkit-scrollbar {
    display: none; /* Hide Chrome, Safari, and Opera scrollbars */
}

.rc-96c34076-card {
    position: relative;
    flex: 0 0 calc(33.333% - 14px);
    scroll-snap-align: start;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    background: #1a1a1a;
    border: 0px solid #2a2a2a;
    border-radius: 24px;
    padding: 40px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

@media (max-width: 1024px) {
    .rc-96c34076-card {
        flex: 0 0 calc(50% - 10px);
    }
    .rc-96c34076-carousel-wrapper::before,
    .rc-96c34076-carousel-wrapper::after {
        width: 40px;
    }
}

@media (max-width: 767px) {
    .rc-96c34076-card {
        flex: 0 0 100%;
    }
    .rc-96c34076-carousel-wrapper::before,
    .rc-96c34076-carousel-wrapper::after {
        width: 30px;
    }
}

/* Quote Icon */
.rc-96c34076-quote {
    position: absolute;
    top: 25px;
    right: 25px;
}

.rc-96c34076-quote-svg {
    width: 32px;
    height: 32px;
    fill: #2d3748;
}

/* Header with Avatar and Name */
.rc-96c34076-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.rc-96c34076-avatar {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #fbe9eb;
    color: #8e3a59;
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 700;
    font-size: 24px;
    margin-right: 20px;
    flex-shrink: 0;
}

.rc-96c34076-header-right {
    display: flex;
    flex-direction: column;
}

.rc-96c34076-name {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 24px;
    font-style: italic;
    font-weight: 700;
    color: #8e3a59;
    margin-bottom: 4px;
}

.rc-96c34076-rating {
    display: flex;
    gap: 4px;
}

.rc-96c34076-star-svg {
    width: 16px;
    height: 16px;
    fill: #e0e0e0;
}

.rc-96c34076-star.fill .rc-96c34076-star-svg {
    fill: #eb5757;
}

/* Source Styling with Dynamic Icons */
.rc-96c34076-source {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
}

.rc-96c34076-source-svg-colored {
    width: 16px;
    height: 16px;
}

.rc-96c34076-source-svg {
    width: 16px;
    height: 16px;
    stroke: #a0aec0;
}

.rc-96c34076-source-text {
    font-size: 14px;
    color: #a0aec0;
}

/* Content Text Styling */
.rc-96c34076-text {
    font-size: 16px;
    line-height: 1.6;
    color: #e2e8f0;
}

/* Dots Styling */
.rc-96c34076-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 10px;
}

.rc-96c34076-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #e0e0e0;
    cursor: pointer;
    transition: background-color 0.3s;
}

.rc-96c34076-dot.active {
    background-color: #333333;
}
