/* Tag styles extracted from custom.css for clarity and reuse */

/* Modern recipe tag pill (scoped to overlay since tags only appear on cards) */

/* Overlay container for tags on images */
.card-tags-overlay {
    position:absolute;
    left:6px;
    bottom:6px;
    display:flex;
    flex-wrap:wrap;
    gap:4px;
    max-width:calc(100% - 12px);
    justify-content:flex-end;
}

.card-tags-overlay .recipe-tag {
    font-size: .65rem;
    font-weight: 600;
    letter-spacing: .5px;
    padding: 3px 8px;
    border-radius: 999px;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    transition: all .25s ease;
    text-transform: lowercase;
    /* visual */
    background: #f1f1f1;
    border: 1px solid #d9d9d9;
    color: var(--bulma-primary,hsl(171, 100%, 41%));
}

.card-tags-overlay .recipe-tag:hover {
    background: #e8e8e8;
}
