/*
Theme Name: 2Pac Vault
Theme URI: https://2pacvault.com
Author: 2Pac Vault
Description: The ultimate archive for Tupac Shakur.
Version: 3.0.0
License: GNU General Public License v2
Text Domain: 2pacvault
*/

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Inter:wght@300;400;500;600&family=JetBrains+Mono:wght@400;500&display=swap');

/* ═══════════════════════════════════════════════════════
   VARIABLES
═══════════════════════════════════════════════════════ */
:root {
  --gold:        #C9A84C;
  --gold-light:  #E8C96A;
  --gold-dark:   #7A6230;
  --gold-bg:     rgba(201,168,76,0.08);
  --black:       #000000;
  --bg:          #0C0C0C;
  --surface:     #141414;
  --surface-2:   #1C1C1C;
  --surface-3:   #242424;
  --border:      #242424;
  --border-2:    #303030;
  --text:        #E8E2D4;
  --text-muted:  #6B6560;
  --text-dim:    #3A3530;
  --white:       #F5F0E8;
  --font-display: 'Bebas Neue', sans-serif;
  --font-body:    'Inter', sans-serif;
  --font-mono:    'JetBrains Mono', monospace;
  --max-w:        1280px;
  --ease:         cubic-bezier(0.16, 1, 0.3, 1);
}

/* ═══════════════════════════════════════════════════════
   BASE RESET
═══════════════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  font-size: 16px;
  scroll-behavior: smooth;
  background: var(--black);
}

body {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: var(--gold); text-decoration: none; transition: color .18s; }
a:hover { color: var(--gold-light); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
h1,h2,h3,h4,h5,h6 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.02em;
  color: var(--white);
}
p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* ═══════════════════════════════════════════════════════
   LAYOUT
═══════════════════════════════════════════════════════ */
.site-wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background: var(--bg);
}

.site-main { flex: 1; }

.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

/* ═══════════════════════════════════════════════════════
   HEADER
═══════════════════════════════════════════════════════ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(12,12,12,0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  height: 64px;
  gap: 48px;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
  text-decoration: none;
}

.logo-2pac {
  font-family: var(--font-display);
  font-size: 26px;
  letter-spacing: 0.06em;
  color: var(--white);
  line-height: 1;
}

.logo-vault {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.4em;
  color: var(--gold);
  text-transform: uppercase;
  padding-top: 2px;
}

.main-nav { flex: 1; }

.main-nav ul {
  display: flex;
  gap: 4px;
  align-items: center;
}

.main-nav a {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 8px 14px;
  border-radius: 4px;
  transition: all .15s;
}

.main-nav a:hover { color: var(--white); background: var(--surface-2); }
.main-nav .current-menu-item a { color: var(--gold); }

.header-search form {
  display: flex;
  align-items: center;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
  transition: border-color .15s;
}

.header-search form:focus-within { border-color: var(--gold-dark); }

.header-search input {
  background: transparent;
  border: none;
  color: var(--text);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.05em;
  padding: 8px 14px;
  width: 180px;
  outline: none;
}

.header-search input::placeholder { color: var(--text-dim); }

.header-search button {
  background: transparent;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  padding: 8px 12px;
  font-size: 14px;
  transition: color .15s;
}

.header-search button:hover { color: var(--gold); }

.menu-toggle {
  display: none;
  background: none;
  border: 1px solid var(--border);
  color: var(--text-muted);
  cursor: pointer;
  padding: 8px 10px;
  border-radius: 4px;
  font-size: 16px;
  line-height: 1;
}

/* ═══════════════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: flex-end;
  background: var(--black);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: var(--hero-image, none);
  background-size: cover;
  background-position: center 15%;
  filter: grayscale(50%);
  opacity: 0.35;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    var(--black) 0%,
    rgba(0,0,0,0.7) 50%,
    rgba(0,0,0,0.1) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 80px 0;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}

.hero-eyebrow::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--gold);
}

.hero-title {
  font-size: clamp(80px, 16vw, 160px);
  line-height: 0.88;
  color: var(--white);
  margin-bottom: 32px;
}

.hero-title .accent { color: var(--gold); display: block; }

.hero-subtitle {
  font-size: 15px;
  font-weight: 300;
  color: var(--text-muted);
  max-width: 400px;
  line-height: 1.7;
  margin-bottom: 48px;
}

.hero-stats {
  display: flex;
  gap: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
  width: fit-content;
}

.stat {}

.stat-number {
  font-family: var(--font-display);
  font-size: 48px;
  color: var(--gold);
  display: block;
  line-height: 1;
  margin-bottom: 4px;
}

.stat-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-dim);
}

/* ═══════════════════════════════════════════════════════
   SECTION HEADERS
═══════════════════════════════════════════════════════ */
.section {
  padding: 80px 0;
  border-top: 1px solid var(--border);
}

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 40px;
}

.section-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.section-title {
  font-size: clamp(40px, 6vw, 72px);
  line-height: 1;
  color: var(--white);
}

.section-title .dim { color: var(--text-dim); }

.view-all {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
  padding-bottom: 2px;
  transition: all .15s;
  white-space: nowrap;
}

.view-all:hover { color: var(--gold); border-color: var(--gold-dark); }

/* ═══════════════════════════════════════════════════════
   ALBUM GRID
═══════════════════════════════════════════════════════ */
.album-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
}

.album-card {
  display: block;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  transition: transform .2s var(--ease), border-color .2s, box-shadow .2s;
  text-decoration: none;
}

.album-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold-dark);
  box-shadow: 0 20px 40px rgba(0,0,0,0.6), 0 0 0 0 transparent;
}

.album-card-cover {
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--surface-2);
  position: relative;
}

.album-card-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s var(--ease);
}

.album-card:hover .album-card-cover img { transform: scale(1.06); }

.album-card-cover-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  opacity: 0.1;
  color: var(--text);
}

.album-card-body { padding: 14px 16px 16px; }

.album-card-year {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  color: var(--gold);
  margin-bottom: 4px;
}

.album-card-title {
  font-family: var(--font-display);
  font-size: 17px;
  letter-spacing: 0.02em;
  color: var(--white);
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 4px;
}

.album-card-type {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
}

/* ═══════════════════════════════════════════════════════
   TRACK LIST
═══════════════════════════════════════════════════════ */
.track-list { display: flex; flex-direction: column; }

.track-item {
  display: grid;
  grid-template-columns: 40px 1fr auto auto;
  align-items: center;
  gap: 16px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  transition: background .12s;
  text-decoration: none;
  color: inherit;
}

.track-item:first-child { border-top: 1px solid var(--border); }
.track-item:hover { background: var(--surface); }

.track-num {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-dim);
  text-align: right;
}

.track-item:hover .track-num { color: var(--gold); }

.track-info { min-width: 0; }

.track-title {
  font-size: 14px;
  font-weight: 500;
  color: var(--white);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 2px;
}

.track-album {
  font-size: 12px;
  color: var(--text-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.track-featuring {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--gold-dark);
  white-space: nowrap;
}

.track-duration {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-dim);
}

/* ═══════════════════════════════════════════════════════
   SINGLE ALBUM
═══════════════════════════════════════════════════════ */
.album-hero {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 56px;
  align-items: end;
  padding: 64px 0 56px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 56px;
}

.album-cover-wrap {
  position: relative;
}

.album-cover-wrap img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 4px;
  box-shadow: 0 40px 80px rgba(0,0,0,0.8);
}

.album-cover-placeholder {
  aspect-ratio: 1;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 64px;
  color: var(--text-dim);
}

.album-badge {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold-dark);
  padding: 4px 10px;
  border-radius: 2px;
  margin-bottom: 16px;
}

.album-title {
  font-size: clamp(40px, 7vw, 80px);
  line-height: 0.92;
  margin-bottom: 32px;
  color: var(--white);
}

.album-meta-grid {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  padding: 20px 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 6px;
  margin-bottom: 24px;
}

.album-meta-item {}

.album-meta-key {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 4px;
}

.album-meta-val {
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
}

.section-heading {
  font-size: 36px;
  color: var(--white);
  margin-bottom: 0;
  padding: 0 0 24px;
  border-bottom: 1px solid var(--border);
}

.section-heading .dim { color: var(--text-dim); }

/* ═══════════════════════════════════════════════════════
   SINGLE TRACK / LYRICS
═══════════════════════════════════════════════════════ */
.track-hero {
  padding: 64px 0 48px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 56px;
}

.breadcrumb {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--text-dim);
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.breadcrumb a { color: var(--text-dim); }
.breadcrumb a:hover { color: var(--text-muted); }
.breadcrumb-sep { color: var(--text-dim); opacity: 0.4; }

.track-hero-title {
  font-size: clamp(48px, 10vw, 100px);
  line-height: 0.88;
  margin-bottom: 24px;
  color: var(--white);
}

.track-artist {
  font-size: 16px;
  font-weight: 300;
  color: var(--text-muted);
  font-style: italic;
  margin-bottom: 24px;
}

.meta-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.pill {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  padding: 5px 12px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 100px;
  color: var(--text-muted);
}

.pill-gold {
  background: var(--gold-bg);
  border-color: var(--gold-dark);
  color: var(--gold);
}

.track-layout {
  display: grid;
  grid-template-columns: 1fr 260px;
  gap: 56px;
  align-items: start;
}

.lyrics-body {
  font-size: 16px;
  font-weight: 300;
  line-height: 2;
  color: var(--text);
  white-space: pre-line;
  font-style: italic;
}

.lyrics-source {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-dim);
  margin-top: 32px;
}

.lyrics-empty {
  color: var(--text-muted);
  font-style: italic;
  font-size: 15px;
}

/* Sidebar */
.sidebar-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 16px;
}

.sidebar-card-body { padding: 16px; }

.sidebar-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 6px;
}

.sidebar-title {
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--white);
}

/* ═══════════════════════════════════════════════════════
   ARCHIVE
═══════════════════════════════════════════════════════ */
.archive-top {
  padding: 64px 0 48px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 48px;
}

.archive-heading {
  font-size: clamp(60px, 12vw, 120px);
  line-height: 0.9;
  color: var(--white);
  margin-bottom: 8px;
}

.archive-heading .accent { color: var(--gold); }

.archive-count {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-dim);
}

.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 40px;
}

.filter-btn {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text-muted);
  cursor: pointer;
  padding: 6px 16px;
  border-radius: 4px;
  transition: all .12s;
}

.filter-btn:hover { border-color: var(--border-2); color: var(--text); }
.filter-btn.active { background: var(--gold-bg); border-color: var(--gold-dark); color: var(--gold); }

/* ═══════════════════════════════════════════════════════
   SEARCH
═══════════════════════════════════════════════════════ */
.search-wrap { max-width: 560px; margin-bottom: 40px; }

.search-big {
  display: flex;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  transition: border-color .15s;
}

.search-big:focus-within { border-color: var(--gold-dark); }

.search-big input {
  flex: 1;
  background: transparent;
  border: none;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 300;
  padding: 14px 20px;
  outline: none;
}

.search-big input::placeholder { color: var(--text-dim); }

.search-big button {
  background: var(--gold);
  border: none;
  color: var(--black);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
  cursor: pointer;
  padding: 0 20px;
  transition: background .15s;
}

.search-big button:hover { background: var(--gold-light); }

/* ═══════════════════════════════════════════════════════
   BLOG / POSTS
═══════════════════════════════════════════════════════ */
.posts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}

.post-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  transition: transform .2s var(--ease), border-color .2s;
}

.post-card:hover { transform: translateY(-3px); border-color: var(--border-2); }

.post-card-img { aspect-ratio: 16/9; overflow: hidden; background: var(--surface-2); }
.post-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.post-card:hover .post-card-img img { transform: scale(1.04); }

.post-card-body { padding: 20px 24px; }

.post-date {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--text-dim);
  text-transform: uppercase;
  margin-bottom: 10px;
}

.post-card-title { font-size: 22px; margin-bottom: 10px; }
.post-card-title a { color: var(--white); }
.post-card-title a:hover { color: var(--gold); }

.post-excerpt { font-size: 13px; color: var(--text-muted); line-height: 1.7; }

/* ═══════════════════════════════════════════════════════
   PAGINATION
═══════════════════════════════════════════════════════ */
.pagination {
  display: flex;
  justify-content: center;
  gap: 4px;
  margin-top: 64px;
}

.pagination a, .pagination span {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  border: 1px solid var(--border);
  padding: 8px 14px;
  border-radius: 4px;
  transition: all .12s;
  color: var(--text-muted);
}

.pagination a:hover { border-color: var(--border-2); color: var(--text); }
.pagination .current { background: var(--gold); color: var(--black); border-color: var(--gold); font-weight: 500; }

/* ═══════════════════════════════════════════════════════
   SIDEBAR
═══════════════════════════════════════════════════════ */
.with-sidebar { display: grid; grid-template-columns: 1fr 280px; gap: 56px; align-items: start; }

.widget {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 16px;
}

.widget-title {
  font-size: 14px;
  letter-spacing: 0.08em;
  color: var(--gold);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}

/* ═══════════════════════════════════════════════════════
   QUOTE BANNER
═══════════════════════════════════════════════════════ */
.quote-banner {
  padding: 100px 0;
  text-align: center;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--surface);
}

.quote-text {
  font-size: clamp(20px, 3vw, 32px);
  font-weight: 300;
  font-style: italic;
  color: var(--text);
  max-width: 800px;
  margin: 0 auto 24px;
  line-height: 1.5;
}

.quote-author {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ═══════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════ */
.site-footer {
  background: var(--black);
  border-top: 1px solid var(--border);
  padding: 64px 0 32px;
  margin-top: auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-logo .logo-2pac { font-size: 32px; }

.footer-desc {
  font-size: 13px;
  font-weight: 300;
  color: var(--text-muted);
  margin-top: 12px;
  line-height: 1.7;
  max-width: 240px;
}

.footer-heading {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 16px;
}

.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 13px; color: var(--text-muted); transition: color .12s; }
.footer-links a:hover { color: var(--text); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.footer-copy {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--text-dim);
}

.footer-quote {
  font-size: 13px;
  font-style: italic;
  color: var(--text-dim);
}

/* ═══════════════════════════════════════════════════════
   UTILITIES
═══════════════════════════════════════════════════════ */
.gold { color: var(--gold); }
.muted { color: var(--text-muted); }
.mono { font-family: var(--font-mono); }

/* ═══════════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .album-hero { grid-template-columns: 220px 1fr; gap: 40px; }
  .track-layout { grid-template-columns: 1fr; }
  .with-sidebar { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .main-nav, .header-search { display: none; }
  .menu-toggle { display: block; }

  .main-nav.open {
    display: block;
    position: fixed;
    inset: 64px 0 0 0;
    background: rgba(0,0,0,0.98);
    padding: 24px;
    z-index: 999;
    border-top: 1px solid var(--border);
    overflow-y: auto;
  }

  .main-nav.open ul { flex-direction: column; gap: 4px; }
  .main-nav.open a { font-size: 16px; padding: 14px 16px; display: block; }

  .hero-title { font-size: 72px; }
  .hero-stats { gap: 32px; }
  .album-hero { grid-template-columns: 1fr; }
  .album-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .section { padding: 48px 0; }
  .track-item { grid-template-columns: 32px 1fr auto; }
  .track-duration { display: none; }
  .section-head { flex-direction: column; align-items: flex-start; gap: 16px; }
}
