/* ------------------------------------------------------------------ *
 * Theme 01 — editorial / flat / light
 * ------------------------------------------------------------------ */

:root {
  --eg-bg: #f8f9fa;
  --eg-accent: #2a4a6e;
  --eg-max-w: 1180px;
  --eg-ink-muted: #727880;
  --eg-font-body: "Alegreya Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --eg-ink-soft: #3c4248;
  --eg-header-bg: #ebedf0;
  --eg-font-display: "Alegreya", Georgia, serif;
  --eg-ink: #181d24;
  --eg-select-bg: #c8d4e2;
  --eg-surface: #ffffff;
  --eg-logo-w: 240px;
  --eg-accent-hover: #1a3450;
  --eg-rule-soft: #e4e7eb;
  --eg-wide-w: 1180px;
  --eg-rule: #d8dce2;
}

/* ---------- reset ---------- */
*,
*::before,
*::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { margin: 0; padding: 0; }
img { max-width: 100%; height: auto; display: block; }
::selection { background: var(--eg-select-bg); color: var(--eg-ink); }

body {
  background: var(--eg-bg);
  color: var(--eg-ink);
  font-family: var(--eg-font-body);
  font-size: 15px;
  line-height: 1.69;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

a {
  color: var(--eg-accent);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
  transition: text-decoration-thickness .12s ease, color .12s ease;
}
a:hover {
  color: var(--eg-accent-hover);
  text-decoration-thickness: 2px;
}

/* ---------- header ---------- */
.top-panel {
  background: var(--eg-header-bg);
  border-bottom: 1px solid var(--eg-rule);
  position: relative;
  z-index: 50;
}
.head-bar__wrap {
  max-width: var(--eg-wide-w);
  margin: 0 auto;
  padding: 1.04rem 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

/* Mobile nav toggle: button driven by JS via data-nav-toggle.
   Two icons inside (burger + close); JS toggles .is-open class to swap them. */
.nav-toggle-btn {
  display: none;
  width: 40px;
  height: 40px;
  cursor: pointer;
  border: 1px solid var(--eg-rule);
  border-radius: 8px;
  background: transparent;
  color: var(--eg-ink);
  align-items: center;
  justify-content: center;
  padding: 0;
  position: relative;
  transition: border-color .15s ease;
}
.nav-toggle-btn:hover { border-color: var(--eg-ink); }
.nav-toggle-btn:focus-visible {
  outline: 2px solid var(--eg-accent);
  outline-offset: 2px;
}
.nav-switch__open,
.nav-toggle-btn__close {
  position: absolute;
  inset: 0;
  margin: auto;
  transition: opacity .15s ease, transform .2s ease;
}
.nav-toggle-btn__close { opacity: 0; transform: rotate(-90deg); }
.nav-toggle-btn.is-open .nav-switch__open { opacity: 0; transform: rotate(90deg); }
.nav-toggle-btn.is-open .nav-toggle-btn__close  { opacity: 1; transform: rotate(0); }
.site-brand {
  font-family: var(--eg-font-display);
  font-weight: 600;
  font-size: 22px;
  letter-spacing: -0.015em;
  color: var(--eg-ink);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}
.site-brand:hover { color: var(--eg-ink); text-decoration: none; }
.site-logo__dot { color: var(--eg-accent); }
/* Image logo: scale up visually while keeping the header from growing
   via negative vertical margins. */
.logo-image img {
  display: block;
  height: 48px;
  width: auto;
  margin: -10px 0;
}
@media (max-width: 720px) {
  .logo-image img {
    height: 40px;
    margin: -8px 0;
  }
}

.site-navigation ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 28px;
}
.site-navigation a {
  display: inline-block;
  vertical-align: middle;
  white-space: nowrap;
  color: var(--eg-ink);
  font-size: 15px;
  text-decoration: none;
  padding: 4px 0;
  border-bottom: 1px solid transparent;
  transition: border-color .15s ease, color .15s ease;
}
.site-navigation a:hover {
  border-bottom-color: var(--eg-accent);
  color: var(--eg-ink);
}
.site-navigation a.is-here {
  color: var(--eg-accent);
  border-bottom-color: var(--eg-accent);
}

/* ---------- article ---------- */
.post-body {
  max-width: var(--eg-max-w);
  margin: 0 auto;
  padding: 56px 24px 80px;
}

.content-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  font-size: 12px;
  color: var(--eg-ink-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.content-meta span + span::before {
  content: "·";
  margin-right: 16px;
  color: var(--eg-ink-muted);
}

.post-body h1 {
  font-family: var(--eg-font-display);
  font-weight: 500;
  font-size: 44px;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 22px;
  color: var(--eg-ink);
}
.post-body .lead {
  font-size: 19px;
  line-height: 1.55;
  color: var(--eg-ink-soft);
  margin: 0 0 28px;
}

.post-body h2 {
  font-family: var(--eg-font-display);
  font-weight: 500;
  font-size: 28px;
  line-height: 1.25;
  letter-spacing: -0.01em;
  margin: 48px 0 16px;
  color: var(--eg-ink);
  scroll-margin-top: 24px;
}
.post-body h3 {
  font-family: var(--eg-font-display);
  font-weight: 600;
  font-size: 20px;
  line-height: 1.3;
  margin: 32px 0 10px;
  color: var(--eg-ink);
}

.post-body p { margin: 0 0 18px; }
.post-body ul, .post-body ol {
  margin: 0 0 20px;
  padding-left: 22px;
}
.post-body li { margin-bottom: 6px; }
.post-body li::marker { color: var(--eg-ink-muted); }

.post-body hr {
  border: none;
  border-top: 1px solid var(--eg-rule);
  margin: 40px 0;
}

.post-body figure {
  margin: 36px 0;
}
.post-body figure img {
  width: 100%;
  border: 1px solid var(--eg-rule-soft);
}
.post-body figcaption {
  margin-top: 10px;
  font-size: 13px;
  font-style: italic;
  color: var(--eg-ink-muted);
  text-align: center;
}

.post-body strong { font-weight: 600; color: var(--eg-ink); }

/* ---------- FAQ accordion ---------- */
.post-body .faq {
  margin: 28px 0 40px;
  border-top: 1px solid var(--eg-rule);
}
.post-body .faq__item {
  border-bottom: 1px solid var(--eg-rule);
}
.post-body .faq__item > summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 44px 20px 0;
  position: relative;
  font-family: var(--eg-font-display);
  font-weight: 500;
  font-size: 19px;
  line-height: 1.35;
  color: var(--eg-ink);
  letter-spacing: -0.005em;
  user-select: none;
}
.post-body .faq__item > summary::-webkit-details-marker { display: none; }
.post-body .faq__item > summary::after {
  content: '';
  position: absolute;
  right: 6px;
  top: 50%;
  width: 10px;
  height: 10px;
  border-right: 1.5px solid var(--eg-ink);
  border-bottom: 1.5px solid var(--eg-ink);
  transform: translateY(-75%) rotate(45deg);
  transition: transform .2s ease;
}
.post-body .faq__item[open] > summary::after {
  transform: translateY(-25%) rotate(-135deg);
}
.post-body .faq__item > summary:hover {
  color: var(--eg-accent);
}
.post-body .faq__answer {
  padding: 0 0 22px;
  color: var(--eg-ink-soft);
  font-size: 16px;
  line-height: 1.7;
}
.post-body .faq__answer > div > p { margin: 0 0 12px; }
.post-body .faq__answer > div > p:last-child { margin-bottom: 0; }
.post-body .faq__answer > div > ul,
.post-body .faq__answer > div > ol {
  margin: 0 0 12px;
  padding-left: 20px;
}
@media (max-width: 720px) {
  .post-body .faq__item > summary {
    font-size: 17px;
    padding: 16px 36px 16px 0;
  }
  .post-body .faq__answer { font-size: 15px; padding-bottom: 18px; }
}

/* ---------- Brand shortlist table (casino style) ---------- */
.base-review {
  margin: 36px 0 44px;
}
.base-review h2 { scroll-margin-top: 24px; }

.base-review__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* Three-column row: white logo cell with SLANTED right edge | beige body
   with bonus + stars | blue CTA. Rank tag is a dark navy chip positioned
   right where the slant meets the row top, slightly overhanging both. */
.rapid-view {
  --eg-logo-w: 240px;
  position: relative;
  display: grid;
  grid-template-columns: var(--eg-logo-w) 1fr auto;
  align-items: stretch;
  background: var(--eg-surface);
  border: 1px solid var(--eg-rule);
  border-radius: 6px;
  overflow: hidden;
  min-height: 116px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
  transition: box-shadow .15s ease, border-color .15s ease;
}
.rapid-view:hover {
  box-shadow: 0 4px 16px -10px rgba(0, 0, 0, 0.18);
}
.rapid-view[hidden] { display: none; }

/* Left cell: themed soft background */
.rapid-view__logo-cell {
  background: var(--eg-rule-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 18px;
}
.rapid-view__logo {
  background: #111111;
  border-radius: 4px;
  width: 100%;
  max-width: 140px;
  padding: 10px 12px 8px;
  text-align: center;
  line-height: 1.1;
}
.rapid-view__logo-name {
  font-family: var(--eg-font-display);
  font-weight: 700;
  font-size: 18px;
  color: #f5d042;
  letter-spacing: 0.01em;
  margin-bottom: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.rapid-view__logo-tag {
  font-family: var(--eg-font-body);
  font-weight: 700;
  font-size: 9px;
  letter-spacing: 0.06em;
  color: #ffffff;
}
.rapid-view__logo-tag span { color: #e53935; }

/* Middle cell: bonus headline + gold stars, vertically centred */
.rapid-view .rapid-view__info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  padding: 18px 32px;
  min-width: 0;
}
.rapid-view .rapid-view__bonus {
  font-family: var(--eg-font-body);
  font-weight: 500;
  font-size: 22px;
  line-height: 1.25;
  color: #1a1a1a;
  margin: 0;
  letter-spacing: -0.005em;
}
.rapid-view__stars {
  color: #f5b800;
  font-size: 18px;
  letter-spacing: 3px;
  line-height: 1;
}

/* Right cell: themed accent "Play Now" button, vertically centred */
.rapid-view__cta {
  align-self: center;
  justify-self: end;
  margin-right: 22px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--eg-accent);
  color: #ffffff;
  font-family: var(--eg-font-body);
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  padding: 12px 26px;
  border-radius: 6px;
  white-space: nowrap;
  transition: background-color .15s ease;
}
.rapid-view__cta:hover {
  background: var(--eg-accent-hover);
  color: #ffffff;
  text-decoration: none;
}
.rapid-view__cta-arrow { font-size: 10px; }

/* "Show more" button */
.base-review__more {
  display: block;
  margin: 18px auto 0;
  background: transparent;
  border: 1px solid var(--eg-rule);
  border-radius: 9px;
  padding: 12px 28px;
  font-family: var(--eg-font-body);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--eg-ink);
  cursor: pointer;
  transition: border-color .15s ease, background-color .15s ease, color .15s ease;
}
.base-review__more:hover {
  border-color: var(--eg-ink);
  background: var(--eg-ink);
  color: #fff;
}

/* Mobile: stack into one column, drop the slant */
@media (max-width: 720px) {
  .rapid-view {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    min-height: 0;
    padding-bottom: 16px;
  }
  .rapid-view__logo-cell {
    padding: 22px 16px;
  }
  .rapid-view__logo { max-width: 220px; }
  .rapid-view__info {
    padding: 8px 18px 4px;
    gap: 6px;
    align-items: center;
    text-align: center;
  }
  .rapid-view__bonus { font-size: 18px; }
  .rapid-view__cta {
    align-self: stretch;
    justify-self: stretch;
    justify-content: center;
    margin: 6px 16px 0;
    padding: 14px;
    font-size: 16px;
  }
}

/* ---------- Interactive widgets ---------- */
.widget {
  margin: 44px 0;
  padding: 32px;
  background: var(--eg-surface);
  border: 1px solid var(--eg-rule);
  border-radius: 14px;
}
.widget__eyebrow {
  display: inline-block;
  font-family: var(--eg-font-body);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--eg-accent);
  font-weight: 600;
  margin-bottom: 10px;
}
.widget__title {
  font-family: var(--eg-font-display);
  font-weight: 500;
  font-size: 24px;
  line-height: 1.25;
  letter-spacing: -0.01em;
  margin: 0 0 8px;
  color: var(--eg-ink);
}
.widget__sub {
  margin: 0 0 22px;
  font-size: 15px;
  color: var(--eg-ink-soft);
  line-height: 1.55;
}
.widget__action {
  font-family: var(--eg-font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  background: var(--eg-ink);
  color: #fff;
  border: 1px solid var(--eg-ink);
  border-radius: 8px;
  padding: 12px 22px;
  cursor: pointer;
  transition: background-color .15s ease, border-color .15s ease;
}
.widget__action:hover:not(:disabled) {
  background: var(--eg-accent);
  border-color: var(--eg-accent);
}
.widget__action:disabled { opacity: 0.5; cursor: default; }
.widget__cta {
  display: inline-block;
  margin-top: 6px;
  font-family: var(--eg-font-body);
  font-size: 14px;
  font-weight: 600;
  background: var(--eg-accent);
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  padding: 11px 20px;
  transition: background-color .15s ease;
}
.widget__cta:hover { background: var(--eg-accent-hover); color: #fff; text-decoration: none; }
.widget__result { margin-top: 22px; }
/* `hidden` attribute must win over per-variant display: flex below. */
.widget__result[hidden] { display: none !important; }
.widget__result-lead { margin: 0 0 14px; font-size: 16px; color: var(--eg-ink); }
.widget__result-name { font-family: var(--eg-font-display); font-weight: 600; }

/* Quiz */
.widget__options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 10px;
}
.widget__option {
  font-family: var(--eg-font-body);
  font-size: 15px;
  font-weight: 500;
  color: var(--eg-ink);
  background: transparent;
  border: 1px solid var(--eg-rule);
  border-radius: 8px;
  padding: 14px 18px;
  text-align: left;
  cursor: pointer;
  transition: border-color .15s ease, background-color .15s ease;
}
.widget__option:hover { border-color: var(--eg-ink); }
.widget__option.is-selected { border-color: var(--eg-accent); background: var(--eg-rule-soft); }

/* Calculator */
.widget__fields {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
  margin-bottom: 20px;
}
.widget__field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.widget__field > span {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--eg-ink);
  text-transform: uppercase;
}
.widget__field input {
  font-family: var(--eg-font-body);
  font-size: 16px;
  color: var(--eg-ink);
  background: var(--eg-bg);
  border: 1px solid var(--eg-rule);
  border-radius: 8px;
  padding: 10px 12px;
  outline: none;
  transition: border-color .15s ease;
}
.widget__field input:focus { border-color: var(--eg-accent); }
.widget__field small { font-size: 11px; color: var(--eg-ink-muted); }
.widget--calc .widget__result {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.widget__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--eg-rule);
  border: 1px solid var(--eg-rule);
  border-radius: 10px;
  overflow: hidden;
}
.widget__stat {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 18px 20px;
  background: var(--eg-rule-soft);
}
.widget__stat--net { background: var(--eg-surface); }
.widget__stat-label {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--eg-ink-muted);
  font-weight: 600;
}
.widget__stat-value {
  font-family: var(--eg-font-display);
  font-weight: 600;
  font-size: 24px;
  color: var(--eg-ink);
  font-variant-numeric: tabular-nums;
  line-height: 1.1;
}
.widget__stat--net .widget__stat-value { color: var(--eg-accent); font-size: 28px; }
@media (max-width: 720px) {
  .widget__stats { grid-template-columns: 1fr; }
  .widget__stat-value { font-size: 22px; }
  .widget__stat--net .widget__stat-value { font-size: 24px; }
}


@media (max-width: 720px) {
  .widget { padding: 22px; margin: 36px 0; }
  .widget__title { font-size: 20px; }
}

/* ---------- TOC (collapsible) ---------- */
.piece__toc {
  margin: 24px 0 32px;
  border-top: 1px solid var(--eg-rule);
  border-bottom: 1px solid var(--eg-rule);
}
.piece__toc summary {
  list-style: none;
  cursor: pointer;
  padding: 12px 0;
  display: flex;
  align-items: center;
  gap: 12px;
  user-select: none;
}
.piece__toc summary::-webkit-details-marker { display: none; }
.contents-title {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--eg-ink);
  font-weight: 600;
}
.page-outline__count {
  font-size: 12px;
  color: var(--eg-ink-muted);
}
.jump-list__arrow {
  margin-left: auto;
  color: var(--eg-ink-muted);
  transition: transform .2s ease;
}
.piece__toc[open] .jump-list__arrow { transform: rotate(180deg); }

.piece__toc ol {
  list-style: none;
  margin: 0;
  padding: 4px 0 16px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 0 28px;
  counter-reset: toc;
}
.piece__toc li {
  counter-increment: toc;
  position: relative;
  padding-left: 28px;
}
.piece__toc li::before {
  content: counter(toc, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 6px;
  font-family: var(--eg-font-body);
  font-feature-settings: "tnum";
  font-size: 10px;
  letter-spacing: 0.08em;
  color: var(--eg-ink-muted);
}
.piece__toc a {
  display: block;
  padding: 4px 0;
  color: var(--eg-ink);
  text-decoration: none;
  font-family: var(--eg-font-body);
  font-size: 13.5px;
  line-height: 1.4;
  border-bottom: 1px solid transparent;
  transition: color .15s ease, border-color .15s ease;
}
.piece__toc a:hover {
  color: var(--eg-accent);
  border-bottom-color: var(--eg-accent);
}
@media (max-width: 720px) {
  .piece__toc ol { grid-template-columns: 1fr; }
}

/* ---------- tables ---------- */
.post-body table {
  width: 100%;
  margin: 36px 0;
  border-collapse: separate;
  border-spacing: 0;
  font-family: var(--eg-font-body);
  font-size: 15px;
  line-height: 1.55;
  color: var(--eg-ink);
  background: var(--eg-surface);
  border: 1px solid var(--eg-rule);
  border-radius: 12px;
  overflow: hidden;
}
.post-body thead th {
  background: var(--eg-rule-soft);
  padding: 16px 20px;
  text-align: left;
  vertical-align: middle;
  font-weight: 600;
  font-size: 14px;
  color: var(--eg-ink);
  border-bottom: 1px solid var(--eg-rule);
}
.post-body tbody td {
  padding: 18px 20px;
  text-align: left;
  vertical-align: top;
  color: var(--eg-ink-soft);
  border-bottom: 1px solid var(--eg-rule-soft);
}
.post-body tbody tr:last-child td {
  border-bottom: none;
}
.post-body tbody td:first-child {
  font-weight: 600;
  color: var(--eg-ink);
}
@media (max-width: 720px) {
  .post-body table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: 8px;
  }
  .post-body thead th { padding: 12px 14px; font-size: 13px; }
  .post-body tbody td { padding: 14px; }
}

/* ---------- footer ---------- */
.foot-bar {
  background: var(--eg-header-bg);
  border-top: 1px solid var(--eg-rule);
  margin-top: 40px;
}
.page-foot__inner {
  max-width: var(--eg-wide-w);
  margin: 0 auto;
  padding: 36px 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.tail-nav {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}
.tail-nav a {
  font-size: 14px;
  color: var(--eg-ink);
  text-decoration: none;
}
.tail-nav a:hover {
  color: var(--eg-accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.site-footer__disclaimer {
  font-size: 13px;
  line-height: 1.6;
  color: var(--eg-ink-muted);
  max-width: 760px;
  margin: 0;
}
.page-footer__copy {
  font-size: 13px;
  color: var(--eg-ink-muted);
  border-top: 1px solid var(--eg-rule);
  padding-top: 14px;
  margin: 0;
}

/* ---------- responsive ---------- */
@media (max-width: 720px) {
  body { font-size: 16px; }
  .head-bar__wrap {
    padding: 14px 20px;
    gap: 12px;
  }
  .nav-toggle-btn {
    display: inline-flex;
  }
  .site-navigation {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--eg-header-bg);
    border-bottom: 1px solid var(--eg-rule);
    box-shadow: 0 8px 20px -12px rgba(0, 0, 0, 0.15);
    padding: 8px 20px 16px;
    z-index: 50;
  }
  .site-navigation.is-open {
    display: block;
  }
  .site-navigation ul {
    flex-direction: column;
    gap: 0;
  }
  .site-navigation li {
    border-bottom: 1px solid var(--eg-rule-soft);
  }
  .site-navigation li:last-child { border-bottom: none; }
  .site-navigation a {
    display: block;
    padding: 12px 4px;
    border-bottom: none;
    font-size: 16px;
  }
  .site-navigation a:hover { border-bottom: none; }
  .site-navigation a.is-here { border-bottom: none; }

  .post-body {
    padding: 36px 20px 60px;
  }
  .post-body h1 { font-size: 32px; }
  .post-body .lead { font-size: 17px; }
  .post-body h2 { font-size: 24px; }
  .post-body h3 { font-size: 18px; }
}

/* ---- wave-2 variant CSS ---- */

.head-bar__wrap { padding-block: 1.036rem; }

/* hdr v1: logo left, menu right */
.vpf-hdr-v1 .head-bar__wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
.vpf-hdr-v1 .site-brand { flex-shrink: 0; }
.vpf-hdr-v1 .site-navigation { margin-left: auto; }

/* content card: strong */
.vpf-cc {
  padding: 0;
  margin: 40px 0 0;
}
.vpf-cc__inner {
  padding: 0;
  border-radius: 12px;
}

.vpf-cc {
  max-width: var(--eg-wide-w);
  margin: 40px auto 0;
}

.vpf-cc__inner {
  background: var(--eg-surface);
  border: 1px solid var(--eg-rule);
  box-shadow: 0 2px 12px rgba(0,0,0,.07);
}

body { background-image: radial-gradient(ellipse at 30% 20%, rgba(255,255,255,.45) 0%, rgba(255,255,255,0) 65%); }

@media (max-width: 720px) {
  .site-navigation li::before {
    content: '+';
    margin-right: 6px;
    color: currentColor;
    opacity: .6;
  }
}

@media (min-width: 721px) {
.vpf-menu-outline-square nav a {
  color: var(--eg-ink);
  text-decoration: none;
  padding: 5px 12px;
  border: 1px solid transparent;
  border-radius: 4px;
  background: transparent;
  transition: border-color .15s ease, color .15s ease;
}
.vpf-menu-outline-square nav a:hover {
  color: var(--eg-accent-hover);
  border-color: var(--eg-accent-hover);
  background: transparent;
}
.vpf-menu-outline-square nav a.is-here {
  color: var(--eg-accent);
  border-color: var(--eg-accent);
  background: transparent;
}
}


/* geometry supplement */
:root { --eg-content-width: 1180px; }
