/* Expedition Review Desk — operator.css (operator page template) */

.operator-hero-banner {
  position: relative;
  background: linear-gradient(135deg, #0F172A 0%, #16324A 55%, #1B3A4B 100%);
  overflow: hidden;
}
.operator-hero {
  position: relative;
  z-index: 1;
  padding: 40px 0 48px;
}
.operator-hero__text { max-width: 640px; }
.operator-hero__eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.62);
  margin-bottom: 10px;
}
.operator-hero h1 { max-width: 26ch; color: #fff; }
.operator-hero .page-hero__intro { color: rgba(255,255,255,0.88); }
.operator-hero__score {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  margin-top: 14px;
}
.operator-hero__score-value {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 32px;
  color: #fff;
}
.operator-hero__score-value::after {
  content: '';
  display: block;
  height: 3px;
  width: 40px;
  background: var(--warning-gold);
  margin-top: 4px;
}
/* At-a-glance spec table */
.spec-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--outline);
  border: 1px solid var(--outline);
  border-radius: var(--radius);
  overflow: hidden;
}
@media (min-width: 640px) {
  .spec-grid { grid-template-columns: repeat(2, 1fr); }
}
.spec-item {
  background: var(--white);
  padding: 14px 18px;
}
.spec-item__label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 4px;
}
.spec-item__value { font-size: 16px; font-weight: 600; color: var(--navy); }

/* Score factor cards — mirrors .spec-grid above so the section fills the width with no dead space */
.factor-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin: 16px 0;
}
@media (min-width: 700px) {
  .factor-list { grid-template-columns: repeat(2, 1fr); }
}
.factor-row {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-areas: "name val" "desc desc";
  column-gap: 12px;
  row-gap: 6px;
  align-items: start;
  border: 1px solid var(--outline);
  border-radius: var(--radius);
  padding: 14px 16px;
  font-size: 14px;
  background: var(--white);
}
.factor-row__name { grid-area: name; font-weight: 600; }
.factor-row > span:nth-child(2) { grid-area: desc; color: var(--text-body); line-height: 1.5; }
.factor-row__val { grid-area: val; font-weight: 700; font-feature-settings: 'tnum' 1; text-align: right; font-family: var(--font-display); font-size: 17px; }
.factor-row__val.is-editorial { color: var(--warning-gold); }

/* Fleet table reuses .data-table */

/* Who it suits / does not */
.suit-list { list-style: none; }
.suit-list li {
  display: flex;
  gap: 10px;
  padding: 8px 0;
  font-size: 15px;
}
.suit-list li svg { width: 18px; height: 18px; flex-shrink: 0; margin-top: 3px; }
.suit-list--yes li svg { color: var(--arctic-teal); }
.suit-list--no li svg { color: var(--text-muted); }

/* Nearby operators links */
.related-operators {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}
.related-operators a {
  border: 1px solid var(--outline);
  border-radius: var(--radius);
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 500;
  color: var(--navy);
  text-decoration: none;
}
.related-operators a:hover { background: var(--soft-slate); }
