/**
 * 主標籤/短標籤樣式
 * Schedule Module - Label Styles
 * 
 * 支援 5 種樣式：default, pill, outline, gradient, badge
 */

/* ========================================
   基礎樣式
   ======================================== */
.post-category-label {
    display: inline-block;
    padding: 3px 10px;
    margin-right: 6px;
    margin-bottom: 4px;
    font-size: 12px;
    font-weight: 500;
    line-height: 1.4;
    color: #fff;
    text-decoration: none;
    border-radius: 3px;
    transition: all 0.2s ease;
}

.post-category-label a {
    color: inherit;
    text-decoration: none;
}

.post-category-label:hover {
    opacity: 0.85;
    transform: translateY(-1px);
}

/* ========================================
   樣式：預設 (Default)
   ======================================== */
.post-label--default {
    /* 基礎樣式，不需額外設定 */
}

/* ========================================
   樣式：藥丸 (Pill)
   ======================================== */
.post-label--pill {
    padding: 4px 14px;
    border-radius: 50px;
    font-size: 11px;
    letter-spacing: 0.5px;
}

/* ========================================
   樣式：邊框 (Outline)
   ======================================== */
.post-label--outline {
    background: transparent !important;
    border-width: 2px;
    border-style: solid;
}

.post-label--outline a {
    /* 連結顏色繼承 border 顏色 */
}

.post-label--outline:hover {
    opacity: 1;
    filter: brightness(0.9);
}

/* ========================================
   樣式：漸層 (Gradient)
   ======================================== */
.post-label--gradient {
    /* 背景漸層透過 inline style 設定 */
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
    border-radius: 4px;
}

.post-label--gradient:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transform: translateY(-2px);
}

/* ========================================
   樣式：徽章 (Badge)
   ======================================== */
.post-label--badge {
    padding: 2px 8px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    border-radius: 2px;
    box-shadow: inset 0 -2px 0 rgba(0, 0, 0, 0.15);
}

.post-label--badge:hover {
    box-shadow: inset 0 -2px 0 rgba(0, 0, 0, 0.25);
}

/* ========================================
   短標籤專用
   ======================================== */
.post-label--short {
    background: #6c757d;
    font-size: 11px;
    padding: 2px 8px;
}

.post-label--short:hover {
    background: #5a6268;
}

/* ========================================
   日程標籤
   ======================================== */
.schedule-label {
    background: #f14668;
}

/* ========================================
   容器樣式
   ======================================== */
.sl-category {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 8px;
    gap: 4px;
}
