/* ============================================================
   LyricTribe — Labels index page  (ltLabels__ namespace)
   ============================================================ */
.page-labels-browse { background: #fafafa; color: #0f172a; }

.ltLabels {
    --vermillion: #FF3B5C;
    --vermillion-deep: #d62b48;
    --ink: #0f172a;
    --ink-2: #475569;
    --ink-3: #8a96a3;
    --line: #e6e8ec;
    --paper: #fff;
    --paper-2: #f4f5f7;
    --max: 1240px;
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    -webkit-font-smoothing: antialiased;
}
.ltLabels__wrap { max-width: var(--max); margin: 0 auto; padding-left: 1.25rem; padding-right: 1.25rem; }

/* Dark hero (matches the rest of the fresh build) */
.ltLabels__hero {
    color: #fff;
    text-align: center;
    padding: 3.5rem 1.25rem 3rem;
    background:
        radial-gradient(ellipse 800px 420px at 50% 30%, rgba(140, 50, 80, 0.55), transparent 80%),
        radial-gradient(circle 280px at 8% 110%, rgba(255, 59, 92, 0.18), transparent 70%),
        radial-gradient(circle 320px at 100% 0%, rgba(124, 77, 255, 0.18), transparent 70%),
        linear-gradient(180deg, #2a0f1f 0%, #1b0a14 100%);
}
.ltLabels__hero-inner { max-width: 720px; margin: 0 auto; }
.ltLabels__kicker { display: inline-block; padding: 0.3rem 0.85rem; border-radius: 9999px; background: rgba(255,59,92,0.18); color: #ffd0d8; font-size: 0.7rem; font-weight: 800; letter-spacing: 0.18em; margin-bottom: 0.85rem; }
.ltLabels__title { margin: 0 0 0.7rem; font-size: clamp(2.2rem, 5vw, 3.4rem); font-weight: 900; line-height: 1; letter-spacing: -0.025em; text-shadow: 0 4px 24px rgba(0,0,0,0.35); }
.ltLabels__sub { margin: 0; color: rgba(255,255,255,0.80); font-size: 1rem; line-height: 1.55; }

/* Breadcrumb */
.ltLabels__crumbs-strip { background: var(--paper); border-bottom: 1px solid var(--line); }
.ltLabels__crumbs { display: flex; gap: 0.45rem; align-items: center; color: var(--ink-3); font-size: 0.82rem; padding: 0.7rem 0; }
.ltLabels__crumbs a { color: var(--ink-2); text-decoration: none; }
.ltLabels__crumbs a:hover { color: var(--vermillion); }
.ltLabels__crumbs span:last-child { color: var(--ink); font-weight: 600; }

/* Main */
.ltLabels__main { padding: 2.25rem 0 3.5rem; }
.ltLabels__main-head { display: flex; justify-content: space-between; align-items: baseline; gap: 1rem; margin-bottom: 1.25rem; }
.ltLabels__main-head h2 { margin: 0; font-size: 1.4rem; font-weight: 800; letter-spacing: -0.01em; }
.ltLabels__count { color: var(--ink-3); font-size: 0.85rem; font-weight: 600; }

/* Grid */
.ltLabels__grid {
    list-style: none; margin: 0; padding: 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.ltLabels__tile {
    background: hsl(var(--h, 220), 72%, 96%);
    border: 1px solid hsl(var(--h, 220), 35%, 86%);
    border-radius: 14px;
    overflow: hidden;
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}
.ltLabels__tile:hover {
    transform: translateY(-3px);
    border-color: hsl(var(--h, 220), 60%, 65%);
    box-shadow: 0 10px 24px hsla(var(--h, 220), 60%, 70%, 0.30);
}

.ltLabels__tile-link {
    display: grid;
    grid-template-columns: 72px 1fr 20px;
    gap: 1rem;
    align-items: center;
    padding: 1.1rem 1.25rem;
    text-decoration: none;
    color: hsl(var(--h, 220), 55%, 22%);
}

.ltLabels__logo {
    width: 72px; height: 72px;
    border-radius: 10px;
    background: #fff;
    border: 1px solid hsl(var(--h, 220), 35%, 88%);
    overflow: hidden;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.ltLabels__logo img {
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
    display: block;
}
.ltLabels__mono {
    color: hsl(var(--h, 220), 60%, 35%);
    font-weight: 900;
    font-size: 1.4rem;
    letter-spacing: 0.04em;
}

.ltLabels__meta { min-width: 0; }
.ltLabels__name { font-weight: 800; font-size: 1.05rem; line-height: 1.2; letter-spacing: -0.005em; color: hsl(var(--h, 220), 60%, 20%); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.ltLabels__count-line { margin-top: 0.3rem; color: hsl(var(--h, 220), 35%, 35%); font-size: 0.82rem; font-weight: 600; font-variant-numeric: tabular-nums; }

.ltLabels__arrow {
    color: hsl(var(--h, 220), 55%, 30%);
    font-size: 1.2rem;
    transition: transform 0.18s ease;
}
.ltLabels__tile:hover .ltLabels__arrow { transform: translateX(4px); }

/* Pagination */
.ltLabels__pages { display: flex; justify-content: center; margin-top: 2.25rem; }

/* Empty state */
.ltLabels__empty { text-align: center; padding: 4rem 1rem; }
.ltLabels__empty-mark { font-size: 3rem; color: var(--ink-3); line-height: 1; margin-bottom: 0.85rem; }
.ltLabels__empty h2 { font-size: 1.4rem; font-weight: 800; margin: 0 0 0.45rem; }
.ltLabels__empty p { color: var(--ink-2); margin: 0; }

/* Responsive */
@media (max-width: 1024px) { .ltLabels__grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 720px)  { .ltLabels__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px)  { .ltLabels__grid { grid-template-columns: 1fr; } }
