.dc-tb {
    --tb-ac: #A78278;
    --tb-dk: #1a1a2e;
    max-width: 1400px;
    margin: 0 auto;
    padding: 24px clamp(16px, 4vw, 40px);
}
.dc-tb .dc-tb__inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(16px, 3vw, 40px);
    flex-wrap: wrap;
    padding: 20px 28px;
    border-radius: 16px;
}
.dc-tb--light .dc-tb__inner {
    background: #fff;
    border: 1px solid rgba(167,130,120,0.12);
    box-shadow: 0 2px 16px rgba(26,26,46,0.04);
}
.dc-tb--dark .dc-tb__inner {
    background: var(--tb-dk);
    border: 1px solid rgba(167,130,120,0.15);
    box-shadow: 0 4px 24px rgba(0,0,0,0.12);
}
.dc-tb--transparent .dc-tb__inner {
    background: transparent;
    border: 1px solid rgba(167,130,120,0.15);
}

/* Badge item */
.dc-tb .dc-tb__badge {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0;
    position: relative;
}
.dc-tb .dc-tb__badge:not(:last-child)::after {
    content: '';
    position: absolute;
    right: calc(-1 * clamp(8px, 1.5vw, 20px));
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 28px;
    background: rgba(167,130,120,0.15);
}
.dc-tb--dark .dc-tb__badge:not(:last-child)::after {
    background: rgba(255,255,255,0.1);
}

/* Icon circle */
.dc-tb .dc-tb__icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: rgba(167,130,120,0.08);
    transition: background 0.3s ease;
}
.dc-tb .dc-tb__badge:hover .dc-tb__icon {
    background: rgba(167,130,120,0.14);
}
.dc-tb .dc-tb__icon svg {
    width: 20px;
    height: 20px;
    color: var(--tb-ac);
}

/* Text */
.dc-tb .dc-tb__text {
    display: flex;
    flex-direction: column;
    gap: 1px;
}
.dc-tb .dc-tb__label {
    font-family: 'Inter', -apple-system, sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.2px;
    color: var(--tb-dk);
    line-height: 1.3;
}
.dc-tb--dark .dc-tb__label { color: #fff; }
.dc-tb .dc-tb__sublabel {
    font-family: 'Inter', -apple-system, sans-serif;
    font-size: 11px;
    font-weight: 400;
    color: #888;
    line-height: 1.3;
}
.dc-tb--dark .dc-tb__sublabel { color: rgba(255,255,255,0.5); }

/* Stars */
.dc-tb .dc-tb__stars {
    display: flex;
    align-items: center;
    gap: 2px;
}
.dc-tb .dc-tb__stars svg {
    width: 12px;
    height: 12px;
    color: #F5A623;
    fill: #F5A623;
}
.dc-tb .dc-tb__score {
    font-family: 'Inter', -apple-system, sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: var(--tb-dk);
    margin-right: 4px;
    line-height: 1;
}
.dc-tb--dark .dc-tb__score { color: #fff; }

/* Responsive */
@media (max-width: 768px) {
    .dc-tb .dc-tb__inner {
        gap: 20px 28px;
        padding: 16px 20px;
    }
    .dc-tb .dc-tb__badge:not(:last-child)::after {
        display: none;
    }
}
@media (max-width: 480px) {
    .dc-tb .dc-tb__inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
    }
    .dc-tb .dc-tb__badge {
        width: 100%;
    }
}
