/* Blog article access + topic tags */
.article-labels {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
    align-items: center;
    margin-bottom: 0.5rem;
}

.access-badge {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    padding: 0.2rem 0.55rem;
    border-radius: 4px;
    line-height: 1.3;
}

.access-free {
    background: #e8f5e9;
    color: #2e7d32;
}

.access-sign-in {
    background: #e3f2fd;
    color: #1565c0;
}

.access-premium {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.2) 0%, rgba(118, 75, 162, 0.2) 100%);
    color: #5e4b8a;
    border: 1px solid rgba(102, 126, 234, 0.35);
}

.access-admin {
    background: #fff3e0;
    color: #e65100;
}

.topic-tag {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 500;
    padding: 0.15rem 0.5rem;
    border-radius: 999px;
    background: #f0f0eb;
    color: #555;
    border: 1px solid #e0e0d8;
}

.article-tags {
    font-size: 0.8rem;
    color: #888;
}

.blog-access-filters {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #e8e8e0;
}

.blog-access-filters h3 {
    font-size: 0.85rem;
    font-weight: 600;
    color: #666;
    margin: 0 0 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.access-filter-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    align-items: center;
}

.access-filter-btn {
    padding: 0.4rem 0.85rem;
    border-radius: 999px;
    border: 1px solid #d0d0c8;
    background: #fff;
    color: #444;
    font-size: 0.85rem;
    cursor: pointer;
    transition: background 0.15s, border-color 0.15s;
}

.access-filter-btn:hover {
    border-color: #98a869;
    color: #2c5530;
}

.access-filter-btn.active {
    background: #98a869;
    border-color: #7a9a5a;
    color: #fff;
}

.blog-tag-legend {
    max-width: 900px;
    margin: 0 auto 1.5rem;
    padding: 0.75rem 1rem;
    background: #f8f6f0;
    border-radius: 8px;
    font-size: 0.85rem;
    color: #555;
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem 1.25rem;
    align-items: center;
}

.blog-tag-legend .legend-item {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}
