.noiz-clips {
    margin: 18px 0 0;
}

.noiz-clips-h {
    margin: 0 0 10px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
    color: var(--cat-link-color, #777);
}

.noiz-clips-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 8px;
}

.noiz-clip {
    padding: 8px 12px;
    background: var(--content-background-color, #fff);
    border: 1.5px solid var(--highlight-border-color, #d4d4d4);
    border-radius: 12px;
}

.noiz-player {
    display: flex;
    align-items: center;
    gap: 12px;
}

.noiz-player-el { display: none; }

.noiz-player-play {
    flex: 0 0 auto;
    width: 38px;
    height: 38px;
    border: 0;
    border-radius: 50%;
    background: #f2762f;
    cursor: pointer;
    position: relative;
    padding: 0;
}

.noiz-player-play:hover { background: #e06a26; }

.noiz-player-play::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-42%, -50%);
    border-style: solid;
    border-width: 6px 0 6px 10px;
    border-color: transparent transparent transparent #fff;
}

.noiz-player.is-playing .noiz-player-play::before {
    transform: translate(-50%, -50%);
    border: 0;
    width: 4px;
    height: 12px;
    background: #fff;
    box-shadow: 6px 0 0 #fff;
}

.noiz-player-bar {
    flex: 1 1 auto;
    min-width: 0;
    height: 6px;
    border-radius: 3px;
    background: var(--highlight-border-color, #e6e6e6);
    cursor: pointer;
}

.noiz-player-fill {
    display: block;
    height: 100%;
    width: 0;
    border-radius: 3px;
    background: #f2762f;
}

.noiz-player-time {
    flex: 0 0 auto;
    font-size: 13px;
    font-variant-numeric: tabular-nums;
    color: var(--cat-link-color, #777);
    min-width: 38px;
    text-align: right;
}
