/* =========================
   Blog Tags – Refined Style
   ========================= */

.blog__tag-introduction {
    margin-top: 3.5em;
    margin-bottom: 0.8em;
    font-size: 0.85rem;
    color: #6b7280; /* 灰但不脏 */
    letter-spacing: 0.02em;
}

/* Tag container */
.blog-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

/* Single tag pill */
.blog-tags__pill {
    display: inline-flex;
    align-items: center;
    padding: 6px 14px;
    border-radius: 999px;
    background: #ffffff;
    color: #374151;
    font-size: 0.8rem;
    font-weight: 500;
    text-decoration: none;
    border: 1px solid #e5e7eb;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
    transition:
        background 0.2s ease,
        box-shadow 0.2s ease,
        transform 0.15s ease,
        color 0.2s ease;
}

/* Hover / focus */
.blog-tags__pill:hover {
    background: #f9fafb;
    color: #111827;
    transform: translateY(-1px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

/* Optional: subtle accent dot */
.blog-tags__pill::before {
    content: "#";
    margin-right: 4px;
    color: #9ca3af;
    font-weight: 600;
}

/* Mobile tightening */
@media (max-width: 768px) {
    .blog-tags__pill {
        font-size: 0.78rem;
        padding: 5px 12px;
    }
}
