/* =========================================================
   CREMZ TEMPLATE
   Dark warm base · Orange accent · Archivo typeface
   ========================================================= */

/* ── Reset & base ─────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }

html, body {
  margin: 0;
  background: #171310;
  font-family: Archivo, system-ui, sans-serif;
  color: #f0e9df;
  font-size: 14px;
  -webkit-font-smoothing: antialiased;
}

::placeholder { color: #7c6d5c; }

a { color: inherit; }

/* ── Layout ───────────────────────────────────────────── */
.cz-wrap {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 24px 56px;
}

.cz-main {
  min-height: 60vh;
}

/* ── Header ───────────────────────────────────────────── */
.cz-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(18, 16, 13, .96);
  border-bottom: 1px solid rgba(255, 255, 255, .06);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  overflow: visible;
}

.cz-header-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 24px;
  height: 52px;
  display: flex;
  align-items: center;
  gap: 18px;
}

.cz-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex: none;
  position: relative;
  top: 10px;
  z-index: 10;
}

.cz-logo-img {
  height: 46px;
  display: block;
  filter: drop-shadow(0 4px 12px rgba(255, 90, 31, .35)) drop-shadow(0 2px 4px rgba(0, 0, 0, .6));
  transition: filter .2s ease, transform .2s ease;
}

.cz-logo:hover .cz-logo-img {
  filter: drop-shadow(0 6px 18px rgba(255, 90, 31, .55)) drop-shadow(0 2px 6px rgba(0, 0, 0, .7));
  transform: translateY(-1px);
}

.cz-nav { display: flex; gap: 2px; }

.cz-nav-link {
  font: 600 12px Archivo, sans-serif;
  letter-spacing: .04em;
  color: #b3a494;
  text-decoration: none;
  padding: 6px 10px;
  border-radius: 6px;
  transition: color .15s, background .15s;
}
.cz-nav-link:hover { color: #f2ece4; background: rgba(255, 255, 255, .05); }
.cz-nav-link.active { color: #ff7a3c; background: rgba(255, 90, 31, .12); font-weight: 700; }
.cz-nav-bps { display: inline-flex; align-items: center; padding: 4px 8px; }
.cz-nav-bps img { display: block; height: 18px; width: auto; max-width: 72px; object-fit: contain; opacity: .7; transition: opacity .15s; }
.cz-nav-bps:hover img { opacity: 1; }

.cz-search {
  flex: 1;
  display: flex;
  justify-content: center;
}

.cz-search-input {
  width: min(380px, 100%);
  height: 32px;
  padding: 0 36px 0 14px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, .1);
  background: #1e1913;
  color: #f2ece4;
  font: 500 12px Archivo, sans-serif;
  outline: none;
  transition: border-color .15s;
}
.cz-search-input:focus { border-color: #ff5a1f; }

.cz-search { position: relative; }
.cz-search-btn {
  position: absolute;
  right: calc(50% - 190px + 10px);
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: #8a7b6a;
  cursor: pointer;
  display: flex;
  align-items: center;
  padding: 0;
  transition: color .15s;
}
.cz-search-btn:hover { color: #ff7a3c; }

.cz-header-actions { display: flex; gap: 8px; flex: none; }

.cz-btn-ghost {
  font: 700 11.5px Archivo, sans-serif;
  letter-spacing: .05em;
  color: #d8cbbb;
  text-decoration: none;
  padding: 8px 14px;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, .14);
  transition: border-color .15s;
  white-space: nowrap;
}
.cz-btn-ghost:hover { border-color: rgba(255, 255, 255, .3); }

.cz-btn-primary {
  font: 800 11.5px Archivo, sans-serif;
  letter-spacing: .05em;
  color: #171310;
  text-decoration: none;
  padding: 8px 14px;
  border-radius: 6px;
  background: #ff5a1f;
  transition: background .15s;
  white-space: nowrap;
}
.cz-btn-primary:hover { background: #ff7a3c; }

/* ── Glow colour placeholders (thumbnail backgrounds) ─── */
.cz-g1 { background: linear-gradient(120deg, hsl(14 42% 15%) 0%, hsl(26 52% 26%) 55%, hsl(6 45% 11%) 100%); }
.cz-g2 { background: linear-gradient(120deg, hsl(24 42% 15%) 0%, hsl(36 52% 26%) 55%, hsl(16 45% 11%) 100%); }
.cz-g3 { background: linear-gradient(120deg, hsl(34 42% 15%) 0%, hsl(46 52% 26%) 55%, hsl(26 45% 11%) 100%); }
.cz-g4 { background: linear-gradient(120deg, hsl(352 42% 15%) 0%, hsl(4 52% 26%) 55%, hsl(344 45% 11%) 100%); }
.cz-g5 { background: linear-gradient(120deg, hsl(8 42% 15%) 0%, hsl(20 52% 26%) 55%, hsl(0 45% 11%) 100%); }
.cz-g6 { background: linear-gradient(120deg, hsl(42 42% 15%) 0%, hsl(54 52% 26%) 55%, hsl(34 45% 11%) 100%); }

/* ── Category tiles ───────────────────────────────────── */
.cz-cat-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
}

.cz-cat-tile {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 88px;
  padding: 12px 14px;
  border-radius: 9px;
  overflow: hidden;
  text-decoration: none;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease;
}
.cz-cat-tile:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 0 2px #ff5a1f, 0 12px 26px rgba(0, 0, 0, .5);
}

.cz-cat-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 20%, rgba(12, 8, 5, .78));
}

.cz-cat-name {
  position: relative;
  font: 900 15px Archivo, sans-serif;
  letter-spacing: .03em;
  color: #fdf8f1;
  text-transform: uppercase;
}

.cz-cat-count {
  position: relative;
  font: 600 10.5px Archivo, sans-serif;
  color: #cdbda9;
}

/* ── Section headers ──────────────────────────────────── */
.cz-section-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 32px 0 12px;
  flex-wrap: wrap;
}

.cz-section-title {
  margin: 0;
  font: 900 16px Archivo, sans-serif;
  letter-spacing: .06em;
  color: #f5efe7;
}

.cz-section-line {
  flex: 1;
  height: 1px;
  background: rgba(255, 255, 255, .07);
}

.cz-diamond { font: 900 16px Archivo, sans-serif; }

.cz-see-all {
  font: 800 11px Archivo, sans-serif;
  letter-spacing: .08em;
  color: #ff7a3c;
  text-decoration: none;
  transition: color .15s;
}
.cz-see-all:hover { color: #ffb52e; }

.cz-tab-group { display: flex; gap: 6px; }

.cz-tab {
  font: 700 10.5px Archivo, sans-serif;
  letter-spacing: .05em;
  color: #c9b8a4;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, .14);
  padding: 5px 11px;
  border-radius: 13px;
  text-decoration: none;
  transition: color .15s, background .15s, border-color .15s;
}
.cz-tab:hover { color: #f2ece4; }
.cz-tab.active {
  color: #171310;
  background: #ff5a1f;
  border-color: transparent;
}

/* ── Video grid ───────────────────────────────────────── */
.cz-grid { display: grid; gap: 12px; }
.cz-grid-6 { grid-template-columns: repeat(6, 1fr); }

/* ── Video card ───────────────────────────────────────── */
.cz-card { display: flex; flex-direction: column; gap: 0; }

.cz-card-link {
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-decoration: none;
  cursor: pointer;
}

.cz-thumb {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: 8px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  transition: box-shadow .2s ease;
}
.cz-card-link:hover .cz-thumb {
  box-shadow: 0 0 0 2px #ff5a1f, 0 10px 28px rgba(255, 90, 31, .22);
}

.cz-thumb-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.cz-badge-hd {
  position: absolute;
  top: 6px;
  left: 6px;
  font: 800 9px Archivo, sans-serif;
  letter-spacing: .06em;
  color: #ffd9c4;
  background: rgba(20, 13, 8, .8);
  padding: 2px 5px;
  border-radius: 3px;
}

.cz-badge-dur {
  position: absolute;
  bottom: 6px;
  right: 6px;
  font: 600 10px Archivo, sans-serif;
  color: #fff;
  background: rgba(10, 7, 5, .82);
  padding: 2px 5px;
  border-radius: 3px;
}

.cz-card-title {
  margin: 6px 0 0;
  font: 600 12px/1.35 Archivo, sans-serif;
  color: #f0e9df;
  max-height: 33px;
  overflow: hidden;
}

.cz-card-meta {
  display: flex;
  gap: 7px;
  font: 600 10.5px Archivo, sans-serif;
  color: #8a7b6a;
  margin-top: 2px;
}

.cz-chan { color: #bfae99; }
.cz-dot { color: #5f5347; }

/* ── Leaderboard ad ───────────────────────────────────── */
.cz-leaderboard-ad {
  margin: 28px auto 0;
  width: 728px;
  max-width: 100%;
  display: flex;
  justify-content: center;
}

/* ── Sidebar ──────────────────────────────────────────── */
.cz-side-item {
  display: flex;
  gap: 10px;
  text-decoration: none;
  align-items: flex-start;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .05);
  transition: opacity .15s;
}
.cz-side-item:hover { opacity: .8; }

.cz-side-thumb {
  position: relative;
  width: 120px;
  flex: none;
  aspect-ratio: 16 / 9;
  border-radius: 6px;
  overflow: hidden;
}

.cz-side-info { flex: 1; min-width: 0; }

.cz-side-title {
  font: 600 12px/1.35 Archivo, sans-serif;
  color: #f0e9df;
  overflow: hidden;
  max-height: 34px;
}

.cz-side-meta {
  font: 600 10.5px Archivo, sans-serif;
  color: #8a7b6a;
  margin-top: 4px;
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

/* ── Watch page ───────────────────────────────────────── */
.cz-hot-strip {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 16px 0 10px;
}

.cz-hot-dot {
  width: 8px;
  height: 8px;
  background: #ff5a1f;
  border-radius: 2px;
  box-shadow: 0 0 12px rgba(255, 90, 31, .9);
  flex: none;
}

.cz-hot-label {
  font: 900 13px Archivo, sans-serif;
  letter-spacing: .12em;
  color: #f5efe7;
}

.cz-hot-sub { font: 600 11px Archivo, sans-serif; color: #8a7b6a; }

.cz-watch-layout {
  display: flex;
  gap: 16px;
  margin-top: 14px;
  align-items: flex-start;
}

.cz-watch-main { flex: 1; min-width: 0; }

.cz-watch-aside {
  flex: none;
  width: 300px;
}

.cz-aside-ad-label {
  font: 500 9.5px ui-monospace, Menlo, monospace;
  color: #5f5347;
  text-align: center;
  margin-bottom: 6px;
}

/* ── Player ───────────────────────────────────────────── */
.cz-player {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 10px;
  overflow: hidden;
  background: #0c0906;
}

.cz-player-video { width: 100%; height: 100%; display: block; }

.cz-player-empty {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  font: 600 13px Archivo, sans-serif;
  color: #8a7b6a;
}

/* ── CTA bar ──────────────────────────────────────────── */
.cz-cta-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 10px;
  padding: 12px 16px;
  background: linear-gradient(90deg, rgba(255, 90, 31, .15), rgba(255, 90, 31, .08));
  border: 1px solid rgba(255, 90, 31, .3);
  border-radius: 8px;
  text-decoration: none;
  transition: border-color .15s;
}
.cz-cta-bar:hover { border-color: rgba(255, 90, 31, .6); }

.cz-cta-bar-text {
  display: flex;
  align-items: center;
  gap: 8px;
  font: 700 12px Archivo, sans-serif;
  letter-spacing: .04em;
  color: #f0e9df;
}

.cz-btn-sm {
  font: 800 11px Archivo, sans-serif;
  letter-spacing: .06em;
  color: #171310;
  background: #ff5a1f;
  padding: 8px 14px;
  border-radius: 6px;
  white-space: nowrap;
  transition: background .15s;
}
.cz-cta-bar:hover .cz-btn-sm { background: #ff7a3c; }

/* ── Video meta ───────────────────────────────────────── */
.cz-v-title {
  margin: 16px 0 8px;
  font: 900 26px/1.2 Archivo, sans-serif;
  letter-spacing: -.01em;
  color: #f7f1e9;
}

.cz-v-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  font: 600 13px Archivo, sans-serif;
  color: #a89786;
}

.cz-tag-pill {
  font: 600 11px Archivo, sans-serif;
  color: #c9b8a4;
  text-decoration: none;
  padding: 5px 10px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, .12);
  transition: color .15s, border-color .15s;
}
.cz-tag-pill:hover { color: #ff7a3c; border-color: #ff5a1f; }

.cz-tag-pill--model {
  color: #ffb52e;
  border-color: rgba(255, 181, 46, .3);
}
.cz-tag-pill--model:hover { border-color: #ffb52e; }

/* ── Creator row ──────────────────────────────────────── */
.cz-creator-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 14px;
  padding: 12px 14px;
  background: #1e1812;
  border-radius: 10px;
  flex-wrap: wrap;
}

.cz-creator-link {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.cz-creator-av {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  flex: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font: 900 15px Archivo, sans-serif;
  color: #fff;
}

.cz-creator-name {
  font: 800 14px Archivo, sans-serif;
  color: #f2ece4;
}

.cz-creator-sub {
  font: 600 11px Archivo, sans-serif;
  color: #8a7b6a;
  margin-top: 2px;
}

.cz-v-actions {
  display: flex;
  gap: 8px;
  margin-left: auto;
}

.cz-act-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  font: 700 11.5px Archivo, sans-serif;
  letter-spacing: .06em;
  color: #e8dfd3;
  border: 1px solid rgba(255, 255, 255, .16);
  padding: 9px 14px;
  border-radius: 7px;
  text-decoration: none;
  background: none;
  cursor: pointer;
  transition: border-color .15s, color .15s;
}
.cz-act-btn:hover { border-color: #ff5a1f; color: #ff7a3c; }

.cz-tags-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.cz-v-desc {
  font: 500 13px/1.65 Archivo, sans-serif;
  color: #b3a494;
  margin-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, .06);
  padding-top: 16px;
}

/* ── Aside sidebar ────────────────────────────────────── */
.cz-side-head {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 16px 0 10px;
}

.cz-side-head h2 {
  margin: 0;
  font: 700 13px Archivo, sans-serif;
  letter-spacing: .06em;
  color: #f5efe7;
}

.cz-side-list { display: flex; flex-direction: column; gap: 2px; }

/* ── Performer section ────────────────────────────────── */
.cz-performer-dot {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  flex: none;
  display: inline-block;
}

.cz-tag-chip {
  font: 700 10.5px Archivo, sans-serif;
  letter-spacing: .06em;
  color: #c9b8a4;
  border: 1px solid rgba(255, 255, 255, .14);
  padding: 4px 9px;
  border-radius: 13px;
}

/* ── Archive pages ────────────────────────────────────── */
.cz-archive-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  padding: 36px 0 0;
}

.cz-arc-kicker {
  font: 600 11px Archivo, sans-serif;
  letter-spacing: .1em;
  color: #8a7b6a;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.cz-arc-title {
  margin: 0;
  font: 900 28px Archivo, sans-serif;
  letter-spacing: -.01em;
  color: #f7f1e9;
}

.cz-sort-bar { display: flex; align-items: center; gap: 6px; flex-wrap: wrap; }

.cz-sort-label {
  font: 700 10.5px Archivo, sans-serif;
  letter-spacing: .08em;
  color: #6e6357;
}

.cz-sort-pill {
  font: 600 11px Archivo, sans-serif;
  color: #b3a494;
  text-decoration: none;
  padding: 5px 12px;
  border-radius: 13px;
  border: 1px solid rgba(255, 255, 255, .12);
  transition: color .15s, background .15s, border-color .15s;
}
.cz-sort-pill:hover { color: #f2ece4; }
.cz-sort-pill.active {
  color: #171310;
  background: #ff5a1f;
  border-color: transparent;
  font-weight: 700;
}

/* ── Performer page ───────────────────────────────────── */
.cz-performer-header {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 40px 0 8px;
}

.cz-performer-av {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  flex: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font: 900 32px Archivo, sans-serif;
  color: #fff;
}

.cz-performer-name {
  margin: 0;
  font: 900 28px Archivo, sans-serif;
  letter-spacing: -.01em;
  color: #f7f1e9;
}

.cz-performer-sub {
  font: 600 13px Archivo, sans-serif;
  color: #8a7b6a;
  margin-top: 4px;
}

/* ── Pagination ───────────────────────────────────────── */
.cz-pager {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.cz-pager a, .cz-pager span {
  font: 700 12px Archivo, sans-serif;
  color: #b3a494;
  text-decoration: none;
  padding: 7px 12px;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, .12);
  transition: color .15s, background .15s;
}

.cz-pager a:hover { color: #f2ece4; background: rgba(255, 255, 255, .06); }
.cz-pager .current, .cz-pager [aria-current] {
  color: #171310;
  background: #ff5a1f;
  border-color: transparent;
}

/* ── Empty state ──────────────────────────────────────── */
.cz-empty {
  text-align: center;
  padding: 80px 24px;
  color: #6e6357;
  font: 600 14px Archivo, sans-serif;
}

/* ── Tag cloud ────────────────────────────────────────── */
.cz-tag-cloud-wrap {
  padding-bottom: 0;
}

.cz-tag-cloud-wrap a {
  font: 600 11px Archivo, sans-serif;
  color: #9a8d80;
  text-decoration: none;
  padding: 4px 10px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, .1);
  display: inline-block;
  margin: 3px;
  transition: color .15s, border-color .15s;
}
.cz-tag-cloud-wrap a:hover { color: #ff7a3c; border-color: rgba(255, 90, 31, .4); }

/* ── Footer ───────────────────────────────────────────── */
.cz-footer {
  border-top: 1px solid rgba(255, 255, 255, .06);
  background: #12100d;
  padding: 20px 0;
}

.cz-footer-inner {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  padding-bottom: 0;
}

.cz-footer-logo { height: 18px; opacity: .7; }

.cz-footer-copy {
  font: 500 11px Archivo, sans-serif;
  color: #6e6357;
}

.cz-footer-spacer { flex: 1; }

.cz-footer-link {
  font: 600 11px Archivo, sans-serif;
  color: #9a8d80;
  text-decoration: none;
  transition: color .15s;
}
.cz-footer-link:hover { color: #ff7a3c; }

/* ── Modal (shared) ───────────────────────────────────── */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .7);
  z-index: 200;
  align-items: center;
  justify-content: center;
}
.modal-overlay.open { display: flex; }

.modal-content {
  background: #1e1913;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 12px;
  padding: 24px;
  width: min(440px, 90vw);
  color: #f0e9df;
}

.modal-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.modal-title { margin: 0; font: 800 16px Archivo, sans-serif; }
.close-modal-btn {
  background: none;
  border: none;
  color: #8a7b6a;
  font-size: 22px;
  cursor: pointer;
  line-height: 1;
}
.close-modal-btn:hover { color: #f0e9df; }

.form-group { margin-bottom: 14px; }
.form-label { display: block; font: 600 12px Archivo, sans-serif; color: #b3a494; margin-bottom: 6px; }
.form-control {
  width: 100%;
  padding: 9px 12px;
  background: #171310;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 6px;
  color: #f0e9df;
  font: 500 13px Archivo, sans-serif;
  outline: none;
  resize: vertical;
}
.form-control:focus { border-color: #ff5a1f; }
.form-actions { display: flex; justify-content: flex-end; margin-top: 8px; }
.btn-primary {
  font: 800 12px Archivo, sans-serif;
  letter-spacing: .05em;
  color: #171310;
  background: #ff5a1f;
  border: none;
  padding: 10px 20px;
  border-radius: 6px;
  cursor: pointer;
  transition: background .15s;
}
.btn-primary:hover { background: #ff7a3c; }

/* ── Fluid Player overrides ───────────────────────────── */
.cz-player .fluid_video_wrapper,
.cz-player .fluid_controls_container { border-radius: 10px; overflow: hidden; }

/* ── Friends section ──────────────────────────────────── */
.cz-friends {
  padding: 32px 0 8px;
  border-top: 1px solid rgba(255,255,255,.07);
}
.cz-friends-title {
  font: 700 11px Archivo, sans-serif;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #7c6d5c;
  margin: 0 0 10px;
}
.cz-friends-desc {
  font-size: 12px;
  color: #5a4d3e;
  line-height: 1.6;
  max-width: 760px;
  margin: 0 0 14px;
}
.cz-friends-links {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 14px;
}
.cz-friends-links a {
  font-size: 12px;
  color: #7c6d5c;
  text-decoration: none;
  transition: color .15s;
}
.cz-friends-links a:hover { color: #ff5a1f; }

.hardlinks {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 14px;
  padding: 14px 0 0;
  border-top: 1px solid rgba(255,255,255,.07);
}
.hardlinks a {
  font-size: 12px;
  color: #7c6d5c;
  text-decoration: none;
  transition: color .15s;
}
.hardlinks a:hover { color: #ff5a1f; }

.spotlight-links {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 14px;
  padding: 14px 0 0;
  border-top: 1px solid rgba(255,255,255,.07);
}
.spotlight-link {
  font-size: 12px;
  color: #7c6d5c;
  text-decoration: none;
  transition: color .15s;
}
.spotlight-link:hover { color: #ff5a1f; }
