/*
Theme Name: TDU
Theme URI: https://example.com/
Author: the editorial team
Description: A light, high-contrast casino-review product theme for Tanzania, modelled on the tdu.or.tz online-casino directory — white body, warm yellow action colour, purple hover accent and a teal trust highlight.
Version: 1.1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: tdu
*/

:root {
  --bg: #ffffff;
  --bg-elev: #f6fbfb;
  --surface: #ffffff;
  --surface-2: #d6f9f9;
  --border: #e3e6e6;
  --border-strong: #c8cfcf;
  --text: #17161c;
  --text-muted: #5a5a63;
  --text-faint: #8a8a93;
  --brand: #ffcc29;
  --brand-strong: #f5b400;
  --brand-dark: #7a1dff;
  --brand-dim: #ffcc2926;
  --brand-border: #ffcc2980;
  --red: #e74c3c;
  --red-dim: #e74c3c14;
  --gold: #ffcc29;
  --gold-dim: #ffcc2914;
  --teal: #65bfaf;
  --teal-dim: #65bfaf1f;
  --header-bg: #ffffff;
  --header-bg-2: #f6fbfb;
  --header-text: #17161c;
  --header-muted: #5a5a63;
  --footer-bg: #22262a;
  --footer-text: #c9ced2;
  --footer-text-h: #ffffff;
  --radius: 12px;
  --radius-sm: 8px;
  --maxw: 1200px;
  --font-ui: system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-body: Georgia, "Times New Roman", serif;
}

* {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-ui);
  line-height: 1.6;
  font-size: 16px;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--brand-strong);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 20px;
}

.btn {
  display: inline-block;
  padding: 13px 26px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: .01em;
  border: none;
  cursor: pointer;
  transition: transform .12s, box-shadow .12s, background .12s;
}

.btn:hover {
  text-decoration: none;
  transform: translateY(-1px);
}

.btn-brand {
  background: var(--brand);
  color: #17161c;
  box-shadow: 0 6px 20px #ffcc2950;
}

.btn-brand:hover {
  background: var(--brand-dark);
  color: #ffffff;
  box-shadow: 0 8px 26px #7a1dff59;
}

.btn-ghost {
  background: none;
  color: var(--text);
  border: 1.5px solid var(--border-strong);
}

.btn-ghost:hover {
  border-color: var(--brand);
  color: var(--brand-strong);
  box-shadow: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--header-bg);
  border-bottom: 2px solid var(--brand);
}

.site-header .site-branding {
  color: var(--header-text);
}

.site-header .site-title {
  color: var(--header-text);
}

.site-header .menu-item a {
  color: var(--header-muted);
}

.site-header .menu-item a:hover {
  color: var(--brand-dark);
  background: var(--brand-dim);
}

.site-header .menu-item-home a {
  color: var(--header-text);
}

.site-header .nav-toggle {
  border-color: var(--border-strong);
}

.site-header .nav-toggle-bar {
  background: var(--header-text);
}

.site-header .btn-ghost {
  color: var(--header-text);
  border-color: var(--border-strong);
}

.site-header .btn-ghost:hover {
  color: var(--brand-dark);
  border-color: var(--brand);
}

.site-header .lang-select {
  background: var(--header-bg-2);
  color: var(--header-text);
  border-color: var(--border-strong);
}

.nav-inner {
  display: flex;
  align-items: center;
  gap: 18px;
  min-height: 64px;
}

.site-branding {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 20px;
  color: var(--text);
  flex: none;
}

.site-branding:hover {
  text-decoration: none;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  color: #ffffff;
  font-weight: 900;
  font-size: 18px;
  flex: none;
}

.site-title {
  text-transform: uppercase;
  letter-spacing: .02em;
}

.main-navigation {
  display: flex;
  align-items: center;
  flex: auto;
  min-width: 0;
}

.menu {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
}

.menu-item a {
  display: block;
  padding: 8px 12px;
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 500;
  border-radius: 6px;
}

.menu-item a:hover {
  color: var(--brand-strong);
  background: var(--brand-dim);
  text-decoration: none;
}

.menu-item-home a {
  color: var(--text);
  font-weight: 600;
}

.nav-cta-group {
  margin-left: auto;
  flex: none;
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-cta-group .btn {
  padding: 9px 20px;
  font-size: 14px;
  white-space: nowrap;
}

.nav-toggle-input {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  width: 40px;
  height: 40px;
  cursor: pointer;
  border-radius: 8px;
  border: 1px solid var(--border-strong);
  align-items: center;
}

.nav-toggle-bar {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--text);
  border-radius: 1px;
}

.hero-block {
  background: #f4f4f4;
  border-bottom: 1px solid var(--border);
  font-size: 12px;
  color: var(--text-faint);
}

.hero-block-inner {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  min-height: 30px;
}

.utility-age {
  background: var(--brand);
  color: #ffffff;
  font-weight: 800;
  border-radius: 4px;
  padding: 1px 6px;
  font-size: 11px;
}

.utility-note {
  color: var(--text-muted);
}

.hero-block-inner a {
  color: var(--text-faint);
}

.hero-block-inner a:hover {
  color: var(--brand-strong);
}

.utility-sep {
  color: var(--border-strong);
}

.lang-switcher {
  display: flex;
  align-items: center;
}

.lang-select {
  background: var(--surface);
  color: var(--text);
  border: 1px solid var(--border-strong);
  border-radius: 6px;
  padding: 7px 10px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
}

.index-hero {
  padding: 44px 0 32px;
  background: radial-gradient(1000px 400px at 80% -20%, var(--brand-dim), transparent 60%),
    linear-gradient(180deg, var(--bg-elev), var(--bg));
  border-bottom: 1px solid var(--border);
}

.page-hero {
  display: flex;
  align-items: center;
  min-height: calc(100vh - 64px);
  padding: 40px 0;
  background: radial-gradient(900px 420px at 85% 15%, var(--brand-dim), transparent 60%),
    linear-gradient(180deg, var(--bg-elev), var(--bg));
  border-bottom: 1px solid var(--border);
}

.page-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr);
  gap: 40px;
  align-items: center;
  width: 100%;
}

.page-hero-text {
  min-width: 0;
}

.page-hero-figure {
  margin: 0;
  display: flex;
  justify-content: center;
}

.page-hero-figure img {
  width: 100%;
  max-width: 420px;
  height: auto;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: 0 14px 34px #00000059;
}

.hero-kicker {
  margin: 0 0 10px;
  color: var(--brand);
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.entry-title, .page-title {
  margin: 0 0 14px;
  font-size: clamp(26px, 4vw, 40px);
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -.01em;
}

.entry-subtitle, .archive-description {
  margin: 0 0 20px;
  color: var(--text-muted);
  font-size: 17px;
  max-width: 760px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  margin: 20px 0 0;
}

.hero-bonus {
  color: var(--brand-strong);
  font-size: 14px;
  max-width: 420px;
}

.hero-offer {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 6px 0 14px;
  padding: 10px 16px;
  border: 1px solid var(--brand-border);
  background: linear-gradient(135deg, var(--brand-dim), var(--surface));
  border-radius: var(--radius-sm);
  color: var(--text);
  font-size: 15px;
  font-weight: 600;
}

.hero-offer-icon {
  width: 20px;
  height: 20px;
  flex: none;
  color: var(--brand);
}

.hero-cta {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  color: #ffffff;
  font-size: 17px;
  padding: 15px 34px;
  box-shadow: 0 8px 24px #ee343666;
}

.hero-cta:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 12px 32px #ee34368c;
}

.hero-cta:after {
  content: "";
  position: absolute;
  top: 0;
  left: -80%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, #0000, #ffffff80, #0000);
  transition: left .5s;
}

.hero-cta:hover:after {
  left: 120%;
}

.hero-cta-arrow {
  display: inline-block;
  margin-left: 8px;
  transition: transform .15s;
}

.hero-cta:hover .hero-cta-arrow {
  transform: translateX(4px);
}

.article-byline {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 18px;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--border);
}

.author-avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  flex: none;
  background: var(--surface-2);
  color: var(--brand);
  border: 1px solid var(--border);
  font-weight: 800;
  font-size: 13px;
}

.author-meta {
  display: flex;
  flex-direction: row;
  gap: 8px;
  align-items: baseline;
}

.author-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
}

.author-date {
  font-size: 12px;
  color: var(--text-faint);
}

.article-layout {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 40px;
  padding: 36px 0 20px;
}

.article-sidebar {
  position: sticky;
  top: 96px;
  align-self: start;
}

.article-main {
  min-width: 0;
}

.entry-content {
  font-family: var(--font-body);
  font-size: 17.5px;
  color: #2a2a2a;
}

.entry-content h2 {
  font-family: var(--font-ui);
  font-size: 26px;
  font-weight: 800;
  margin: 40px 0 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
  color: var(--text);
}

.entry-content h3 {
  font-family: var(--font-ui);
  font-size: 20px;
  font-weight: 700;
  margin: 30px 0 12px;
  color: var(--text);
}

.entry-content p {
  margin: 0 0 18px;
}

.entry-content ul, .entry-content ol {
  margin: 0 0 20px;
  padding-left: 24px;
}

.entry-content li {
  margin: 6px 0;
}

.entry-content a {
  color: var(--brand-strong);
}

.entry-content blockquote {
  margin: 24px 0;
  padding: 14px 20px;
  border-left: 3px solid var(--brand);
  background: var(--surface);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  color: var(--text-muted);
}

.entry-content code {
  background: var(--surface-2);
  padding: 2px 6px;
  border-radius: 4px;
  font-size: .9em;
}

.entry-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  font-family: var(--font-ui);
  font-size: 14px;
}

.entry-content th, .entry-content td {
  border: 1px solid var(--border);
  padding: 9px 12px;
  text-align: left;
}

.entry-content th {
  background: var(--surface-2);
  color: var(--brand-strong);
}

.entry-content tr:nth-child(2n) td {
  background: var(--surface-2);
}

.table-of-contents {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 18px;
}

.toc-title {
  margin: 0 0 10px;
  font-weight: 700;
  color: var(--brand-strong);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.table-of-contents ol {
  margin: 0;
  padding-left: 20px;
}

.table-of-contents li {
  margin: 5px 0;
  font-size: 14px;
}

.table-of-contents a {
  color: var(--text-muted);
}

.table-of-contents a:hover {
  color: var(--brand-strong);
}

.pros-cons {
  margin: 8px 0 28px;
}

.pros-cons-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.pc-col {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  background: var(--surface);
}

.pc-pros {
  border-top: 3px solid var(--brand);
}

.pc-cons {
  border-top: 3px solid var(--red);
}

.pc-title {
  margin: 0 0 14px;
  font-size: 17px;
  font-weight: 800;
}

.pc-pros .pc-title {
  color: var(--brand-strong);
}

.pc-cons .pc-title {
  color: var(--red);
}

.pc-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.pc-list li {
  display: flex;
  gap: 10px;
  margin: 10px 0;
  font-size: 14.5px;
  color: var(--text);
}

.pc-icon {
  flex: none;
  font-weight: 800;
  font-size: 13px;
  line-height: 1.5;
}

.pc-check {
  color: var(--brand);
}

.pc-cross {
  color: var(--red);
}

.offer-box {
  margin: 8px 0 28px;
  border: 1px solid var(--brand-border);
  background: linear-gradient(135deg, var(--brand-dim), var(--surface));
  border-radius: var(--radius);
  padding: 26px;
}

.offer-kicker {
  margin: 0 0 6px;
  color: var(--brand);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .1em;
  font-weight: 700;
}

.offer-title {
  margin: 0 0 10px;
  font-size: 22px;
  font-weight: 800;
}

.offer-bonus {
  margin: 0 0 18px;
  color: var(--text-muted);
  font-size: 15px;
}

.offer-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 12px;
  margin-top: 20px;
}

.offer-stat {
  background: #00000008;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.offer-stat-value {
  font-weight: 800;
  color: var(--brand-strong);
  font-size: 16px;
}

.offer-stat-label {
  font-size: 12px;
  color: var(--text-faint);
}

.features-section {
  margin: 8px 0 28px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 12px;
}

.feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
}

.feature-icon {
  font-size: 22px;
}

.feature-title {
  margin: 8px 0 6px;
  font-size: 15.5px;
  font-weight: 700;
}

.feature-desc {
  margin: 0;
  font-size: 13.5px;
  color: var(--text-muted);
}

.plan-table-block {
  margin: 8px 0 28px;
}

.plan-table-title {
  margin: 0 0 12px;
  font-size: 18px;
  font-weight: 800;
}

.table-scroll {
  overflow-x: auto;
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.plan-table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--font-ui);
  font-size: 14px;
  min-width: 560px;
}

.plan-table th {
  background: var(--brand);
  color: #ffffff;
  padding: 11px 14px;
  text-align: left;
  font-weight: 700;
}

.plan-table td {
  padding: 11px 14px;
  border-top: 1px solid var(--border);
  color: var(--text);
}

.plan-table tbody tr:nth-child(2n) {
  background: var(--surface-2);
}

.plan-steps-list {
  list-style: none;
  margin: 8px 0 28px;
  padding: 0;
  counter-reset: step;
}

.plan-steps-list li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin: 0;
  position: relative;
  padding-bottom: 18px;
}

.plan-steps-list li:before {
  content: "";
  position: absolute;
  left: 15px;
  top: 34px;
  bottom: 2px;
  width: 2px;
  background: var(--brand-border);
}

.plan-steps-list li:last-child:before {
  display: none;
}

.step-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  flex: auto;
}

.step-num {
  flex: none;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--brand);
  color: #ffffff;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  position: relative;
  z-index: 1;
}

.step-text {
  padding-top: 4px;
  color: var(--text);
  flex: auto;
}

.faq-section {
  margin: 8px 0 28px;
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.faq-question {
  cursor: pointer;
  padding: 16px 18px;
  font-weight: 700;
  font-size: 15.5px;
  color: var(--text);
  list-style: none;
}

.faq-question::marker {
  color: var(--brand);
}

.faq-question:hover {
  color: var(--brand-strong);
}

.faq-answer {
  padding: 0 18px 16px;
  color: var(--text-muted);
  font-size: 15px;
}

.faq-answer p {
  margin: 0;
}

.faq-item[open] .faq-question {
  color: var(--brand-strong);
}

.related-posts {
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 12px;
}

.related-card {
  display: block;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 16px 18px;
  color: var(--text);
  font-size: 14.5px;
  font-weight: 600;
  transition: border-color .12s, background .12s;
}

.related-card:hover {
  border-color: var(--brand-border);
  background: var(--brand-dim);
  text-decoration: none;
  color: var(--brand-strong);
}

.related-card span {
  color: var(--brand);
}

.section-title {
  margin: 0 0 6px;
  font-size: 22px;
  font-weight: 800;
  color: var(--text);
}

.section-eyebrow {
  margin: 0;
  color: var(--text-faint);
  font-size: 14px;
}

.featured-head {
  margin-bottom: 18px;
}

.home-container {
  padding-top: 32px;
  padding-bottom: 48px;
}

.home-intro {
  max-width: 860px;
  margin: 0 auto 32px;
}

.posts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 14px;
}

.guide-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color .12s, transform .12s;
}

.guide-card:hover {
  border-color: var(--brand-border);
  transform: translateY(-2px);
}

.card-link {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 20px;
  color: var(--text);
  height: 100%;
}

.card-link:hover {
  text-decoration: none;
}

.card-tag {
  margin: 0;
  font-size: 11.5px;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 700;
  color: var(--brand);
}

.entry-title {
  margin: 0;
  font-size: 16.5px;
  font-weight: 700;
  line-height: 1.3;
}

.entry-summary {
  margin: 0;
  font-size: 13.5px;
  color: var(--text-muted);
}

.card-arrow {
  margin-top: auto;
  color: var(--brand);
  font-weight: 800;
}

.featured-posts, .posts-list {
  margin: 0 0 40px;
}

.featured-grid {
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
}

.why-section {
  margin: 0 0 40px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 14px;
  margin-top: 16px;
}

.why-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
}

.why-icon {
  font-size: 24px;
}

.why-title {
  margin: 10px 0 6px;
  font-size: 15.5px;
  font-weight: 700;
}

.why-text {
  margin: 0;
  font-size: 13.5px;
  color: var(--text-muted);
}

.category-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr);
  gap: 28px;
  align-items: center;
  padding: 28px;
  background: radial-gradient(800px 380px at 85% 0%, var(--brand-dim), transparent 60%),
    linear-gradient(180deg, var(--bg-elev), var(--surface));
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.category-hero-text {
  min-width: 0;
}

.category-hero-figure {
  margin: 0;
}

.category-hero-figure img {
  width: 100%;
  max-width: 380px;
  height: auto;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: 0 14px 34px #00000059;
  margin-left: auto;
}

.aviator-tile span {
  color: var(--brand);
}

@media (width <= 860px) {
  .category-hero {
    grid-template-columns: 1fr;
    padding: 20px;
  }

  .category-hero-figure img {
    max-width: 100%;
    max-height: 240px;
    object-fit: cover;
  }
}

.go-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  visibility: hidden;
  opacity: 0;
  transition: opacity .2s, visibility .2s;
}

.go-modal.is-open {
  visibility: visible;
  opacity: 1;
}

.go-modal-backdrop {
  position: absolute;
  inset: 0;
  background: #050b16d1;
  backdrop-filter: blur(4px);
}

.go-modal-dialog {
  position: relative;
  width: 100%;
  max-width: 420px;
  background: linear-gradient(180deg, var(--bg-elev), var(--bg));
  border: 1px solid var(--brand-border);
  border-radius: 18px;
  padding: 30px 28px 24px;
  box-shadow: 0 24px 60px #0009;
  text-align: center;
}

.go-modal-close {
  position: absolute;
  top: 10px;
  right: 12px;
  width: 30px;
  height: 30px;
  border: none;
  background: none;
  color: var(--text-faint);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  border-radius: 6px;
}

.go-modal-close:hover {
  color: var(--text);
  background: var(--surface-2);
}

.go-modal-head {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 8px;
}

.go-modal-logo {
  width: 40px;
  height: 40px;
  border-radius: 9px;
}

.go-modal-kicker {
  margin: 0;
  color: var(--brand);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .1em;
}

.go-modal-title {
  margin: 0 0 8px;
  font-size: 22px;
  font-weight: 800;
  color: var(--text);
}

.go-modal-text {
  margin: 0 0 20px;
  font-size: 14.5px;
  color: var(--text-muted);
}

.go-modal-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.go-modal-actions .btn {
  width: 100%;
  font-size: 15px;
}

.go-modal-login {
  background: none;
  color: var(--text-muted);
  border: 1px solid var(--border-strong);
}

.go-modal-login:hover {
  color: var(--text);
  border-color: var(--border-strong);
  background: var(--surface-2);
  transform: none;
  box-shadow: none;
}

.go-modal-register {
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  color: #ffffff;
  box-shadow: 0 8px 24px #ee343666;
}

.go-modal-register:hover {
  box-shadow: 0 12px 32px #ee34368c;
}

.go-modal-bonus {
  background: #f5a623;
  color: #ffffff;
  box-shadow: 0 6px 18px #f5a6234d;
}

.go-modal-bonus:hover {
  background: #f7b733;
}

.go-modal-note {
  margin: 16px 0 0;
  font-size: 11.5px;
  color: var(--text-faint);
}

.site-footer {
  margin-top: 40px;
  background: var(--footer-bg);
  border-top: 3px solid var(--brand);
  color: var(--footer-text);
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
  padding-top: 40px;
  padding-bottom: 32px;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  text-decoration: none;
  color: var(--footer-text-h);
}

.footer-logo:hover {
  text-decoration: none;
}

.footer-logo-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  flex: none;
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  color: #ffffff;
  font-weight: 900;
  font-size: 24px;
}

.footer-logo-text {
  font-family: var(--font-ui);
  font-size: 26px;
  font-weight: 900;
  letter-spacing: -.01em;
  text-transform: uppercase;
  line-height: 1;
}

.footer-logo-accent {
  color: var(--brand);
}

.footer-disclosure {
  font-size: 13px;
  color: var(--footer-text);
  max-width: 320px;
}

.footer-widgets {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 28px;
}

.widget-title {
  margin: 0 0 8px;
  font-size: 14px;
  font-weight: 700;
  color: var(--brand-strong);
  text-transform: uppercase;
  letter-spacing: .05em;
}

.widget-title:after {
  content: "▾";
  margin-left: 6px;
  font-size: 11px;
  color: var(--text-faint);
}

.widget .menu {
  flex-direction: column;
  align-items: stretch;
  gap: 0;
}

.widget .widget-menu {
  display: none;
}

.widget:hover .widget-menu, .widget:focus-within .widget-menu {
  display: flex;
}

.widget .menu-item a {
  padding: 5px 0;
  color: var(--footer-text);
  font-size: 13.5px;
}

.widget .menu-item a:hover {
  color: var(--brand);
  background: none;
}

@media (hover: none) {
  .widget .widget-menu {
    display: flex;
  }
}

.site-info {
  background: #1b1e21;
  border-top: 1px solid #33383c;
}

.site-info-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  align-items: center;
  padding: 18px 0;
  font-size: 12.5px;
  color: var(--footer-text);
}

.site-info-inner p {
  margin: 0;
}

.age-warning {
  color: var(--footer-text-h);
}

.footer-license {
  color: var(--footer-text);
}

.footer-claim a {
  color: var(--brand);
  font-weight: 600;
}

.proudly-powered a {
  color: var(--footer-text);
}

.sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 60;
  background: linear-gradient(#2d2d2d, #1f1f1f);
  border-top: 2px solid var(--brand);
  box-shadow: 0 -12px 40px #0009;
  transform: translateY(110%);
  transition: transform .35s;
}

.sticky-bar.is-visible {
  transform: translateY(0);
}

.sticky-inner {
  position: relative;
  display: flex;
  align-items: center;
  gap: 18px;
  padding-top: 14px;
  padding-bottom: 14px;
}

.sticky-logo {
  width: 46px;
  height: 46px;
  flex: none;
  border-radius: 10px;
}

.sticky-content {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.sticky-title {
  margin: 0;
  font-size: 16px;
  font-weight: 800;
  color: var(--brand);
}

.sticky-text {
  margin: 0;
  font-size: 13px;
  color: #c9c9c9;
}

.sticky-cta {
  flex: none;
  margin-left: auto;
  padding-left: 18px;
  border-left: 1px solid #ffffff26;
  background: #f5a623;
  color: #ffffff;
  box-shadow: 0 6px 18px #f5a6234d;
}

.sticky-cta:hover {
  background: #f7b733;
}

.sticky-close {
  position: absolute;
  top: 4px;
  right: 8px;
  width: 22px;
  height: 22px;
  border: none;
  background: none;
  color: #9a9a9a;
  font-size: 16px;
  line-height: 1;
  cursor: pointer;
  padding: 0;
}

.sticky-close:hover {
  color: #ffffff;
}

.home-layout {
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr);
  gap: 24px;
  padding: 24px 0;
}

.home-sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-self: start;
  position: sticky;
  top: 120px;
}

.sidebar-title {
  display: block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin: 0 0 8px;
  padding: 0 10px;
}

.activity-nav, .game-cats {
  display: flex;
  flex-direction: column;
  gap: 2px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 8px;
}

.activity-item, .game-cat {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 8px 10px;
  border-radius: 8px;
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
}

.cat-icon {
  width: 16px;
  height: 16px;
  flex: none;
}

.activity-item:hover, .game-cat:hover {
  color: var(--brand-strong);
  background: var(--brand-dim);
  text-decoration: none;
}

.activity-item.active {
  color: var(--brand-strong);
  background: var(--brand-dim);
  font-weight: 700;
}

.home-main {
  display: flex;
  flex-direction: column;
  gap: 28px;
  min-width: 0;
}

.mobile-nav-games {
  display: none;
}

.hero-carousel {
  overflow: hidden;
  border-radius: var(--radius);
}

.carousel-track {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 8px;
  scrollbar-width: thin;
}

.promo-card {
  position: relative;
  flex: 0 0 62%;
  min-width: 280px;
  scroll-snap-align: start;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--surface);
  text-decoration: none;
}

.promo-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.promo-body {
  position: absolute;
  inset: auto 0 0;
  padding: 44px 18px 16px;
  background: linear-gradient(to top, #000000eb, #0000);
}

.promo-kicker {
  margin: 0 0 2px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--brand);
}

.promo-title {
  margin: 0 0 10px;
  font-size: 22px;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.2;
}

.promo-cta {
  display: inline-block;
  padding: 9px 18px;
  border-radius: 999px;
  background: var(--brand);
  color: #ffffff;
  font-weight: 700;
  font-size: 13px;
}

.category-tags {
  display: flex;
  align-items: center;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 4px;
  scrollbar-width: thin;
  flex-wrap: nowrap;
}

.category-tag {
  flex: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid var(--border-strong);
  background: var(--surface);
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  transition: border-color .12s, background .12s, color .12s;
}

.category-tag:hover {
  border-color: var(--brand);
  color: var(--brand-strong);
  background: var(--brand-dim);
  text-decoration: none;
}

.category-tag.active {
  border-color: var(--brand);
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  color: #ffffff;
  font-weight: 700;
}

.category-tag .cat-tag-count {
  font-size: 11px;
  opacity: .7;
}

.game-row {
  min-width: 0;
}

.game-row-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 12px;
}

.game-row-title {
  margin: 0;
  font-size: 20px;
  font-weight: 800;
  color: var(--text);
}

.game-row-all {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 999px;
  border: 1px solid var(--border-strong);
  color: var(--brand-strong);
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
  text-decoration: none;
  transition: border-color .12s, background .12s;
}

.game-row-all:hover {
  border-color: var(--brand);
  background: var(--brand-dim);
  text-decoration: none;
}

.game-row-track {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 8px;
  scrollbar-width: thin;
}

.game-tile {
  position: relative;
  flex: 0 0 160px;
  scroll-snap-align: start;
  display: block;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--surface);
  text-decoration: none;
  transition: border-color .12s, transform .12s;
}

.game-tile:hover {
  border-color: var(--brand);
  text-decoration: none;
  transform: translateY(-2px);
}

.game-tile img {
  width: 100%;
  height: 100px;
  object-fit: cover;
  display: block;
}

.game-tile-name {
  display: block;
  padding: 8px 10px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.game-tile-badge {
  position: absolute;
  top: 6px;
  left: 6px;
  z-index: 1;
  background: var(--brand);
  color: #ffffff;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .05em;
  padding: 2px 7px;
  border-radius: 4px;
}

.game-tile-badge.live {
  background: var(--red);
  color: #ffffff;
}

.provider-tile {
  flex: none;
  scroll-snap-align: start;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 140px;
  min-height: 64px;
  padding: 10px 18px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: linear-gradient(160deg, var(--surface-2), var(--surface));
  text-decoration: none;
  transition: border-color .12s, transform .12s;
}

.provider-tile:hover {
  border-color: var(--brand);
  text-decoration: none;
  transform: translateY(-2px);
}

.provider-tile span {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  white-space: nowrap;
}

.winners-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.winners-all {
  font-size: 13px;
  color: var(--brand-strong);
  white-space: nowrap;
}

.winners-track {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 8px;
  scrollbar-width: thin;
}

.winner-item {
  flex: none;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px 8px 8px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 999px;
  text-decoration: none;
  white-space: nowrap;
}

.winner-item:hover {
  border-color: var(--brand-border);
  text-decoration: none;
}

.winner-thumb {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--border);
  flex: none;
}

.winner-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
}

.winner-nick {
  font-size: 12px;
  color: var(--text-faint);
}

.winner-amount {
  font-size: 13px;
  font-weight: 800;
  color: var(--brand);
}

.home-text-fold {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  overflow: hidden;
}

.fold-summary {
  cursor: pointer;
  padding: 16px 18px;
  font-weight: 700;
  font-size: 15.5px;
  color: var(--text);
  list-style: none;
}

.fold-summary:hover {
  color: var(--brand-strong);
}

.fold-summary::marker {
  color: var(--brand);
}

.fold-body {
  padding: 0 18px 18px;
  color: var(--text-muted);
}

@media (width <= 860px) {
  .nav-inner {
    flex-wrap: nowrap;
    gap: 8px;
    min-height: 56px;
    padding-top: 8px;
    padding-bottom: 8px;
  }

  .site-branding {
    order: 0;
    font-size: 17px;
    gap: 8px;
    margin-right: auto;
  }

  .brand-mark {
    width: 30px;
    height: 30px;
    font-size: 15px;
    border-radius: 7px;
  }

  .site-title {
    display: none;
  }

  .nav-cta-group {
    order: 1;
    margin-left: 0;
    gap: 6px;
  }

  .nav-cta-group .btn {
    padding: 8px 13px;
    font-size: 13px;
    white-space: nowrap;
  }

  .nav-toggle {
    order: 2;
    display: flex;
    margin-left: 0;
  }

  .main-navigation {
    order: 10;
    width: 100%;
    display: none;
  }

  .nav-toggle-input:checked ~ .main-navigation {
    display: block;
  }

  .menu {
    flex-direction: column;
    align-items: stretch;
    padding: 4px 0 10px;
  }

  .menu-item a {
    padding: 10px 12px;
  }

  .pros-cons-grid {
    grid-template-columns: 1fr;
  }

  .footer-top {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .page-hero {
    min-height: 0;
  }

  .page-hero-inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .page-hero-figure img {
    max-height: 260px;
    object-fit: cover;
  }

  .article-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .article-sidebar {
    position: static;
  }

  .home-layout {
    grid-template-columns: 1fr;
  }

  .home-sidebar {
    display: none;
  }

  .mobile-nav-games {
    display: block;
    padding: 4px 0 14px;
  }

  .mobile-nav-games .activity-nav, .mobile-nav-games .game-cats {
    background: none;
    border: none;
    padding: 4px 0;
  }

  .promo-card {
    flex: 0 0 86%;
  }

  .game-tile {
    flex: 0 0 120px;
  }
}

.footer-payments {
  margin-top: 20px;
}

.footer-payments-title {
  display: block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--brand-strong);
  margin-bottom: 10px;
}

.footer-payments-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.payment-chip {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 6px;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text-muted);
  font-size: 12.5px;
  font-weight: 600;
  white-space: nowrap;
}

.payment-chip:hover {
  border-color: var(--brand-border);
  color: var(--brand-strong);
}

.footer-license {
  max-width: 720px;
}

@media (width <= 480px) {
  .nav-cta-group .btn {
    padding: 7px 10px;
    font-size: 12px;
  }

  .game-tile {
    flex: 0 0 104px;
  }

  .game-tile img {
    height: 82px;
  }

  .promo-card img {
    height: 160px;
  }

  .sticky-content {
    display: none;
  }
}

/* ── Q/A hub (tile grid) ─────────────────────────────────── */
.qa-hub {
  padding-top: 36px;
  padding-bottom: 48px;
  max-width: 860px;
}

.qa-hub-hero {
  margin-bottom: 8px;
}

.qa-hub-intro {
  margin-bottom: 24px;
}

.qa-tile-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 12px;
  margin: 24px 0 32px;
}

.qa-tile {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--text);
  text-decoration: none;
  transition: border-color .12s, transform .12s, box-shadow .12s;
}

.qa-tile:hover {
  border-color: var(--brand);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px #00000014;
  text-decoration: none;
}

.qa-tile-q {
  font-size: 15.5px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.3;
}

.qa-tile:hover .qa-tile-q {
  color: var(--brand-strong);
}

.qa-tile-a {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}

.qa-tile-arrow {
  margin-top: auto;
  font-size: 15px;
  font-weight: 800;
  color: var(--brand);
}

.qa-hub-cta {
  margin: 8px 0 24px;
}

/* ── Q/A detail page ─────────────────────────────────────── */
.qa-detail {
  max-width: 860px;
  padding-top: 28px;
  padding-bottom: 48px;
}

.qa-breadcrumbs {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  font-size: 13px;
  color: var(--text-faint);
  margin-bottom: 18px;
}

.qa-breadcrumbs a {
  color: var(--text-muted);
}

.qa-breadcrumbs a:hover {
  color: var(--brand-strong);
}

.qa-breadcrumb-current {
  color: var(--text);
  font-weight: 600;
}

.qa-detail-head {
  margin-bottom: 20px;
}

.qa-detail-figure {
  margin: 0 0 22px;
}

.qa-detail-figure img {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.qa-answer {
  margin-bottom: 12px;
}

.qa-steps-callout {
  margin: 24px 0;
  padding: 20px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface-2);
}

.qa-detail-cta {
  margin: 24px 0;
}

.qa-related {
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

.qa-related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 10px;
  margin-top: 12px;
}

.qa-related-card {
  display: block;
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--surface);
  color: var(--text);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: border-color .12s, background .12s;
}

.qa-related-card:hover {
  border-color: var(--brand);
  background: var(--brand-dim);
  color: var(--brand-strong);
  text-decoration: none;
}

.qa-related-card span {
  color: var(--brand);
}

/* ── Casino review cards (tdu-style) ─────────────────────── */
.home-reviews {
  margin: 28px 0;
}

.home-reviews-head {
  margin-bottom: 16px;
}

.home-reviews-sub {
  margin: 4px 0 0;
  color: var(--text-muted);
  font-size: 13px;
}

.home-reviews-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.review-card {
  position: relative;
  display: grid;
  grid-template-columns: 1.6fr 1.4fr 1.2fr auto;
  gap: 16px;
  align-items: center;
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 2px 10px rgba(23, 22, 28, .04);
}

.review-card-rank {
  position: absolute;
  top: -9px;
  left: -6px;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--brand);
  color: #17161c;
  font-weight: 800;
  font-size: 14px;
  box-shadow: 0 2px 6px rgba(23, 22, 28, .18);
}

.review-card-main {
  display: flex;
  align-items: center;
  gap: 14px;
}

.review-card-logo {
  position: relative;
  width: 56px;
  height: 56px;
  flex: none;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  overflow: hidden;
}

.review-card-logo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #fff;
}

.review-card-logo-fallback {
  font-weight: 800;
  font-size: 22px;
  color: var(--brand-dark);
  text-transform: uppercase;
}

.review-card-id {
  min-width: 0;
}

.review-card-title {
  margin: 0 0 4px;
  font-size: 16px;
  font-weight: 700;
}

.review-card-title a {
  color: var(--text);
  text-decoration: none;
}

.review-card-title a:hover {
  color: var(--brand-dark);
}

.review-card-stars {
  display: inline-flex;
  align-items: center;
  gap: 1px;
  font-size: 13px;
  line-height: 1;
}

.review-card-stars .star {
  color: var(--brand);
}

.review-card-stars .star.half {
  position: relative;
  color: var(--border-strong);
}

.review-card-rating {
  margin-left: 6px;
  color: var(--text-muted);
  font-size: 12px;
}

.review-card-bonus {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.review-card-bonus-label,
.review-card-deposit-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--text-faint);
}

.review-card-bonus-value {
  font-weight: 700;
  color: var(--brand-dark);
  font-size: 15px;
  line-height: 1.25;
}

.review-card-deposit {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.review-card-deposit-list {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}

.review-card-deposit-chip {
  padding: 2px 8px;
  border-radius: 999px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  font-size: 11px;
  color: var(--text-muted);
}

.review-card-cta {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 6px;
  min-width: 128px;
}

.review-card-btn {
  text-align: center;
  padding: 10px 16px;
  font-size: 13.5px;
}

.review-card-play {
  font-size: 12.5px;
  color: var(--brand-dark);
  font-weight: 600;
  text-align: center;
}

.review-card-play:hover {
  text-decoration: underline;
}

@media (max-width: 900px) {
  .review-card {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .review-card-cta {
    flex-direction: row;
    align-items: center;
  }
}

/* ── News hub & news blocks ──────────────────────────────── */
.news-hub-head {
  margin-bottom: 20px;
}

.news-hub-intro {
  margin-bottom: 20px;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 14px;
  margin: 20px 0;
}

.news-card {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--text);
  text-decoration: none;
  transition: border-color .12s, box-shadow .12s;
}

.news-card:hover {
  border-color: var(--brand);
  box-shadow: 0 6px 18px rgba(23, 22, 28, .08);
  text-decoration: none;
}

.news-card-date {
  font-size: 12px;
  color: var(--text-faint);
  text-transform: uppercase;
  letter-spacing: .03em;
}

.news-card-title {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--text);
}

.news-card:hover .news-card-title {
  color: var(--brand-dark);
}

.news-card-excerpt {
  margin: 0;
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.5;
}

.news-card-meta {
  margin-top: auto;
  font-size: 12.5px;
  color: var(--text-faint);
}

.news-card-arrow {
  color: var(--brand);
}

.news-hub-cta {
  margin: 20px 0;
}

/* Latest-news cross-link module on article pages */
.news-block {
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

.news-block-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.news-block-all {
  font-size: 13px;
  font-weight: 600;
  color: var(--brand-dark);
  white-space: nowrap;
}

.news-block-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 10px;
}

.news-block-card {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--surface);
  color: var(--text);
  text-decoration: none;
}

.news-block-card:hover {
  border-color: var(--brand);
  background: var(--brand-dim);
  text-decoration: none;
}

.news-block-date {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .03em;
  color: var(--text-faint);
}

.news-block-title {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.3;
}

.news-block-source {
  font-size: 12px;
  color: var(--text-muted);
}
