/* ==========================================================================
   3. SHARED POST FOOTER TAGS AREA (Fixed for Perfect Centering)
   ========================================================================== */
.post-footer-tags-area {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    border-top: 1px solid var(--border-color);
    padding: 1.5rem 0;
    margin-top: 3.5rem;
}

.btn-prev-post {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0.15rem;
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-primary);
    transition: color 0.15s ease;
}

.btn-next-post {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.15rem;
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-primary);
    transition: color 0.15s ease;
}

.posted-in-labels {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.75rem;
    padding: 0 1.5rem;
}

.label-prefix {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-date);
    letter-spacing: 0.5px;
}

.footer-tag-link {
    text-decoration: none;
    font-size: 0.75rem;
    color: var(--google-link-blue);
    border: 1px solid var(--border-color);
    padding: 0.25rem 0.6rem;
    border-radius: 4px;
    background-color: #121212;
}

.footer-tag-link:hover {
    background-color: #1e1f20;
}

.btn-prev-post:hover,
.btn-next-post:hover {
    color: var(--google-link-blue);
}
