.postcounter {
    box-sizing: border-box;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--postcounter-gap);
    width: 100%;
    margin: 7px 0 0;
    padding: 0 2px;
    color: var(--postcounter-text);
    font-family: inherit;
    font-size: var(--postcounter-font-size);
    font-weight: 400;
    line-height: 1.4;
    text-align: left;
    text-transform: none;
    letter-spacing: normal;
}

.postcounter *,
.postcounter *::before,
.postcounter *::after {
    box-sizing: border-box;
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
    text-transform: none;
    letter-spacing: normal;
}

.postcounter-item {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    white-space: nowrap;
}

.postcounter-icon,
.postcounter-number {
    color: var(--postcounter-accent);
    font-weight: 700;
}

.postcounter-icon-character {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 11px;
    font-size: 13px;
    line-height: 1;
}

.postcounter-icon-words {
    position: relative;
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    width: 11px;
    height: 11px;
    gap: 2px;
}

.postcounter-icon-words span {
    display: block;
    width: 9px;
    height: 1px;
    background: var(--postcounter-accent);
}

.postcounter-icon-words span:nth-child(2) {
    width: 7px;
}

.postcounter-icon-words span:nth-child(3) {
    width: 10px;
}