.arahant-post-bar {
    --apb-bg: #f5ede3;
    --apb-text: #8c8177;
    --apb-name: #4b4b4b;
    --apb-icon: #6f6f6f;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    width: 100%;
    box-sizing: border-box;
    margin: 14px 0 24px;
    padding: 20px 28px;
    background: var(--apb-bg);
    color: var(--apb-text);
    font-family: inherit;
}
.arahant-post-bar__author-wrap,
.arahant-post-bar__share {
    display: flex;
    align-items: center;
}
.arahant-post-bar__author-wrap { gap: 14px; min-width: 0; }
.arahant-post-bar__avatar {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    object-fit: cover;
    flex: 0 0 58px;
}
.arahant-post-bar__details { min-width: 0; line-height: 1.25; }
.arahant-post-bar__author {
    display: inline-block;
    color: var(--apb-name);
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    margin-bottom: 5px;
}
.arahant-post-bar__meta { font-size: 16px; white-space: nowrap; }
.arahant-post-bar__separator {
    width: 1px;
    height: 58px;
    margin: 0 20px 0 2px;
    background: rgba(80, 70, 60, .13);
}
.arahant-post-bar__share { gap: 12px; flex-wrap: wrap; }
.arahant-post-bar__button {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 0;
    background: var(--apb-icon);
    color: #fff;
    text-decoration: none;
    cursor: pointer;
    transition: transform .18s ease, opacity .18s ease;
}
.arahant-post-bar__button:hover,
.arahant-post-bar__button:focus { transform: translateY(-2px); opacity: .86; color: #fff; }
.arahant-post-bar__button svg { width: 21px; height: 21px; fill: currentColor; }
.arahant-post-bar__toast {
    position: fixed;
    left: 50%; bottom: 24px;
    transform: translateX(-50%);
    z-index: 999999;
    background: #222;
    color: #fff;
    padding: 9px 14px;
    border-radius: 4px;
    font-size: 14px;
}
@media (max-width: 767px) {
    .arahant-post-bar { align-items: flex-start; flex-direction: column; padding: 17px 18px; gap: 15px; }
    .arahant-post-bar__separator { display: none; }
    .arahant-post-bar__share { width: 100%; gap: 9px; }
    .arahant-post-bar__button { width: 36px; height: 36px; }
    .arahant-post-bar__avatar { width: 50px; height: 50px; flex-basis: 50px; }
    .arahant-post-bar__author { font-size: 16px; }
    .arahant-post-bar__meta { font-size: 14px; white-space: normal; }
}
