/* The site's own stylesheet, lifted out of the inline <style> blocks
   WordPress was serving it from. Regenerate with tools/styles.py.
   Our own rules live in base.css, which loads after this. */

/* --- from about-us --- */
/* Casinocrab — VIP casino review page. Prefix hsg- to avoid collisions with theme/Elementor styles. */

/* Google Fonts now loaded non-blocking via wp_head (see HSG Font Preload snippet) instead of @import here. */

/* reset: kills theme/Elementor global styles (link colors, focus rings, box-sizing) bleeding into this widget */
.hsg,
.hsg *,
.hsg *::before,
.hsg *::after {
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}
:where(
  .hsg a,
  .hsg a:link,
  .hsg a:visited,
  .hsg a:hover,
  .hsg a:active,
  .hsg button
) {
  color: inherit;
  text-decoration: none;
  background: none;
  border: none;
  font: inherit;
  -webkit-user-select: none;
  user-select: none;
}
.hsg button {
  appearance: none;
  -webkit-appearance: none;
}
.hsg a:focus,
.hsg button:focus {
  outline: none;
}
.hsg a:focus-visible,
.hsg button:focus-visible {
  outline: 2px solid #c03f13;
  outline-offset: 2px;
}

/* nuclear override: some browsers paint native control chrome on :hover/:focus/:active
   that survives appearance:none — force it off on the two toggle buttons users hit this on */
.hsg .hsg-faq-q:hover,
.hsg .hsg-faq-q:focus,
.hsg .hsg-faq-q:active,
.hsg .hsg-nav-cat-head:hover,
.hsg .hsg-nav-cat-head:focus,
.hsg .hsg-nav-cat-head:active,
.hsg .hsg-burger:hover,
.hsg .hsg-burger:focus,
.hsg .hsg-burger:active {
  background: transparent !important;
  background-color: transparent !important;
  box-shadow: none !important;
  outline: none !important;
}
.hsg .hsg-faq-q:focus-visible,
.hsg .hsg-nav-cat-head:focus-visible,
.hsg .hsg-burger:focus-visible {
  outline: 2px solid #c03f13 !important;
}

.hsg {
  /* break out of Elementor's boxed section width, leaving a small constant gap (not proportional to screen width) */
  margin-left: calc(50% - 50vw + 16px);
  margin-right: calc(50% - 50vw + 16px);
  background: #e2dedb;
  font-family: "Source Serif 4", serif;
  color: #1d1d1b;
  font-weight: 300;
  position: relative;
  --header-h: 80px;
}
:where(.hsg a) {
  color: #1d1d1b;
  text-decoration: underline;
  text-underline-offset: 3px;
}
:where(.hsg a:hover) {
  color: #000;
}

/* article/body text links only (.hsg-block, .hsg-faq) — scoped so it never touches
   header/footer/brand/buttons, which have their own working styles */
.hsg-block a,
.hsg-faq-a a,
.hsg-legal a {
  color: #c03f13;
  text-decoration: none;
}
.hsg-block a:hover,
.hsg-faq-a a:hover,
.hsg-legal a:hover {
  color: #9f1d12;
}
.hsg ::selection {
  background: #c03f13;
  color: #e2dedb;
}
.hsg img {
  max-width: 100%;
  display: block;
}

/* header */
.hsg-header {
  position: sticky;
  top: 0;
  z-index: 60;
  height: var(--header-h);
  background: #1d1d1b;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 17px 28px;
  border-bottom: 1px solid #000;
}
.hsg .hsg-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Bodoni Moda", serif;
  font-size: 24px;
  color: #e2dedb;
  letter-spacing: -0.02em;
}
.hsg .hsg-brand:hover {
  color: #c03f13;
}
.hsg-brand-icon {
  width: 28px;
  height: 28px;
  display: block;
}
.hsg-burger {
  background: none;
  border: none;
  cursor: pointer;
  padding: 16px 11px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.hsg-burger span {
  width: 26px;
  height: 2px;
  background: #e2dedb;
  display: block;
}

/* drawer */
.hsg-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 50;
  display: none;
}
.hsg-drawer {
  position: fixed;
  left: 0;
  top: 0;
  bottom: 0;
  width: 340px;
  max-width: 85vw;
  background: #cdc6be;
  z-index: 51;
  padding: 28px;
  overflow-y: auto;
  box-shadow: rgba(29, 29, 27, 0.2) -4px 4px 6px 0;
  transform: translateX(-100%);
  transition: transform 0.2s ease;
}
.hsg.is-menu-open .hsg-overlay {
  display: block;
}
.hsg.is-menu-open .hsg-drawer {
  transform: translateX(0);
}
.hsg-drawer-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 29px;
}
.hsg-drawer-title {
  font-family: "Bodoni Moda", serif;
  font-size: 23px;
  letter-spacing: -0.02em;
}
.hsg-drawer-close {
  background: none;
  border: none;
  font-size: 24px;
  color: #1d1d1b;
  cursor: pointer;
  line-height: 1;
  min-width: 48px;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.hsg-nav-cat {
  border-bottom: 1px solid #1d1d1b;
}
.hsg-nav-cat-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  cursor: pointer;
  background: none;
  border: none;
  width: 100%;
  font-family: "Bodoni Moda", serif;
  font-size: 20px;
  letter-spacing: -0.02em;
  color: #1d1d1b;
}
.hsg-nav-cat-head:hover {
  color: #c03f13;
}
.hsg-nav-cat-chevron {
  font-size: 18px;
}
.hsg-nav-cat-items {
  display: none;
  flex-direction: column;
  gap: 10px;
  padding: 0 0 17px;
}
.hsg-nav-cat.is-open .hsg-nav-cat-items {
  display: flex;
}
.hsg-nav-cat-items a {
  font-size: 16px;
  color: #4a453f;
  text-decoration: none;
}
.hsg-nav-cat-items a:hover {
  color: #c03f13;
}

/* desktop: burger becomes a horizontal bar, categories become hover/click dropdowns */
@media (min-width: 961px) {
  .hsg-burger {
    display: none;
  }
  .hsg-overlay {
    display: none !important;
  }
  .hsg-drawer-head {
    display: none;
  }
  .hsg-drawer {
    position: static;
    transform: none;
    width: auto;
    max-width: none;
    background: transparent;
    box-shadow: none;
    padding: 0;
    overflow: visible;
    display: flex;
    align-items: center;
    gap: 32px;
  }
  .hsg-nav-cat {
    border-bottom: none;
    position: relative;
  }
  .hsg-nav-cat-head {
    width: auto;
    padding: 0;
    gap: 6px;
    color: #e2dedb;
    font-size: 16px;
  }
  .hsg-nav-cat-chevron {
    font-size: 12px;
  }
  .hsg-nav-cat-items {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    margin-top: 0;
    background: #cdc6be;
    border-radius: 8px;
    padding: 24px 20px 16px;
    min-width: 220px;
    box-shadow: rgba(29, 29, 27, 0.2) -4px 4px 6px 0;
    z-index: 60;
  }
  .hsg-nav-cat:hover .hsg-nav-cat-items,
  .hsg-nav-cat:focus-within .hsg-nav-cat-items,
  .hsg-nav-cat.is-open .hsg-nav-cat-items {
    display: flex;
  }
}

/* hero */
.hsg-hero {
  background: #1d1d1b;
  padding: 65px 28px 58px;
}
.hsg-eyebrow {
  font-size: 14px;
  letter-spacing: 0.1em;
  color: #c03f13;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.hsg-hero h1 {
  font-family: "Bodoni Moda", serif;
  font-weight: 400;
  font-size: 72px;
  line-height: 0.85;
  letter-spacing: -0.03em;
  color: #e2dedb;
  margin: 0 0 22px;
  max-width: 1000px;
}
.hsg-hero-highlight {
  background: #9f1d12;
  /* vertical-only breathing room by default — horizontal padding is capped small
     so it can't nudge where the heading wraps on narrow screens */
  padding: 0.05em 0.15em;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}
.hsg-hero-break {
  display: none; /* forced break only kicks in on mobile, see media query below */
}
.hsg-hero p {
  font-size: 19px;
  line-height: 1.4;
  color: #cdc6be;
  max-width: 640px;
  margin: 0;
}

/* intro */
.hsg-intro {
  padding: 43px 28px;
  max-width: 760px;
}
.hsg-byline {
  font-size: 16px;
  color: #4a453f;
  margin-bottom: 10px;
}
.hsg-intro p {
  font-size: 17px;
  line-height: 1.27;
  margin: 0;
}

/* simple single-column reading container for legal/info pages (Privacy, Terms, Responsible Gambling) */
.hsg-legal {
  padding: 43px 28px 65px;
  max-width: 800px;
}

/* layout */
.hsg-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 43px;
  padding: 0 28px 65px;
  align-items: start;
}
.hsg h2 {
  font-family: "Bodoni Moda", serif;
  font-weight: 400;
  letter-spacing: -0.02em;
  margin: 0 0 22px;
}

/* casino cards */
.hsg-casinos {
  margin-bottom: 43px;
}
.hsg-casinos > h2 {
  font-size: 43px;
  line-height: 0.91;
}
.hsg-card {
  position: relative;
  background: #cdc6be;
  border-radius: 11.52px;
  padding: 17px;
  display: flex;
  gap: 17px;
  margin-bottom: 16px;
  box-shadow: rgba(29, 29, 27, 0.2) -4px 4px 6px 0;
}
.hsg-card-rank {
  position: absolute;
  top: -9px;
  left: -9px;
  background: #1d1d1b;
  color: #e2dedb;
  font-family: "Bodoni Moda", serif;
  font-size: 14px;
  /* min-width, not width — "#10" is wider than a two-character badge and would spill out of a fixed box */
  min-width: 28px;
  padding: 0 5px;
  height: 28px;
  border-radius: 2.88px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hsg-card-logo-col {
  flex: 0 0 88px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
}
.hsg-card-logo {
  width: 88px;
  height: 44px;
  flex-shrink: 0;
  border-radius: 7px;
  background: #1d1d1b;
  color: #e2dedb;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Bodoni Moda", serif;
  font-size: 20px;
  letter-spacing: -0.01em;
  /* tight padding: logo art is trimmed to its own bbox, so the box itself is the only
     breathing room — 6px vertical left square-ish marks (CrazyTower, BigClash) too small */
  padding: 3px 5px;
  box-sizing: border-box;
}
.hsg-card-logo img,
.hsg-promo-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.hsg-card-name {
  font-family: "Bodoni Moda", serif;
  font-size: 17px;
  letter-spacing: -0.01em;
}
.hsg-card-rating {
  font-size: 14px;
  color: #c03f13;
}
.hsg-card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: center;
}
.hsg-card-bonus {
  font-size: 16px;
}
.hsg-badges {
  display: flex;
  gap: 7px;
  flex-wrap: wrap;
}
.hsg-badge {
  background: #c03f13;
  color: #e2dedb;
  font-size: 11px;
  padding: 4px 9px;
  border-radius: 2.88px;
}
.hsg .hsg-cta {
  align-self: flex-start;
  background: #1d1d1b;
  color: #fff;
  font-size: 15px;
  padding: 14px 22px;
  border-radius: 2.88px;
  text-decoration: none;
  transition: background 0.15s ease;
}
.hsg .hsg-cta:hover {
  background: #c03f13;
  color: #fff;
}

/* compact square cards, 3-up grid (used for "quick picks" style lists) */
.hsg-quickpicks {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 17px;
  margin-bottom: 16px;
}
.hsg-card--square {
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  margin-bottom: 0;
}
.hsg-card--square .hsg-card-logo-col {
  flex: none;
}
.hsg-card--square .hsg-card-body {
  align-items: center;
  text-align: center;
}
.hsg-card--square .hsg-badges {
  justify-content: center;
}
.hsg-card--square .hsg-cta {
  align-self: center;
}

/* editorial photo */
.hsg-photo {
  margin: 0 0 43px;
}
.hsg-photo img {
  width: 100%;
  border-radius: 6px;
  filter: grayscale(0.2) contrast(1.05) saturate(0.85);
}
.hsg-photo figcaption {
  font-size: 13px;
  font-style: italic;
  color: #5b5b58;
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid #c9c2ba;
}

/* per-page comic strip: sidebar-only on desktop (rendered via [hsg_toc comic=...]),
   shown inline mid-article on mobile instead since it doesn't fit the collapsed TOC popup */
.hsg-comic-mobile { display: none; }
@media (max-width: 900px) {
  .hsg-comic-mobile {
    display: block;
    max-width: 280px;
    margin: 0 auto 43px;
    padding-top: 20px;
    border-top: 2px solid #cdc6be;
  }
  .hsg-comic-mobile-label {
    font-family: "Source Serif 4", serif;
    font-size: 12px;
    letter-spacing: 0.1em;
    color: #c03f13;
    text-transform: uppercase;
    margin-bottom: 12px;
    text-align: center;
  }
  .hsg-comic-mobile img {
    width: 100%;
    border-radius: 6px;
    filter: grayscale(0.2) contrast(1.05) saturate(0.85);
    display: block;
  }
}

/* text blocks */
.hsg-block {
  margin-bottom: 43px;
}
.hsg-block h2 {
  font-size: 32px;
  line-height: 1;
  letter-spacing: -0.01em;
  margin: 0 0 17px;
}
.hsg-block p {
  font-size: 16px;
  line-height: 1.27;
  margin: 0 0 14px;
}
.hsg-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 14px;
}
.hsg-highlight {
  background: #cdc6be;
  border-radius: 11.52px;
  padding: 17px;
}
.hsg-highlight-title {
  font-family: "Bodoni Moda", serif;
  font-size: 20px;
  margin-bottom: 7px;
  letter-spacing: -0.01em;
}
.hsg-highlight-body {
  font-size: 15px;
  line-height: 1.27;
  color: #4a453f;
}

.hsg-compare-wrap {
  overflow-x: auto;
  border-radius: 11.52px;
  margin-top: 14px;
}
.hsg-compare {
  width: 100%;
  border-collapse: collapse;
  background: #cdc6be;
}
.hsg-compare th {
  background: #1d1d1b;
  color: #e2dedb;
  font-family: "Bodoni Moda", serif;
  font-weight: 400;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-align: left;
  padding: 13px 16px;
  white-space: nowrap;
}
.hsg-compare td {
  padding: 13px 16px;
  font-size: 15px;
  border-top: 1px solid #b8b0a6;
}
.hsg-compare tr:nth-child(even) td {
  background: #d6d0c8;
}
.hsg-compare-rank {
  font-family: "Bodoni Moda", serif;
  color: #c03f13;
  font-weight: 700;
  white-space: nowrap;
}
.hsg-compare-name {
  font-family: "Bodoni Moda", serif;
  color: #1d1d1b;
  white-space: nowrap;
}

/* faq */
.hsg-faq > h2 {
  font-size: 37px;
  line-height: 0.91;
}
.hsg-faq-item {
  border-bottom: 1px solid #1d1d1b;
}
.hsg-faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 17px 0;
  cursor: pointer;
  gap: 14px;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
}
.hsg-faq-q-text {
  font-family: "Bodoni Moda", serif;
  font-size: 22px;
  letter-spacing: -0.01em;
  color: #1d1d1b;
}
.hsg-faq-chevron {
  font-size: 20px;
  flex-shrink: 0;
}
.hsg-faq-a {
  font-size: 16px;
  line-height: 1.27;
  color: #4a453f;
  padding: 0 0 22px;
  margin: 0;
  display: none;
}
.hsg-faq-item.is-open .hsg-faq-a {
  display: block;
}
.hsg-faq-q:hover .hsg-faq-q-text,
.hsg-faq-q:hover .hsg-faq-chevron {
  color: #c03f13;
}

/* sidebar */
.hsg-sidebar {
  position: sticky;
  top: calc(var(--header-h) + 4px);
}
.hsg-promo {
  background: #cdc6be;
  border-radius: 11.52px;
  padding: 24px;
  text-align: center;
  box-shadow: rgba(29, 29, 27, 0.2) -5px 3px 6px 0;
}
.hsg-promo-eyebrow {
  font-size: 12px;
  letter-spacing: 0.1em;
  color: #c03f13;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.hsg-promo-logo {
  width: 96px;
  height: 96px;
  border-radius: 7px;
  margin: 0 auto 14px;
  background: #1d1d1b;
  color: #e2dedb;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Bodoni Moda", serif;
  font-size: 26px;
  letter-spacing: -0.01em;
  padding: 10px;
  box-sizing: border-box;
}
.hsg-promo h3 {
  font-family: "Bodoni Moda", serif;
  font-size: 24px;
  margin: 0 0 7px;
  letter-spacing: -0.01em;
}
.hsg-promo p {
  font-size: 15px;
  color: #4a453f;
  margin: 0 0 17px;
  line-height: 1.27;
}
.hsg-promo .hsg-cta {
  display: block;
  padding: 12px 0;
}

/* footer */
.hsg-footer {
  background: #1d1d1b;
  color: #e2dedb;
  padding: 43px 28px;
}
.hsg-footer-cols {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-bottom: 29px;
}
.hsg-footer-col-title {
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #cdc6be;
  margin-bottom: 14px;
}
.hsg-footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.hsg-footer-links a {
  color: #e2dedb;
  font-size: 15px;
  text-decoration: none;
}
.hsg-footer-links a:hover {
  color: #c03f13;
}
.hsg-footer-bottom {
  border-top: 1px solid #69645f;
  padding-top: 14px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}
.hsg-footer-bottom span {
  font-size: 13px;
  color: #4a453f;
}

/* responsive */
@media (max-width: 860px) {
  .hsg {
    width: 100%;
    max-width: 100%;
  }

  .hsg-sidebar {
    position: static;
    order: -1; /* promo card first on mobile, not stranded after the FAQ where it physically sits in the DOM */
  }
  .hsg-hero {
    padding: 22px 20px 16px;
  }
  .hsg-hero h1 {
    font-size: 34px;
    /* 0.85 (desktop) packs lines tighter than the highlight's background box —
       fine for plain glyphs, but if "High-Roller Casinos" wraps onto its own
       line here, the red rectangle bleeds into the line above/below. Loosen
       just enough on mobile to give that box room. */
    line-height: 1.1;
    margin-bottom: 12px;
  }
  .hsg-hero p {
    font-size: 15px;
    line-height: 1.35;
  }
  .hsg-intro {
    padding: 12px 20px 12px;
  }
  .hsg-casinos > h2 {
    font-size: 26px;
    line-height: 1.15;
    margin-bottom: 14px;
  }
  .hsg-intro p {
    font-size: 15px;
    line-height: 1.3;
  }
  .hsg-byline {
    margin-bottom: 8px;
  }
  .hsg-hero-highlight {
    /* the actual bug: an inline span's painted height comes from the font's own
       ascent/descent metrics, not from the parent's line-height — Bodoni Moda's
       natural line box (~68px here) is taller than the 46.2px line-height above,
       so the background bled into neighboring lines regardless of how the phrase
       was split into spans. inline-block + line-height:1 makes the box's height
       exactly the font-size, which fits inside the line and can't bleed. */
    display: inline-block;
    line-height: 1;
    padding-block: 0;
  }
  .hsg-hero-break {
    display: block; /* force "High-Roller Casinos" onto its own single line, so the
      background never has to wrap — box-decoration-break rendering was unreliable */
  }
  .hsg-highlights {
    grid-template-columns: 1fr;
  }
  .hsg-footer-cols {
    grid-template-columns: 1fr 1fr;
  }

  .hsg-layout {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
    padding: 0 16px 48px;
  }

  .hsg-casinos,
  .hsg-card,
  .hsg-card-logo-col,
  .hsg-card-body {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .hsg-card {
    display: block;
    padding: 16px;
    margin-bottom: 14px;
  }

  /* Логотип слева, название и рейтинг справа */
  .hsg-card-logo-col {
    display: grid;
    grid-template-columns: 80px minmax(0, 1fr);
    grid-template-rows: auto auto;
    column-gap: 12px;
    row-gap: 4px;
    align-items: center;
    text-align: left;
    margin-bottom: 16px;
  }

  .hsg-card-logo {
    grid-column: 1;
    grid-row: 1 / 3;
    width: 80px;
    height: 80px;
    font-size: 22px;
  }

  .hsg-card-name {
    grid-column: 2;
    grid-row: 1;
    min-width: 0;
    font-size: 19px;
    line-height: 1.1;
    overflow-wrap: anywhere;
  }

  .hsg-card-rating {
    grid-column: 2;
    grid-row: 2;
    font-size: 15px;
    white-space: normal;
  }

  .hsg-card-body {
    display: block;
  }

  .hsg-card-bonus {
    width: 100%;
    max-width: 100%;
    margin-bottom: 12px;
    font-size: 17px;
    line-height: 1.25;
    white-space: normal;
    overflow-wrap: anywhere;
    word-break: normal;
  }

  .hsg-badges {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 14px;
  }

  .hsg-badge {
    max-width: 100%;
    white-space: normal;
    text-align: center;
  }

  .hsg-cta {
    display: block;
    width: 100%;
    max-width: 100%;
    padding: 14px 16px;
    text-align: center;
  }

  .hsg-card-rank {
    left: -8px;
  }

  .hsg-quickpicks {
    grid-template-columns: 1fr;
  }

  /* grid/flex items need explicit permission to shrink below their content size, or long text overflows the container */
  .hsg-layout > *,
  .hsg-casinos,
  .hsg-block,
  .hsg-faq,
  .hsg-faq-item {
    min-width: 0;
    width: 100%;
    max-width: 100%;
  }

  .hsg-faq-q {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    padding: 16px 0;
    gap: 12px;
    align-items: flex-start;
  }

  .hsg-faq-q-text {
    flex: 1 1 auto;
    width: auto;
    min-width: 0;
    max-width: 100%;
    font-size: 20px;
    line-height: 1.12;
    white-space: normal;
    overflow-wrap: anywhere;
    word-break: normal;
  }

  .hsg-faq-chevron {
    flex: 0 0 24px;
    width: 24px;
    min-width: 24px;
    text-align: center;
    line-height: 1;
  }

  .hsg-faq-a {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    overflow-wrap: anywhere;
  }
}
@media (max-width: 575px) {
  .hsg {
    margin-left: -2px;
    margin-right: 0px;
    width: calc(100% + 2px);
  }
}
@media (max-width: 860px) {
  .hsg-hero-highlight {
    display: inline-block;
    line-height: 1.08;
    padding-bottom: 0.08em;
    vertical-align: baseline;
  }
}

/* floating "back to top" button — fixed bottom-right, fades in past a scroll threshold (see casino-review.js) */
.hsg-to-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #1d1d1b;
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: none;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.2s ease, transform 0.2s ease, background 0.15s ease;
  z-index: 40;
}
.hsg-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.hsg-to-top:hover {
  background: #c03f13;
}
.hsg.is-menu-open .hsg-to-top {
  display: none;
}
@media (max-width: 575px) {
  .hsg-to-top {
    right: 14px;
    bottom: 14px;
    width: 42px;
    height: 42px;
    font-size: 18px;
  }
}



/* ============================================================
   Split-hero — shared across every crypto/game spoke page that uses it
   (bingo, blackjack, bitcoin, ethereum, dogecoin). One heading, rendered
   as two identical clip-path-masked copies (white-on-black / black-on-light)
   so it can cross the black/light boundary without manually recoloring
   individual words. Red highlight overhangs the boundary by design and
   stays white regardless of which side it lands on. Apply `.hsg-hero--split`
   on the hero section — no page-specific class or wrapper needed, every
   page that uses it renders identically (consolidated 2026-07-26; was
   previously duplicated per-page under .hsg-page-{name}-hero, ~600 lines
   of byte-identical CSS for no visual difference).
   Mobile (≤860px) is a horizontal (top/bottom) split instead of vertical —
   see the media query below for why.
   ============================================================ */

.hsg-hero--split {
  position: relative;
  background: #e2dedb;
  padding: 0;
  overflow: hidden;
  --hsg-split-x: 570px;
}

.hsg-hero--split .hsg-hero-split-bg {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: var(--hsg-split-x);
  background: #1d1d1b;
  z-index: 0;
}

.hsg-hero--split .hsg-hero-split-stage {
  position: relative;
  z-index: 1;
  padding: 65px 28px 58px;
  box-sizing: border-box;
}

.hsg-hero--split .hsg-hero-split-heading-grid {
  position: relative;
  display: grid;
  margin-left: -28px;
  margin-right: -28px;
}

.hsg-hero--split .hsg-hero-split-mask {
  grid-area: 1 / 1;
  padding-left: 28px;
  box-sizing: border-box;
}

.hsg-hero--split .hsg-hero-split-mask--white {
  clip-path: inset(0 calc(100% - var(--hsg-split-x)) 0 0);
}
.hsg-hero--split .hsg-hero-split-mask--black {
  /* 2px overlap into the white side, not a hairline-exact meet: the black copy
     paints on top (later in DOM), so the overlap just re-covers a sub-pixel
     anti-aliasing seam where the white copy was bleeding through glyph edges
     right at the boundary (e.g. the tip of a "T") — see
     [[wp_elementor_css_publish_technique]]. */
  clip-path: inset(0 0 0 calc(var(--hsg-split-x) - 2px));
}

.hsg-hero--split .hsg-hero-split-copy {
  font-family: "Bodoni Moda", serif;
  font-weight: 400;
  font-size: 72px;
  line-height: 0.85;
  letter-spacing: -0.03em;
  margin: 0 0 22px;
  max-width: 1000px;
}
.hsg-hero--split .hsg-hero-split-mask--white .hsg-hero-split-copy {
  color: #e2dedb;
}
.hsg-hero--split .hsg-hero-split-mask--black .hsg-hero-split-copy {
  color: #1d1d1b;
}

.hsg-hero--split .hsg-hero-split-mask--black .hsg-hero-highlight {
  color: #e2dedb;
}

.hsg-hero--split .hsg-hero-split-sr-h1 {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.hsg-hero--split .hsg-hero-split-desc {
  position: relative;
  z-index: 1;
  font-size: 19px;
  line-height: 1.4;
  color: #cdc6be;
  margin: 0;
  max-width: calc(var(--hsg-split-x) - 56px);
}

@media (max-width: 860px) {
  .hsg-hero--split .hsg-hero-split-bg {
    display: none;
  }
  .hsg-hero--split .hsg-hero-split-stage {
    padding-top: 0;
  }
  .hsg-hero--split .hsg-hero-split-heading-grid {
    background: #1d1d1b;
    padding-top: 65px;
    padding-bottom: 10px;
  }
  .hsg-hero--split .hsg-hero-split-mask--black {
    display: none;
  }
  .hsg-hero--split .hsg-hero-split-mask--white {
    clip-path: none;
  }
  .hsg-hero--split .hsg-hero-split-copy {
    font-size: 44px;
    line-height: 1.3;
  }
  .hsg-hero--split .hsg-hero-split-desc {
    color: #4a453f;
    max-width: 640px;
    margin-top: 26px;
  }
  .hsg-hero--split .hsg-hero-highlight {
    display: inline-block;
    vertical-align: middle;
    line-height: 1;
    padding-top: 3px;
    padding-bottom: 0;
  }
}

@media (max-width: 575px) {
  .hsg-hero--split .hsg-hero-split-heading-grid {
    padding-top: 48px;
    margin-left: -20px;
    margin-right: -20px;
  }
  .hsg-hero--split .hsg-hero-split-copy {
    font-size: 36px;
  }
  .hsg-hero--split .hsg-hero-split-stage {
    padding: 0 20px 40px;
  }
  .hsg-hero--split .hsg-hero-split-mask {
    padding-left: 20px;
  }
}

/* REVIEW chip sits in the badge row */
.hsg .hsg-badge--review {
  background: transparent;
  color: #1d1d1b;
  box-shadow: inset 0 0 0 1px #1d1d1b;
  text-decoration: none;
  line-height: 1.35;
}
.hsg .hsg-badge--review:hover {
  background: #1d1d1b;
  color: #e2dedb;
}

/* review pages have no Quick Picks block between hero and the sidebar layout,
   so the 40px breathing room that block's own margin normally provides is missing */
.hsg-hero + .hsg-layout--with-sidebar {
  margin-top: 40px;
}

/* --- from about-us --- */
.hsg-sticky-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9998;
  pointer-events: none;
}
.hsg-sticky-bar--pending { display: none; }
.hsg-sticky-bar-panel {
  pointer-events: auto;
  width: 100%;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 8px clamp(14px, 2.5vw, 32px);
  background: #1d1d1b;
  border-top: 2px solid #c03f13;
  box-shadow: 0 -6px 20px rgba(0, 0, 0, 0.35);
  font-family: "Source Serif 4", serif;
}

/* left-anchored label = the only toggle */
.hsg-sticky-bar-label {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  background: #c03f13;
  color: #f5f1ea;
  border: none;
  border-radius: 6px;
  padding: 8px 12px;
  max-width: 170px;
  font-family: inherit;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1.2;
  -webkit-tap-highlight-color: transparent;
  outline: none;
}
.hsg-sticky-bar-label:hover,
.hsg-sticky-bar-label:focus,
.hsg-sticky-bar-label:focus-visible {
  background: #9f1d12;
  color: #f5f1ea;
  outline: none;
}
.hsg-sticky-bar-label svg {
  flex: 0 0 auto;
  width: 14px;
  height: 14px;
  display: block;
  transition: transform 0.25s ease;
}

/* casino items */
.hsg-sticky-bar-items {
  flex: 1 1 auto;
  display: flex;
  gap: 12px;
  min-width: 0;
  overflow: hidden;
}
.hsg-sticky-item {
  flex: 1 1 0;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  background: #292521;
  border: 1px solid #3a3530;
  border-radius: 8px;
  padding: 6px 10px;
}
.hsg-sticky-rank {
  font-weight: 700;
  color: #c03f13;
  font-size: 13px;
  flex: 0 0 auto;
}
.hsg-sticky-logo {
  width: 88px;
  height: 44px;
  flex: 0 0 auto;
  background: #1d1d1b;
  border-radius: 7px;
  padding: 6px 8px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hsg-sticky-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.hsg-sticky-info {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  min-width: 0;
  color: #e2dedb;
}
.hsg-sticky-name {
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.hsg-sticky-bonus {
  font-size: 11px;
  color: #cdc6be;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.hsg-sticky-cta {
  flex: 0 0 auto;
  background: #c03f13;
  color: #f5f1ea;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  padding: 8px 12px;
  border-radius: 4px;
  white-space: nowrap;
  -webkit-tap-highlight-color: transparent;
  outline: none;
}
.hsg-sticky-cta:hover,
.hsg-sticky-cta:focus,
.hsg-sticky-cta:focus-visible,
.hsg-sticky-cta:active {
  background: #9f1d12;
  color: #f5f1ea;
  outline: none;
}

/* collapsed: only the label tab remains, floating near the left */
.hsg-sticky-bar.is-collapsed .hsg-sticky-bar-panel {
  width: auto;
  display: inline-flex;
  background: transparent;
  border-top-color: transparent;
  box-shadow: none;
  padding: 0;
  margin-left: clamp(12px, 3vw, 32px);
}
.hsg-sticky-bar.is-collapsed .hsg-sticky-bar-items { display: none; }
.hsg-sticky-bar.is-collapsed .hsg-sticky-bar-label {
  border-radius: 6px 6px 0 0;
  box-shadow: 0 -4px 14px rgba(0, 0, 0, 0.3);
}
.hsg-sticky-bar.is-collapsed .hsg-sticky-bar-label svg { transform: rotate(180deg); }

/* keep the round "back to top" button clear of this bar, whatever height it's at */
.hsg-to-top {
  bottom: calc(20px + var(--hsg-sticky-bar-h, 0px)) !important;
  transition: opacity 0.2s ease, transform 0.2s ease, background 0.15s ease, bottom 0.2s ease !important;
}
@media (max-width: 575px) {
  .hsg-to-top { bottom: calc(14px + var(--hsg-sticky-bar-h, 0px)) !important; }
}

/* spoke pages: keep the mobile TOC toggle/popup clear of this bar too —
   and level with .hsg-to-top (same base offset), not its own slightly-different one */
@media (max-width: 900px) {
  .hsg-toc-toggle {
    bottom: calc(20px + var(--hsg-sticky-bar-h, 0px)) !important;
    transition: background 0.15s ease, bottom 0.2s ease !important;
  }
  .hsg-toc-zone {
    bottom: calc(84px + var(--hsg-sticky-bar-h, 0px)) !important;
  }
}
@media (max-width: 575px) {
  .hsg-toc-toggle { bottom: calc(14px + var(--hsg-sticky-bar-h, 0px)) !important; }
  .hsg-toc-zone { bottom: calc(76px + var(--hsg-sticky-bar-h, 0px)) !important; }
}

/* mobile: collapsed = full-width thin strip; expanded = vertical stack of horizontal rows */
@media (max-width: 860px) {
  .hsg-sticky-bar-panel {
    flex-wrap: wrap;
    gap: 8px;
    padding: 8px 12px;
  }
  .hsg-sticky-bar:not(.is-collapsed) .hsg-sticky-bar-label {
    order: 1;
    flex: 1 1 100%;
    max-width: none;
    justify-content: space-between;
  }
  .hsg-sticky-bar-items {
    order: 2;
    flex-basis: 100%;
    flex-direction: column;
    gap: 6px;
    overflow: visible;
  }
  .hsg-sticky-item {
    display: grid;
    grid-template-columns: auto 56px 1fr auto;
    width: 100%;
    gap: 8px;
  }
  .hsg-sticky-logo { width: 56px; height: 30px; padding: 4px 5px; }
  .hsg-sticky-name { font-size: 12px; }
  .hsg-sticky-bonus { font-size: 10px; }
  .hsg-sticky-cta { padding: 7px 9px; font-size: 10px; }

  .hsg-sticky-bar.is-collapsed .hsg-sticky-bar-panel {
    width: 100%;
    display: flex;
    background: #c03f13;
    margin-left: 0;
    border-top-color: transparent;
    box-shadow: 0 -4px 14px rgba(0, 0, 0, 0.25);
  }
  .hsg-sticky-bar.is-collapsed .hsg-sticky-bar-label {
    width: 100%;
    max-width: none;
    justify-content: space-between;
    border-radius: 0;
    box-shadow: none;
    padding: 10px 16px;
  }
}

/* --- from best-bitcoin-casino-canada --- */
.hsg-layout--with-sidebar {
  display: grid;
  grid-template-columns: 260px 1fr 260px;
  gap: 40px;
  max-width: 1400px;
  margin: 0 auto;
  align-items: start;
}
.hsg-layout--with-sidebar > .hsg-layout-main,
.hsg-layout--with-sidebar > .hsg-faq {
  max-width: 800px;
  margin: 0 auto;
  width: 100%;
  min-width: 0;
  grid-column: 2;
}
.hsg-layout--with-sidebar > .hsg-layout-main { grid-row: 1; }
.hsg-layout--with-sidebar > .hsg-faq { grid-row: 2; }
.hsg-layout--with-sidebar > .hsg-recent-column {
  grid-column: 1;
  grid-row: 1 / span 2;
  min-width: 0;
}
.hsg-sidebar.hsg-recent {
  /* the review list itself is intentionally NOT sticky — only the crypto
     block below it is, matching the homepage sidebar's split behavior */
  position: static;
}
.hsg-recent-top { margin-bottom: 28px; }
.hsg-recent-eyebrow,
.hsg-crypto-eyebrow {
  font-family: "Source Serif 4", serif;
  font-size: 12px;
  letter-spacing: 0.1em;
  color: #c03f13;
  text-transform: uppercase;
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 2px solid #1d1d1b;
}
.hsg-recent-list,
.hsg-crypto-list { list-style: none; margin: 0; padding: 0; }
.hsg-recent-item,
.hsg-crypto-item { border-top: 1px solid #cdc6be; padding: 14px 0; }
.hsg-recent-item:first-child,
.hsg-crypto-item:first-child { border-top: none; padding-top: 0; }
.hsg-recent-link,
.hsg-crypto-link { display: block; text-decoration: none; color: inherit; }
.hsg-recent-title,
.hsg-crypto-title {
  font-family: "Bodoni Moda", serif;
  font-size: 18px;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: #1d1d1b;
  display: block;
  margin: 2px 0 5px;
  transition: color 0.15s ease;
}
.hsg-recent-link:hover .hsg-recent-title,
.hsg-crypto-link:hover .hsg-crypto-title { color: #c03f13; }
.hsg-recent-date,
.hsg-crypto-date {
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #8a8580;
}
/* stray empty <p> artifacts from wpautop wrapping block-level shortcode output must not become grid items (each one silently adds a phantom row + row-gap) */
.hsg-layout--with-sidebar > p {
  display: none;
}
/* mobile: sidebar list becomes a bottom-of-page horizontal carousel, not a stacked column */
@media (max-width: 900px) {
  .hsg-layout--with-sidebar {
    grid-template-columns: 1fr;
    max-width: 800px;
  }
  .hsg-layout--with-sidebar > .hsg-layout-main,
  .hsg-layout--with-sidebar > .hsg-faq,
  .hsg-layout--with-sidebar > .hsg-recent-column {
    grid-column: 1;
    grid-row: auto;
    height: auto !important;
  }
  .hsg-layout--with-sidebar > .hsg-layout-main { order: 1; }
  .hsg-layout--with-sidebar > .hsg-recent-column { order: 2; }
  .hsg-layout--with-sidebar > .hsg-faq { order: 3; }
  .hsg-recent {
    margin-top: 8px;
    margin-bottom: 8px;
    position: static;
  }
  .hsg-recent-eyebrow,
  .hsg-crypto-eyebrow { margin-bottom: 12px; }
  .hsg-recent-list,
  .hsg-crypto-list {
    display: flex;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    gap: 14px;
    padding-bottom: 8px;
  }
  .hsg-recent-item,
  .hsg-crypto-item {
    border-top: none;
    flex: 0 0 200px;
    scroll-snap-align: start;
    background: #cdc6be;
    border-radius: 10px;
    padding: 16px;
  }
  .hsg-recent-item:first-child,
  .hsg-crypto-item:first-child { padding: 16px; }
  .hsg-recent-title,
  .hsg-crypto-title { font-size: 16px; }
  /* stays in the left column as its own carousel, right under Recent Reviews —
     no longer relocated into the article body */
  .hsg-crypto-block {
    display: block;
    margin-top: 28px;
    padding-top: 20px;
    border-top: 2px solid #1d1d1b;
  }
}

/* --- from best-bitcoin-casino-canada --- */
.hsg-interac-list { list-style: none; margin: 0; padding: 0; }
.hsg-interac-item { border-top: 1px solid #cdc6be; padding: 14px 0; }
.hsg-interac-item:first-child { border-top: none; padding-top: 0; }
.hsg-interac-link { display: block; text-decoration: none; color: inherit; }
.hsg-interac-title {
  font-family: "Bodoni Moda", serif;
  font-size: 18px;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: #1d1d1b;
  display: block;
  margin: 2px 0 5px;
  transition: color 0.15s ease;
}
.hsg-interac-link:hover .hsg-interac-title { color: #c03f13; }
.hsg-interac-date {
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #8a8580;
}
.hsg-interac-eyebrow {
  font-family: "Source Serif 4", serif;
  font-size: 12px;
  letter-spacing: 0.1em;
  color: #c03f13;
  text-transform: uppercase;
  margin-top: 24px;
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 2px solid #1d1d1b;
}
.hsg-interac-fallback-zone { min-width: 0; }
@media (max-width: 900px) {
  .hsg-interac-list {
    display: flex;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    gap: 14px;
    padding-bottom: 8px;
  }
  .hsg-interac-item {
    border-top: none;
    flex: 0 0 200px;
    scroll-snap-align: start;
    background: #cdc6be;
    border-radius: 10px;
    padding: 16px;
  }
  .hsg-interac-item:first-child { padding: 16px; }
  .hsg-interac-title { font-size: 16px; }
}

/* --- from best-bitcoin-casino-canada --- */
.hsg-toc-zone {
  grid-column: 3;
  grid-row: 1 / span 2;
  min-width: 0;
}
.hsg-toc-eyebrow {
  font-family: "Source Serif 4", serif;
  font-size: 12px;
  letter-spacing: 0.1em;
  color: #c03f13;
  text-transform: uppercase;
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 2px solid #1d1d1b;
}
.hsg-toc-list { list-style: none; margin: 0; padding: 0; }
.hsg-toc-item { margin: 0; }
.hsg-toc-link {
  display: block;
  padding: 10px 0 10px 14px;
  border-left: 2px solid #cdc6be;
  font-size: 15px;
  line-height: 1.3;
  color: #4a453f;
  text-decoration: none;
  transition: color 0.15s ease, border-color 0.15s ease;
}
.hsg-toc-link:hover { color: #1d1d1b; }
.hsg-toc-link.is-active {
  color: #c03f13;
  border-left-color: #c03f13;
  font-weight: 600;
}
.hsg-toc-comic {
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 2px solid #cdc6be;
}
.hsg-toc-comic-label {
  font-family: "Source Serif 4", serif;
  font-size: 12px;
  letter-spacing: 0.1em;
  color: #c03f13;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.hsg-toc-comic img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 11.52px;
}
@media (max-width: 900px) {
  .hsg-toc-comic { display: none; }
}
.hsg-toc-toggle { display: none; }
@media (max-width: 900px) {
  .hsg-toc-zone {
    display: block;
    position: fixed;
    grid-column: auto;
    grid-row: auto;
    left: 14px;
    bottom: 78px;
    width: min(260px, calc(100vw - 28px));
    max-height: 60vh;
    overflow-y: auto;
    background: #e2dedb;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    padding: 18px;
    z-index: 41;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity 0.2s ease, transform 0.2s ease;
  }
  .hsg-toc-zone.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  .hsg-toc-zone .hsg-sidebar { position: static; }
  .hsg-toc-toggle {
    display: flex;
    position: fixed;
    left: 14px;
    bottom: 14px;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: #1d1d1b;
    color: #fff;
    font-size: 20px;
    line-height: 1;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: none;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
    z-index: 42;
    transition: background 0.15s ease;
  }
  .hsg-toc-toggle.is-open,
  .hsg-toc-toggle:hover { background: #c03f13; }
  .hsg.is-menu-open .hsg-toc-toggle { display: none; }
}
@media (max-width: 575px) {
  .hsg-toc-zone { left: 10px; bottom: 72px; }
  .hsg-toc-toggle {
    left: 10px;
    bottom: 10px;
    width: 42px;
    height: 42px;
    font-size: 18px;
  }
}
.hsg-toc-cta {
  display: block;
  width: 100%;
  box-sizing: border-box;
  text-align: center;
  margin-top: 18px;
  padding: 13px 16px;
}
/* mobile quick-play bar: hidden until the hero scrolls out from under the sticky header */
.hsg-mini-bar { display: none; }
@media (max-width: 900px) {
  .hsg-mini-bar {
    display: flex;
    align-items: center;
    gap: 10px;
    box-sizing: border-box;
    width: 100%;
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    z-index: 61;
    padding: 8px 14px;
    background: #1d1d1b;
    border-bottom: 2px solid #c03f13;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.3);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: transform 0.25s ease, opacity 0.25s ease, visibility 0.25s ease;
  }
  .hsg-mini-bar.is-visible {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  .hsg-mini-bar .hsg-mini-bar-logo {
    flex: 0 0 auto;
    width: auto;
    height: 32px;
    max-width: 76px;
    object-fit: contain;
    display: block;
  }
  .hsg-mini-bar-bonus {
    flex: 1 1 auto;
    min-width: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.2;
    color: #e2dedb;
  }
  .hsg-mini-bar-cta {
    flex: 0 0 auto;
    background: #c03f13;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    padding: 9px 16px;
    border-radius: 2.88px;
    text-decoration: none;
    white-space: nowrap;
    -webkit-tap-highlight-color: transparent;
    outline: none;
  }
  .hsg-mini-bar-cta:hover,
  .hsg-mini-bar-cta:focus,
  .hsg-mini-bar-cta:focus-visible,
  .hsg-mini-bar-cta:active {
    background: #9f1d12;
    color: #fff;
    outline: none;
  }
}

/* --- from home --- */
.hsg-latest-featured {
  display: block;
  text-decoration: none;
  color: inherit;
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 2px solid #1d1d1b;
}
.hsg-latest-featured-img {
  margin-bottom: 14px;
  border-radius: 6px;
  overflow: hidden;
}
.hsg-latest-featured-img img {
  width: 100%;
  display: block;
  filter: grayscale(0.2) contrast(1.05) saturate(0.85);
}
.hsg-latest-featured-eyebrow {
  font-family: "Source Serif 4", serif;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #c03f13;
  margin-bottom: 8px;
}
.hsg-latest-featured-title {
  font-family: "Bodoni Moda", serif;
  font-weight: 400;
  font-size: 22px;
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin: 0 0 8px;
  color: #1d1d1b;
  transition: color 0.15s ease;
}
.hsg-latest-featured:hover .hsg-latest-featured-title { color: #c03f13; }
.hsg-latest-featured-excerpt {
  font-size: 14px;
  line-height: 1.45;
  color: #4a453f;
  margin: 0;
}
.hsg-latest-list-eyebrow {
  font-family: "Source Serif 4", serif;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #c03f13;
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 2px solid #1d1d1b;
}
.hsg-latest-list-items {
  list-style: none;
  margin: 0;
  padding: 0;
}
.hsg-latest-crypto {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 2px solid #1d1d1b;
}
.hsg-home-comic {
  margin: 24px 0;
  padding-top: 20px;
  border-top: 2px solid #1d1d1b;
}
.hsg-home-comic-label {
  font-family: "Source Serif 4", serif;
  font-size: 12px;
  letter-spacing: 0.1em;
  color: #c03f13;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.hsg-home-comic img { width: 100%; display: block; border-radius: 6px; }
.hsg-latest-list-item { border-top: 1px solid #cdc6be; padding: 14px 0; }
.hsg-latest-list-item:first-child { border-top: none; padding-top: 0; }
.hsg-latest-list-item a { display: block; text-decoration: none; color: inherit; }
.hsg-latest-list-title {
  display: block;
  font-family: "Bodoni Moda", serif;
  font-weight: 400;
  font-size: 17px;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: #1d1d1b;
  margin-bottom: 5px;
  transition: color 0.15s ease;
}
.hsg-latest-list-item a:hover .hsg-latest-list-title { color: #c03f13; }
.hsg-latest-list-excerpt {
  display: block;
  font-size: 13px;
  line-height: 1.4;
  color: #7a746c;
}
/* two separate physical placements, one shown at a time by breakpoint — NOT the same
   element reordered via CSS `order`, since the mobile slot needs to sit right after the
   casino list in actual DOM position (order/flex reordering can't reach inside a sibling) */
.hsg-home-latest-column { }
@media (max-width: 900px) {
  .hsg-home-latest-column { display: none; }
}
.hsg-home-latest-mobile { display: none; }
@media (max-width: 900px) {
  .hsg-home-latest-mobile {
    display: flex;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    gap: 14px;
    padding: 0 0 8px;
    margin: 28px 0;
  }
  .hsg-home-latest-mobile .hsg-latest-featured {
    position: relative;
    flex: 0 0 220px;
    height: 200px;
    scroll-snap-align: start;
    margin-bottom: 0;
    padding: 0;
    border-bottom: none;
    border-radius: 10px;
    overflow: hidden;
  }
  .hsg-home-latest-mobile .hsg-latest-featured-img {
    position: absolute;
    inset: 0;
    margin-bottom: 0;
    border-radius: 0;
  }
  .hsg-home-latest-mobile .hsg-latest-featured-img img {
    height: 100%;
    object-fit: cover;
  }
  .hsg-home-latest-mobile .hsg-latest-featured-eyebrow { display: none; }
  .hsg-home-latest-mobile .hsg-latest-featured-excerpt { display: none; }
  .hsg-home-latest-mobile .hsg-latest-featured-title {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    margin: 0;
    padding: 30px 14px 14px;
    font-size: 16px;
    color: #e2dedb;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0));
  }
  .hsg-home-latest-mobile .hsg-latest-list { display: contents; }
  .hsg-home-latest-mobile .hsg-latest-list-eyebrow { display: none; }
  .hsg-home-latest-mobile .hsg-latest-list-items {
    display: contents;
  }
  .hsg-home-latest-mobile .hsg-latest-list-item {
    flex: 0 0 200px;
    scroll-snap-align: start;
    border-top: none;
    background: #cdc6be;
    border-radius: 10px;
    padding: 14px;
  }
}

