/* ========== Tag Header ========== */
.tag-header-section { margin-bottom: var(--gap); }

.tag-header-inner {
    display: flex;
    gap: 20px;
    padding: 24px;
    background: linear-gradient(135deg, var(--ink-bg) 0%, var(--ink-bg-deep) 100%);
    border-bottom: 1px solid var(--ink-border);
}

.tag-image-wrap {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    overflow: hidden;
    box-shadow: var(--ink-shadow-md);
}

.tag-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tag-info { flex: 1; }

.tag-title {
    font-size: 24px;
    font-weight: 700;
    font-family: var(--font-serif);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.tag-title i {
    color: var(--ink-accent);
}

.tag-stats {
    display: flex;
    gap: 24px;
    font-size: 14px;
    color: var(--ink-muted);
}

.tag-stat i {
    color: var(--ink-accent);
    margin-right: 5px;
}

.tag-stat strong {
    color: var(--ink-accent);
    font-size: 18px;
    font-weight: 700;
}

@media (max-width: 768px) {
    .tag-header-inner { padding: 18px; }
    .tag-title { font-size: 20px; }
    .tag-image-wrap { width: 64px; height: 64px; }
}
