.shahr-meta {
    font-family: var(--bs-font-sans-serif);
    display: flex;
    align-items: center;
}

.shahr-meta .d-flex {
    gap: 0.16rem;
}

.shahr-meta[dir="ltr"] .meta-icon {
    margin-right: 0.5rem;
    margin-left: 0;
}

.shahr-meta[dir="rtl"] .meta-icon {
    margin-left: 0.5rem;
    margin-right: 0;
}

.shahr-meta .meta-author,
.shahr-meta .meta-categories,
.shahr-meta .meta-tags,
.shahr-meta .meta-date,
.shahr-meta .meta-comment,
.shahr-meta .meta-post-id {
    display: flex;
    align-items: center;
    padding: 0.5rem 1rem;
    border-radius: 4px;
}

.shahr-meta .avatar {
    width: 32px !important;
    height: 32px !important;
    border-radius: 50%;
}

.shahr-meta .separator {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.shahr-meta .separator.line {
    height: 1px;
    width: 14px;
    border-top: 1px solid #666666;
}

.shahr-meta[dir="ltr"] .separator {
    margin: 0 0.5rem;
}

.shahr-meta[dir="rtl"] .separator {
    margin: 0 0.5rem;
}

html[scheme="dark"] .shahr-meta .separator.line {
    border-top-color: #b3b3b3;
}

@media (max-width: 576px) {
    .shahr-meta .d-flex {
        flex-direction: row;
        align-items: flex-start !important;
    }

    .shahr-meta .separator {
        display: none;
    }
}