/* TNT Breadcrumbs & Views */

.tnt-meta-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    margin-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-family: 'Beleren', 'Cinzel', serif;
    font-size: 0.8rem;
    color: #9ca3af;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.tnt-breadcrumbs {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.crumb-link {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.2s;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.crumb-link:hover {
    color: var(--tnt-gold);
}

.crumb-icon {
    width: 0.9rem;
    height: 0.9rem;
    opacity: 0.7;
}

.crumb-sep {
    color: var(--tnt-gold);
    opacity: 0.5;
    font-weight: bold;
}

.crumb-current {
    color: #e5e7eb;
    font-weight: bold;
    max-width: 300px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.tnt-views {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    color: #6b7280;
    font-size: 0.75rem;
    background: rgba(255,255,255,0.05);
    padding: 2px 8px;
    border-radius: 4px;
}

.view-icon {
    width: 1rem;
    height: 1rem;
    color: var(--tnt-gold);
}

@media (max-width: 768px) {
    .tnt-meta-bar {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }
    .crumb-current {
        max-width: 200px;
    }
    .tnt-views {
        align-self: flex-start;
    }
}