/* ================================================================
   HIGHROLLER CHILD – main.css
   Sections:
   1.  CSS Variables
   2.  Reset & Base
   3.  Typography
   4.  Layout Helpers
   5.  Header & Navigation
   6.  Mobile Drawer
   7.  Buttons & CTAs
   8.  Hero Section
   9.  Trust Badges
   10. Casino List & Rows
   11. Star Ratings
   12. Badges
   13. Shortcode Override (.comptable)
   14. Casino Review Template
   15. Pros / Cons
   16. Info Table
   17. CTA Blocks
   18. Mobile Sticky CTA
   19. SEO Content Blocks
   20. FAQ Section
   21. News Grid & Post Cards
   22. Article Template
   23. Archive Template
   24. Sidebar
   25. Footer
   26. Utility
   27. Responsive
================================================================ */

/* ----------------------------------------------------------------
   1. CSS Variables
---------------------------------------------------------------- */
:root {
  /* === PALETTE: Royal Violet + Champagne Gold + Cream ===
     Variable names kept (--c-navy, --c-green) for structural compat,
     but values are remapped to the violet palette. */

  --c-bg:           #faf5e6;   /* warm cream */
  --c-bg-alt:       #f0e6cb;   /* deeper cream for alt sections */
  --c-card:         #ffffff;   /* clean white cards */

  --c-navy:         #5b21b6;   /* deep royal violet (primary brand) */
  --c-navy-h:       #6d28d9;   /* lighter violet for hover */
  --c-navy-light:   #7c3aed;   /* light violet for accents */

  --c-gold:         #d4af37;   /* rich champagne gold */
  --c-gold-h:       #b8941c;   /* darker gold for hover */
  --c-gold-light:   #f0d878;   /* light gold tint */

  --c-green:        #d4af37;   /* CTA = GOLD (was green) */
  --c-green-h:      #b8941c;   /* CTA hover = darker gold */

  --c-text:         #2a1a3e;   /* dark purple-tinted text */
  --c-text-2:       #4a3666;
  --c-muted:        #6a5a85;   /* violet-tinted muted */
  --c-light:        #9e8db3;
  --c-border:       #e3d9c4;   /* cream border */
  --c-border-light: #f0e8d3;

  --c-pro:          #d1fae5;
  --c-con:          #fee2e2;
  --c-pro-text:     #065f46;
  --c-con-text:     #991b1b;

  /* Typography */
  --font:      'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --fs-xs:     0.75rem;
  --fs-sm:     0.875rem;
  --fs-base:   1rem;
  --fs-md:     1.0625rem;
  --fs-lg:     1.125rem;
  --fs-xl:     1.25rem;
  --fs-2xl:    1.5rem;
  --fs-3xl:    1.875rem;
  --fs-4xl:    2.25rem;
  --fs-5xl:    3rem;

  /* Spacing */
  --sp-1:  0.25rem;  --sp-2: 0.5rem;   --sp-3: 0.75rem;
  --sp-4:  1rem;     --sp-5: 1.25rem;  --sp-6: 1.5rem;
  --sp-8:  2rem;     --sp-10: 2.5rem;  --sp-12: 3rem;
  --sp-16: 4rem;     --sp-20: 5rem;

  /* Layout */
  --container:  1280px;
  --narrow:     840px;
  --pad:        1.5rem;

  /* Borders */
  --r-sm:   6px;
  --r-md:   10px;
  --r-lg:   14px;
  --r-xl:   20px;
  --r-full: 9999px;

  /* Shadows */
  --sh-sm:  0 1px 4px rgba(0,0,0,.06);
  --sh-md:  0 4px 16px rgba(0,0,0,.08);
  --sh-lg:  0 8px 32px rgba(0,0,0,.10);
  --sh-gold: 0 4px 20px rgba(212,175,55,.35);
  --sh-cta:  0 6px 24px rgba(212,175,55,.45);

  /* Transitions */
  --t-fast: 140ms ease;
  --t-base: 200ms ease;
  --t-slow: 300ms ease;

  /* Header */
  --header-h:    130px;
  --header-bg:   var(--c-navy);
}

/* ----------------------------------------------------------------
   2. Reset & Base
---------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  font-size: var(--fs-base);
  line-height: 1.7;
  color: var(--c-text);
  background: var(--c-bg);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
a:hover { text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: 0; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }

/* Skip link */
.hrc-skip {
  position: absolute;
  left: -9999px;
  z-index: 9999;
  padding: .5rem 1rem;
  background: var(--c-navy);
  color: #fff;
  font-size: var(--fs-sm);
  border-radius: 0 0 var(--r-sm) var(--r-sm);
}
.hrc-skip:focus { left: 1rem; }

/* Kill parent theme styles for layout */
#outerwrap { background: var(--c-bg); }
.wrap      { max-width: none !important; width: 100% !important; margin: 0 !important; padding: 0 !important; float: none !important; }
.clearboth { display: none; }

/* ----------------------------------------------------------------
   3. Typography
---------------------------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font);
  font-weight: 700;
  line-height: 1.25;
  color: var(--c-navy);
}
h1 { font-size: clamp(1.75rem, 4vw, var(--fs-4xl)); }
h2 { font-size: clamp(1.4rem, 3vw, var(--fs-3xl)); }
h3 { font-size: clamp(1.1rem, 2vw, var(--fs-xl)); }
h4 { font-size: var(--fs-lg); }

p { margin-bottom: var(--sp-4); }
p:last-child { margin-bottom: 0; }

.hrc-article__content h2,
.hrc-review-content h2 {
  margin-top: var(--sp-10);
  margin-bottom: var(--sp-4);
  padding-top: var(--sp-4);
  border-top: 2px solid var(--c-border);
}
.hrc-article__content h3,
.hrc-review-content h3 {
  margin-top: var(--sp-8);
  margin-bottom: var(--sp-3);
}
.hrc-article__content ul,
.hrc-article__content ol,
.hrc-review-content ul,
.hrc-review-content ol {
  margin: var(--sp-4) 0;
  padding-left: var(--sp-6);
}
.hrc-article__content li,
.hrc-review-content li { margin-bottom: var(--sp-2); }
.hrc-article__content a,
.hrc-review-content a { color: var(--c-navy); text-decoration: underline; text-decoration-color: var(--c-gold); }
.hrc-article__content a:hover,
.hrc-review-content a:hover { color: var(--c-gold-h); }

/* ----------------------------------------------------------------
   4. Layout Helpers
---------------------------------------------------------------- */
.hrc-container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--pad);
}
.hrc-section-inner {
  max-width: var(--container);
  margin-inline: auto;
  padding: var(--sp-16) var(--pad);
}
.hrc-section-inner--narrow {
  max-width: var(--narrow);
}
.hrc-section-header {
  text-align: center;
  margin-bottom: var(--sp-10);
}
.hrc-section-header--row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  margin-bottom: var(--sp-8);
}
.hrc-section-title {
  font-size: clamp(1.4rem, 3vw, var(--fs-3xl));
  color: var(--c-navy);
  margin-bottom: var(--sp-2);
}
.hrc-section-title--sm   { font-size: clamp(1.2rem, 2.5vw, var(--fs-2xl)); }
.hrc-section-title--center { text-align: center; }
.hrc-section-sub { color: var(--c-muted); font-size: var(--fs-sm); }

/* ----------------------------------------------------------------
   5. Header & Navigation
---------------------------------------------------------------- */

/* Kill parent header */
header.main-header,
nav.navbar,
#mobile-menu-btn,
#mobile-menu,
.navbar { display: none !important; }

/* New header — non-sticky so the tall logo doesn't eat the viewport when scrolling */
.hrc-header {
  position: relative;
  z-index: 200;
  background: var(--c-navy);
  box-shadow: 0 2px 12px rgba(0,0,0,.18);
  height: var(--header-h);
  display: flex;
  align-items: center;
}
.hrc-header__inner {
  display: flex;
  align-items: center;
  gap: var(--sp-6);
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--pad);
}
.hrc-header__logo { flex-shrink: 0; }
.hrc-header__logo img { height: 115px; width: auto; max-height: 100%; display: block; }
.hrc-header__text-logo {
  color: #fff;
  font-size: var(--fs-xl);
  font-weight: 800;
  letter-spacing: -.02em;
}

/* Desktop nav */
.hrc-header__nav { margin-left: auto; }
.hrc-nav { display: flex; align-items: center; gap: 0; }
.hrc-nav li { position: relative; }
.hrc-nav > li > a {
  display: block;
  padding: .5rem var(--sp-4);
  color: rgba(255,255,255,.9);
  font-size: var(--fs-sm);
  font-weight: 500;
  letter-spacing: .01em;
  border-radius: var(--r-sm);
  transition: background var(--t-fast), color var(--t-fast);
}
.hrc-nav > li > a:hover {
  background: rgba(255,255,255,.08);
  color: var(--c-gold-light);
}
.hrc-nav > li.current-menu-item > a,
.hrc-nav > li.current-menu-ancestor > a {
  background: rgba(212,175,55,.18);
  color: var(--c-gold);
  box-shadow: inset 0 0 0 1px rgba(212,175,55,.4);
}
/* Dropdown */
.hrc-nav li ul {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  min-width: 200px;
  background: #fff;
  border-radius: var(--r-md);
  box-shadow: var(--sh-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity var(--t-base), transform var(--t-base), visibility var(--t-base);
  z-index: 300;
}
.hrc-nav li:hover ul { opacity: 1; visibility: visible; transform: translateY(0); }
.hrc-nav li ul li a {
  display: block;
  padding: .625rem var(--sp-4);
  color: var(--c-text);
  font-size: var(--fs-sm);
  transition: background var(--t-fast), color var(--t-fast);
}
.hrc-nav li ul li a:hover { background: var(--c-bg); color: var(--c-navy); }

/* Hamburger */
.hrc-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 8px;
  border-radius: var(--r-sm);
  transition: background var(--t-fast);
  margin-left: auto;
}
.hrc-hamburger:hover { background: rgba(255,255,255,.1); }
.hrc-hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform var(--t-base), opacity var(--t-base);
}
.hrc-hamburger.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hrc-hamburger.is-active span:nth-child(2) { opacity: 0; }
.hrc-hamburger.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ----------------------------------------------------------------
   6. Mobile Drawer
---------------------------------------------------------------- */
.hrc-drawer {
  position: fixed;
  top: 0; right: 0;
  width: 300px;
  max-width: 90vw;
  height: 100%;
  background: var(--c-navy);
  z-index: 400;
  transform: translateX(100%);
  transition: transform var(--t-slow);
  overflow-y: auto;
}
.hrc-drawer.is-open { transform: translateX(0); }
.hrc-drawer__inner { padding: var(--sp-6); }
.hrc-drawer__logo { margin-bottom: var(--sp-8); }
.hrc-drawer__logo img { height: 36px; }
.hrc-drawer__close {
  display: block;
  margin-left: auto;
  margin-bottom: var(--sp-6);
  color: rgba(255,255,255,.7);
  font-size: 1.5rem;
  line-height: 1;
  padding: var(--sp-2);
}
.hrc-drawer__close:hover { color: #fff; }
.hrc-mobile-nav li { border-bottom: 1px solid rgba(255,255,255,.08); }
.hrc-mobile-nav li a {
  display: block;
  padding: var(--sp-4);
  color: rgba(255,255,255,.88);
  font-size: var(--fs-base);
  font-weight: 500;
  transition: color var(--t-fast);
}
.hrc-mobile-nav li a:hover { color: var(--c-gold); }
.hrc-mobile-nav li ul { padding-left: var(--sp-4); }
.hrc-mobile-nav li ul li a { font-size: var(--fs-sm); padding: var(--sp-3) var(--sp-4); }

.hrc-drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.55);
  z-index: 399;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--t-slow), visibility var(--t-slow);
}
.hrc-drawer-overlay.is-visible { opacity: 1; visibility: visible; }

/* ----------------------------------------------------------------
   7. Buttons & CTAs
---------------------------------------------------------------- */
.hrc-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .35rem;
  padding: .625rem 1.25rem;
  border-radius: var(--r-full);
  font-family: var(--font);
  font-size: var(--fs-sm);
  font-weight: 600;
  line-height: 1.2;
  white-space: nowrap;
  cursor: pointer;
  transition: background var(--t-fast), box-shadow var(--t-fast), transform var(--t-fast), color var(--t-fast);
  text-decoration: none !important;
}
.hrc-btn:hover { transform: translateY(-1px); }
.hrc-btn:active { transform: translateY(0); }

/* Primary CTA — gold with deep violet text (flashy luxe vibe) */
.hrc-btn--cta {
  background: linear-gradient(135deg, var(--c-gold) 0%, var(--c-gold-light) 100%);
  color: var(--c-navy) !important;
  font-weight: 700 !important;
  box-shadow: var(--sh-cta);
}
.hrc-btn--cta:hover {
  background: linear-gradient(135deg, var(--c-gold-h) 0%, var(--c-gold) 100%);
  box-shadow: 0 8px 32px rgba(212,175,55,.55);
  color: var(--c-navy) !important;
}

/* Navy */
.hrc-btn--navy {
  background: var(--c-navy);
  color: #fff !important;
}
.hrc-btn--navy:hover { background: var(--c-navy-h); color: #fff !important; }

/* Gold */
.hrc-btn--gold {
  background: var(--c-gold);
  color: var(--c-navy) !important;
  box-shadow: var(--sh-gold);
}
.hrc-btn--gold:hover { background: var(--c-gold-h); }

/* Ghost */
.hrc-btn--ghost {
  background: transparent;
  color: var(--c-navy) !important;
  box-shadow: inset 0 0 0 2px var(--c-navy);
}
.hrc-btn--ghost:hover { background: var(--c-navy); color: #fff !important; }

/* Outline light (for dark bg) */
.hrc-btn--outline-light {
  background: transparent;
  color: rgba(255,255,255,.9) !important;
  box-shadow: inset 0 0 0 2px rgba(255,255,255,.4);
}
.hrc-btn--outline-light:hover { background: rgba(255,255,255,.12); color: #fff !important; }

/* Sizes */
.hrc-btn--xs  { padding: .375rem .875rem; font-size: var(--fs-xs); }
.hrc-btn--sm  { padding: .5rem 1rem;      font-size: var(--fs-xs); }
.hrc-btn--lg  { padding: .875rem 1.75rem; font-size: var(--fs-base); font-weight: 700; }
.hrc-btn--wide { width: 100%; }

/* Text link button */
.hrc-btn-link {
  display: inline-flex;
  align-items: center;
  color: var(--c-navy);
  font-size: var(--fs-sm);
  font-weight: 500;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color var(--t-fast), border-color var(--t-fast);
}
.hrc-btn-link:hover { color: var(--c-gold-h); border-bottom-color: var(--c-gold-h); }

/* T&C link */
.hrc-tc-link {
  display: block;
  font-size: 10px;
  color: var(--c-muted);
  text-align: center;
  margin-top: var(--sp-1);
  line-height: 1.4;
}
.hrc-tc-link a { color: var(--c-muted); text-decoration: underline; }

/* ----------------------------------------------------------------
   8. Hero Section
---------------------------------------------------------------- */
.hrc-home-main { background: var(--c-bg); }
.hrc-home-main .wrap { padding: 0 !important; margin: 0 !important; }

.hrc-hero {
  background: linear-gradient(135deg, #3a0f7a 0%, var(--c-navy) 55%, #2a0f5e 100%);
  position: relative;
  overflow: hidden;
}
.hrc-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.hrc-hero__inner {
  position: relative;
  z-index: 1;
  max-width: var(--container);
  margin-inline: auto;
  padding: var(--sp-20) var(--pad) var(--sp-16);
}
.hrc-hero__content { max-width: 680px; }
.hrc-hero__title {
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  letter-spacing: -.02em;
  margin-bottom: var(--sp-5);
}
.hrc-hero__highlight { color: var(--c-gold); }
.hrc-hero__lead {
  font-size: clamp(var(--fs-base), 2vw, var(--fs-lg));
  color: rgba(255,255,255,.82);
  margin-bottom: var(--sp-8);
  line-height: 1.6;
}
.hrc-hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3);
  align-items: center;
  margin-bottom: var(--sp-10);
}

/* ----------------------------------------------------------------
   9. Trust Badges
---------------------------------------------------------------- */
.hrc-trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3);
}
.hrc-trust-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--r-full);
  padding: .375rem .875rem;
  backdrop-filter: blur(8px);
}
.hrc-trust-badge__icon {
  color: var(--c-gold);
  font-style: normal;
  font-weight: 700;
}
.hrc-trust-badge__label {
  color: rgba(255,255,255,.9);
  font-size: var(--fs-sm);
  font-weight: 500;
}

/* ----------------------------------------------------------------
   10. Casino List & Rows
---------------------------------------------------------------- */
.hrc-top-casinos { background: var(--c-bg); }
.hrc-top-casinos .hrc-section-inner { padding-top: var(--sp-16); padding-bottom: var(--sp-16); }

.hrc-casino-list { display: flex; flex-direction: column; gap: var(--sp-3); }

/* Table header (desktop) */
.hrc-casino-list__header {
  display: grid;
  grid-template-columns: 60px 160px 1fr 180px 200px;
  gap: var(--sp-4);
  padding: var(--sp-2) var(--sp-5);
  color: var(--c-muted);
  font-size: var(--fs-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
}

/* Casino row */
.hrc-casino-row {
  display: grid;
  grid-template-columns: 60px 160px 1fr 180px 200px;
  gap: var(--sp-4);
  align-items: center;
  background: var(--c-card);
  border-radius: var(--r-lg);
  padding: var(--sp-5);
  box-shadow: var(--sh-sm);
  border: 1px solid var(--c-border-light);
  transition: box-shadow var(--t-base), transform var(--t-base);
  position: relative;
}
.hrc-casino-row:hover {
  box-shadow: var(--sh-md);
  transform: translateY(-2px);
}
.hrc-casino-row:first-of-type {
  border: 2px solid var(--c-gold);
  box-shadow: 0 4px 24px rgba(212,175,55,.15);
}

/* Rank */
.hrc-casino-row__rank { display: flex; align-items: center; justify-content: center; }
.hrc-rank-badge {
  width: 36px;
  height: 36px;
  border-radius: var(--r-full);
  background: var(--c-bg-alt);
  color: var(--c-navy);
  font-size: var(--fs-sm);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hrc-casino-row:first-of-type .hrc-rank-badge {
  background: var(--c-gold);
  color: var(--c-navy);
}
.hrc-casino-row:nth-child(2) .hrc-rank-badge { background: #e2e8f0; }
.hrc-casino-row:nth-child(3) .hrc-rank-badge { background: #fde8cc; }

/* Logo */
.hrc-casino-row__logo-wrap { display: flex; flex-direction: column; align-items: center; gap: var(--sp-2); }
.hrc-casino-row__logo-link { display: block; }
.hrc-casino-row__logo-img  { max-height: 60px; width: auto; max-width: 140px; object-fit: contain; }
.hrc-casino-row__logo-placeholder {
  display: flex; align-items: center; justify-content: center;
  width: 120px; height: 50px;
  background: var(--c-bg-alt);
  border-radius: var(--r-sm);
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--c-navy);
}

/* Info */
.hrc-casino-row__name { font-size: var(--fs-md); margin-bottom: var(--sp-2); }
.hrc-casino-row__name a { color: var(--c-navy); }
.hrc-casino-row__name a:hover { color: var(--c-gold-h); }
.hrc-casino-row__features { list-style: none; padding: 0; margin: 0 0 var(--sp-2); }
.hrc-casino-row__features li {
  font-size: var(--fs-xs);
  color: var(--c-text-2);
  padding: 1px 0;
}
.hrc-casino-row__features li::before {
  content: '✓ ';
  color: var(--c-green);
  font-weight: 700;
}
.hrc-casino-row__rating { display: flex; align-items: center; gap: var(--sp-2); }

/* Bonus */
.hrc-casino-row__bonus { text-align: center; }
.hrc-casino-row__bonus-main {
  display: block;
  font-size: var(--fs-md);
  font-weight: 700;
  color: var(--c-navy);
  margin-bottom: var(--sp-1);
  line-height: 1.3;
}
.hrc-casino-row__bonus-sub { display: block; font-size: var(--fs-xs); color: var(--c-muted); }
.hrc-casino-row__bonus-pct { display: block; font-size: var(--fs-xs); color: var(--c-green); font-weight: 600; }

/* Actions */
.hrc-casino-row__actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-2);
}

/* ----------------------------------------------------------------
   11. Star Ratings
---------------------------------------------------------------- */
.hrc-stars {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 16px;
  flex-shrink: 0;
}
.hrc-stars__bg,
.hrc-stars__fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  white-space: nowrap;
  overflow: hidden;
  font-size: 16px;
  line-height: 1;
}
.hrc-stars__bg::before {
  content: '★★★★★';
  color: #ddd;
  letter-spacing: 1px;
}
.hrc-stars__fill::before {
  content: '★★★★★';
  color: var(--c-gold);
  letter-spacing: 1px;
}
.hrc-stars__bg  { width: 100%; }
.hrc-stars__label {
  font-size: var(--fs-xs);
  font-weight: 600;
  color: var(--c-text-2);
  margin-left: var(--sp-1);
}

/* Override parent .rate/.ratetotal */
.rate, .ratecen {
  display: none !important; /* replaced by hrc-stars in our templates */
}
/* Keep visible inside .comptable (shortcode – can't override HTML) */
.comptable .rate,
.comptable .ratecen {
  display: inline-block !important;
  position: relative;
  width: 80px;
  height: 16px;
}
.comptable .ratetotal {
  position: absolute;
  top: 0; left: 0; height: 100%;
  overflow: hidden;
}
.comptable .ratecen::before {
  content: '★★★★★';
  position: absolute;
  color: #ddd;
  font-size: 14px;
  letter-spacing: 1px;
}
.comptable .ratetotal::before {
  content: '★★★★★';
  position: absolute;
  color: var(--c-gold);
  font-size: 14px;
  letter-spacing: 1px;
}

/* ----------------------------------------------------------------
   12. Badges
---------------------------------------------------------------- */
.hrc-badge {
  display: inline-block;
  padding: 2px 8px;
  border-radius: var(--r-full);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  line-height: 1.5;
  white-space: nowrap;
}
.hrc-badge--featured { background: var(--c-gold);    color: var(--c-navy); }
.hrc-badge--hot      { background: #ff6b35;           color: #fff; }
.hrc-badge--new      { background: var(--c-green);    color: #fff; }
.hrc-badge--fast     { background: #2563eb;           color: #fff; }
.hrc-badge--nodep    { background: #7c3aed;           color: #fff; }

/* ----------------------------------------------------------------
   13. Shortcode Override (.comptable)
---------------------------------------------------------------- */
.comptable {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 var(--sp-3);
  table-layout: auto;
}
.comptable thead tr.topcomp,
.comptable .topcomp {
  background: transparent;
}
.comptable .topcomp th {
  padding: var(--sp-2) var(--sp-4);
  font-size: var(--fs-xs);
  font-weight: 600;
  color: var(--c-muted);
  text-transform: uppercase;
  letter-spacing: .06em;
  border: none;
  background: none;
}
.comptable tr:not(.topcomp) {
  background: var(--c-card);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-sm);
  transition: box-shadow var(--t-base), transform var(--t-base);
}
.comptable tr:not(.topcomp):hover {
  box-shadow: var(--sh-md);
  transform: translateY(-2px);
}
.comptable tr:not(.topcomp) td {
  padding: var(--sp-4) var(--sp-4);
  border: none;
  vertical-align: middle;
}
.comptable tr:not(.topcomp) td:first-child { border-radius: var(--r-lg) 0 0 var(--r-lg); }
.comptable tr:not(.topcomp) td:last-child  { border-radius: 0 var(--r-lg) var(--r-lg) 0; }

.comptable .rankcol { text-align: center; width: 60px; }
.comptable .rankcir {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px; height: 32px;
  border-radius: var(--r-full);
  background: var(--c-bg-alt);
  color: var(--c-navy);
  font-size: var(--fs-sm);
  font-weight: 700;
}
.comptable tr:first-of-type .rankcir { background: var(--c-gold); }
.comptable .casinocol img.logocomp  { max-height: 56px; max-width: 130px; object-fit: contain; margin: auto; }
.comptable .hilite {
  display: block;
  font-weight: 700;
  font-size: var(--fs-base);
  color: var(--c-navy);
}
.comptable .revlink {
  display: inline-block;
  margin-top: var(--sp-1);
  font-size: var(--fs-xs);
  color: var(--c-navy);
  text-decoration: underline;
  text-decoration-color: var(--c-gold);
}
.comptable .revlink:hover { color: var(--c-gold-h); }
.comptable .revlink.tc {
  display: block;
  font-size: 10px;
  color: var(--c-muted);
  text-decoration: none;
}
.comptable .visitcol { text-align: right; width: 180px; }
a.visbutton,
.visbutton,
.comptable .visbutton {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  padding: .625rem 1.25rem !important;
  background: linear-gradient(135deg, var(--c-gold) 0%, var(--c-gold-light) 100%) !important;
  color: var(--c-navy) !important;
  border-radius: var(--r-full) !important;
  font-size: var(--fs-sm) !important;
  font-weight: 700 !important;
  text-decoration: none !important;
  box-shadow: var(--sh-cta);
  transition: background var(--t-fast), box-shadow var(--t-fast), transform var(--t-fast);
  white-space: nowrap;
  border: none !important;
}
a.visbutton:hover, .visbutton:hover {
  background: linear-gradient(135deg, var(--c-gold-h) 0%, var(--c-gold) 100%) !important;
  box-shadow: 0 8px 32px rgba(212,175,55,.55);
  transform: translateY(-1px);
  color: var(--c-navy) !important;
}
a.visbutton.med { padding: .75rem 1.5rem !important; }

/* ----------------------------------------------------------------
   14. Casino Review Template
---------------------------------------------------------------- */
.hrc-review-main { background: var(--c-bg); }
.hrc-review-main .wrap { padding: 0 !important; }
.hrc-review-main .hrc-breadcrumbs { max-width: var(--container); margin: 0 auto; padding: var(--sp-5) var(--pad) 0; }

.hrc-review-hero {
  background: linear-gradient(135deg, var(--c-navy) 0%, #3a0f7a 100%);
  padding: var(--sp-12) 0 var(--sp-10);
  margin-bottom: var(--sp-10);
}
.hrc-review-hero__inner {
  max-width: var(--container);
  margin-inline: auto;
  padding: 0 var(--pad);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--sp-8);
  align-items: start;
}
.hrc-review-hero__logo {
  background: var(--c-card);
  border-radius: var(--r-lg);
  padding: var(--sp-4);
  box-shadow: var(--sh-md);
  display: flex; align-items: center; justify-content: center;
  min-width: 160px;
}
.hrc-review-hero__logo-img { max-height: 90px; max-width: 150px; object-fit: contain; }
.hrc-review-hero__title   { font-size: clamp(1.5rem, 4vw, 2.5rem); color: #fff; margin-bottom: var(--sp-3); }

/* E-E-A-T trust block: reviewed by + last audited date */
.hrc-review-hero__trust {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--sp-2) var(--sp-3);
  padding: var(--sp-2) var(--sp-3);
  margin-bottom: var(--sp-4);
  background: rgba(212,175,55,.12);
  border: 1px solid rgba(212,175,55,.25);
  border-radius: var(--r-full);
  font-size: var(--fs-xs);
  color: rgba(255,255,255,.88);
}
.hrc-review-hero__trust-by,
.hrc-review-hero__trust-date {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.hrc-review-hero__trust-by svg,
.hrc-review-hero__trust-date svg {
  color: var(--c-gold);
  flex-shrink: 0;
}
.hrc-review-hero__trust strong {
  color: var(--c-gold-light);
  font-weight: 700;
}
.hrc-review-hero__trust-sep {
  color: rgba(255,255,255,.35);
}
.hrc-review-hero__trust-date {
  font-variant-numeric: tabular-nums;
}

.hrc-review-hero__rating  { display: flex; align-items: center; gap: var(--sp-3); margin-bottom: var(--sp-4); }
.hrc-review-hero__rating-label { color: rgba(255,255,255,.7); font-size: var(--fs-sm); }
.hrc-review-hero__bonus        { margin-bottom: var(--sp-5); }
.hrc-review-hero__bonus-label  { display: block; font-size: var(--fs-xs); color: rgba(255,255,255,.6); text-transform: uppercase; letter-spacing: .06em; margin-bottom: var(--sp-1); }
.hrc-review-hero__bonus-value  { display: block; font-size: var(--fs-2xl); font-weight: 800; color: var(--c-gold); }
.hrc-review-hero__bonus-sub    { display: block; font-size: var(--fs-sm); color: rgba(255,255,255,.7); }
.hrc-review-hero__cta          { display: flex; flex-direction: column; align-items: flex-start; gap: var(--sp-2); }

/* Quickinfo */
.hrc-review-quickinfo {
  max-width: var(--container);
  margin: 0 auto var(--sp-10);
  padding: 0 var(--pad);
}
.hrc-review-quickinfo__inner {
  background: var(--c-card);
  border-radius: var(--r-lg);
  padding: var(--sp-8);
  box-shadow: var(--sh-sm);
}
.hrc-review-quickinfo__title { font-size: var(--fs-xl); margin-bottom: var(--sp-5); }

/* ----------------------------------------------------------------
   15. Pros / Cons
---------------------------------------------------------------- */
.hrc-pros-cons {
  max-width: var(--container);
  margin: 0 auto var(--sp-10);
  padding: 0 var(--pad);
}
.hrc-pros-cons__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-5);
}
.hrc-pros-cons__block {
  border-radius: var(--r-lg);
  padding: var(--sp-6);
}
.hrc-pros-cons__block--pros { background: var(--c-pro); }
.hrc-pros-cons__block--cons { background: var(--c-con); }
.hrc-pros-cons__heading {
  display: flex; align-items: center; gap: var(--sp-2);
  font-size: var(--fs-base);
  margin-bottom: var(--sp-4);
}
.hrc-pros-cons__block--pros .hrc-pros-cons__heading { color: var(--c-pro-text); }
.hrc-pros-cons__block--cons .hrc-pros-cons__heading { color: var(--c-con-text); }
.hrc-pros-cons__icon { font-size: 1.1rem; }
.hrc-pros-cons__block ul { padding: 0; }
.hrc-pros-cons__block li { font-size: var(--fs-sm); margin-bottom: var(--sp-2); padding-left: var(--sp-4); position: relative; }
.hrc-pros-cons__block--pros li::before { content: '✓'; position: absolute; left: 0; color: var(--c-pro-text); font-weight: 700; }
.hrc-pros-cons__block--cons li::before { content: '✗'; position: absolute; left: 0; color: var(--c-con-text); font-weight: 700; }

/* ----------------------------------------------------------------
   16. Info Table
---------------------------------------------------------------- */
.hrc-info-table {
  width: 100%;
  border-collapse: collapse;
}
.hrc-info-table th,
.hrc-info-table td {
  padding: var(--sp-3) var(--sp-5);
  font-size: var(--fs-sm);
  border-bottom: 1px solid var(--c-border-light);
  text-align: left;
}
.hrc-info-table tr:last-child th,
.hrc-info-table tr:last-child td { border-bottom: 0; }
.hrc-info-table th {
  width: 40%;
  font-weight: 600;
  color: var(--c-muted);
  background: var(--c-bg);
}
.hrc-info-table tr:hover td { background: var(--c-bg); }

/* Old reviewsummary override */
table.reviewsummary {
  width: 100%;
  border-collapse: collapse;
  background: var(--c-card);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh-sm);
}
table.reviewsummary th,
table.reviewsummary td {
  padding: var(--sp-3) var(--sp-5);
  font-size: var(--fs-sm);
  border-bottom: 1px solid var(--c-border-light);
  text-align: left;
}
table.reviewsummary th { font-weight: 600; color: var(--c-muted); background: var(--c-bg); width: 40%; }
table.reviewsummary tr:last-child td, table.reviewsummary tr:last-child th { border-bottom: 0; }

/* ----------------------------------------------------------------
   17. CTA Blocks (mid-page repeat CTAs)
---------------------------------------------------------------- */
.hrc-cta-block {
  max-width: var(--container);
  margin: 0 auto var(--sp-8);
  padding: 0 var(--pad);
}
.hrc-cta-block__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  background: linear-gradient(135deg, var(--c-navy) 0%, var(--c-navy-light) 100%);
  border-radius: var(--r-xl);
  padding: var(--sp-6) var(--sp-8);
  box-shadow: var(--sh-md);
}
.hrc-cta-block--alt .hrc-cta-block__inner {
  background: linear-gradient(135deg, var(--c-navy) 0%, #3a0f7a 100%);
  flex-direction: column;
  text-align: center;
  padding: var(--sp-10) var(--sp-8);
}
.hrc-cta-block__text   { color: #fff; font-size: var(--fs-base); }
.hrc-cta-block__headline {
  font-size: var(--fs-2xl);
  font-weight: 800;
  color: #fff;
  margin-bottom: var(--sp-4);
}

/* ----------------------------------------------------------------
   18. Mobile Sticky CTA
---------------------------------------------------------------- */
.hrc-sticky-cta {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 300;
  background: var(--c-navy);
  padding: var(--sp-3) var(--pad);
  box-shadow: 0 -4px 20px rgba(0,0,0,.2);
  transform: translateY(100%);
  transition: transform var(--t-slow);
}
.hrc-sticky-cta.is-visible { transform: translateY(0); }
.hrc-sticky-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-3);
  max-width: var(--container);
  margin-inline: auto;
}
.hrc-sticky-cta__name  { color: #fff; font-weight: 600; font-size: var(--fs-sm); }
.hrc-sticky-cta__bonus { color: rgba(255,255,255,.7); font-size: var(--fs-xs); }

/* ----------------------------------------------------------------
   19. SEO Content Blocks
---------------------------------------------------------------- */
.hrc-seo-blocks { background: var(--c-bg-alt); }
.hrc-seo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-5);
}
.hrc-seo-card {
  background: var(--c-card);
  border-radius: var(--r-lg);
  padding: var(--sp-6);
  box-shadow: var(--sh-sm);
  border: 1px solid var(--c-border-light);
  transition: box-shadow var(--t-base), transform var(--t-base);
}
.hrc-seo-card:hover { box-shadow: var(--sh-md); transform: translateY(-2px); }
.hrc-seo-card__icon { font-size: 2rem; margin-bottom: var(--sp-3); display: block; }
.hrc-seo-card h3    { font-size: var(--fs-base); margin-bottom: var(--sp-3); }
.hrc-seo-card p     { font-size: var(--fs-sm); color: var(--c-text-2); line-height: 1.6; margin-bottom: var(--sp-4); }
.hrc-seo-card__link { font-size: var(--fs-sm); font-weight: 600; color: var(--c-navy); }
.hrc-seo-card__link:hover { color: var(--c-gold-h); }

/* ----------------------------------------------------------------
   20. FAQ Section
---------------------------------------------------------------- */
.hrc-faq-section { background: var(--c-bg); }
.hrc-faq-list    { display: flex; flex-direction: column; gap: var(--sp-2); }

.hrc-faq-item {
  background: var(--c-card);
  border-radius: var(--r-md);
  border: 1px solid var(--c-border);
  overflow: hidden;
}
.hrc-faq-item__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: var(--sp-5) var(--sp-6);
  font-size: var(--fs-base);
  font-weight: 600;
  color: var(--c-navy);
  text-align: left;
  transition: background var(--t-fast);
  gap: var(--sp-4);
}
.hrc-faq-item__question:hover { background: var(--c-bg); }
.hrc-faq-item__icon {
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--c-gold);
  flex-shrink: 0;
  transition: transform var(--t-base);
}
.hrc-faq-item[data-open] .hrc-faq-item__icon,
.hrc-faq-item.is-open .hrc-faq-item__icon { transform: rotate(45deg); }
.hrc-faq-item__answer {
  padding: 0 var(--sp-6) var(--sp-5);
  font-size: var(--fs-sm);
  color: var(--c-text-2);
  line-height: 1.7;
  border-top: 1px solid var(--c-border-light);
}
.hrc-faq-item__answer p { margin: 0; }
.hrc-faq-item__answer[hidden] { display: none; }

/* ----------------------------------------------------------------
   21. News Grid & Post Cards
---------------------------------------------------------------- */
.hrc-news-section { background: var(--c-bg-alt); }
.hrc-news-grid,
.hrc-archive-grid,
.hrc-related__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-5);
}

.hrc-post-card {
  background: var(--c-card);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh-sm);
  border: 1px solid var(--c-border-light);
  display: flex;
  flex-direction: column;
  transition: box-shadow var(--t-base), transform var(--t-base);
}
.hrc-post-card:hover { box-shadow: var(--sh-md); transform: translateY(-2px); }
.hrc-post-card__thumb { display: block; overflow: hidden; aspect-ratio: 16/9; }
.hrc-post-card__thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--t-slow); }
.hrc-post-card:hover .hrc-post-card__thumb img { transform: scale(1.04); }
.hrc-post-card__body   { padding: var(--sp-5); flex: 1; display: flex; flex-direction: column; }
.hrc-post-card__cat    { display: inline-block; font-size: var(--fs-xs); font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--c-gold-h); margin-bottom: var(--sp-2); }
.hrc-post-card__title  { font-size: var(--fs-base); font-weight: 700; line-height: 1.4; margin-bottom: var(--sp-2); }
.hrc-post-card__title a { color: var(--c-navy); }
.hrc-post-card__title a:hover { color: var(--c-gold-h); }
.hrc-post-card__meta   { display: flex; align-items: center; gap: var(--sp-3); margin-bottom: var(--sp-3); }
.hrc-post-card__date   { font-size: var(--fs-xs); color: var(--c-muted); }
.hrc-post-card__excerpt { font-size: var(--fs-sm); color: var(--c-text-2); line-height: 1.6; margin-bottom: var(--sp-4); flex: 1; }
.hrc-post-card__read-more { font-size: var(--fs-sm); font-weight: 600; color: var(--c-navy); margin-top: auto; }
.hrc-post-card__read-more:hover { color: var(--c-gold-h); }

/* ----------------------------------------------------------------
   22. Article Template
---------------------------------------------------------------- */
.hrc-article-main .wrap { padding: var(--sp-8) var(--pad) !important; max-width: var(--container) !important; margin-inline: auto !important; }

.hrc-article-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: var(--sp-10);
  align-items: start;
}

.hrc-article__header   { margin-bottom: var(--sp-6); }
.hrc-article__cat      { display: inline-block; font-size: var(--fs-xs); font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--c-gold-h); margin-bottom: var(--sp-3); }
.hrc-article__title    { font-size: clamp(1.5rem, 4vw, 2.25rem); margin-bottom: var(--sp-4); }
.hrc-article__meta     { display: flex; flex-wrap: wrap; align-items: center; gap: var(--sp-4); }
.hrc-article__author,
.hrc-article__date,
.hrc-article__updated  { display: inline-flex; align-items: center; gap: var(--sp-1); font-size: var(--fs-sm); color: var(--c-muted); }
.hrc-article__updated  { color: var(--c-gold-h); font-style: italic; }
.hrc-article__featured-img { border-radius: var(--r-lg); overflow: hidden; margin-bottom: var(--sp-8); }
.hrc-article__featured-img figcaption { font-size: var(--fs-xs); color: var(--c-muted); padding: var(--sp-2) var(--sp-3); text-align: center; }
.hrc-article__content  { font-size: var(--fs-md); line-height: 1.8; }
.hrc-article__footer   { margin-top: var(--sp-8); padding-top: var(--sp-6); border-top: 1px solid var(--c-border); }
.hrc-article__tags     { display: flex; flex-wrap: wrap; gap: var(--sp-2); }
.hrc-tag {
  display: inline-block;
  padding: .25rem .75rem;
  background: var(--c-bg-alt);
  border-radius: var(--r-full);
  font-size: var(--fs-xs);
  color: var(--c-navy);
  transition: background var(--t-fast), color var(--t-fast);
}
.hrc-tag:hover { background: var(--c-navy); color: #fff; }

.hrc-related  { margin-top: var(--sp-12); }
.hrc-related__title { font-size: var(--fs-xl); margin-bottom: var(--sp-6); }

/* ----------------------------------------------------------------
   23. Archive Template
---------------------------------------------------------------- */
.hrc-archive-main .wrap { padding: var(--sp-8) var(--pad) !important; max-width: var(--container) !important; margin-inline: auto !important; }
.hrc-archive-layout   { display: grid; grid-template-columns: 1fr 320px; gap: var(--sp-10); align-items: start; }
.hrc-archive-header   { margin-bottom: var(--sp-8); }
.hrc-archive-header__title { font-size: clamp(1.5rem, 4vw, 2.25rem); margin-bottom: var(--sp-3); }
.hrc-archive-header__desc  { font-size: var(--fs-md); color: var(--c-text-2); }

.hrc-pagination {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2);
  justify-content: center;
  margin-top: var(--sp-10);
}
.hrc-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 var(--sp-3);
  border-radius: var(--r-md);
  font-size: var(--fs-sm);
  font-weight: 500;
  color: var(--c-navy);
  background: var(--c-card);
  border: 1px solid var(--c-border);
  transition: background var(--t-fast), color var(--t-fast);
}
.hrc-pagination .page-numbers:hover    { background: var(--c-navy); color: #fff; border-color: var(--c-navy); }
.hrc-pagination .page-numbers.current  { background: var(--c-navy); color: #fff; border-color: var(--c-navy); }
.hrc-pagination .page-numbers.prev,
.hrc-pagination .page-numbers.next     { font-size: var(--fs-sm); min-width: auto; padding: 0 var(--sp-4); }

.hrc-no-results { text-align: center; padding: var(--sp-16) 0; color: var(--c-muted); }

/* ----------------------------------------------------------------
   24. Sidebar
---------------------------------------------------------------- */
.hrc-sidebar-area { position: sticky; top: calc(var(--header-h) + var(--sp-4)); }

.hrc-sidebar { display: flex; flex-direction: column; gap: var(--sp-5); }

.hrc-sidebar-widget {
  background: var(--c-card);
  border-radius: var(--r-lg);
  padding: var(--sp-5);
  box-shadow: var(--sh-sm);
  border: 1px solid var(--c-border-light);
}
.hrc-sidebar-widget__header {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  margin-bottom: var(--sp-4);
  padding-bottom: var(--sp-3);
  border-bottom: 2px solid var(--c-border);
}
.hrc-sidebar-widget__header h3 { font-size: var(--fs-base); margin: 0; }
.hrc-sidebar-widget__icon { font-size: 1rem; }

/* Casino of the month */
.hrc-casino-month { border: 2px solid var(--c-gold); }
.hrc-casino-month .hrc-sidebar-widget__header { border-bottom-color: var(--c-gold); }
.hrc-casino-month__inner  { display: flex; flex-direction: column; align-items: center; gap: var(--sp-3); text-align: center; }
.hrc-casino-month__logo   { max-height: 56px; width: auto; }
.hrc-casino-month__logo-link { display: block; }
.hrc-casino-month__name   { font-size: var(--fs-base); font-weight: 700; }
.hrc-casino-month__name a { color: var(--c-navy); }
.hrc-casino-month__bonus  { display: block; font-size: var(--fs-sm); font-weight: 700; color: var(--c-green); }
.hrc-casino-month__review { font-size: var(--fs-xs); margin-top: var(--sp-1); }

/* Top 5 list */
.hrc-top5-list { display: flex; flex-direction: column; gap: var(--sp-3); }
.hrc-top5-item {
  display: grid;
  grid-template-columns: 24px 40px 1fr auto;
  gap: var(--sp-2);
  align-items: center;
}
.hrc-top5-item__rank  { font-size: var(--fs-xs); font-weight: 700; color: var(--c-muted); text-align: center; }
.hrc-top5-item__logo  { width: 40px; height: 28px; display: flex; align-items: center; }
.hrc-top5-item__logo img { max-height: 28px; object-fit: contain; }
.hrc-top5-item__logo-fallback {
  width: 40px; height: 28px;
  background: var(--c-bg-alt);
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: var(--fs-xs); font-weight: 700; color: var(--c-navy);
}
.hrc-top5-item__name  { display: block; font-size: var(--fs-sm); font-weight: 600; color: var(--c-navy); }
.hrc-top5-item__name:hover { color: var(--c-gold-h); }
.hrc-top5-item__bonus { display: block; font-size: 10px; color: var(--c-muted); }

/* Recent news list */
.hrc-news-list { display: flex; flex-direction: column; gap: var(--sp-4); }
.hrc-news-list__item   { display: flex; gap: var(--sp-3); align-items: flex-start; }
.hrc-news-list__thumb  { flex-shrink: 0; width: 56px; height: 56px; border-radius: var(--r-sm); overflow: hidden; }
.hrc-news-list__thumb img { width: 100%; height: 100%; object-fit: cover; }
.hrc-news-list__content { flex: 1; }
.hrc-news-list__title  { display: block; font-size: var(--fs-sm); font-weight: 600; color: var(--c-navy); line-height: 1.4; margin-bottom: var(--sp-1); }
.hrc-news-list__title:hover { color: var(--c-gold-h); }
.hrc-news-list__date   { font-size: 10px; color: var(--c-muted); }

/* Sidebar CTA */
.hrc-sidebar-cta {
  background: linear-gradient(135deg, var(--c-navy) 0%, var(--c-navy-light) 100%);
  border: none;
}
.hrc-sidebar-cta__headline { font-size: var(--fs-base); font-weight: 700; color: #fff; margin-bottom: var(--sp-2); }
.hrc-sidebar-cta__body     { font-size: var(--fs-sm); color: rgba(255,255,255,.75); margin-bottom: var(--sp-4); }

/* ===== Sidebar WP widgets (parent theme + WP defaults) ===== */
.hrc-sidebar-area .widget,
.hrc-sidebar-wp-widgets .widget {
  background: var(--c-card);
  border-radius: var(--r-lg);
  padding: var(--sp-5);
  margin-bottom: var(--sp-4);
  box-shadow: var(--sh-sm);
  border: 1px solid var(--c-border-light);
}
/* ONLY the main widget title gets the gold underline (direct children) */
.hrc-sidebar-area .widget > h2,
.hrc-sidebar-area .widget > h3,
.hrc-sidebar-area .widget > h4,
.hrc-sidebar-area .widget > .widget-title,
.hrc-sidebar-area .widget > .widgettitle,
.hrc-sidebar-wp-widgets .widgettitle,
.widget-title {
  font-size: var(--fs-base);
  font-weight: 700;
  color: var(--c-navy);
  margin: 0 0 var(--sp-4);
  padding-bottom: var(--sp-3);
  border-bottom: 2px solid var(--c-gold);
  letter-spacing: 0;
  text-transform: none;
}

/* Per-post titles INSIDE the recent posts / cat posts widget — no underline */
.hrc-sidebar-area .widget h3:not(.widgettitle):not(.widget-title),
.hrc-sidebar-area .widget h4:not(.widgettitle):not(.widget-title),
.hrc-sidebar-area .widget h5,
.hrc-sidebar-area .widget h6 {
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--c-navy);
  border: 0 !important;
  padding: 0 !important;
  margin: 0 0 var(--sp-2);
  line-height: 1.3;
}
.hrc-sidebar-area .widget h3:not(.widgettitle) a,
.hrc-sidebar-area .widget h4:not(.widgettitle) a {
  color: var(--c-navy);
}
.hrc-sidebar-area .widget h3:not(.widgettitle) a:hover,
.hrc-sidebar-area .widget h4:not(.widgettitle) a:hover {
  color: var(--c-gold-h);
}

/* Each post item in the Posts by Category widget — give it a real card-like
   separator + tighter spacing. Parent theme outputs flat HTML without a wrapper,
   so we use h4 as the item start anchor via a top-border. */
.hrc-sidebar-area .widget h4:not(.widgettitle):not(.widget-title) {
  margin-top: var(--sp-4);
  padding-top: var(--sp-4) !important;
  border-top: 1px solid var(--c-border-light) !important;
}
.hrc-sidebar-area .widget h4:not(.widgettitle):not(.widget-title):first-of-type {
  margin-top: 0;
  padding-top: 0 !important;
  border-top: 0 !important;
}

/* Excerpt paragraphs inside widgets — compact, max 3 lines */
.hrc-sidebar-area .widget p {
  font-size: var(--fs-sm);
  color: var(--c-text-2);
  line-height: 1.5;
  margin: 0 0 var(--sp-3);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.hrc-sidebar-area .widget p:last-child { margin-bottom: 0; }

/* Images inside widget items */
.hrc-sidebar-area .widget img {
  max-width: 100%;
  height: auto;
  border-radius: var(--r-md);
  margin-bottom: var(--sp-2);
}
/* Don't clamp text widget bodies — they're meant to be readable */
.hrc-sidebar-area .widget_text p,
.hrc-sidebar-area .widget_custom_html p,
.hrc-sidebar-area .textwidget p {
  display: block;
  -webkit-line-clamp: unset;
  overflow: visible;
  margin-bottom: var(--sp-3);
}

/* Search widget */
.hrc-sidebar-area .widget_search form,
.hrc-sidebar-area .searchform,
.hrc-sidebar-area form[role="search"] {
  display: flex;
  gap: var(--sp-2);
  margin: 0;
}
.hrc-sidebar-area input[type="search"],
.hrc-sidebar-area .widget_search input[type="text"] {
  flex: 1;
  min-width: 0;
  padding: .5rem .75rem;
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  font-size: var(--fs-sm);
  background: var(--c-bg);
  color: var(--c-text);
  outline: none;
}
.hrc-sidebar-area input[type="search"]:focus,
.hrc-sidebar-area .widget_search input[type="text"]:focus {
  border-color: var(--c-navy);
  box-shadow: 0 0 0 3px rgba(91,33,182,.12);
}
.hrc-sidebar-area input[type="submit"],
.hrc-sidebar-area button[type="submit"],
.hrc-sidebar-area .widget_search input[type="submit"] {
  padding: .5rem 1rem;
  background: linear-gradient(135deg, var(--c-navy) 0%, var(--c-navy-light) 100%);
  color: #fff !important;
  border: 0;
  border-radius: var(--r-md);
  font-size: var(--fs-sm);
  font-weight: 600;
  cursor: pointer;
  transition: opacity var(--t-fast);
}
.hrc-sidebar-area input[type="submit"]:hover,
.hrc-sidebar-area button[type="submit"]:hover { opacity: .92; }

/* Top_Site_Widget (parent: outputs a table) */
.hrc-sidebar-area table {
  width: 100%;
  border-collapse: collapse;
  font-size: var(--fs-xs);
  table-layout: fixed;
}
.hrc-sidebar-area table th {
  text-align: left;
  font-weight: 700;
  color: var(--c-muted);
  text-transform: uppercase;
  letter-spacing: .06em;
  font-size: 10px;
  padding: var(--sp-2) 4px;
  border-bottom: 1px solid var(--c-border);
}
.hrc-sidebar-area table td {
  padding: var(--sp-3) 4px;
  border-bottom: 1px solid var(--c-border-light);
  vertical-align: middle;
  text-align: center;
  word-break: break-word;
}
.hrc-sidebar-area table tr:last-child td { border-bottom: 0; }
.hrc-sidebar-area table td:first-child { width: 80px; text-align: center; }
.hrc-sidebar-area table td:last-child  { width: 80px; text-align: center; }

.hrc-sidebar-area table img {
  max-width: 70px;
  max-height: 44px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: inline-block;
  border-radius: 4px;
}
.hrc-sidebar-area table a.visbutton,
.hrc-sidebar-area table .visbutton {
  padding: .3rem .7rem !important;
  font-size: 10px !important;
  font-weight: 700 !important;
  white-space: nowrap;
  letter-spacing: .02em;
}
.hrc-sidebar-area table .revlink,
.hrc-sidebar-area table a.revlink {
  display: block;
  font-size: 10px;
  color: var(--c-navy);
  margin-top: 4px;
  text-decoration: underline;
  text-decoration-color: var(--c-gold);
  text-underline-offset: 2px;
}
.hrc-sidebar-area table .revlink:hover { color: var(--c-gold-h); }

/* === HRC Latest News Widget (Actus Casino with thumbnails) === */
.hrc-news-widget {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
}
.hrc-news-widget__item {
  display: flex !important;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0 !important;
  margin: 0 !important;
  border-bottom: 1px solid var(--c-border-light) !important;
  border-top: 0 !important;
}
.hrc-news-widget__item:first-child { padding-top: 0 !important; }
.hrc-news-widget__item:last-child  { padding-bottom: 0 !important; border-bottom: 0 !important; }

.hrc-news-widget__thumb {
  flex-shrink: 0;
  width: 70px;
  height: 70px;
  overflow: hidden;
  border-radius: var(--r-md);
  background: var(--c-bg-alt);
  display: block;
  position: relative;
  transition: transform var(--t-fast);
}
.hrc-news-widget__thumb:hover { transform: scale(1.03); }
.hrc-news-widget__thumb img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block !important;
  margin: 0 !important;
  border-radius: 0 !important;
}
.hrc-news-widget__thumb-fallback {
  display: block;
  width: 100%;
  height: 100%;
  background:
    linear-gradient(135deg, var(--c-navy) 0%, var(--c-navy-light) 100%);
  position: relative;
}
.hrc-news-widget__thumb-fallback::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(rgba(212,175,55,.4) 1px, transparent 1px);
  background-size: 8px 8px;
  opacity: .6;
}

.hrc-news-widget__content {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.hrc-news-widget__title {
  font-size: 13px !important;
  font-weight: 600 !important;
  color: var(--c-navy) !important;
  line-height: 1.35 !important;
  letter-spacing: 0;
  text-decoration: none !important;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color var(--t-fast);
}
.hrc-news-widget__title:hover { color: var(--c-gold-h) !important; }
.hrc-news-widget__date {
  font-size: 11px;
  color: var(--c-muted);
  text-transform: uppercase;
  letter-spacing: .04em;
  font-weight: 500;
}
.hrc-news-widget__excerpt {
  font-size: 12px !important;
  color: var(--c-text-2);
  line-height: 1.45;
  margin: 4px 0 0 !important;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Generic widget list (categories, recent posts, etc.) */
.hrc-sidebar-area .widget ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.hrc-sidebar-area .widget ul li {
  padding: var(--sp-2) 0;
  border-bottom: 1px solid var(--c-border-light);
  font-size: var(--fs-sm);
}
.hrc-sidebar-area .widget ul li:last-child { border-bottom: 0; }
.hrc-sidebar-area .widget ul li a {
  color: var(--c-navy);
  text-decoration: none;
  transition: color var(--t-fast);
}
.hrc-sidebar-area .widget ul li a:hover { color: var(--c-gold-h); }

/* ----------------------------------------------------------------
   25. Footer
---------------------------------------------------------------- */
.hrc-footer {
  background: var(--c-navy);
  color: rgba(255,255,255,.85);
  margin-top: var(--sp-12);
}
.hrc-footer__widgets {
  padding: var(--sp-12) 0 var(--sp-8);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.hrc-footer__grid {
  display: grid;
  gap: var(--sp-8);
}
.hrc-footer__grid--4 { grid-template-columns: repeat(4, 1fr); }
.hrc-footer__grid--3 { grid-template-columns: repeat(3, 1fr); }
.hrc-footer__grid--2 { grid-template-columns: repeat(2, 1fr); }
.hrc-footer__grid--1 { grid-template-columns: 1fr; }
.hrc-footer__col .widget-title,
.hrc-footer__col h3 {
  font-size: var(--fs-sm);
  font-weight: 700;
  color: rgba(255,255,255,.6);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: var(--sp-4);
}
.hrc-footer__col a { color: rgba(255,255,255,.8); font-size: var(--fs-sm); }
.hrc-footer__col a:hover { color: var(--c-gold); }
.hrc-footer__col ul li { margin-bottom: var(--sp-2); }
.hrc-footer__legal {
  padding: var(--sp-5) 0;
  border-top: 1px solid rgba(255,255,255,.08);
}
.hrc-footer-legal-menu {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2) var(--sp-6);
  list-style: none;
  margin: 0;
  padding: 0;
  justify-content: center;
}
.hrc-footer-legal-menu a {
  color: rgba(255,255,255,.75);
  font-size: var(--fs-sm);
  transition: color var(--t-fast);
}
.hrc-footer-legal-menu a:hover { color: var(--c-gold); }

/* === Footer compliance cards === */
.hrc-footer__compliance {
  padding: var(--sp-10) 0;
  border-top: 1px solid rgba(255,255,255,.08);
  background:
    linear-gradient(180deg, rgba(0,0,0,.25), rgba(0,0,0,.15)),
    var(--c-navy);
  position: relative;
}
.hrc-footer__compliance::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 80px; height: 3px;
  background: linear-gradient(90deg, transparent, var(--c-gold), transparent);
}
.hrc-compliance-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-5);
}
.hrc-compliance-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--r-lg);
  padding: var(--sp-6);
  transition: background var(--t-base), border-color var(--t-base), transform var(--t-base);
}
.hrc-compliance-card:hover {
  background: rgba(255,255,255,.06);
  border-color: rgba(212,175,55,.35);
  transform: translateY(-2px);
}
.hrc-compliance-card__heading {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  margin-bottom: var(--sp-3);
  padding-bottom: var(--sp-3);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.hrc-compliance-card__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px; height: 38px;
  border-radius: var(--r-full);
  background: rgba(212,175,55,.15);
  border: 1px solid rgba(212,175,55,.35);
  color: var(--c-gold);
  font-size: var(--fs-sm);
  font-weight: 800;
  letter-spacing: .02em;
  flex-shrink: 0;
}
.hrc-compliance-card h4 {
  font-size: var(--fs-base);
  font-weight: 700;
  color: #fff;
  margin: 0;
  line-height: 1.3;
}
.hrc-compliance-card p {
  font-size: var(--fs-sm);
  color: rgba(255,255,255,.72);
  line-height: 1.65;
  margin: 0 0 var(--sp-4);
}
.hrc-compliance-card__cta {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--c-gold);
  border-bottom: 1px solid transparent;
  transition: color var(--t-fast), border-color var(--t-fast);
}
.hrc-compliance-card__cta:hover {
  color: var(--c-gold-light);
  border-bottom-color: var(--c-gold-light);
}

@media (max-width: 900px) {
  .hrc-compliance-grid { grid-template-columns: 1fr; gap: var(--sp-4); }
  .hrc-footer__compliance { padding: var(--sp-8) 0; }
}

/* === Casino of the Month inline conversion box === */
.hrc-cotm {
  position: relative;
  background: linear-gradient(135deg, #ffffff 0%, #faf8f2 100%);
  border: 2px solid var(--c-gold);
  border-radius: var(--r-lg);
  box-shadow: 0 8px 32px rgba(212,175,55,.18), var(--sh-md);
  margin: var(--sp-10) 0;
  overflow: hidden;
}

/* Hard reset: kill any cascade from page/article content styles */
.hrc-cotm,
.hrc-cotm * {
  text-decoration: none !important;
}
.hrc-cotm h2, .hrc-cotm h3, .hrc-cotm h4 {
  border: 0 !important;
  padding: 0 !important;
  margin: 0 !important;
  font-family: var(--font);
}
.hrc-cotm p { margin: 0 !important; }
.hrc-cotm ul {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
}
.hrc-cotm li { margin: 0 !important; padding: 0 !important; }
.hrc-cotm li::marker { content: none !important; }
.hrc-cotm a { color: inherit; }

.hrc-cotm__ribbon {
  position: absolute;
  top: 0;
  right: 0;
  padding: var(--sp-2) var(--sp-4);
  background: var(--c-gold);
  color: var(--c-navy);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  border-bottom-left-radius: var(--r-md);
  z-index: 2;
}

/* 2-column grid that fits 860px page width nicely */
.hrc-cotm__inner {
  display: grid;
  grid-template-columns: 180px 1fr;
  grid-template-areas:
    "left  body"
    "left  cta";
  gap: var(--sp-3) var(--sp-6);
  padding: var(--sp-8) var(--sp-6) var(--sp-6);
  align-items: start;
}
.hrc-cotm__left { grid-area: left; display: flex; flex-direction: column; align-items: center; gap: var(--sp-3); }
.hrc-cotm__body { grid-area: body; }
.hrc-cotm__cta  { grid-area: cta;  display: flex; flex-direction: column; gap: var(--sp-2); max-width: 420px; margin-top: var(--sp-4); }

.hrc-cotm__logo-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 90px;
  padding: var(--sp-3);
  background: #fff;
  border-radius: var(--r-md);
  border: 1px solid var(--c-border-light);
}
.hrc-cotm__logo-img { max-width: 140px; max-height: 70px; width: auto; object-fit: contain; }
.hrc-cotm__logo-fallback { font-weight: 700; color: var(--c-navy); font-size: var(--fs-base); text-align: center; }
.hrc-cotm__rating { display: flex; align-items: center; gap: var(--sp-2); }

.hrc-cotm__name {
  font-size: clamp(1.15rem, 2vw, 1.375rem) !important;
  font-weight: 700 !important;
  color: var(--c-navy) !important;
  line-height: 1.25 !important;
  margin-bottom: var(--sp-3) !important;
}
.hrc-cotm__name a { color: var(--c-navy) !important; }
.hrc-cotm__name a:hover { color: var(--c-gold-h) !important; }

.hrc-cotm__bonus { margin-bottom: var(--sp-3) !important; }
.hrc-cotm__bonus-label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  color: var(--c-muted);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: var(--sp-1);
}
.hrc-cotm__bonus-value {
  display: block;
  font-size: clamp(1.25rem, 2.5vw, 1.625rem);
  font-weight: 800;
  color: var(--c-navy);
  line-height: 1.1;
  letter-spacing: -.01em;
}
.hrc-cotm__bonus-sub { display: block; font-size: var(--fs-sm); color: var(--c-muted); margin-top: var(--sp-1); }

.hrc-cotm__features {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: var(--sp-1) var(--sp-4) !important;
}
.hrc-cotm__features li {
  position: relative;
  padding-left: 18px !important;
  font-size: var(--fs-sm);
  color: var(--c-text-2);
  line-height: 1.5;
}
.hrc-cotm__features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--c-green);
  font-weight: 700;
}

.hrc-cotm__review {
  display: block;
  text-align: center;
  font-size: var(--fs-sm);
  font-weight: 500;
  color: var(--c-navy) !important;
  text-decoration: underline !important;
  text-decoration-color: var(--c-gold) !important;
  text-underline-offset: 3px;
}
.hrc-cotm__review:hover { color: var(--c-gold-h) !important; text-decoration-color: var(--c-gold-h) !important; }
.hrc-cotm .hrc-tc-link { text-align: center; }

/* Keep CTA button readable (kill underline reset above) */
.hrc-cotm .hrc-btn {
  text-decoration: none !important;
  color: #fff !important;
}

/* Mobile: stack everything */
@media (max-width: 700px) {
  .hrc-cotm__inner {
    grid-template-columns: 1fr;
    grid-template-areas:
      "left"
      "body"
      "cta";
    padding: var(--sp-8) var(--sp-4) var(--sp-5);
    gap: var(--sp-4);
  }
  .hrc-cotm__left {
    flex-direction: row;
    justify-content: flex-start;
    gap: var(--sp-4);
  }
  .hrc-cotm__logo-link { width: 160px; min-width: 160px; min-height: 70px; }
  .hrc-cotm__cta { margin-top: 0; max-width: 100%; }
}

/* === Static page template === */
.hrc-page-main { background: var(--c-bg); }
.hrc-page-main .wrap {
  max-width: 860px !important;
  margin-inline: auto !important;
  padding: var(--sp-10) var(--pad) var(--sp-12) !important;
}
.hrc-page__header {
  margin-bottom: var(--sp-8);
  padding-bottom: var(--sp-6);
  border-bottom: 2px solid var(--c-border);
}
.hrc-page__title {
  font-size: clamp(1.75rem, 4.5vw, 2.5rem);
  margin-bottom: var(--sp-3);
  color: var(--c-navy);
  line-height: 1.2;
}
.hrc-page__meta {
  font-size: var(--fs-sm);
  color: var(--c-muted);
  margin: 0;
}
.hrc-page__featured-img {
  border-radius: var(--r-lg);
  overflow: hidden;
  margin-bottom: var(--sp-8);
  box-shadow: var(--sh-sm);
}
.hrc-page__content { font-size: var(--fs-md); line-height: 1.8; color: var(--c-text-2); }
.hrc-page__content h2 {
  font-size: clamp(1.25rem, 2.5vw, 1.625rem);
  color: var(--c-navy);
  margin-top: var(--sp-10);
  margin-bottom: var(--sp-4);
  padding-top: var(--sp-4);
  border-top: 2px solid var(--c-border);
}
.hrc-page__content h3 {
  font-size: var(--fs-xl);
  color: var(--c-navy);
  margin-top: var(--sp-8);
  margin-bottom: var(--sp-3);
}
.hrc-page__content p { margin-bottom: var(--sp-5); }
.hrc-page__content ul,
.hrc-page__content ol {
  margin: var(--sp-4) 0 var(--sp-6);
  padding-left: var(--sp-6);
}
.hrc-page__content li { margin-bottom: var(--sp-3); padding-left: var(--sp-2); }
.hrc-page__content ul li::marker { color: var(--c-gold); }
.hrc-page__content a {
  color: var(--c-navy);
  font-weight: 500;
  text-decoration: underline;
  text-decoration-color: var(--c-gold);
  text-underline-offset: 3px;
}
.hrc-page__content a:hover { color: var(--c-gold-h); text-decoration-color: var(--c-gold-h); }
.hrc-page__content strong { color: var(--c-navy); font-weight: 600; }

.hrc-footer__bottom { padding: var(--sp-5) 0; }
.hrc-footer__bottom-inner { display: flex; align-items: center; justify-content: space-between; gap: var(--sp-4); flex-wrap: wrap; }
.hrc-footer__copy { font-size: var(--fs-sm); color: rgba(255,255,255,.55); }
.hrc-footer__copy a { color: rgba(255,255,255,.7); }
.hrc-footer__copy a:hover { color: var(--c-gold); }
.hrc-footer__disclaimer { font-size: var(--fs-xs); color: rgba(255,255,255,.35); }

/* Old parent footer */
footer.main-footer, footer.bottomfooter { display: none; }

/* ----------------------------------------------------------------
   26. Breadcrumbs
---------------------------------------------------------------- */
.hrc-breadcrumbs { margin-bottom: var(--sp-5); }
.hrc-bc-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--sp-2);
  list-style: none;
  padding: 0;
}
.hrc-bc-list li { display: inline-flex; align-items: center; gap: var(--sp-2); }
.hrc-bc-list a  { font-size: var(--fs-sm); color: var(--c-muted); transition: color var(--t-fast); }
.hrc-bc-list a:hover { color: var(--c-navy); }
.hrc-bc-list [aria-current="page"] { font-size: var(--fs-sm); color: var(--c-text-2); font-weight: 500; }
.hrc-bc-sep { color: var(--c-light); font-size: var(--fs-sm); }

/* Review features */
.hrc-review-features {
  max-width: var(--container);
  margin: 0 auto var(--sp-8);
  padding: 0 var(--pad);
}
.hrc-review-features__inner { background: var(--c-card); border-radius: var(--r-lg); padding: var(--sp-6); box-shadow: var(--sh-sm); }
.hrc-feature-list { columns: 2; column-gap: var(--sp-8); padding: 0; margin-top: var(--sp-4); }
.hrc-feature-list li { font-size: var(--fs-sm); margin-bottom: var(--sp-2); break-inside: avoid; padding-left: var(--sp-5); position: relative; }
.hrc-feature-list li::before { content: '✓'; position: absolute; left: 0; color: var(--c-green); font-weight: 700; }

/* Review screenshot */
.hrc-review-screenshot { max-width: var(--container); margin: 0 auto var(--sp-8); padding: 0 var(--pad); }
.hrc-review-screenshot__img { width: 100%; max-height: 400px; object-fit: cover; border-radius: var(--r-lg); box-shadow: var(--sh-md); }

/* Review content */
.hrc-review-content { max-width: var(--container); margin: 0 auto; padding: 0 var(--pad) var(--sp-8); }

/* Page content (front-page editor) */
.hrc-page-content { background: var(--c-card); }
.hrc-page-content .hrc-section-inner { padding: var(--sp-12) var(--pad); }

/* ----------------------------------------------------------------
   27. Responsive
---------------------------------------------------------------- */

/* ---- 1200px ---- */
@media (max-width: 1200px) {
  .hrc-casino-list__header { display: none; }
  .hrc-casino-row {
    grid-template-columns: 52px 140px 1fr 160px 180px;
    gap: var(--sp-3);
  }
  .hrc-footer__grid--4 { grid-template-columns: repeat(2, 1fr); }
}

/* ---- 1024px ---- */
@media (max-width: 1024px) {
  .hrc-article-layout,
  .hrc-archive-layout {
    grid-template-columns: 1fr;
  }
  .hrc-sidebar-area { position: static; }
  .hrc-news-grid,
  .hrc-archive-grid { grid-template-columns: repeat(2, 1fr); }
  .hrc-seo-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ---- 900px ---- */
@media (max-width: 900px) {
  .hrc-casino-row {
    grid-template-columns: 44px 1fr;
    grid-template-rows: auto auto auto;
    gap: var(--sp-3);
    padding: var(--sp-4);
  }
  .hrc-casino-row__rank       { grid-row: 1; grid-column: 1; align-self: start; margin-top: var(--sp-1); }
  .hrc-casino-row__logo-wrap  { grid-row: 1; grid-column: 2; flex-direction: row; justify-content: flex-start; gap: var(--sp-3); }
  .hrc-casino-row__info       { grid-row: 2; grid-column: 1 / -1; }
  .hrc-casino-row__bonus      { grid-row: 3; grid-column: 1 / -1; text-align: left; }
  .hrc-casino-row__actions    { grid-row: 4; grid-column: 1 / -1; flex-direction: row; justify-content: flex-start; flex-wrap: wrap; }
  .hrc-review-hero__inner     { grid-template-columns: 1fr; }
  .hrc-pros-cons__inner       { grid-template-columns: 1fr; }
  .hrc-feature-list           { columns: 1; }
  .hrc-cta-block__inner       { flex-direction: column; text-align: center; }
}

/* ---- 768px ---- */
@media (max-width: 768px) {
  :root { --header-h: 84px; }

  .hrc-header__logo img { height: 70px; }
  .hrc-header__nav  { display: none; }
  .hrc-hamburger    { display: flex; }

  .hrc-hero__inner  { padding-top: var(--sp-12); padding-bottom: var(--sp-10); }
  .hrc-hero__cta    { flex-direction: column; align-items: flex-start; }
  .hrc-trust-badges { gap: var(--sp-2); }

  .hrc-news-grid,
  .hrc-archive-grid { grid-template-columns: 1fr; }
  .hrc-seo-grid     { grid-template-columns: 1fr; }

  .hrc-article-main .wrap,
  .hrc-archive-main .wrap { padding-inline: var(--sp-4) !important; }

  .hrc-related__grid { grid-template-columns: 1fr; }

  .hrc-review-hero  { padding: var(--sp-8) 0 var(--sp-6); }
  .hrc-review-hero__inner { grid-template-columns: 1fr; gap: var(--sp-5); }
  .hrc-review-hero__cta { align-items: stretch; }
  .hrc-review-hero__cta .hrc-btn { width: 100%; }

  .hrc-section-inner { padding-top: var(--sp-10); padding-bottom: var(--sp-10); }
  .hrc-section-header--row { flex-direction: column; align-items: flex-start; gap: var(--sp-3); }

  .hrc-footer__grid--4,
  .hrc-footer__grid--3,
  .hrc-footer__grid--2 { grid-template-columns: 1fr; }
  .hrc-footer__bottom-inner { flex-direction: column; text-align: center; }

  .hrc-sticky-cta { display: block; }

  /* Comptable responsive */
  .comptable,
  .comptable tbody,
  .comptable tr,
  .comptable td { display: block; }
  .comptable .topcomp { display: none; }
  .comptable tr:not(.topcomp) { margin-bottom: var(--sp-3); padding: var(--sp-4); border-radius: var(--r-lg); }
  .comptable td { padding: var(--sp-2) var(--sp-3); }
  .comptable .visitcol { text-align: center; padding-top: var(--sp-3); width: auto; }
  .comptable .casinocol img.logocomp { margin: 0 auto var(--sp-2); }
}

/* ---- 480px ---- */
@media (max-width: 480px) {
  .hrc-hero__title  { font-size: 1.75rem; }
  .hrc-btn--lg      { padding: .75rem 1.25rem; font-size: var(--fs-sm); }
  .hrc-casino-row__actions .hrc-btn--lg { width: 100%; }
  .hrc-sticky-cta__inner { flex-wrap: wrap; }
}
