/* ========================================
   Reference Charts Screen
   ======================================== */

#screen-reference {
  padding: 16px;
  padding-top: max(16px, env(safe-area-inset-top));
  padding-bottom: 100px;
  background: #000;
}

/* Header — logo + title inline */
.ref-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.ref-header-logo {
  height: 28px;
}

.ref-header-title {
  font-family: 'Montserrat', Helvetica, sans-serif;
  font-weight: 300;
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  color: var(--text-muted);
}

/* Scroll container */
.ref-scroll {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Full-width image */
.ref-img-full img {
  width: 100%;
  display: block;
  border-radius: 4px;
}

/* Two images side by side */
.ref-row {
  display: flex;
  gap: 10px;
  align-items: center;
}

.ref-row-img {
  flex: 1;
  width: 50%;
  display: block;
  border-radius: 4px;
  object-fit: contain;
}

/* Section title */
.ref-section-title {
  font-family: 'Montserrat', Helvetica, sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  color: #fff;
  text-align: center;
  margin: 4px 0 0;
}

/* Quotes — no background, just text */
.ref-quote {
  text-align: center;
  padding: 12px 16px;
}

.ref-quote blockquote {
  font-family: 'Montserrat', Helvetica, sans-serif;
  font-weight: 400;
  font-size: 1.05rem;
  color: #fff;
  line-height: 1.5;
  margin-bottom: 4px;
}

.ref-quote cite {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  font-style: italic;
}
