﻿/* Jogos section body layouts — independent from pages.css pg-* */

.jg-hub,
.jg-brand {
  max-width: 100%;
  overflow-x: hidden;
}

/* ── Hub: methodology pillars ── */
.jg-method {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  padding: 1rem var(--nav-pad-x) 1.25rem;
  border-bottom: 1px solid var(--border-subtle);
}

.jg-method__item {
  padding: 12px 10px;
  border-radius: 10px;
  border: 1px solid var(--border-card);
  background: var(--surface-card);
}

.jg-method__item em {
  display: block;
  margin-bottom: 5px;
  font-style: normal;
  font-size: 1.125rem;
  line-height: 1;
}

.jg-method__item strong {
  display: block;
  margin-bottom: 4px;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-heading-bright);
}

.jg-method__item span {
  display: block;
  font-size: 0.6875rem;
  color: var(--text-muted);
  line-height: 1.4;
}

/* ── Hub: comparison table ── */
.jg-compare-wrap {
  padding: 0 var(--nav-pad-x) 1.25rem;
  border-bottom: 1px solid var(--border-subtle);
  overflow-x: auto;
}

.jg-compare {
  width: 100%;
  min-width: 520px;
  border-collapse: collapse;
  font-size: 0.6875rem;
}

.jg-compare caption {
  margin-bottom: 0.65rem;
  text-align: left;
  font-size: var(--prose-size);
  font-weight: 700;
  color: var(--text-heading-bright);
}

.jg-compare th,
.jg-compare td {
  padding: 9px 8px;
  border: 1px solid var(--border-subtle);
  text-align: center;
}

.jg-compare thead th {
  background: var(--surface-elevated);
  color: var(--text-ui);
  font-weight: 700;
}

.jg-compare tbody th {
  text-align: left;
  font-weight: 600;
  color: var(--text-muted);
  background: rgba(31, 18, 56, 0.35);
}

.jg-compare td {
  color: var(--text-body);
  background: var(--surface-card);
}

.jg-compare .jg-compare__best {
  color: var(--accent-gold);
  font-weight: 800;
}

/* ── Hub: score bars ── */
.jg-scorelist {
  margin: 0;
  padding: 1rem var(--nav-pad-x) 1.25rem;
  list-style: none;
  border-bottom: 1px solid var(--border-subtle);
}

.jg-scorelist li {
  margin-bottom: 12px;
}

.jg-scorelist li:last-child { margin-bottom: 0; }

.jg-scorelist__head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 5px;
}

.jg-scorelist__head img {
  width: 32px;
  height: 32px;
  border-radius: 6px;
  object-fit: cover;
  border: 1px solid var(--border-card);
}

.jg-scorelist__head a {
  flex: 1;
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--text-heading-bright);
  text-decoration: none;
}

.jg-scorelist__head em {
  font-style: normal;
  font-size: 0.875rem;
  font-weight: 800;
  color: var(--accent-gold);
}

.jg-scorelist__track {
  height: 7px;
  border-radius: 999px;
  background: var(--surface-elevated);
  overflow: hidden;
}

.jg-scorelist__fill {
  display: block;
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent-violet) 0%, var(--accent-gold) 100%);
}

/* ── Hub: verdict cards ── */
.jg-verdict {
  margin: 0;
  padding: 1rem var(--nav-pad-x) 1.25rem;
  list-style: none;
  border-bottom: 1px solid var(--border-subtle);
}

.jg-verdict li {
  margin-bottom: 10px;
  padding: 14px 12px;
  border-radius: 10px;
  border: 1px solid var(--border-card);
  background: var(--surface-card);
}

.jg-verdict li:last-child { margin-bottom: 0; }

.jg-verdict li.jg-verdict__lead {
  border-color: var(--accent-gold-dim);
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.12) 0%, var(--surface-card) 65%);
}

.jg-verdict__rank {
  display: inline-block;
  margin-bottom: 6px;
  padding: 2px 8px;
  border-radius: 999px;
  background: var(--accent-blue-soft);
  color: var(--accent-gold-dim);
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.jg-verdict h3 {
  margin: 0 0 0.4rem;
  font-size: var(--prose-size);
  font-weight: 700;
  color: var(--text-heading-bright);
}

.jg-verdict h3 a {
  color: inherit;
  text-decoration: none;
}

.jg-verdict p {
  margin: 0 0 0.65rem;
  font-size: 0.8125rem;
  color: var(--text-body);
  line-height: 1.5;
}

.jg-verdict__acts {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.jg-verdict__acts .hero__cta {
  margin-top: 0;
  padding: 0.45rem 1rem;
  font-size: 0.75rem;
}

/* ── Hub: editorial + trust ── */
.jg-editorial {
  padding: 1.25rem var(--nav-pad-x);
  border-bottom: 1px solid var(--border-subtle);
}

.jg-editorial h2 {
  margin: 0 0 0.65rem;
  font-size: var(--prose-size);
  font-weight: 700;
  color: var(--text-heading-bright);
}

.jg-editorial p {
  margin: 0 0 0.65rem;
  font-size: 0.8125rem;
  color: var(--text-body);
  line-height: 1.55;
}

.jg-editorial p:last-child { margin-bottom: 0; }

.jg-figure {
  padding: 1rem var(--nav-pad-x);
  border-bottom: 1px solid var(--border-subtle);
}

.jg-figure img {
  display: block;
  width: 100%;
  border-radius: 10px;
  border: 1px solid var(--border-card);
  object-fit: cover;
  box-shadow: 0 6px 22px rgba(91, 33, 182, 0.28);
}

.jg-figure figcaption {
  margin-top: 0.5rem;
  font-size: 0.6875rem;
  color: var(--text-muted);
  line-height: 1.4;
}

.jg-trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  padding: 1rem var(--nav-pad-x) 1.25rem;
  border-bottom: 1px solid var(--border-subtle);
}

.jg-trust span {
  padding: 6px 12px;
  border-radius: 6px;
  border: 1px solid var(--border-card);
  background: var(--surface-elevated);
  color: var(--text-link);
  font-size: 0.6875rem;
  font-weight: 600;
}

.jg-hubcta {
  padding: 1.25rem var(--nav-pad-x) 1.5rem;
  text-align: center;
}

.jg-hubcta .hero__cta { margin-top: 0; }

.jg-hubcta small {
  display: block;
  margin-top: 0.65rem;
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.45;
}

@media (max-width: 380px) {
  .jg-method { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════
   Brand review layout (a188) — ring + audit
   ══════════════════════════════════════════ */

.jg-reviewhead {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 1.25rem var(--nav-pad-x);
  border-bottom: 1px solid var(--border-subtle);
}

.jg-reviewhead__logo {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  border-radius: 12px;
  object-fit: cover;
  border: 2px solid var(--accent-gold-dim);
}

.jg-reviewhead__ring {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 3px solid var(--accent-gold);
  background: rgba(240, 171, 252, 0.08);
}

.jg-reviewhead__ring b {
  font-size: 1.125rem;
  font-weight: 900;
  color: var(--accent-gold);
  line-height: 1;
}

.jg-reviewhead__ring i {
  font-style: normal;
  font-size: 0.5rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
}

.jg-reviewhead__meta h2 {
  margin: 0 0 0.25rem;
  font-size: var(--prose-size);
  font-weight: 700;
  color: var(--text-heading-bright);
}

.jg-reviewhead__meta p {
  margin: 0;
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.4;
}

.jg-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 0.85rem var(--nav-pad-x) 1rem;
  border-bottom: 1px solid var(--border-subtle);
}

.jg-highlights span {
  padding: 5px 11px;
  border-radius: 999px;
  background: var(--accent-blue-soft);
  color: var(--text-ui);
  font-size: 0.6875rem;
  font-weight: 600;
}

.jg-ratinggrid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  padding: 1rem var(--nav-pad-x) 1.25rem;
  border-bottom: 1px solid var(--border-subtle);
}

.jg-ratinggrid__cell {
  padding: 11px 10px;
  border-radius: 8px;
  border: 1px solid var(--border-card);
  background: var(--surface-card);
}

.jg-ratinggrid__cell dt {
  margin: 0 0 4px;
  font-size: 0.625rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.jg-ratinggrid__cell dd {
  margin: 0;
  font-size: 0.9375rem;
  font-weight: 800;
  color: var(--accent-gold);
}

.jg-deepdive {
  padding: 0 var(--nav-pad-x);
  border-bottom: 1px solid var(--border-subtle);
}

.jg-deepdive__block {
  padding: 1.15rem 0;
  border-bottom: 1px solid var(--border-subtle);
  border-left: 3px solid var(--accent-violet);
  padding-left: 12px;
  margin-left: 0;
}

.jg-deepdive__block:last-child { border-bottom: none; }

.jg-deepdive__block h3 {
  margin: 0 0 0.5rem;
  font-size: var(--prose-size);
  font-weight: 700;
  color: var(--text-heading-bright);
}

.jg-deepdive__block p {
  margin: 0;
  font-size: 0.8125rem;
  color: var(--text-body);
  line-height: 1.55;
}

.jg-audit {
  margin: 0;
  padding: 1rem var(--nav-pad-x) 1.25rem;
  list-style: none;
  border-bottom: 1px solid var(--border-subtle);
}

.jg-audit li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 9px 0;
  border-bottom: 1px dashed var(--border-subtle);
  font-size: 0.8125rem;
  color: var(--text-body);
  line-height: 1.45;
}

.jg-audit li:last-child { border-bottom: none; }

.jg-audit__ok {
  flex-shrink: 0;
  color: var(--text-heading-bright);
  font-weight: 700;
}

.jg-quote {
  margin: 1.25rem var(--nav-pad-x);
  padding: 14px 12px;
  border-left: 4px solid var(--accent-gold);
  background: rgba(38, 21, 69, 0.45);
  font-size: 0.8125rem;
  font-style: italic;
  color: var(--text-body);
  line-height: 1.55;
}

.jg-quote cite {
  display: block;
  margin-top: 0.5rem;
  font-style: normal;
  font-size: 0.6875rem;
  font-weight: 600;
  color: var(--text-muted);
}

.jg-verdictbox {
  margin: 0 var(--nav-pad-x) 1.25rem;
  padding: 16px 14px;
  text-align: center;
  border-radius: 12px;
  border: 2px solid var(--accent-gold-dim);
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.14) 0%, var(--surface-card) 60%);
}

.jg-verdictbox h3 {
  margin: 0 0 0.5rem;
  font-size: var(--prose-size);
  font-weight: 700;
  color: var(--text-heading-bright);
}

.jg-verdictbox p {
  margin: 0 0 0.75rem;
  font-size: 0.8125rem;
  color: var(--text-body);
  line-height: 1.5;
}

.jg-brandcta {
  padding: 0 var(--nav-pad-x) 1.5rem;
  text-align: center;
}

.jg-brandcta .hero__cta { margin-top: 0; }

.jg-brandcta small {
  display: block;
  margin-top: 0.65rem;
  font-size: 0.75rem;
  color: var(--text-muted);
}

.jg-back {
  display: inline-block;
  margin: 0 var(--nav-pad-x) 1rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-link);
  text-decoration: none;
}

@media (max-width: 380px) {
  .jg-ratinggrid { grid-template-columns: 1fr; }
  .jg-reviewhead { flex-wrap: wrap; }
}

/* ══════════════════════════════════════════
   Brand product layout (qwin) — tier + matrix
   ══════════════════════════════════════════ */

.jg-productstrip {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 1.1rem var(--nav-pad-x);
  border-bottom: 1px solid var(--border-subtle);
  background: linear-gradient(90deg, rgba(59, 130, 246, 0.1) 0%, transparent 55%);
}

.jg-productstrip__badge {
  padding: 6px 10px;
  border-radius: 6px;
  background: var(--accent-blue-soft);
  color: var(--text-heading-bright);
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.jg-productstrip__info h2 {
  margin: 0 0 0.2rem;
  font-size: var(--prose-size);
  font-weight: 700;
  color: var(--text-heading-bright);
}

.jg-productstrip__info p {
  margin: 0;
  font-size: 0.75rem;
  color: var(--text-muted);
}

.jg-productstrip__score {
  text-align: right;
}

.jg-productstrip__score b {
  display: block;
  font-size: 1.375rem;
  font-weight: 900;
  color: var(--accent-gold);
  line-height: 1;
}

.jg-productstrip__score i {
  font-style: normal;
  font-size: 0.625rem;
  font-weight: 600;
  color: var(--text-muted);
}

.jg-specchips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 0.9rem var(--nav-pad-x) 1rem;
  border-bottom: 1px solid var(--border-subtle);
}

.jg-specchips span {
  padding: 7px 12px;
  border-radius: 8px;
  border: 1px solid var(--border-card);
  background: var(--surface-card);
  font-size: 0.6875rem;
  font-weight: 600;
  color: var(--text-ui);
}

.jg-specchips span em {
  display: block;
  margin-bottom: 2px;
  font-style: normal;
  font-size: 0.5625rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.jg-offercard {
  margin: 1.15rem var(--nav-pad-x);
  padding: 14px 12px;
  border-radius: 10px;
  border: 1px solid var(--accent-gold-dim);
  background: linear-gradient(160deg, rgba(240, 171, 252, 0.12) 0%, var(--surface-card) 70%);
}

.jg-offercard h3 {
  margin: 0 0 0.45rem;
  font-size: var(--prose-size);
  font-weight: 700;
  color: var(--text-heading-bright);
}

.jg-offercard p {
  margin: 0;
  font-size: 0.8125rem;
  color: var(--text-body);
  line-height: 1.5;
}

.jg-tierladder {
  margin: 0;
  padding: 1rem var(--nav-pad-x) 1.25rem;
  list-style: none;
  border-bottom: 1px solid var(--border-subtle);
  counter-reset: tier;
}

.jg-tierladder li {
  position: relative;
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 10px;
  padding: 10px 0 10px 0;
  border-bottom: 1px dashed var(--border-subtle);
}

.jg-tierladder li:last-child { border-bottom: none; }

.jg-tierladder__num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid var(--accent-violet);
  background: rgba(168, 85, 247, 0.12);
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--accent-gold);
}

.jg-tierladder__body h4 {
  margin: 0 0 0.3rem;
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--text-heading-bright);
}

.jg-tierladder__body p {
  margin: 0;
  font-size: 0.75rem;
  color: var(--text-body);
  line-height: 1.45;
}

.jg-featmatrix {
  padding: 0 var(--nav-pad-x) 1.15rem;
  border-bottom: 1px solid var(--border-subtle);
}

.jg-featmatrix h3 {
  margin: 0 0 0.75rem;
  padding-top: 1rem;
  font-size: var(--prose-size);
  font-weight: 700;
  color: var(--text-heading-bright);
}

.jg-featmatrix__row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  align-items: center;
  padding: 9px 0;
  border-bottom: 1px solid var(--border-subtle);
  font-size: 0.8125rem;
  color: var(--text-body);
}

.jg-featmatrix__row:last-child { border-bottom: none; }

.jg-featmatrix__row span {
  font-size: 0.6875rem;
  font-weight: 700;
  color: var(--accent-gold);
  white-space: nowrap;
}

.jg-prosecol {
  padding: 1rem var(--nav-pad-x) 1.15rem;
  border-bottom: 1px solid var(--border-subtle);
}

.jg-prosecol h3 {
  margin: 0 0 0.5rem;
  font-size: var(--prose-size);
  font-weight: 700;
  color: var(--text-heading-bright);
}

.jg-prosecol p {
  margin: 0 0 0.85rem;
  font-size: 0.8125rem;
  color: var(--text-body);
  line-height: 1.55;
}

.jg-prosecol p:last-child { margin-bottom: 0; }

.jg-sumcard {
  margin: 1.15rem var(--nav-pad-x) 1.25rem;
  padding: 16px 14px;
  border-radius: 12px;
  border: 1px solid var(--border-card);
  background: var(--surface-elevated);
  text-align: center;
}

.jg-sumcard h3 {
  margin: 0 0 0.5rem;
  font-size: var(--prose-size);
  font-weight: 700;
  color: var(--text-heading-bright);
}

.jg-sumcard p {
  margin: 0 0 0.85rem;
  font-size: 0.8125rem;
  color: var(--text-body);
  line-height: 1.5;
}

@media (max-width: 380px) {
  .jg-productstrip { grid-template-columns: 1fr auto; }
  .jg-productstrip__badge { grid-column: 1 / -1; justify-self: start; }
}

/* ══════════════════════════════════════════
   Brand FAQ layout (gg666) — deck + topics
   ══════════════════════════════════════════ */

.jg-faqbar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 1.15rem var(--nav-pad-x);
  border-bottom: 1px solid var(--border-subtle);
}

.jg-faqbar__logo {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 10px;
  object-fit: cover;
  border: 2px solid var(--border-card);
}

.jg-faqbar__main { flex: 1; min-width: 0; }

.jg-faqbar__rank {
  display: inline-block;
  margin-bottom: 0.3rem;
  padding: 3px 8px;
  border-radius: 4px;
  background: rgba(168, 85, 247, 0.18);
  font-size: 0.625rem;
  font-weight: 700;
  color: var(--accent-gold);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.jg-faqbar__main h2 {
  margin: 0;
  font-size: var(--prose-size);
  font-weight: 700;
  color: var(--text-heading-bright);
}

.jg-faqbar__main p {
  margin: 0.25rem 0 0;
  font-size: 0.75rem;
  color: var(--text-muted);
}

.jg-faqbar__score {
  flex-shrink: 0;
  padding: 8px 10px;
  border-radius: 8px;
  border: 1px solid var(--accent-gold-dim);
  background: var(--surface-card);
  text-align: center;
}

.jg-faqbar__score b {
  display: block;
  font-size: 1.125rem;
  font-weight: 900;
  color: var(--accent-gold);
  line-height: 1;
}

.jg-faqbar__score i {
  font-style: normal;
  font-size: 0.5625rem;
  font-weight: 600;
  color: var(--text-muted);
}

.jg-topicrail {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 0.85rem var(--nav-pad-x) 1rem;
  border-bottom: 1px solid var(--border-subtle);
}

.jg-topicrail span {
  padding: 6px 12px;
  border-radius: 6px;
  border: 1px dashed var(--border-card);
  font-size: 0.6875rem;
  font-weight: 600;
  color: var(--text-ui);
}

.jg-faqintro {
  padding: 1rem var(--nav-pad-x) 1.1rem;
  border-bottom: 1px solid var(--border-subtle);
}

.jg-faqintro h3 {
  margin: 0 0 0.45rem;
  font-size: var(--prose-size);
  font-weight: 700;
  color: var(--text-heading-bright);
}

.jg-faqintro p {
  margin: 0;
  font-size: 0.8125rem;
  color: var(--text-body);
  line-height: 1.55;
}

.jg-faqdeck {
  padding: 0 var(--nav-pad-x) 1rem;
  border-bottom: 1px solid var(--border-subtle);
}

.jg-faqdeck > h3 {
  margin: 0 0 0.75rem;
  padding-top: 1rem;
  font-size: var(--prose-size);
  font-weight: 700;
  color: var(--text-heading-bright);
}

.jg-faqitem {
  margin-bottom: 8px;
  border-radius: 10px;
  border: 1px solid var(--border-card);
  background: var(--surface-card);
  overflow: hidden;
}

.jg-faqitem:last-child { margin-bottom: 0; }

.jg-faqitem summary {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px 12px;
  cursor: pointer;
  list-style: none;
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--text-heading-bright);
  line-height: 1.4;
}

.jg-faqitem summary::-webkit-details-marker { display: none; }

.jg-faqitem summary::marker { content: ""; }

.jg-faqitem__num {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--accent-blue-soft);
  font-size: 0.625rem;
  font-weight: 800;
  color: var(--text-heading-bright);
}

.jg-faqitem__body {
  padding: 0 12px 12px 44px;
  font-size: 0.8125rem;
  color: var(--text-body);
  line-height: 1.55;
}

.jg-faqitem[open] summary {
  border-bottom: 1px solid var(--border-subtle);
  padding-bottom: 10px;
  margin-bottom: 0;
}

.jg-faqitem[open] .jg-faqitem__body {
  padding-top: 10px;
}

.jg-faqcta {
  margin: 1.15rem var(--nav-pad-x) 1.25rem;
  padding: 14px 12px;
  border-radius: 10px;
  border: 1px solid var(--border-card);
  background: linear-gradient(180deg, var(--surface-elevated) 0%, var(--surface-card) 100%);
  text-align: center;
}

.jg-faqcta h3 {
  margin: 0 0 0.45rem;
  font-size: var(--prose-size);
  font-weight: 700;
  color: var(--text-heading-bright);
}

.jg-faqcta p {
  margin: 0 0 0.75rem;
  font-size: 0.8125rem;
  color: var(--text-body);
  line-height: 1.5;
}

@media (max-width: 380px) {
  .jg-faqbar { flex-wrap: wrap; }
  .jg-faqbar__score { margin-left: auto; }
}

/* ══════════════════════════════════════════
   Brand howto layout (win444) — path + hubs
   ══════════════════════════════════════════ */

.jg-howhead {
  padding: 1.15rem var(--nav-pad-x);
  border-bottom: 1px solid var(--border-subtle);
  background: linear-gradient(180deg, rgba(34, 197, 94, 0.08) 0%, transparent 100%);
}

.jg-howhead__top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 0.75rem;
}

.jg-howhead__logo {
  width: 52px;
  height: 52px;
  border-radius: 10px;
  object-fit: cover;
  border: 2px solid var(--border-card);
}

.jg-howhead__top h2 {
  margin: 0;
  flex: 1;
  font-size: var(--prose-size);
  font-weight: 700;
  color: var(--text-heading-bright);
}

.jg-howhead__top em {
  flex-shrink: 0;
  padding: 6px 10px;
  border-radius: 8px;
  border: 1px solid var(--accent-gold-dim);
  background: var(--surface-card);
  font-style: normal;
  font-size: 0.8125rem;
  font-weight: 900;
  color: var(--accent-gold);
}

.jg-howhead p {
  margin: 0;
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.45;
}

.jg-howmeta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding: 0.9rem var(--nav-pad-x) 1rem;
  border-bottom: 1px solid var(--border-subtle);
}

.jg-howmeta__cell {
  padding: 10px 8px;
  border-radius: 8px;
  border: 1px solid var(--border-card);
  background: var(--surface-card);
  text-align: center;
}

.jg-howmeta__cell dt {
  margin: 0 0 4px;
  font-size: 0.5625rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.jg-howmeta__cell dd {
  margin: 0;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-heading-bright);
}

.jg-hybridmap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding: 1rem var(--nav-pad-x) 1.15rem;
  border-bottom: 1px solid var(--border-subtle);
}

.jg-hybridmap__hub {
  padding: 12px 8px;
  border-radius: 10px;
  border: 1px solid var(--border-card);
  background: var(--surface-elevated);
  text-align: center;
}

.jg-hybridmap__hub em {
  display: block;
  margin-bottom: 6px;
  font-style: normal;
  font-size: 1.25rem;
  line-height: 1;
}

.jg-hybridmap__hub strong {
  display: block;
  margin-bottom: 4px;
  font-size: 0.6875rem;
  font-weight: 700;
  color: var(--text-heading-bright);
}

.jg-hybridmap__hub span {
  font-size: 0.625rem;
  color: var(--text-muted);
  line-height: 1.35;
}

.jg-howpath {
  margin: 0;
  padding: 1rem var(--nav-pad-x) 1.25rem;
  list-style: none;
  border-bottom: 1px solid var(--border-subtle);
}

.jg-howpath > h3 {
  margin: 0 0 1rem;
  font-size: var(--prose-size);
  font-weight: 700;
  color: var(--text-heading-bright);
}

.jg-howpath ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

.jg-howstep {
  position: relative;
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 12px;
  padding-bottom: 1.15rem;
  margin-bottom: 0;
}

.jg-howstep:not(:last-child)::before {
  content: "";
  position: absolute;
  left: 15px;
  top: 32px;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--accent-violet) 0%, var(--border-subtle) 100%);
}

.jg-howstep:last-child { padding-bottom: 0; }

.jg-howstep__num {
  position: relative;
  z-index: 1;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 2px solid var(--accent-violet);
  background: var(--surface-card);
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--accent-gold);
}

.jg-howstep__body {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid var(--border-card);
  background: var(--surface-card);
}

.jg-howstep__body h4 {
  margin: 0 0 0.4rem;
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--text-heading-bright);
}

.jg-howstep__body p {
  margin: 0;
  font-size: 0.75rem;
  color: var(--text-body);
  line-height: 1.5;
}

.jg-howtip {
  margin: 1rem var(--nav-pad-x) 1.15rem;
  padding: 12px 12px;
  border-radius: 8px;
  border: 1px dashed var(--accent-gold-dim);
  background: rgba(240, 171, 252, 0.06);
  font-size: 0.75rem;
  color: var(--text-body);
  line-height: 1.5;
}

.jg-howtip strong {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.6875rem;
  font-weight: 700;
  color: var(--accent-gold);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.jg-howdone {
  margin: 1.15rem var(--nav-pad-x) 1.25rem;
  padding: 16px 14px;
  border-radius: 12px;
  border: 2px solid rgba(34, 197, 94, 0.35);
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.1) 0%, var(--surface-card) 65%);
  text-align: center;
}

.jg-howdone h3 {
  margin: 0 0 0.45rem;
  font-size: var(--prose-size);
  font-weight: 700;
  color: var(--text-heading-bright);
}

.jg-howdone p {
  margin: 0 0 0.85rem;
  font-size: 0.8125rem;
  color: var(--text-body);
  line-height: 1.5;
}

@media (max-width: 380px) {
  .jg-howmeta { grid-template-columns: 1fr; }
  .jg-hybridmap { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════
   Brand article layout (kk999) — editorial
   ══════════════════════════════════════════ */

.jg-artribbon {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 14px;
  padding: 0.9rem var(--nav-pad-x) 1rem;
  border-bottom: 1px solid var(--border-subtle);
  font-size: 0.6875rem;
  color: var(--text-muted);
}

.jg-artribbon strong {
  color: var(--text-heading-bright);
  font-weight: 700;
}

.jg-artribbon__score {
  margin-left: auto;
  padding: 5px 10px;
  border-radius: 6px;
  border: 1px solid var(--accent-gold-dim);
  background: var(--surface-card);
  font-size: 0.75rem;
  font-weight: 900;
  color: var(--accent-gold);
}

.jg-artlead {
  margin: 1.15rem var(--nav-pad-x) 1.25rem;
  padding: 14px 12px 14px 14px;
  border-left: 4px solid var(--accent-violet);
  background: rgba(38, 21, 69, 0.35);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-heading-bright);
  line-height: 1.55;
}

.jg-artstat {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding: 0 var(--nav-pad-x) 1.15rem;
  border-bottom: 1px solid var(--border-subtle);
}

.jg-artstat__cell {
  padding: 12px 8px;
  border-radius: 10px;
  border: 1px solid var(--border-card);
  background: var(--surface-card);
  text-align: center;
}

.jg-artstat__cell b {
  display: block;
  margin-bottom: 4px;
  font-size: 1rem;
  font-weight: 900;
  color: var(--accent-gold);
  line-height: 1;
}

.jg-artstat__cell span {
  font-size: 0.625rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.jg-artbody {
  padding: 0 var(--nav-pad-x);
  border-bottom: 1px solid var(--border-subtle);
}

.jg-artsection {
  padding: 1.15rem 0;
  border-bottom: 1px solid var(--border-subtle);
}

.jg-artsection:last-child { border-bottom: none; }

.jg-artsection h3 {
  margin: 0 0 0.55rem;
  font-size: var(--prose-size);
  font-weight: 700;
  color: var(--text-heading-bright);
}

.jg-artsection p {
  margin: 0 0 0.75rem;
  font-size: 0.8125rem;
  color: var(--text-body);
  line-height: 1.6;
}

.jg-artsection p:last-child { margin-bottom: 0; }

.jg-artpull {
  margin: 1.25rem var(--nav-pad-x);
  padding: 16px 14px;
  text-align: center;
  border-radius: 10px;
  border: 1px solid var(--accent-gold-dim);
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.1) 0%, var(--surface-card) 70%);
  font-size: 0.875rem;
  font-weight: 600;
  font-style: italic;
  color: var(--text-body);
  line-height: 1.55;
}

.jg-artpull cite {
  display: block;
  margin-top: 0.55rem;
  font-style: normal;
  font-size: 0.6875rem;
  font-weight: 600;
  color: var(--text-muted);
}

.jg-arttake {
  padding: 1rem var(--nav-pad-x) 1.2rem;
  border-bottom: 1px solid var(--border-subtle);
}

.jg-arttake h3 {
  margin: 0 0 0.75rem;
  font-size: var(--prose-size);
  font-weight: 700;
  color: var(--text-heading-bright);
}

.jg-arttake ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.jg-arttake li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px dashed var(--border-subtle);
  font-size: 0.8125rem;
  color: var(--text-body);
  line-height: 1.45;
}

.jg-arttake li:last-child { border-bottom: none; }

.jg-arttake__mark {
  flex-shrink: 0;
  font-weight: 800;
  color: var(--accent-gold);
}

.jg-artend {
  margin: 1.15rem var(--nav-pad-x) 1.25rem;
  padding: 16px 14px;
  border-radius: 12px;
  border: 1px solid var(--border-card);
  background: var(--surface-elevated);
  text-align: center;
}

.jg-artend h3 {
  margin: 0 0 0.45rem;
  font-size: var(--prose-size);
  font-weight: 700;
  color: var(--text-heading-bright);
}

.jg-artend p {
  margin: 0 0 0.85rem;
  font-size: 0.8125rem;
  color: var(--text-body);
  line-height: 1.5;
}

.jg-arttags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 0 var(--nav-pad-x) 1rem;
  border-bottom: 1px solid var(--border-subtle);
}

.jg-arttags span {
  padding: 5px 10px;
  border-radius: 999px;
  background: var(--accent-blue-soft);
  font-size: 0.625rem;
  font-weight: 600;
  color: var(--text-ui);
}

@media (max-width: 380px) {
  .jg-artstat { grid-template-columns: 1fr; }
  .jg-artribbon__score { margin-left: 0; }
}
