
.bbr-card {
    background: #fff;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 18px rgba(0,0,0,0.08);
}
.bbr-card h3 {
    margin-top: 0;
    font-size: 20px;
}
.bbr-video-list,
.bbr-comment-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 16px;
}
.bbr-tag {
    display: inline-block;
    padding: 2px 8px;
    border-radius: 999px;
    font-size: 12px;
    margin-bottom: 6px;
    background: #f2f2f2;
}
.bbr-small-note {
    font-size: 12px;
    color: #666;
    margin-top: 6px;
}
.bbr-sentiment-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.bbr-subtitle {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 12px;
}

.bbr-section-title {
    font-size: 20px;
    margin-bottom: 24px;
}
/* Wrapper */
.bbr-comment-list {
    max-height: 225px;
    overflow-y: auto;
    padding: 8px;
}

/* FORCE SINGLE COLUMN */
.bbr-comment-list {
    display: flex;
    flex-direction: column;
}

/* Card */
.bbr-comment-card {
    display: flex;
    gap: 14px;
    background: #ffffff;
    border-radius: 10px;
    padding: 14px 16px;
    margin-bottom: 14px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    border: 1px solid #f1f1f1;
    width: 100%;
}

/* Avatar */
.bbr-avatar {
    width: 42px;
    height: 42px !important;
    border-radius: 50% !important;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

/* Content */
.bbr-comment-body {
    flex: 1;
}

/* Username + date */
.bbr-user-line {
    font-size: 13px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 6px;
}

.bbr-user-line span {
    color: #9ca3af;
    font-weight: 500;
    margin-left: 6px;
}

/* Comment text */
.bbr-comment-text {
    font-size: 14px;
    line-height: 1.55;
}

/* Sentiment colors */
.bbr-positive { color: #00ACA1; }
.bbr-neutral  { color: #6b7280; }
.bbr-negative { color: #EF8251; }

