/**
 * DevBrothers Reviews Carousel — minimal text slider, no card background.
 */

.fl-module-devbrothers-reviews-carousel > .fl-module-content {
    border: 0 !important;
    box-shadow: none !important;
    background: transparent !important;
}

.dbbk-rc__empty {
    padding: 0.5rem 0;
    opacity: 0.75;
    font-size: 0.95rem;
}

.dbbk-reviews-carousel {
    width: 100%;
    max-width: 100%;
    text-align: center;
}

.dbbk-rc__viewport {
    position: relative;
    width: 100%;
    min-height: 8rem;
}

.dbbk-rc__slides {
    position: relative;
    width: 100%;
}

.dbbk-rc__slide {
    width: 100%;
    margin: 0;
    padding: 0;
    opacity: 0;
    visibility: hidden;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    transition: opacity 0.45s ease, visibility 0.45s ease;
    pointer-events: none;
}

.dbbk-rc__slide.is-active {
    opacity: 1;
    visibility: visible;
    position: relative;
    pointer-events: auto;
}

.dbbk-rc__avatar {
    display: block;
    width: 56px;
    height: 56px;
    margin: 0 auto 1rem;
    border-radius: 50%;
    object-fit: cover;
}

.dbbk-rc__stars {
    display: flex;
    justify-content: center;
    gap: 0.2rem;
    margin-bottom: 1rem;
    line-height: 1;
}

.dbbk-rc__star {
    font-size: 1.25rem;
    color: #d1d5db;
}

.dbbk-rc__star.is-filled {
    color: #f59e0b;
}

.dbbk-rc__text {
    margin: 0 0 1rem;
    padding: 0;
    border: 0;
    font-size: 1.0625rem;
    line-height: 1.65;
    color: inherit;
    font-style: normal;
}

.dbbk-rc__text p {
    margin: 0 0 0.75em;
}

.dbbk-rc__text p:last-child {
    margin-bottom: 0;
}

.dbbk-rc__name {
    display: block;
    font-size: 0.9375rem;
    font-weight: 600;
    font-style: normal;
    color: inherit;
    opacity: 0.85;
}

.dbbk-rc__dots {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.dbbk-rc__dot {
    width: 10px;
    height: 10px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: rgba(17, 24, 39, 0.2);
    cursor: pointer;
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.dbbk-rc__dot:hover,
.dbbk-rc__dot:focus-visible {
    background: rgba(17, 24, 39, 0.45);
    outline: none;
}

.dbbk-rc__dot.is-active {
    background: rgba(17, 24, 39, 0.85);
    transform: scale(1.15);
}

@media (prefers-reduced-motion: reduce) {
    .dbbk-rc__slide {
        transition: none;
    }

    .dbbk-rc__dot {
        transition: none;
    }
}
