/* ─────────────────────────────────────────────────────────────────────────
   GeneratePress reconciliation layer.

   The MMVFO stylesheet reproduces the design on its own. GeneratePress, the
   parent, ships a few opinionated base rules using element+class selectors
   (a.button, inputs, blanket link underlines) that outrank MMVFO's plain
   .class selectors. This file re-asserts the MMVFO design for exactly those
   cases. It is the ONLY customization the parent foundation requires.
   ───────────────────────────────────────────────────────────────────────── */

/* Buttons — GP paints a.button grey (#55555e); restore MMVFO gold/steel. */
a.button {
  background-color: rgba(202, 167, 106, 0.12);
  color: var(--text);
  border: 1px solid rgba(202, 167, 106, 0.35);
  text-decoration: none;
}
a.button:hover,
a.button:focus {
  background-color: rgba(202, 167, 106, 0.2);
  color: var(--text);
}
a.button.secondary {
  background-color: rgba(121, 168, 200, 0.1);
  border-color: rgba(121, 168, 200, 0.35);
}

/* Links — GP underlines every <a>; MMVFO sets decoration per component. */
.page-content a,
.hero a,
.footer-inner a,
.related-links a,
.authority-list a,
.audience-card,
.faq-item a,
.route-index a {
  text-decoration: none;
}
.page-content p a:hover {
  text-decoration: underline;
}

/* Form fields — GP paints inputs light; MMVFO forms sit on dark panels. */
.diagnostic-form input,
.diagnostic-form select,
.diagnostic-form textarea,
.tool-form input,
.tool-form select,
.tool-form textarea {
  background-color: var(--panel);
  color: var(--text);
  border-color: var(--line);
}

/* Joshua bio: Featured In press band + pull-quote (2026-07-11) */
.featured-in-band {
  padding-top: 8px;
  padding-bottom: 8px;
}
.featured-in-band .section-kicker {
  text-align: center;
}
.featured-in-band h3 {
  text-align: center;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  margin: 4px 0 20px;
}
.featured-in-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 28px;
  margin: 0;
  padding: 0;
}
.featured-in-logo {
  display: grid;
  place-items: center;
  opacity: 0.72;
  filter: grayscale(1);
  transition: opacity 0.2s ease, filter 0.2s ease;
}
.featured-in-logo:hover,
.featured-in-logo:focus-within {
  opacity: 1;
  filter: grayscale(0.2);
}
.featured-in-logo img {
  width: auto;
  height: 34px;
  max-width: 130px;
  display: block;
}
.featured-in-note {
  text-align: center;
  color: var(--muted);
  font-size: 0.78rem;
  margin: 20px 0 0;
  opacity: 0.85;
}

.joshua-pull-quote-band {
  padding-top: 4px;
  padding-bottom: 4px;
}
.joshua-pull-quote {
  margin: 0;
  padding: 4px 0 4px 28px;
  border-left: 3px solid var(--gold);
  max-width: 62ch;
}
.joshua-pull-quote p {
  margin: 0 0 14px;
  font-size: 1.15rem;
  line-height: 1.5;
  color: var(--text);
}
.joshua-pull-quote cite {
  display: block;
  font-style: normal;
  font-size: 0.85rem;
  color: var(--muted);
  letter-spacing: 0.02em;
}
