.bnt-news-ticker,
.bnt-news-ticker * {
    box-sizing: border-box;
}

.bnt-news-ticker {
    display: grid;
    grid-template-columns: 116px minmax(0, 1fr);
    width: 100%;
    overflow: hidden;
    border: 1px solid var(--bnt-border, rgba(255, 255, 255, 0.14));
    border-radius: var(--bnt-radius, 0);
    background: var(--bnt-bg, #151515);
    color: var(--bnt-text, #ffffff);
    font-family: inherit;
}

.bnt-label {
    align-items: flex-start;
    background: var(--bnt-accent, #c9182b);
    color: #ffffff;
    display: inline-flex;
    font-size: 14px;
    font-weight: 900;
    justify-content: center;
    line-height: 1;
    padding: 14px 16px;
    white-space: nowrap;
}

.bnt-window {
    min-width: 0;
}

.bnt-list {
    display: grid;
}

.bnt-item {
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: grid;
    gap: 12px;
    grid-template-columns: 58px minmax(0, 1fr);
    min-height: 42px;
    padding: 8px 16px;
}

.bnt-item:last-child {
    border-bottom: 0;
}

.bnt-item.is-latest {
    background: rgba(255, 255, 255, 0.055);
}

.bnt-item.has-no-time {
    grid-template-columns: 1fr;
}

.bnt-time {
    color: var(--bnt-muted, #d7dce0);
    direction: ltr;
    font-size: 12px;
    font-weight: 800;
    line-height: 1;
    unicode-bidi: isolate;
    white-space: nowrap;
}

.bnt-link {
    color: var(--bnt-text, #ffffff);
    display: -webkit-box;
    font-size: 14px;
    font-weight: 850;
    line-height: 1.45;
    min-width: 0;
    overflow: hidden;
    text-decoration: none;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
}

.bnt-link:hover,
.bnt-link:focus-visible {
    color: #ffffff;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 4px;
}

.bnt-empty {
    padding: 14px 16px;
    border: 1px dashed #d8d1c2;
    color: #555;
    background: #fff;
    text-align: center;
}

@media (max-width: 680px) {
    .bnt-news-ticker {
        grid-template-columns: 1fr;
    }

    .bnt-label {
        align-items: center;
        min-height: 34px;
        padding: 10px 14px;
        width: 100%;
    }

    .bnt-item {
        gap: 10px;
        grid-template-columns: 52px minmax(0, 1fr);
        min-height: 40px;
        padding: 8px 12px;
    }

    .bnt-link {
        font-size: 13px;
        -webkit-line-clamp: 2;
    }
}
