@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@600;700&family=DM+Sans:wght@400;500;600&display=swap');

/* ── TOKENS ──────────────────────────────────────────────────── */
:root {
  /* Backgrounds — light silver */
  --bg:           #F0F4F8;
  --surface:      #FFFFFF;
  --surface-2:    #E8EDF4;
  --surface-3:    #DDE4EE;

  /* Borders */
  --border:       #C8D4E3;
  --border-hi:    #A8BACE;

  /* Brand — blue accent on silver base */
  --primary:      #B8CCE0;
  --primary-dim:  rgba(77,159,255,0.08);
  --primary-glow: rgba(77,159,255,0.25);
  --accent:       #1A6FD8;

  /* Text */
  --text:         #0D1520;
  --text-2:       #3A5070;
  --muted:        #7890A8;

  /* Status */
  --success:      #16A34A;
  --danger:       #DC2626;
  --warning:      #D97706;

  /* Type */
  --font-display: 'Barlow Condensed', sans-serif;
  --font-body:    'DM Sans', sans-serif;

  /* Geometry */
  --radius-sm:    5px;
  --radius:       9px;
  --radius-lg:    14px;

  /* Layout */
  --header-h:     68px;
  --max-w:        1380px;
  --content-w:    920px;

  /* Motion */
  --ease:         cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out:     cubic-bezier(0, 0, 0.2, 1);
}

/* ── RESET ───────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  padding-top: var(--header-h);
  /* Subtle dot-grid texture */
  background-image: radial-gradient(circle, rgba(77,159,255,0.06) 1px, transparent 1px);
  background-size: 28px 28px;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

/* ── HEADER ──────────────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 500;
  height: var(--header-h);
  background: rgba(240,244,248,0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 -3px 0 0 var(--accent) inset;
}
.header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.25rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

/* Logo */
.site-logo {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1;
  white-space: nowrap;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 0.2rem;
}
.logo-img { width: 100px; height: 100px; object-fit: contain; flex-shrink: 0; margin-top: 16px; }
.logo-ltc { color: var(--accent); letter-spacing: 0.04em; }
.logo-rest { color: var(--text); font-weight: 500; opacity: 0.85; }

/* Desktop nav — hidden on mobile */
.site-nav { display: none; }

@media (min-width: 900px) {
  .site-nav { display: flex; align-items: center; }
  .nav-toggle { display: none !important; }
  .mobile-nav { display: none !important; }
}

.site-nav > ul {
  display: flex;
  align-items: center;
  gap: 0.1rem;
}

/* Nav links */
.site-nav a {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.45rem 0.85rem;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-2);
  transition: color 0.18s var(--ease), background 0.18s var(--ease);
  white-space: nowrap;
}
.site-nav a:hover { color: var(--text); background: var(--surface-2); }
.site-nav a[aria-current="page"] { color: var(--accent); background: var(--primary-dim); }
.nav-icon { filter: invert(30%) sepia(20%) saturate(400%) hue-rotate(180deg) brightness(90%); transition: filter 0.18s var(--ease); flex-shrink: 0; }
.site-nav a:hover .nav-icon,
.nav-dropdown-toggle:hover .nav-icon,
.nav-dropdown.open .nav-dropdown-toggle .nav-icon { filter: invert(20%) sepia(10%) saturate(200%) hue-rotate(180deg) brightness(60%); }
.site-nav a[aria-current="page"] .nav-icon { filter: invert(30%) sepia(80%) saturate(600%) hue-rotate(195deg) brightness(95%); }

/* Dropdown toggle — styled as a button matching nav links */
.nav-dropdown { position: relative; }
.nav-dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.45rem 0.85rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-2);
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.18s var(--ease), background 0.18s var(--ease);
  white-space: nowrap;
}
.nav-dropdown-toggle:hover,
.nav-dropdown.open .nav-dropdown-toggle { color: var(--text); background: var(--surface-2); }
.nav-dropdown-toggle .caret {
  filter: invert(30%) sepia(10%) saturate(300%) hue-rotate(180deg);
  transition: transform 0.2s var(--ease);
}
.nav-dropdown.open .caret { transform: rotate(180deg); }

/* Dropdown panel */
.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  min-width: 196px;
  background: var(--surface-2);
  border: 1px solid var(--border-hi);
  border-top: 2px solid var(--primary);
  border-radius: 0 0 var(--radius) var(--radius);
  padding: 0.4rem;
  display: none;
  flex-direction: column;
  gap: 2px;
  box-shadow: 0 16px 48px rgba(0,0,0,0.6), 0 0 0 1px rgba(0,201,167,0.08);
}
.nav-dropdown.open .nav-dropdown-menu { display: flex; }
.nav-dropdown-menu a {
  display: block;
  padding: 0.55rem 0.85rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-2);
  border-radius: var(--radius-sm);
  transition: color 0.15s, background 0.15s, padding-left 0.15s;
}
.nav-dropdown-menu a:hover {
  color: var(--accent);
  background: var(--primary-dim);
  padding-left: 1.1rem;
}

/* Hamburger toggle */
.nav-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  width: 38px;
  height: 38px;
  cursor: pointer;
  flex-shrink: 0;
  transition: border-color 0.18s, background 0.18s;
}
.nav-toggle:hover { border-color: var(--accent); background: var(--primary-dim); }
.nav-toggle img { filter: invert(20%) sepia(20%) saturate(300%) hue-rotate(180deg); }
.icon-close { display: none; }
.icon-open  { display: block; }
body.nav-open .icon-close { display: block; }
body.nav-open .icon-open  { display: none; }
body.nav-open .nav-toggle { border-color: var(--accent); background: var(--primary-dim); }

/* Mobile nav overlay */
.mobile-nav {
  display: none;
  position: fixed;
  inset: var(--header-h) 0 0 0;
  background: var(--bg);
  z-index: 400;
  overflow-y: auto;
  border-top: 3px solid var(--accent);
}
body.nav-open .mobile-nav { display: block; }

.mobile-nav > ul {
  display: flex;
  flex-direction: column;
  padding: 1.25rem 1rem 3rem;
  gap: 0.35rem;
}

/* Section label */
.mobile-nav .mobile-section-label {
  padding: 1.25rem 0.25rem 0.4rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--muted);
  list-style: none;
}

/* Nav links — card rows */
.mobile-nav li:not(.mobile-section-label) {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.mobile-nav a {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.9rem 1.1rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  transition: background 0.15s, color 0.15s;
}
.mobile-nav a .nav-icon {
  flex-shrink: 0;
  filter: invert(30%) sepia(20%) saturate(400%) hue-rotate(180deg) brightness(90%);
}
.mobile-nav a:hover,
.mobile-nav a[aria-current="page"] {
  background: var(--primary-dim);
  color: var(--accent);
}
.mobile-nav a[aria-current="page"] .nav-icon,
.mobile-nav a:hover .nav-icon { filter: invert(30%) sepia(80%) saturate(600%) hue-rotate(195deg) brightness(95%); }

/* Review sub-links — smaller, indented */
.mobile-nav li.review-item {
  background: var(--surface-2);
}
.mobile-nav li.review-item a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-2);
  padding: 0.75rem 1.1rem 0.75rem 1.4rem;
}
.mobile-nav li.review-item a::before {
  content: '';
  display: inline-block;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--muted);
  flex-shrink: 0;
  margin-right: 0.1rem;
}
.mobile-nav li.review-item a:hover { color: var(--accent); background: var(--primary-dim); }

/* ── FOOTER ──────────────────────────────────────────────────── */
.site-footer {
  background: var(--surface-3);
  border-top: 1px solid var(--border);
}
.footer-main {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 3.5rem 1.25rem 2rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}
.footer-brand .site-logo { font-size: 1.6rem; margin-bottom: 0.85rem; }
.footer-brand p { color: var(--muted); font-size: 0.875rem; line-height: 1.65; max-width: 270px; }
.footer-col h3 {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border);
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.55rem; }
.footer-col a { color: var(--text-2); font-size: 0.875rem; transition: color 0.15s, padding-left 0.15s; }
.footer-col a:hover { color: var(--accent); padding-left: 0.4rem; }

/* RG strip */
.footer-rg {
  border-top: 1px solid var(--border);
  padding: 1.75rem 1.25rem;
  max-width: var(--max-w);
  margin: 0 auto;
}
.footer-rg > p {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1rem;
}
.rg-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.85rem;
}
.rg-logos a {
  display: block;
  opacity: 0.6;
  transition: opacity 0.2s;
}
.rg-logos img {
  filter: invert(1) brightness(0.3);
}
.rg-logos a:hover { opacity: 1; }
.rg-logos img { height: 32px; width: auto; object-fit: contain; filter: invert(1) brightness(0.3); }
.rg-logos .age-badge {
  height: 32px;
  width: 32px;
  border-radius: 50%;
  background: var(--border-hi);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text);
  opacity: 1;
  flex-shrink: 0;
}

/* Footer bottom */
.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 1.25rem;
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.footer-bottom p { font-size: 0.8rem; color: var(--muted); line-height: 1.6; }
.footer-bottom a { color: var(--accent); }
.footer-bottom a:hover { text-decoration: underline; }

@media (min-width: 640px) {
  .footer-main { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 900px) {
  .footer-main { grid-template-columns: 2fr 1fr 1fr 1fr; }
  .footer-bottom { flex-direction: row; justify-content: space-between; align-items: flex-start; }
}

/* ── BACK TO TOP ─────────────────────────────────────────────── */
.back-to-top {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  background: var(--accent);
  border: none;
  border-radius: 50%;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s var(--ease), transform 0.2s var(--ease), background 0.2s;
  z-index: 100;
  box-shadow: 0 4px 20px var(--primary-glow);
}
.back-to-top.visible { opacity: 1; pointer-events: auto; }
.back-to-top:hover { background: var(--accent); transform: translateY(-3px); }
.back-to-top img { filter: invert(1); }

/* ── UTILITIES ───────────────────────────────────────────────── */
.teal  { color: var(--primary); }
.muted { color: var(--muted); }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }

/* Teal left-border accent block (used on data cards, callouts) */
.accent-block {
  border-left: 3px solid var(--primary);
  padding-left: 1rem;
  background: var(--primary-dim);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

/* ── CASINO BRAND COLORS ─────────────────────────────────────── */
:root {
  --banzai:    #DC2626;
  --smokace:   #D97706;
  --stelario:  #7C3AED;
  --playzilla: #059669;
  --verde:     #064E3B;
}

/* ── PAGE HERO + SECTION HERO (article & hub dark hero) ─────── */
.page-hero,
.section-hero {
  background: #0D1520;
  position: relative;
  overflow: hidden;
  padding: 4rem 1.25rem 3.5rem;
}
.page-hero::before,
.section-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 65% at 75% 25%, rgba(26,111,216,0.18) 0%, transparent 65%),
    radial-gradient(ellipse 30% 40% at 15% 85%, rgba(26,111,216,0.08) 0%, transparent 65%),
    repeating-linear-gradient(-45deg, transparent, transparent 40px, rgba(255,255,255,0.012) 40px, rgba(255,255,255,0.012) 41px);
  pointer-events: none;
}
.page-hero-inner,
.section-hero-inner,
.page-hero .inner {
  max-width: var(--max-w);
  margin: 0 auto;
  position: relative;
  z-index: 1;
  text-align: center;
}
.page-hero h1,
.section-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 700;
  line-height: 1.06;
  color: #fff;
  margin-bottom: 1rem;
  margin-left: auto;
  margin-right: auto;
}
.page-hero h1 em,
.section-hero h1 em { font-style: normal; color: var(--accent); }
.page-hero-sub,
.section-hero-sub,
.page-hero .sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.62);
  line-height: 1.7;
  max-width: 580px;
  margin: 0 auto 1.5rem;
}
.page-hero-meta,
.section-hero-meta {
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.32);
}
.page-hero-meta span,
.section-hero-meta span { color: rgba(255,255,255,0.5); }
/* Hero meta flex variant (used on Gen2 article pages) */
.hero-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
  flex-wrap: wrap;
  justify-content: center;
}
.hero-meta span { display: flex; align-items: center; gap: 0.35rem; }

/* Breadcrumb inside a dark hero */
.page-hero .breadcrumb,
.section-hero .breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
  border-bottom: none;
  padding: 0;
  max-width: none;
}
.page-hero .breadcrumb a,
.section-hero .breadcrumb a { color: rgba(255,255,255,0.5); text-decoration: none; }
.page-hero .breadcrumb a:hover,
.section-hero .breadcrumb a:hover { color: #fff; }
.page-hero .breadcrumb span,
.section-hero .breadcrumb span { opacity: 0.45; }

/* ── BREADCRUMB (standard — below hero, light background) ────── */
.breadcrumb {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0.875rem 1.25rem;
  font-size: 0.78rem;
  color: var(--muted);
  display: flex;
  flex-wrap: wrap;
  gap: 0.375rem;
  align-items: center;
  border-bottom: 1px solid var(--border);
}
.breadcrumb a { color: var(--accent); text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb-sep { color: var(--border-hi); }

/* ── CONTENT LAYOUT (article + 320px sidebar) ───────────────── */
.content-wrap,
.page-wrap {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 3rem 1.25rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: start;
}
.content-wrap > .article-body,
.page-wrap > article { min-width: 0; }
@media (min-width: 1000px) {
  .content-wrap,
  .page-wrap { grid-template-columns: 1fr 320px; }
  .content-wrap > .sidebar,
  .page-wrap > .sidebar { position: sticky; top: 2rem; }
}

/* ── ARTICLE BODY ────────────────────────────────────────────── */
.article-body h2 {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  font-weight: 700;
  color: var(--text);
  line-height: 1.1;
  margin: 2.5rem 0 0.75rem;
}
.article-body h2:first-child { margin-top: 0; }
.article-body h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text);
  margin: 1.75rem 0 0.5rem;
}
.article-body p {
  font-size: 0.9375rem;
  color: var(--text-2);
  line-height: 1.75;
  margin-bottom: 1rem;
}
.article-body p:last-child { margin-bottom: 0; }
.article-body strong { color: var(--text); font-weight: 600; }
.article-body a { color: var(--accent); text-decoration: underline; }
.article-body a:hover { color: #1558b0; }
.article-body ul,
.article-body ol { margin: 0.75rem 0 1rem 1.25rem; color: var(--text-2); }
.article-body li { margin-bottom: 0.4rem; line-height: 1.7; }

/* ── SIDEBAR WRAPPER ─────────────────────────────────────────── */
.sidebar { display: flex; flex-direction: column; gap: 1.5rem; }

/* ── SECTION HEADER (icon + h2 inline) ──────────────────────── */
.section-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.75rem;
}
.section-header img {
  flex-shrink: 0;
  filter: invert(30%) sepia(80%) saturate(600%) hue-rotate(195deg) brightness(95%);
}
.section-header h2 { margin: 0; }

/* ── TABLE WRAP (horizontal scroll + blue scrollbar) ────────── */
.table-wrap {
  overflow-x: scroll;
  -webkit-overflow-scrolling: touch;
  width: 100%;
}
.table-wrap::-webkit-scrollbar { height: 6px; }
.table-wrap::-webkit-scrollbar-track { background: var(--border); border-radius: 3px; }
.table-wrap::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 3px; }
.table-wrap::-webkit-scrollbar-thumb:hover { background: #1558b0; }

/* ── HUB PAGE LAYOUT ─────────────────────────────────────────── */
.page-section {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 3.5rem 1.25rem;
}
.sec-heading {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 700;
  color: var(--text);
  line-height: 1.1;
  margin-bottom: 0.5rem;
}
.sec-intro {
  font-size: 0.9375rem;
  color: var(--text-2);
  max-width: 560px;
  line-height: 1.65;
  margin-bottom: 2rem;
}

/* ── SUBPAGE CARDS (hub nav grid) ────────────────────────────── */
.subpage-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 540px) { .subpage-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 900px) { .subpage-grid { grid-template-columns: repeat(3, 1fr); } }
.subpage-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  text-decoration: none;
  transition: box-shadow 0.15s, transform 0.15s, border-color 0.15s;
}
.subpage-card:hover {
  box-shadow: 0 6px 24px rgba(0,0,0,0.07);
  transform: translateY(-2px);
  border-color: var(--accent);
}
.sc-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: rgba(26,111,216,0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.sc-icon img { filter: invert(30%) sepia(80%) saturate(600%) hue-rotate(195deg) brightness(95%); }
.sc-title { font-family: var(--font-display); font-size: 1.05rem; font-weight: 700; color: var(--text); line-height: 1.15; }
.sc-desc { font-size: 0.78rem; color: var(--text-2); line-height: 1.5; flex: 1; }
.sc-arrow {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
}
.sc-arrow img { filter: invert(30%) sepia(80%) saturate(600%) hue-rotate(195deg) brightness(95%); }

/* ── RESPONSIBLE GAMBLING BAND ───────────────────────────────── */
.rg-band {
  background: repeating-linear-gradient(
    -55deg,
    transparent, transparent 6px,
    rgba(0,0,0,0.018) 6px, rgba(0,0,0,0.018) 12px
  ), var(--surface-3);
  border-top: 2px solid var(--border-hi);
  padding: 1.5rem 1.25rem;
}
.rg-band-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  max-width: var(--max-w);
  margin: 0 auto;
  flex-wrap: wrap;
}
.rg-age {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text);
  border-right: 2px solid var(--border-hi);
  padding-right: 1.5rem;
  line-height: 1;
}
.rg-text { font-size: 0.8rem; color: var(--text-2); line-height: 1.6; max-width: 540px; }
.rg-text a { color: var(--text-2); text-decoration: underline; }
.rg-text a:hover { color: var(--accent); }
@media (max-width: 600px) {
  .rg-band-inner { flex-direction: column; gap: 0.75rem; text-align: center; }
  .rg-age { border-right: none; padding-right: 0; border-bottom: 2px solid var(--border-hi); padding-bottom: 0.75rem; }
}
