.bits-wrap {
    position: relative;
    width: 100%;
    box-sizing: border-box;
}

.bits-track {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 4px;
}

.bits-track::-webkit-scrollbar {
    display: none;
}

.bits-track {
    scrollbar-width: none;
}

.bits-card {
    scroll-snap-align: start;
    flex: 0 0 min(340px, 85vw);
    background: #F6F6F6;
    border-radius: 12px;
    padding: 24px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.bits-card-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.bits-who {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}

.bits-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.bits-quote-mark {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 40px;
    font-weight: 700;
    line-height: 1;
    color: #B08B5A;
    flex-shrink: 0;
}

.bits-quote {
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    line-height: 1.6;
    color: #4A4A4A;
    margin: 0;
}

.bits-name {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 16px;
    color: #111111;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.bits-controls {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-top: 28px;
    max-width: 1155px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 24px;
    box-sizing: border-box;
}

@media (max-width: 767px) {
    .bits-controls {
        padding: 0 20px;
    }
}

.bits-progress {
    flex: 1 1 auto;
    min-width: 0;
    height: 6px;
    border-radius: 6px;
    background: #F3D9BA;
    overflow: hidden;
}

.bits-progress-fill {
    height: 100%;
    width: 0%;
    background: #EB8D1D;
    border-radius: 6px;
    transition: width 0.2s ease;
}

.bits-nav {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.bits-nav-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: none;
    background: #0485A9;
    color: #FFFFFF;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s;
}

.bits-nav-btn:hover {
    background: #036b8a;
}

.bits-nav-btn img {
    width: 18px;
    height: 18px;
    object-fit: contain;
}
