

.blogNavigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* margin-top: 2.5rem; */
    gap: 1.5rem;
}
.article-nav-link {
    display: flex;
    align-items: flex-start;
    font-size: 0.85em;
    color: #c5c5c5;
    text-decoration: none;
    font-weight: 500;
    padding: 0.5em 0;
    /* border-radius: 6px; */
    /* background: #fff2; */
    transition: background 0.2s;
    max-width: 42%;
    overflow: hidden;
    text-overflow: ellipsis;
}
.article-nav-link:hover {
    /* background: #e53935; */
    color: #fff;
    text-decoration: none;

}
.article-nav-link .arrow {
    font-size: 1em;
    margin: 0;
}
.article-nav-link.prev .arrow { order: 0; }
.article-nav-link.prev .nav-title { order: 1; }
.article-nav-link.next .nav-title { order: 0; }
.article-nav-link.next .arrow { order: 1; }
.back-link {
    font-size: 1em;
    font-weight: bold;
    color: #e53935;
    cursor: pointer;
    user-select: none;
}
.tag-pill {
    display: inline-block;
    padding: 0.4em 0.8em;
    margin: 0.2em 0;
    background: rgba(229, 87, 34, 0.1);
    color: #d2d2d2ff;
    border-radius: 16px;
    text-decoration: none;
    font-size: 0.85em;
    transition: background 0.2s;
}
.tag-pill:hover {
    background: rgba(229, 87, 34, 0.2);
}