/* ─────────────────────────────────────────────
   report.css — shared styles for research pages
   Loaded by: research/fila-spa.html, research/binjiang-service.html
   ───────────────────────────────────────────── */

.report-hero {
  padding: 80px 0 56px;
  border-bottom: 1px solid var(--rule);
}
.report-breadcrumb {
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 32px;
}
.report-breadcrumb a {
  color: var(--ink-soft);
  text-decoration: none;
}
.report-breadcrumb a:hover { color: var(--ink); }
.report-breadcrumb span { margin: 0 8px; opacity: 0.4; }
.report-exchange {
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 8px;
}
.report-ticker {
  font-family: var(--mono);
  font-size: 2rem;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.04em;
  line-height: 1;
  margin-bottom: 12px;
}
.report-company {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 400;
  color: var(--ink);
  line-height: 1.1;
  margin-bottom: 24px;
}
.report-thesis {
  font-family: var(--serif);
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-style: italic;
  color: var(--ink-mid);
  line-height: 1.6;
  max-width: 680px;
  border-left: 2px solid var(--gold-line);
  padding-left: 20px;
  margin-bottom: 32px;
  text-align: justify;
  hyphens: auto;
}
.report-meta-row {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  font-family: var(--mono);
  font-size: 0.60rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.report-metrics-section {
  padding: 56px 0;
  border-bottom: 1px solid var(--rule);
}
.report-metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--rule);
}
.report-metric {
  padding: 24px 28px;
  border-right: 1px solid var(--rule);
}
.report-metric:last-child { border-right: none; }
.report-metric-key {
  font-family: var(--mono);
  font-size: 0.58rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 8px;
}
.report-metric-val {
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 500;
  color: var(--ink);
  line-height: 1;
}
.report-metric-val.gold { color: var(--gold); }
.report-case-section {
  padding: 56px 0;
  border-bottom: 1px solid var(--rule);
}
.report-case-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}
.report-case-body {
  font-family: var(--serif);
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--ink-mid);
  text-align: justify;
  hyphens: auto;
}
.report-case-body p { margin-bottom: 1em; }
.report-case-body p:last-child { margin-bottom: 0; }
.report-bullet-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.report-bullet-list li {
  font-family: var(--serif);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--ink-mid);
  padding: 10px 0;
  border-bottom: 1px solid var(--rule);
  padding-left: 16px;
  position: relative;
  text-align: justify;
  hyphens: auto;
}
.report-bullet-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--gold-line);
  font-family: var(--mono);
}
.report-bullet-list li:first-child { border-top: 1px solid var(--rule); }
.report-extra-section {
  padding: 56px 0;
  border-bottom: 1px solid var(--rule);
}
.report-extra-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-top: 28px;
}
.report-extra-body {
  font-family: var(--serif);
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--ink-mid);
  text-align: justify;
  hyphens: auto;
}
.report-extra-body p { margin-bottom: 1em; }
.report-extra-body p:last-child { margin-bottom: 0; }
.report-checklist-note {
  background: var(--paper-deep);
  border: 1px solid var(--rule-mid);
  border-left: 2px solid var(--gold-line);
  padding: 24px 28px;
}
.report-checklist-label {
  font-family: var(--mono);
  font-size: 0.58rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.report-checklist-text {
  font-family: var(--serif);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ink-mid);
  text-align: justify;
  hyphens: auto;
}
.report-cta-section {
  padding: 64px 0;
  border-bottom: 1px solid var(--rule);
}
.report-cta-inner {
  display: flex;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
}
.report-cta-text {
  flex: 1;
  min-width: 260px;
}
.report-cta-title {
  font-family: var(--serif);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 8px;
}
.report-cta-sub {
  font-family: var(--serif);
  font-size: 1rem;
  color: var(--ink-soft);
  font-style: italic;
  text-align: justify;
  hyphens: auto;
}
.report-next-section {
  padding: 56px 0;
}
.report-disclaimer {
  padding: 40px 0;
  border-top: 1px solid var(--rule);
}
.report-disclaimer p {
  font-family: var(--mono);
  font-size: 0.56rem;
  letter-spacing: 0.08em;
  line-height: 1.7;
  color: var(--ink-ghost);
  max-width: 760px;
  text-align: justify;
  hyphens: auto;
}

@media (max-width: 900px) {
  .report-metrics-grid { grid-template-columns: repeat(2, 1fr); }
  .report-metric:nth-child(2) { border-right: none; }
  .report-metric:nth-child(3) { border-top: 1px solid var(--rule); }
  .report-metric:nth-child(4) { border-top: 1px solid var(--rule); border-right: none; }
  .report-case-grid { grid-template-columns: 1fr; gap: 32px; }
  .report-extra-grid { grid-template-columns: 1fr; gap: 32px; }
  .report-cta-inner { flex-direction: column; gap: 24px; }
}
@media (max-width: 600px) {
  .report-hero            { padding: 48px 20px 40px; }
  .report-metrics-section { padding: 40px 20px; }
  .report-case-section    { padding: 40px 20px; }
  .report-extra-section   { padding: 40px 20px; }
  .report-cta-section     { padding: 48px 20px; }
  .report-next-section    { padding: 40px 20px; }
  .report-disclaimer      { padding: 28px 20px; }
  .report-metric          { padding: 20px 16px; }
  .report-checklist-note  { padding: 20px 16px; }
}
