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

:root {
  --hya-surface: #ffffff;
  --hya-font-body: "Jost", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --hya-bg: #f5f6f7;
  --hya-logo-w: 240px;
  --hya-rule-soft: #e1e4e7;
  --hya-max-w: 1180px;
  --hya-header-bg: #e7e9eb;
  --hya-ink: #1b1e22;
  --hya-select-bg: #c6d0da;
  --hya-ink-soft: #3d4146;
  --hya-accent-hover: #274255;
  --hya-ink-muted: #72777c;
  --hya-wide-w: 1180px;
  --hya-rule: #d4d7db;
  --hya-accent: #3d5a72;
  --hya-font-display: "Cormorant Garamond", Georgia, serif;
}

/* ---------- 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(--hya-select-bg); color: var(--hya-ink); }

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

a {
  color: var(--hya-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(--hya-accent-hover);
  text-decoration-thickness: 2px;
}

/* ---------- header ---------- */
.hdr-bar {
  background: var(--hya-header-bg);
  border-bottom: 1px solid var(--hya-rule);
  position: relative;
  z-index: 50;
}
.page-header__inner {
  max-width: var(--hya-wide-w);
  margin: 0 auto;
  padding: 1.37rem 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(--hya-rule);
  border-radius: 8px;
  background: transparent;
  color: var(--hya-ink);
  align-items: center;
  justify-content: center;
  padding: 0;
  position: relative;
  transition: border-color .15s ease;
}
.nav-toggle-btn:hover { border-color: var(--hya-ink); }
.nav-toggle-btn:focus-visible {
  outline: 2px solid var(--hya-accent);
  outline-offset: 2px;
}
.burger-icon,
.nav-switch__close {
  position: absolute;
  inset: 0;
  margin: auto;
  transition: opacity .15s ease, transform .2s ease;
}
.nav-switch__close { opacity: 0; transform: rotate(-90deg); }
.nav-toggle-btn.is-open .burger-icon { opacity: 0; transform: rotate(90deg); }
.nav-toggle-btn.is-open .nav-switch__close  { opacity: 1; transform: rotate(0); }
.brand-mark {
  font-family: var(--hya-font-display);
  font-weight: 600;
  font-size: 22px;
  letter-spacing: -0.015em;
  color: var(--hya-ink);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}
.brand-mark:hover { color: var(--hya-ink); text-decoration: none; }
.page-logo__dot { color: var(--hya-accent); }
/* Image logo: scale up visually while keeping the header from growing
   via negative vertical margins. */
.brand--image img {
  display: block;
  height: 48px;
  width: auto;
  margin: -10px 0;
}
@media (max-width: 720px) {
  .brand--image img {
    height: 40px;
    margin: -8px 0;
  }
}

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

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

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

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

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

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

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

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

.prose strong { font-weight: 600; color: var(--hya-ink); }

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

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

.base-venue__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. */
.rated-brand {
  --hya-logo-w: 240px;
  position: relative;
  display: grid;
  grid-template-columns: var(--hya-logo-w) 1fr auto;
  align-items: stretch;
  background: var(--hya-surface);
  border: 1px solid var(--hya-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;
}
.rated-brand:hover {
  box-shadow: 0 4px 16px -10px rgba(0, 0, 0, 0.18);
}
.rated-brand[hidden] { display: none; }

/* Left cell: themed soft background */
.rated-brand__logo-cell {
  background: var(--hya-rule-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 18px;
}
.rated-brand__logo {
  background: #111111;
  border-radius: 4px;
  width: 100%;
  max-width: 140px;
  padding: 10px 12px 8px;
  text-align: center;
  line-height: 1.1;
}
.rated-brand__logo-name {
  font-family: var(--hya-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;
}
.rated-brand__logo-tag {
  font-family: var(--hya-font-body);
  font-weight: 700;
  font-size: 9px;
  letter-spacing: 0.06em;
  color: #ffffff;
}
.rated-brand__logo-tag span { color: #e53935; }

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

/* Right cell: themed accent "Play Now" button, vertically centred */
.rated-brand__cta {
  align-self: center;
  justify-self: end;
  margin-right: 22px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--hya-accent);
  color: #ffffff;
  font-family: var(--hya-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;
}
.rated-brand__cta:hover {
  background: var(--hya-accent-hover);
  color: #ffffff;
  text-decoration: none;
}
.rated-brand__cta-arrow { font-size: 10px; }

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

/* Mobile: stack into one column, drop the slant */
@media (max-width: 720px) {
  .rated-brand {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    min-height: 0;
    padding-bottom: 16px;
  }
  .rated-brand__logo-cell {
    padding: 22px 16px;
  }
  .rated-brand__logo { max-width: 220px; }
  .rated-brand__info {
    padding: 8px 18px 4px;
    gap: 6px;
    align-items: center;
    text-align: center;
  }
  .rated-brand__bonus { font-size: 18px; }
  .rated-brand__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(--hya-surface);
  border: 1px solid var(--hya-rule);
  border-radius: 14px;
}
.widget__eyebrow {
  display: inline-block;
  font-family: var(--hya-font-body);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--hya-accent);
  font-weight: 600;
  margin-bottom: 10px;
}
.widget__title {
  font-family: var(--hya-font-display);
  font-weight: 500;
  font-size: 24px;
  line-height: 1.25;
  letter-spacing: -0.01em;
  margin: 0 0 8px;
  color: var(--hya-ink);
}
.widget__sub {
  margin: 0 0 22px;
  font-size: 15px;
  color: var(--hya-ink-soft);
  line-height: 1.55;
}
.widget__action {
  font-family: var(--hya-font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  background: var(--hya-ink);
  color: #fff;
  border: 1px solid var(--hya-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(--hya-accent);
  border-color: var(--hya-accent);
}
.widget__action:disabled { opacity: 0.5; cursor: default; }
.widget__cta {
  display: inline-block;
  margin-top: 6px;
  font-family: var(--hya-font-body);
  font-size: 14px;
  font-weight: 600;
  background: var(--hya-accent);
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  padding: 11px 20px;
  transition: background-color .15s ease;
}
.widget__cta:hover { background: var(--hya-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(--hya-ink); }
.widget__result-name { font-family: var(--hya-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(--hya-font-body);
  font-size: 15px;
  font-weight: 500;
  color: var(--hya-ink);
  background: transparent;
  border: 1px solid var(--hya-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(--hya-ink); }
.widget__option.is-selected { border-color: var(--hya-accent); background: var(--hya-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(--hya-ink);
  text-transform: uppercase;
}
.widget__field input {
  font-family: var(--hya-font-body);
  font-size: 16px;
  color: var(--hya-ink);
  background: var(--hya-bg);
  border: 1px solid var(--hya-rule);
  border-radius: 8px;
  padding: 10px 12px;
  outline: none;
  transition: border-color .15s ease;
}
.widget__field input:focus { border-color: var(--hya-accent); }
.widget__field small { font-size: 11px; color: var(--hya-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(--hya-rule);
  border: 1px solid var(--hya-rule);
  border-radius: 10px;
  overflow: hidden;
}
.widget__stat {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 18px 20px;
  background: var(--hya-rule-soft);
}
.widget__stat--net { background: var(--hya-surface); }
.widget__stat-label {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--hya-ink-muted);
  font-weight: 600;
}
.widget__stat-value {
  font-family: var(--hya-font-display);
  font-weight: 600;
  font-size: 24px;
  color: var(--hya-ink);
  font-variant-numeric: tabular-nums;
  line-height: 1.1;
}
.widget__stat--net .widget__stat-value { color: var(--hya-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) ---------- */
.contents-list {
  margin: 24px 0 32px;
  border-top: 1px solid var(--hya-rule);
  border-bottom: 1px solid var(--hya-rule);
}
.contents-list summary {
  list-style: none;
  cursor: pointer;
  padding: 12px 0;
  display: flex;
  align-items: center;
  gap: 12px;
  user-select: none;
}
.contents-list summary::-webkit-details-marker { display: none; }
.contents-label {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--hya-ink);
  font-weight: 600;
}
.jump-list__count {
  font-size: 12px;
  color: var(--hya-ink-muted);
}
.toc-indicator {
  margin-left: auto;
  color: var(--hya-ink-muted);
  transition: transform .2s ease;
}
.contents-list[open] .toc-indicator { transform: rotate(180deg); }

.contents-list 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;
}
.contents-list li {
  counter-increment: toc;
  position: relative;
  padding-left: 28px;
}
.contents-list li::before {
  content: counter(toc, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 6px;
  font-family: var(--hya-font-body);
  font-feature-settings: "tnum";
  font-size: 10px;
  letter-spacing: 0.08em;
  color: var(--hya-ink-muted);
}
.contents-list a {
  display: block;
  padding: 4px 0;
  color: var(--hya-ink);
  text-decoration: none;
  font-family: var(--hya-font-body);
  font-size: 13.5px;
  line-height: 1.4;
  border-bottom: 1px solid transparent;
  transition: color .15s ease, border-color .15s ease;
}
.contents-list a:hover {
  color: var(--hya-accent);
  border-bottom-color: var(--hya-accent);
}
@media (max-width: 720px) {
  .contents-list ol { grid-template-columns: 1fr; }
}

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

/* ---------- footer ---------- */
.foot-strip {
  background: var(--hya-header-bg);
  border-top: 1px solid var(--hya-rule);
  margin-top: 40px;
}
.bottom-strip__inner {
  max-width: var(--hya-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(--hya-ink);
  text-decoration: none;
}
.tail-nav a:hover {
  color: var(--hya-accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.site-footer__disclaimer {
  font-size: 13px;
  line-height: 1.6;
  color: var(--hya-ink-muted);
  max-width: 760px;
  margin: 0;
}
.foot-strip__copy {
  font-size: 13px;
  color: var(--hya-ink-muted);
  border-top: 1px solid var(--hya-rule);
  padding-top: 14px;
  margin: 0;
}

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

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

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

.page-header__inner { padding-block: 1.367rem; }

/* hdr v2: logo + menu left, right empty */
.gfi-hdr-v2 .page-header__inner {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 32px;
  flex-wrap: wrap;
}
.gfi-hdr-v2 .brand-mark { flex-shrink: 0; }
.gfi-hdr-v2 .pnav { margin-left: 0; }

/* content card: flush */
.gfi-cc {
  padding: 0;
}
.gfi-cc__inner {
  padding: 2.7rem 1.96rem;
  border-radius: 4px;
}

.gfi-cc {
  width: 100%;
}
.gfi-cc__inner {
  background: var(--hya-surface);
  
  border-radius: 4px;
}
@media (max-width: 720px) {
  .gfi-cc { margin-left: -16px; margin-right: -16px; }
  .gfi-cc__inner { border-radius: 0; padding-left: 16px; padding-right: 16px; }
}

.gfi-cc__inner { background-image: linear-gradient(rgba(0,0,0,.03) 1px, transparent 1px), linear-gradient(90deg, rgba(0,0,0,.03) 1px, transparent 1px); background-size: 24px 24px; }

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

@media (min-width: 721px) {
.gfi-menu-fill-slide-up nav a {
  position: relative;
  padding: 6px 12px;
  color: var(--hya-ink);
  text-decoration: none;
  overflow: hidden;
  z-index: 0;
  transition: color .15s ease;
}
.gfi-menu-fill-slide-up nav a::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--hya-accent);
  transform: translateY(100%);
  transition: transform .15s ease;
  z-index: -1;
}
.gfi-menu-fill-slide-up nav a:hover::before,
.gfi-menu-fill-slide-up nav a.is-active::before {
  transform: translateY(0);
}
.gfi-menu-fill-slide-up nav a:hover,
.gfi-menu-fill-slide-up nav a.is-active {
  color: #fff;
}
}


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