/* Compact top-company chip (blog listing strip + blog article sidebar). */
.company-chip {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 15px;
    background: var(--color-bg-alt);
    border: 1px solid var(--color-border);
    border-radius: 15px;
    color: var(--color-text);
    text-decoration: none;
}
.company-chip--top {
    border-color: var(--color-border-secondary);
}
.company-chip .lead {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
}
.company-chip .badge-icon,
.company-chip .rank {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 37px;
    border-radius: 50%;
    flex-shrink: 0;
}
.company-chip .badge-icon {
    background: var(--color-bg-fourth);
    color: var(--color-text-secondary);
}
.company-chip .badge-icon .icon {
    font-size: 15px;
}
.company-chip .rank {
    border: 1px solid var(--color-border-secondary);
    color: var(--color-text-third);
    font-size: 14px;
    font-weight: 700;
}
.company-chip .name {
    font-size: 16px;
    line-height: 24px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.company-chip .bar {
    width: 80px;
    height: 8px;
    border-radius: 40px;
    background: var(--color-bg-fourth);
    flex-shrink: 0;
}
.company-chip:not(.company-chip--top) .bar {
    background: var(--progress-bg);
}

@media (max-width: 576px) {

    .company-chip .bar {
        width: 50px;
    }
}
