/* ============================================================
 * Beat detail page — UC-A1 conversion screen
 * ============================================================ */

.page-beat {
  flex: 1;
  padding: 20px 28px 80px;
  background: var(--background);
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--foreground-muted);
}
.breadcrumb a {
  color: var(--foreground-muted);
  text-decoration: none;
}
.breadcrumb a:hover { color: var(--foreground); }
.bc-sep { color: var(--border); }
.bc-current { color: var(--foreground); font-weight: 500; }

/* main 2-col grid */
.bd-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 24px;
  align-items: start;
}
.bd-left { display: flex; flex-direction: column; gap: 18px; min-width: 0; }
.bd-right {
  position: sticky;
  top: 80px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-self: start;
}

/* ============ HERO ============ */
.bd-hero {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
  position: relative;
}
.bd-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
    color-mix(in oklab, var(--violet-bright, #7b55d0) 14%, transparent),
    transparent 60%);
  pointer-events: none;
}
.bd-hero-inner {
  display: flex;
  gap: 24px;
  padding: 24px;
  position: relative;
  z-index: 1;
}
.bd-hero-art {
  width: 220px;
  height: 220px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  flex-shrink: 0;
  overflow: hidden;
}
.bd-hero-art .ic { color: rgba(255,255,255,0.95); z-index: 1; }
.bd-hero-art.art-a { background: linear-gradient(135deg, #6b4bb8, #2e1866); }
.bd-hero-art.art-b { background: linear-gradient(135deg, #ff7b54, #b54a8e 60%, #41228e); }
.bd-hero-art.art-c { background: linear-gradient(135deg, #1a1a2e, #41228e); }
.bd-hero-art.art-d { background: linear-gradient(135deg, #4ade80, #1a8d5f 50%, #082f49); }
.bd-hero-art.art-e { background: linear-gradient(135deg, #fb923c, #ec4899 50%, #6366f1); }
.bd-hero-art.art-f { background: linear-gradient(135deg, #1e293b, #475569); }
.bd-hero-genre {
  position: absolute;
  bottom: 12px; left: 12px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.95);
  background: rgba(0,0,0,0.45);
  padding: 4px 10px;
  border-radius: 999px;
  backdrop-filter: blur(6px);
}

.bd-hero-body {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
  min-width: 0;
}
.bd-hero-meta { display: flex; gap: 6px; flex-wrap: wrap; }
.chip {
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--muted);
  color: var(--foreground);
}
.chip.mood {
  background: color-mix(in oklab, var(--violet-bright, #7b55d0) 18%, transparent);
  color: var(--violet-bright, #7b55d0);
}
.bd-hero-title {
  font-family: var(--font-display, "Space Grotesk"), sans-serif;
  font-size: 38px;
  font-weight: 700;
  letter-spacing: -0.026em;
  line-height: 1.05;
  color: var(--foreground);
  margin: 0;
  text-wrap: balance;
}
.bd-hero-prod {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  width: fit-content;
}
.bd-hero-prod .av {
  width: 28px; height: 28px;
  border-radius: 50%;
  color: white;
  font-size: 11px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.bd-hero-prod .av.art-a { background: linear-gradient(135deg, #6b4bb8, #2e1866); }
.bd-hero-prod .av.art-b { background: linear-gradient(135deg, #ff7b54, #b54a8e); }
.bd-hero-prod .av.art-c { background: linear-gradient(135deg, #1a1a2e, #41228e); }
.bd-hero-prod .av.art-d { background: linear-gradient(135deg, #4ade80, #1a8d5f); }
.bd-hero-prod .n {
  font-size: 14px;
  font-weight: 600;
  color: var(--foreground);
}
.bd-hero-prod svg { color: var(--violet-bright, #7b55d0); }
.bd-hero-stats {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  font-size: 12.5px;
  color: var(--foreground-muted);
  margin-top: 4px;
  align-items: center;
}
.bd-hero-stats > span {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
}
.bd-hero-stats strong {
  color: var(--foreground);
  font-family: var(--font-display, "Space Grotesk"), sans-serif;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
}
.bd-hero-stats .dot {
  width: 3px; height: 3px;
  border-radius: 50%;
  background: var(--foreground-muted);
  display: inline-block;
  flex-shrink: 0;
}

/* ============ Player ============ */
.bd-player {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  background: color-mix(in oklab, black 15%, var(--card));
  border-top: 1px solid var(--border);
  position: relative;
  z-index: 1;
}
.bd-play-btn {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--foreground);
  color: var(--background);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 150ms var(--ease-out);
}
.bd-play-btn:hover { transform: scale(1.05); }
.bd-player-mid {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}
.bd-waveform {
  display: flex;
  align-items: center;
  gap: 2px;
  height: 38px;
}
.bd-waveform .bar {
  flex: 1;
  background: var(--muted);
  border-radius: 1px;
  min-height: 4px;
  transition: background-color 150ms var(--ease-out);
}
.bd-waveform .bar.played {
  background: var(--violet-bright, #7b55d0);
}
.bd-player-meta {
  display: flex;
  justify-content: space-between;
  font-size: 10.5px;
  color: var(--foreground-muted);
  font-variant-numeric: tabular-nums;
}
.bd-watermark {
  font-style: italic;
  letter-spacing: 0.02em;
}
.bd-player-actions { display: flex; gap: 6px; flex-shrink: 0; }
.bd-icon-btn {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: transparent;
  border: 1px solid var(--border);
  color: var(--foreground-muted);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 150ms var(--ease-out);
}
.bd-icon-btn:hover {
  color: var(--foreground);
  border-color: color-mix(in oklab, var(--violet-bright, #7b55d0) 40%, var(--border));
}
.bd-icon-btn.liked {
  color: oklch(70% 0.20 22);
  border-color: color-mix(in oklab, oklch(70% 0.20 22) 50%, var(--border));
}

/* ============ Tabs card ============ */
.bd-tabs-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}
.bd-tabs {
  display: flex;
  border-bottom: 1px solid var(--border);
  padding: 0 20px;
  overflow-x: auto;
  scrollbar-width: none;
}
.bd-tabs::-webkit-scrollbar { display: none; }
.bd-tab {
  background: none;
  border: none;
  padding: 14px 16px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 500;
  color: var(--foreground-muted);
  position: relative;
  white-space: nowrap;
  transition: color 150ms var(--ease-out);
}
.bd-tab:hover { color: var(--foreground); }
.bd-tab.active { color: var(--foreground); font-weight: 600; }
.bd-tab.active::after {
  content: "";
  position: absolute;
  left: 16px; right: 16px; bottom: -1px;
  height: 2px;
  background: var(--violet-bright, #7b55d0);
  border-radius: 2px;
}
.bd-tab-body { padding: 20px 24px 24px; }
.prose p {
  font-size: 13.5px;
  color: var(--foreground);
  line-height: 1.6;
  margin: 0 0 12px;
  text-wrap: pretty;
}
.tag-row { display: flex; gap: 6px; flex-wrap: wrap; margin-top: 10px; }
.tag {
  font-size: 11px;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--muted);
  color: var(--foreground-muted);
  font-weight: 500;
}

.bd-details-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 12px 20px;
}
.bd-detail {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 8px 12px;
  background: var(--muted);
  border-radius: 8px;
}
.bd-detail .k {
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--foreground-muted);
}
.bd-detail .v {
  font-family: var(--font-display, "Space Grotesk"), sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--foreground);
  font-variant-numeric: tabular-nums;
}

.bd-stems-note {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 14px;
  background: color-mix(in oklab, var(--violet-bright, #7b55d0) 10%, var(--muted));
  border: 1px solid color-mix(in oklab, var(--violet-bright, #7b55d0) 30%, var(--border));
  border-radius: 10px;
  font-size: 12.5px;
  color: var(--foreground);
  margin-bottom: 14px;
}
.bd-stems-note svg { color: var(--violet-bright, #7b55d0); flex-shrink: 0; }

.stems-list { display: flex; flex-direction: column; gap: 6px; }
.stem-row {
  display: grid;
  grid-template-columns: 32px 110px 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  background: var(--muted);
  border-radius: 8px;
  font-size: 12.5px;
}
.stem-ic { color: var(--foreground-muted); }
.stem-n { font-weight: 600; color: var(--foreground); }
.stem-d { color: var(--foreground-muted); }
.stem-locked {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--violet-bright, #7b55d0);
  background: color-mix(in oklab, var(--violet-bright, #7b55d0) 15%, transparent);
  padding: 3px 8px;
  border-radius: 999px;
}

/* Reviews */
.bd-reviews-head {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 24px;
  padding-bottom: 18px;
  margin-bottom: 18px;
  border-bottom: 1px solid var(--border);
  align-items: center;
}
.rh-l { display: flex; flex-direction: column; gap: 4px; align-items: flex-start; }
.rh-num {
  font-family: var(--font-display, "Space Grotesk"), sans-serif;
  font-size: 38px;
  font-weight: 700;
  letter-spacing: -0.022em;
  color: var(--foreground);
  font-variant-numeric: tabular-nums;
  line-height: 1;
}
.rh-stars { display: flex; gap: 2px; color: oklch(78% 0.16 80); }
.rh-count { font-size: 11.5px; color: var(--foreground-muted); }
.rh-r { display: flex; flex-direction: column; gap: 4px; }
.rh-bar {
  display: grid;
  grid-template-columns: 24px 1fr 24px;
  gap: 8px;
  align-items: center;
  font-size: 11px;
  color: var(--foreground-muted);
}
.rh-bar-track {
  height: 6px;
  background: var(--muted);
  border-radius: 3px;
  overflow: hidden;
}
.rh-bar-track > span {
  display: block;
  height: 100%;
  background: oklch(78% 0.16 80);
  border-radius: 3px;
}
.rh-bar-c { text-align: right; font-variant-numeric: tabular-nums; }

.reviews-list { display: flex; flex-direction: column; gap: 14px; margin-bottom: 14px; }
.review-row {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 12px;
}
.rev-av {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, oklch(60% 0.16 290), oklch(50% 0.14 270));
  color: white;
  font-size: 11px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
.rev-row1 {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 4px;
}
.rev-who { font-weight: 600; font-size: 13px; color: var(--foreground); }
.rev-stars { display: flex; gap: 1px; color: oklch(78% 0.16 80); }
.rev-time { font-size: 11px; color: var(--foreground-muted); margin-left: auto; }
.rev-text { font-size: 12.5px; color: var(--foreground); margin: 0; line-height: 1.5; text-wrap: pretty; }

/* ============ Producer inline ============ */
.prod-inline {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 16px;
}
.pi-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
}
.pi-l {
  display: flex;
  gap: 14px;
  align-items: center;
  flex: 1;
  min-width: 0;
  text-decoration: none;
}
.pi-cover {
  width: 64px; height: 64px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-family: var(--font-display, "Space Grotesk"), sans-serif;
  font-size: 22px;
  font-weight: 700;
  flex-shrink: 0;
}
.pi-cover.art-a { background: linear-gradient(135deg, #6b4bb8, #2e1866); }
.pi-cover.art-b { background: linear-gradient(135deg, #ff7b54, #b54a8e 60%, #41228e); }
.pi-cover.art-c { background: linear-gradient(135deg, #1a1a2e, #41228e); }
.pi-body {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}
.pi-row1 {
  display: flex;
  align-items: center;
  gap: 6px;
}
.pi-name {
  font-family: var(--font-display, "Space Grotesk"), sans-serif;
  font-size: 17px;
  font-weight: 600;
  color: var(--foreground);
  letter-spacing: -0.012em;
}
.pi-verified { color: var(--violet-bright, #7b55d0); display: inline-flex; }
.pi-row2 {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
  font-size: 11.5px;
  color: var(--foreground-muted);
}
.pi-row2 svg { color: var(--foreground-muted); }
.pi-row2 .dot {
  width: 3px; height: 3px;
  border-radius: 50%;
  background: var(--foreground-muted);
}
.pi-row3 { display: flex; gap: 6px; flex-wrap: wrap; margin-top: 4px; }
.g-chip {
  font-size: 10.5px;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 999px;
  background: var(--muted);
  color: var(--foreground-muted);
}
.pi-actions { display: flex; gap: 8px; flex-shrink: 0; }

/* ============ Similar beats ============ */
.similar-beats { display: flex; flex-direction: column; gap: 10px; }
.similar-beats .section-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 4px;
}
.similar-beats .section-head .t {
  font-family: var(--font-display, "Space Grotesk"), sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--foreground);
  letter-spacing: -0.012em;
}
.similar-beats .section-head .more {
  font-size: 12px;
  color: var(--foreground-muted);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.similar-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 12px;
}
.similar-card {
  display: flex;
  gap: 12px;
  padding: 10px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  transition: all 150ms var(--ease-out);
  text-decoration: none;
  align-items: center;
}
.similar-card:hover {
  border-color: color-mix(in oklab, var(--violet-bright, #7b55d0) 40%, var(--border));
  transform: translateY(-1px);
}
.sim-art {
  width: 56px; height: 56px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: rgba(255,255,255,0.95);
}
.sim-art.art-a { background: linear-gradient(135deg, #6b4bb8, #2e1866); }
.sim-art.art-b { background: linear-gradient(135deg, #ff7b54, #b54a8e); }
.sim-art.art-c { background: linear-gradient(135deg, #1a1a2e, #41228e); }
.sim-art.art-d { background: linear-gradient(135deg, #4ade80, #1a8d5f); }
.sim-body {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.sim-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--foreground);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.sim-prod { font-size: 11px; color: var(--foreground-muted); }
.sim-meta {
  font-size: 11px;
  color: var(--foreground-muted);
  display: flex;
  gap: 6px;
  align-items: center;
  font-variant-numeric: tabular-nums;
}
.sim-meta .dot {
  width: 2.5px; height: 2.5px;
  border-radius: 50%;
  background: var(--foreground-muted);
}

/* ============ BUYBOX ============ */
.bd-buybox {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.bd-buybox-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
}
.bd-buybox-head .lbl {
  font-size: 12px;
  font-weight: 600;
  color: var(--foreground);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.bd-buybox-head .trust {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 10.5px;
  color: oklch(78% 0.18 145);
  font-weight: 500;
}

.license-options { display: flex; flex-direction: column; gap: 8px; }
.license-opt {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  padding: 12px 14px;
  background: var(--muted);
  border: 1px solid transparent;
  border-radius: 12px;
  cursor: pointer;
  transition: all 150ms var(--ease-out);
}
.license-opt:hover {
  background: color-mix(in oklab, var(--violet-bright, #7b55d0) 8%, var(--muted));
}
.license-opt.active {
  background: color-mix(in oklab, var(--violet-bright, #7b55d0) 12%, var(--card));
  border-color: var(--violet-bright, #7b55d0);
}
.license-opt input {
  margin: 4px 0 0;
  accent-color: var(--violet-bright, #7b55d0);
  cursor: pointer;
}
.license-opt-row1 {
  display: flex;
  align-items: baseline;
  gap: 8px;
  flex-wrap: wrap;
}
.license-opt-body { min-width: 0; flex: 1; }
.lo-label {
  font-family: var(--font-display, "Space Grotesk"), sans-serif;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--foreground);
  letter-spacing: -0.008em;
  white-space: nowrap;
}
.popular-pill {
  font-size: 9.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  background: var(--violet-bright, #7b55d0);
  color: white;
  padding: 2px 7px;
  border-radius: 999px;
}
.lo-price {
  margin-left: auto;
  font-family: var(--font-display, "Space Grotesk"), sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--foreground);
  letter-spacing: -0.018em;
  font-variant-numeric: tabular-nums;
}
.lo-tagline {
  font-size: 11.5px;
  color: var(--foreground-muted);
  margin-top: 3px;
}

.license-detail {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 14px;
  background: color-mix(in oklab, black 20%, var(--card));
  border-radius: 12px;
}
.ld-section { display: flex; flex-direction: column; gap: 6px; }
.ld-h {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: oklch(78% 0.18 145);
}
.ld-section.ld-limits .ld-h { color: oklch(75% 0.16 50); }
.ld-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.ld-list li {
  font-size: 12px;
  color: var(--foreground);
  padding-left: 14px;
  position: relative;
}
.ld-list li::before {
  content: "";
  position: absolute;
  left: 4px; top: 8px;
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--foreground-muted);
}

.bd-cta-row { display: flex; flex-direction: column; gap: 8px; }
.btn-buy {
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-decoration: none;
  background: var(--violet-bright, #7b55d0);
  color: white;
  border: none;
  border-radius: 12px;
  padding: 14px 18px;
  font-family: var(--font-display, "Space Grotesk"), sans-serif;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  letter-spacing: -0.005em;
  transition: opacity 150ms var(--ease-out);
}
.btn-buy:hover { opacity: 0.92; }
.btn-buy-l { white-space: nowrap; }
.btn-buy-p {
  font-size: 17px;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.018em;
  white-space: nowrap;
}
.btn-secondary-lg {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  background: transparent;
  color: var(--foreground);
  text-decoration: none;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 11px 18px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
  transition: all 150ms var(--ease-out);
}
.btn-secondary-lg:hover {
  border-color: color-mix(in oklab, var(--violet-bright, #7b55d0) 50%, var(--border));
}

.bd-trust-row {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
  font-size: 10.5px;
  color: var(--foreground-muted);
  padding-top: 4px;
  justify-content: center;
}
.bd-trust-row span {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.bd-trust-row .dot {
  width: 2.5px; height: 2.5px;
  border-radius: 50%;
  background: var(--foreground-muted);
}

.bd-side-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.bsc-h {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--foreground-muted);
}
.bsc-feature {
  display: flex;
  gap: 10px;
  align-items: center;
}
.bsc-feature > svg { color: var(--violet-bright, #7b55d0); flex-shrink: 0; }
.bsc-feature .t {
  font-size: 13px;
  font-weight: 600;
  color: var(--foreground);
}
.bsc-feature .s {
  font-size: 11.5px;
  color: var(--foreground-muted);
  margin-top: 2px;
}

/* Section heads inside bd */
.bd-left .section-head {
  margin: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Responsive */
@media (max-width: 1280px) {
  .bd-grid { grid-template-columns: 1fr; }
  .bd-right { position: static; flex-direction: row; }
  .bd-buybox { flex: 1; }
  .bd-side-card { flex: 0 0 280px; }
}
@media (max-width: 900px) {
  .bd-right { flex-direction: column; }
  .bd-side-card { flex: 1; }
  .bd-hero-art { width: 160px; height: 160px; }
  .bd-hero-title { font-size: 30px; }
}
@media (max-width: 768px) {
  .page-beat { padding: 16px 16px 100px; }
  .bd-hero-inner { flex-direction: column; }
  .bd-hero-art { width: 100%; height: 200px; }
  .bd-hero-title { font-size: 26px; }
}
