:root{
  --bg:#fcfaf8;
  --bg-elevated:#ffffff;
  --surface:#ffffff;
  --surface-2:#f7f3f0;
  --surface-3:#f1ebe7;
  --text:#181412;
  --text-soft:#2a2320;
  --muted:#6c625d;
  --line:#e7ddd6;
  --line-strong:#d9ccc3;

  --accent:#bf4b5d;
  --accent-2:#a93e4f;
  --accent-soft:#f7dde2;
  --accent-warm:#fff3f5;

  --chip:#ffffff;
  --chip-strong:#f7f1ed;
  --success:#2f7b5e;

  --shadow-xs:0 4px 10px rgba(24,20,18,.04);
  --shadow-soft:0 10px 24px rgba(24,20,18,.06);
  --shadow:0 18px 46px rgba(24,20,18,.09);
  --shadow-strong:0 28px 72px rgba(24,20,18,.12);

  --radius-xl:30px;
  --radius-lg:24px;
  --radius-md:18px;
  --radius-sm:14px;
  --radius-xs:12px;
  --pill:999px;

  --max:1180px;
  --max-narrow:820px;

  --header-height:78px;
  --tap:46px;

  --fs-hero:clamp(2.35rem, 5vw, 4.7rem);
  --fs-title:clamp(1.95rem, 4vw, 3.25rem);
  --fs-h2:clamp(1.45rem, 2.5vw, 2rem);
  --fs-body:1.02rem;

  --transition:180ms ease;
}

html[data-theme="dark"]{
  --bg:#171413;
  --bg-elevated:#1d1918;
  --surface:#211c1a;
  --surface-2:#292220;
  --surface-3:#322927;
  --text:#f7f2ef;
  --text-soft:#efe8e3;
  --muted:#c2b7b0;
  --line:#3a312e;
  --line-strong:#4a3e39;

  --accent:#d15f72;
  --accent-2:#e17485;
  --accent-soft:#41242a;
  --accent-warm:#2a1e21;

  --chip:#231e1c;
  --chip-strong:#2c2523;
  --success:#77d1aa;

  --shadow-xs:0 4px 10px rgba(0,0,0,.18);
  --shadow-soft:0 10px 28px rgba(0,0,0,.22);
  --shadow:0 18px 46px rgba(0,0,0,.28);
  --shadow-strong:0 30px 80px rgba(0,0,0,.34);
}

*,
*::before,
*::after{box-sizing:border-box}

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

body{
  margin:0;
  font-family:Inter, ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  font-size:var(--fs-body);
  line-height:1.7;
  color:var(--text);
  background:var(--bg);
  text-rendering:optimizeLegibility;
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
}

html[data-theme="dark"] body{
  background:var(--bg);
}

a{
  color:inherit;
  text-decoration:none;
}

img,
svg{
  display:block;
  max-width:100%;
}

button,
input,
select,
textarea{
  font:inherit;
}

button{
  border:0;
}

::selection{
  background:color-mix(in srgb, var(--accent) 22%, transparent);
}

:focus-visible{
  outline:3px solid color-mix(in srgb, var(--accent) 26%, transparent);
  outline-offset:3px;
}

.container{
  width:min(calc(100% - 32px), var(--max));
  margin:0 auto;
}

.narrow{
  width:min(calc(100% - 32px), var(--max-narrow));
  margin:0 auto;
}

.container-narrow{
  width:min(calc(100% - 32px), 1120px);
  margin:0 auto;
}

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

.skip-link{
  position:absolute;
  left:-9999px;
  top:auto;
}

.skip-link:focus{
  left:16px;
  top:14px;
  z-index:100;
  padding:12px 16px;
  background:var(--surface);
  color:var(--text);
  border:1px solid var(--line);
  border-radius:var(--radius-sm);
  box-shadow:var(--shadow-soft);
}

/* Header */
.site-header{
  position:sticky;
  top:0;
  z-index:40;
  background:var(--bg);
  border-bottom:1px solid var(--line);
}

.header-row{
  min-height:var(--header-height);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
  min-width:0;
  font-weight:800;
  letter-spacing:-.04em;
}

.brand img{
  width:42px;
  height:42px;
  border-radius:12px;
}

.brand .label{
  display:flex;
  flex-direction:column;
  line-height:1;
  min-width:0;
}

.brand .label span{
  font-family:Inter, ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  font-size:1.08rem;
}

.brand small{
  margin-top:5px;
  color:var(--muted);
  font-size:.76rem;
  font-weight:700;
  letter-spacing:.01em;
}

.nav-wrap{
  display:flex;
  align-items:center;
  gap:10px;
}

.nav-links{
  display:flex;
  align-items:center;
  gap:6px;
  flex-wrap:wrap;
}

.nav-links a{
  min-height:42px;
  padding:0 14px;
  display:inline-flex;
  align-items:center;
  border-radius:var(--pill);
  color:var(--text-soft);
  font-size:.94rem;
  font-weight:700;
  transition:
    color var(--transition),
    background var(--transition),
    border-color var(--transition),
    transform var(--transition),
    box-shadow var(--transition);
}

.nav-links a:hover,
.nav-links a[aria-current="page"]{
  color:var(--text);
  background:var(--surface);
  box-shadow:var(--shadow-xs);
}

.icon-btn,
.menu-btn,
.lang-switch a{
  min-width:var(--tap);
  min-height:var(--tap);
  padding:0 14px;
  border:1px solid var(--line);
  background:color-mix(in srgb, var(--surface) 92%, transparent);
  color:var(--text);
  border-radius:var(--pill);
  display:inline-flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  font-weight:800;
  box-shadow:var(--shadow-xs);
  transition:
    transform var(--transition),
    background var(--transition),
    border-color var(--transition),
    box-shadow var(--transition);
}

.icon-btn{
  padding:0;
}

.icon-btn:hover,
.menu-btn:hover,
.lang-switch a:hover{
  transform:translateY(-1px);
  border-color:var(--line-strong);
  box-shadow:var(--shadow-soft);
}

.menu-btn{
  display:none;
}

.lang-switch{
  display:flex;
  gap:8px;
}

.lang-switch a.active{
  background:var(--accent);
  color:#fff;
  border-color:var(--accent);
  box-shadow:0 14px 30px rgba(191,75,93,.22);
}

.mobile-panel{
  display:none;
  padding:0 0 14px;
}

.mobile-panel.open{
  display:block;
}

.mobile-panel .mobile-panel-box{
  display:grid;
  gap:10px;
  padding:14px;
  border:1px solid var(--line);
  background:var(--surface);
  border-radius:var(--radius-lg);
  box-shadow:var(--shadow);
}

.mobile-panel nav{
  display:grid;
  gap:6px;
}

.mobile-panel a{
  min-height:46px;
  padding:12px 14px;
  display:flex;
  align-items:center;
  border-radius:var(--radius-sm);
  font-weight:700;
  color:var(--text-soft);
}

.mobile-panel a:hover,
.mobile-panel a[aria-current="page"]{
  background:var(--surface-2);
  color:var(--text);
}

/* Hero */
.hero{
  padding:46px 0 24px;
}

.hero-grid{
  display:grid;
  grid-template-columns:minmax(0, 1.12fr) minmax(300px, .88fr);
  gap:26px;
  align-items:center;
}

.eyebrow,
.post-kicker{
  display:inline-flex;
  align-items:center;
  gap:8px;
  min-height:38px;
  padding:0 14px;
  border:1px solid var(--line);
  background:color-mix(in srgb, var(--surface) 90%, transparent);
  border-radius:var(--pill);
  color:var(--text-soft);
  font-weight:800;
  font-size:.84rem;
  box-shadow:var(--shadow-xs);
}

.hero h1,
.entry-title,
.section-head h1,
.section-head h2,
.card h3,
.empty-state h2,
.taxonomy-copy strong{
  font-family:Inter, ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
}

.hero h1,
.entry-title{
  margin:16px 0 14px;
  letter-spacing:-.065em;
  line-height:.96;
  font-weight:800;
}

.hero h1{
  font-size:var(--fs-hero);
  max-width:12ch;
}

.hero p{
  margin:0;
  max-width:62ch;
  font-size:1.06rem;
  color:var(--muted);
}

.hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:24px;
}

.button,
.official-link{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  min-height:52px;
  padding:0 18px;
  border-radius:16px;
  font-weight:800;
  border:1px solid transparent;
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    border-color var(--transition),
    background var(--transition),
    color var(--transition);
}

.button:hover,
.official-link:hover{
  transform:translateY(-1px);
}

.button.solid,
.official-link{
  background:linear-gradient(180deg, color-mix(in srgb, var(--accent) 92%, white 8%), var(--accent));
  color:#fff;
  box-shadow:0 16px 34px rgba(191,75,93,.20);
}

.button.solid:hover,
.official-link:hover{
  background:linear-gradient(180deg, color-mix(in srgb, var(--accent-2) 88%, white 12%), var(--accent-2));
}

.button.secondary,
.secondary-official-link{
  background:var(--surface);
  color:var(--text);
  border-color:var(--line);
  box-shadow:var(--shadow-xs);
}

.button.secondary:hover,
.secondary-official-link:hover{
  border-color:var(--line-strong);
  background:var(--surface-2);
}

.hero-side{
  position:relative;
  padding:26px;
  border:1px solid var(--line);
  background:
    linear-gradient(180deg, color-mix(in srgb, var(--surface) 96%, white 4%), var(--surface));
  border-radius:var(--radius-xl);
  box-shadow:var(--shadow);
  overflow:hidden;
}

.hero-side-highlight::after{
  content:"";
  position:absolute;
  right:-56px;
  bottom:-72px;
  width:190px;
  height:190px;
  border-radius:50%;
  background:radial-gradient(circle, rgba(191,75,93,.14), transparent 68%);
  pointer-events:none;
}

.hero-side p{
  position:relative;
  z-index:1;
  font-size:1rem;
  color:var(--text-soft);
}

.meta-line{
  position:relative;
  z-index:1;
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin:16px 0 0;
}

.chip,
.tag{
  display:inline-flex;
  align-items:center;
  gap:8px;
  min-height:36px;
  padding:0 12px;
  border-radius:var(--pill);
  background:var(--chip);
  border:1px solid var(--line);
  color:var(--text-soft);
  font-size:.84rem;
  font-weight:800;
  box-shadow:var(--shadow-xs);
}

/* Generic layout */
.section{
  padding:28px 0 46px;
}

.section-head{
  display:flex;
  flex-wrap:wrap;
  align-items:flex-end;
  justify-content:space-between;
  gap:16px;
  margin-bottom:24px;
}

.section-head h1,
.section-head h2{
  margin:0;
  font-size:var(--fs-title);
  letter-spacing:-.06em;
  line-height:.98;
  font-weight:800;
}

.section-head h2{
  font-size:var(--fs-h2);
}

.section-head p{
  margin:0;
  max-width:68ch;
  color:var(--muted);
  font-size:1.03rem;
  line-height:1.78;
}

/* Cards */
.cards-grid,
.home-cards{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:22px;
  content-visibility:auto;
  contain-intrinsic-size:800px;
}

.listing-ad-pool{
  display:none;
}

.ad-wrap{
  width:min(100%, 728px);
  margin:28px auto;
  padding:8px 0;
  text-align:center;
  clear:both;
}

.ad-label{
  display:block;
  margin:0 0 8px;
  color:var(--muted);
  font-size:.68rem;
  font-weight:800;
  line-height:1;
  letter-spacing:.1em;
  text-transform:uppercase;
}

.wynplay-ad-slot{
  min-height:90px;
}

.ad-wrap .adsbygoogle{
  margin:0 auto;
}

.ad-wrap .wynplay-ad--desktop{
  display:block !important;
  width:100% !important;
  max-width:728px;
  min-height:90px;
}

.ad-wrap .wynplay-ad--mobile{
  display:inline-block !important;
  width:300px !important;
  height:300px !important;
  max-width:300px !important;
  max-height:300px !important;
}

.cards-grid > .ad-wrap--listing,
.home-cards > .ad-wrap--listing{
  grid-column:1 / -1;
  justify-self:center;
  width:min(100%, 728px);
  margin:2px auto 10px;
}

.cards-grid > .ad-wrap--listing[hidden],
.home-cards > .ad-wrap--listing[hidden]{
  display:none !important;
}

.card{
  display:flex;
  flex-direction:column;
  min-height:100%;
  background:linear-gradient(180deg, color-mix(in srgb, var(--surface) 98%, white 2%), var(--surface));
  border:1px solid var(--line);
  border-radius:26px;
  overflow:hidden;
  box-shadow:var(--shadow-soft);
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    border-color var(--transition);
}

.card:hover{
  transform:translateY(-4px);
  border-color:color-mix(in srgb, var(--accent) 24%, var(--line));
  box-shadow:var(--shadow);
}

.card-media{
  display:block;
  padding:0;
  background:transparent;
}

.card-picture{
  display:block;
  border-radius:22px 22px 0 0;
  overflow:hidden;
  background:transparent;
}

.card-picture img{
  width:100%;
  height:auto;
  max-height:320px;
  object-fit:contain;
  background:transparent;
}

.card-body{
  display:flex;
  flex-direction:column;
  gap:12px;
  padding:20px 20px 22px;
}

.card-topline{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
}

.card-eyebrow{
  display:inline-flex;
  align-items:center;
  min-height:28px;
  padding:0 10px;
  border-radius:var(--pill);
  background:var(--accent-soft);
  color:var(--accent);
  font-size:.78rem;
  font-weight:800;
  letter-spacing:.02em;
}

.card-title{
  margin:0;
  font-size:1.24rem;
  line-height:1.1;
  letter-spacing:-.04em;
  font-weight:800;
}

.card-title a{
  color:var(--text);
  transition:color var(--transition);
}

.card-title a:hover{
  color:var(--accent);
}

.card p{
  margin:0;
  color:var(--muted);
  font-size:.98rem;
  line-height:1.72;
}

.tags{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin-top:2px;
}

.card .tag{
  background:var(--chip-strong);
  border-color:color-mix(in srgb, var(--line) 90%, white 10%);
  font-weight:700;
}

.card-link{
  display:inline-flex;
  align-items:center;
  gap:8px;
  margin-top:auto;
  color:var(--accent);
  font-weight:800;
  transition:color var(--transition), transform var(--transition);
}

.card-link:hover{
  color:var(--accent-2);
}

.card-link.button.solid{
  width:100%;
  min-height:48px;
  margin-top:8px;
  border-radius:14px;
  color:#fff;
}

/* Page / post */
.page-wrap{
  padding:36px 0 52px;
}

.page-hero{
  margin-bottom:10px;
}

.crumbs{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin:0 0 18px;
  color:var(--muted);
  font-size:.92rem;
}

.crumbs a{
  color:var(--muted);
  transition:color var(--transition);
}

.crumbs a:hover{
  color:var(--accent);
}

.crumbs span.sep{
  opacity:.55;
}

.post-shell{
  max-width:960px;
  margin:0 auto;
  background:linear-gradient(180deg, color-mix(in srgb, var(--surface) 98%, white 2%), var(--surface));
  border:1px solid var(--line);
  border-radius:34px;
  box-shadow:var(--shadow);
  overflow:hidden;
}

.post-header{
  padding:38px 36px 8px;
}

.post-header-inner{
  display:grid;
  grid-template-columns:minmax(0, 1fr) 320px;
  gap:30px;
  align-items:center;
}

.post-tags{
  margin-top:22px;
  display:none !important;
}

.entry-title{
  font-size:clamp(2rem, 4.2vw, 3.45rem);
}

.entry-summary{
  margin:0;
  max-width:64ch;
  color:var(--muted);
  font-size:1.08rem;
  line-height:1.76;
}

.post-cta-wrap{
  width:min(100%, 320px);
  margin:8px auto 0;
  padding:22px;
  display:flex;
  flex-direction:column;
  gap:12px;
  align-items:center;
  justify-content:center;
  justify-self:center;
  align-self:center;
  text-align:center;
  background:var(--surface);
  border:1px solid var(--line);
  border-radius:26px;
  box-shadow:var(--shadow-soft);
}

.post-cta-wrap .official-link,
.post-cta-wrap .secondary-official-link{
  width:100%;
  min-height:56px;
  justify-content:center;
  text-align:center;
  font-size:1rem;
}

.post-cta-wrap .official-link,
.mobile-post-cta .official-link,
.card-link.button.solid{
  color:#fff !important;
}

.post-cta-wrap .secondary-official-link,
.mobile-post-cta .secondary-official-link{
  color:var(--text) !important;
}

.post-cta-note{
  display:none;
}

.mobile-post-cta{
  display:none;
}

.entry-figure{
  margin:0;
  padding:12px 36px 18px;
  background:transparent;
  border:0 !important;
  box-shadow:none !important;
}

.entry-picture{
  display:block;
  overflow:hidden;
  border-radius:26px;
  background:transparent !important;
  border:0 !important;
  box-shadow:none !important;
}

.entry-picture img{
  width:100%;
  height:auto;
  max-height:860px;
  object-fit:contain;
  margin:0 auto;
  background:transparent !important;
  border:0 !important;
  box-shadow:none !important;
}

.entry-figure figcaption{
  margin-top:14px;
  color:var(--muted);
  font-size:.94rem;
}

.post-body{
  padding:18px 36px 50px;
}

.notice{
  margin:0 0 24px;
  padding:15px 16px;
  border-radius:18px;
  border:1px solid var(--line);
  background:var(--surface-2);
  font-weight:600;
  color:var(--text-soft);
}

.notice.ended{
  background:#fff1ef;
  border-color:#f2c7c2;
  color:#7e2d36;
}

html[data-theme="dark"] .notice.ended{
  background:#40272a;
  border-color:#714147;
  color:#ffd0ca;
}

.post-meta-grid{
  display:none;
}

.key{
  padding:16px 18px;
  border:1px solid var(--line);
  background:var(--surface);
  border-radius:18px;
}

.key strong{
  display:block;
  font-size:.78rem;
  text-transform:uppercase;
  letter-spacing:.08em;
  color:var(--muted);
}

.key span{
  display:block;
  margin-top:8px;
  font-weight:800;
  line-height:1.4;
}

.post-section{
  padding:58px 0;
  border-top:1px solid color-mix(in srgb, var(--line) 84%, transparent);
}

.post-section:first-of-type{
  padding-top:10px;
  border-top:0;
}

.post-section h2{
  margin:0 0 18px;
  font-size:clamp(1.38rem, 2.4vw, 1.86rem);
  letter-spacing:-.05em;
  line-height:1.05;
  font-weight:800;
}

.post-section p,
.post-section li{
  color:var(--text-soft);
  font-size:1.04rem;
  line-height:1.82;
}

.post-section p{
  margin:0;
}

.post-body .post-section p + p{
  margin-top:12px;
}

.post-section ul,
.post-section ol{
  margin:8px 0 0;
  padding-left:20px;
}

.post-section li{
  padding-left:4px;
}

.post-section li + li{
  margin-top:10px;
}

.post-body a,
.post-section a,
.list-item span a{
  color:var(--accent);
  font-weight:800;
  transition:color var(--transition), border-color var(--transition);
}

.post-body a:hover,
.post-section a:hover,
.list-item span a:hover{
  color:var(--accent-2);
}

/* FAQ */
.faq-list{
  display:grid;
  gap:14px;
}

.faq-list details{
  border:1px solid var(--line);
  border-radius:18px;
  background:var(--surface);
  padding:16px 18px;
  box-shadow:var(--shadow-xs);
}

.faq-list summary{
  cursor:pointer;
  list-style:none;
  font-weight:800;
  color:var(--text);
}

.faq-list summary::-webkit-details-marker{
  display:none;
}

.faq-list details p{
  margin-top:12px !important;
}

/* Listings / compact lists */
.list-compact,
.guide-list{
  display:grid;
  gap:14px;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  content-visibility:auto;
  contain-intrinsic-size:800px;
}

.list-item,
.guide-card{
  display:flex;
  flex-direction:column;
  gap:8px;
  padding:18px 20px;
  border:1px solid var(--line);
  border-radius:22px;
  background:var(--surface);
  color:var(--text);
  box-shadow:var(--shadow-xs);
  transition:
    transform var(--transition),
    border-color var(--transition),
    box-shadow var(--transition);
}

.list-item:hover,
.guide-card:hover{
  transform:translateY(-2px);
  border-color:color-mix(in srgb, var(--accent) 22%, var(--line));
  box-shadow:var(--shadow-soft);
}

.list-item strong,
.guide-card strong{
  display:block;
  font-size:1.04rem;
  line-height:1.36;
  letter-spacing:-.02em;
}

.list-item span{
  display:block;
  color:var(--muted);
  margin-top:3px;
}

.post-data .list-item:has(span:empty){
  display:none;
}

.guide-card span{
  color:var(--accent);
  font-weight:800;
}

.empty-state{
  padding:30px 22px;
  border:1px dashed var(--line-strong);
  border-radius:24px;
  background:var(--surface);
  color:var(--muted);
}

.empty-state h2{
  margin:0 0 10px;
  color:var(--text);
  font-size:1.35rem;
  letter-spacing:-.03em;
}

/* Taxonomy */
.taxonomy-item{
  display:block;
  padding:18px 20px;
  border-radius:24px;
  background:var(--surface);
  border:1px solid var(--line);
  box-shadow:var(--shadow-xs);
}

.taxonomy-mark{
  display:none !important;
}

.taxonomy-copy{
  display:block;
}

.taxonomy-copy strong{
  display:block;
  font-size:1.05rem;
  line-height:1.18;
  letter-spacing:-.02em;
  font-weight:800;
}

.taxonomy-copy span{
  display:block;
  margin-top:6px;
  color:var(--muted);
  font-size:.95rem;
}

/* Home */
.home-intro,
.listing-intro{
  padding-top:34px;
  padding-bottom:14px;
}

.home-intro .container,
.listing-intro .container{
  display:block;
}

.home-intro h1,
.listing-intro h1{
  margin:0 0 14px;
  max-width:18ch;
  font-size:clamp(2.25rem, 4.8vw, 3.6rem);
  line-height:.98;
  letter-spacing:-.055em;
  font-weight:800;
  color:var(--text);
}

.home-lede,
.listing-intro .home-lede{
  max-width:70ch;
  margin:0;
  color:var(--muted);
  font-size:1rem;
  line-height:1.78;
}

.home-directory{
  padding-top:10px;
}

.home-toolbar{
  display:grid;
  grid-template-columns:minmax(180px, 240px) 1fr;
  gap:12px;
  align-items:end;
  margin:20px 0 26px;
  padding:18px;
  border:1px solid var(--line);
  border-radius:24px;
  background:linear-gradient(180deg, color-mix(in srgb, var(--surface) 98%, white 2%), var(--surface));
  box-shadow:var(--shadow-xs);
}

.filter-field{
  display:flex;
  flex-direction:column;
  gap:8px;
}

.filter-field label{
  font-size:.76rem;
  font-weight:800;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:var(--text-soft);
}

.filter-field select,
.filter-field input{
  width:100%;
  height:50px;
  padding:0 14px;
  border-radius:14px;
  border:1px solid var(--line);
  background:var(--bg-elevated);
  color:var(--text);
  outline:none;
  transition:border-color var(--transition), box-shadow var(--transition), background var(--transition);
}

.filter-field select:focus,
.filter-field input:focus{
  border-color:var(--accent);
  box-shadow:0 0 0 4px rgba(191,75,93,.12);
}

.results-meta{
  margin:0 0 14px;
  color:var(--text-soft);
  font-size:.96rem;
}

.pagination{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:10px;
  margin-top:28px;
}

.page-btn{
  min-width:44px;
  height:44px;
  padding:0 14px;
  border:1px solid var(--line);
  border-radius:14px;
  background:var(--surface);
  color:var(--text);
  font-weight:800;
  cursor:pointer;
  box-shadow:var(--shadow-xs);
  transition:
    transform var(--transition),
    border-color var(--transition),
    color var(--transition),
    background var(--transition);
}

.page-btn:hover:not(:disabled){
  transform:translateY(-1px);
  border-color:var(--accent);
  color:var(--accent);
}

.page-btn.active{
  background:var(--accent);
  color:#fff;
  border-color:var(--accent);
  box-shadow:0 14px 28px rgba(191,75,93,.18);
}

.page-btn:disabled{
  opacity:.45;
  cursor:not-allowed;
}

/* Footer */
.site-footer{
  margin-top:16px;
  padding:30px 0 40px;
  border-top:1px solid color-mix(in srgb, var(--line) 88%, transparent);
}

.footer-grid{
  display:grid;
  grid-template-columns:1.15fr .85fr .85fr;
  gap:24px;
  align-items:start;
}

.footer-brand{
  display:inline-flex;
}

.footer-copy{
  margin:12px 0 0;
  max-width:56ch;
  color:var(--muted);
  font-size:.96rem;
}

.footer-links{
  display:grid;
  gap:10px;
  align-content:start;
}

.footer-links a{
  color:var(--muted);
  transition:color var(--transition);
}

.footer-links a:hover{
  color:var(--text);
}

/* Performance niceties */
.cards-grid,
.list-compact,
.guide-list{
  will-change:auto;
}

/* Dark mode specific refinements */
html[data-theme="dark"] .site-header{
  background:rgba(23,20,19,.82);
}

html[data-theme="dark"] .post-shell,
html[data-theme="dark"] .card,
html[data-theme="dark"] .hero-side,
html[data-theme="dark"] .post-cta-wrap,
html[data-theme="dark"] .faq-list details,
html[data-theme="dark"] .list-item,
html[data-theme="dark"] .guide-card,
html[data-theme="dark"] .key,
html[data-theme="dark"] .taxonomy-item,
html[data-theme="dark"] .home-toolbar,
html[data-theme="dark"] .empty-state,
html[data-theme="dark"] .filter-field select,
html[data-theme="dark"] .filter-field input,
html[data-theme="dark"] .page-btn{
  background:var(--surface);
  border-color:var(--line);
}

html[data-theme="dark"] .button.secondary,
html[data-theme="dark"] .secondary-official-link{
  background:var(--surface-2);
  color:var(--text);
  border-color:var(--line);
}

html[data-theme="dark"] .chip,
html[data-theme="dark"] .tag{
  background:var(--chip);
  color:var(--text);
  border-color:var(--line);
}

html[data-theme="dark"] .card-eyebrow{
  background:rgba(209,95,114,.16);
  color:#ffc0ca;
}

html[data-theme="dark"] .section-head p,
html[data-theme="dark"] .home-lede,
html[data-theme="dark"] .entry-summary,
html[data-theme="dark"] .post-section p,
html[data-theme="dark"] .post-section li,
html[data-theme="dark"] .crumbs,
html[data-theme="dark"] .results-meta,
html[data-theme="dark"] .card p,
html[data-theme="dark"] .footer-copy,
html[data-theme="dark"] .taxonomy-copy span,
html[data-theme="dark"] .list-item span{
  color:var(--muted);
}

html[data-theme="dark"] .card-title a,
html[data-theme="dark"] .section-head h1,
html[data-theme="dark"] .section-head h2,
html[data-theme="dark"] .entry-title{
  color:var(--text);
}

html[data-theme="dark"] .entry-figure figcaption{
  color:#bdb0a8;
}

html[data-theme="dark"] .page-btn:hover:not(:disabled){
  color:#fff;
}

html[data-theme="dark"] .guide-card span,
html[data-theme="dark"] .card-link,
html[data-theme="dark"] .list-item span a,
html[data-theme="dark"] .post-body a,
html[data-theme="dark"] .post-section a{
  color:#ffb9c4;
}

html[data-theme="dark"] .guide-card:hover,
html[data-theme="dark"] .list-item:hover,
html[data-theme="dark"] .card:hover{
  border-color:rgba(209,95,114,.26);
}

/* Responsive */
@media (max-width:980px){
  .hero-grid,
  .footer-grid,
  .post-header-inner{
    grid-template-columns:1fr;
  }

  .cards-grid,
  .home-cards{
    grid-template-columns:repeat(2, minmax(0, 1fr));
  }

  .list-compact,
  .guide-list{
    grid-template-columns:1fr;
  }

  .post-cta-wrap{
    width:100%;
    max-width:100%;
  }
}

@media (max-width:760px){
  .container,
  .narrow,
  .container-narrow{
    width:min(calc(100% - 24px), var(--max));
  }

  .menu-btn{
    display:inline-flex;
  }

  .nav-links{
    display:none;
  }

  .brand img{
    width:36px;
    height:36px;
  }

  .brand small{
    display:none;
  }


  .hero{
    padding:24px 0 16px;
  }

  .hero h1{
    max-width:100%;
    font-size:clamp(2.1rem, 11vw, 3.35rem);
  }

  .hero p{
    font-size:1rem;
    line-height:1.74;
  }

  .hero-actions{
    gap:10px;
  }

  .button,
  .official-link{
    width:100%;
    min-height:50px;
    border-radius:15px;
  }

  .hero-side{
    padding:20px;
    border-radius:24px;
  }

  .hero-side-highlight::after{
    display:none;
  }

  .section{
    padding:22px 0 36px;
  }

  .section-head{
    margin-bottom:22px;
  }

  .section-head h1{
    font-size:clamp(1.95rem, 9vw, 3rem);
    margin-bottom:0;
  }

  .section-head h2{
    font-size:clamp(1.4rem, 6vw, 1.9rem);
  }

  .section-head p{
    font-size:.98rem;
    line-height:1.72;
  }

  .cards-grid,
  .home-cards{
    grid-template-columns:1fr;
    gap:18px;
  }

  .ad-wrap,
  .cards-grid > .ad-wrap--listing,
  .home-cards > .ad-wrap--listing{
    width:300px;
    max-width:300px;
    margin:2px auto 8px;
  }

  .wynplay-ad-slot{
    min-height:300px;
  }

  .ad-wrap .adsbygoogle{
    max-width:300px !important;
  }

  .card{
    border-radius:22px;
  }

  .card-body{
    padding:18px;
  }

  .card-title{
    font-size:1.18rem;
  }

  .page-wrap{
    padding:24px 0 38px;
  }

  .post-shell{
    border-radius:26px;
  }

  .post-header{
    padding:24px 18px 8px;
  }

  .entry-title{
    font-size:clamp(2rem, 9.5vw, 3rem);
    line-height:1;
  }

  .entry-summary{
    font-size:1rem;
    line-height:1.72;
  }

  .post-tags{
    display:none !important;
  }

  .post-cta-wrap{
    display:none;
  }

  .mobile-post-cta{
    display:block;
    margin:16px 0 10px;
  }

  .mobile-post-cta .post-cta-wrap{
    display:flex;
    width:min(100%, 360px);
    max-width:100%;
    margin:0 auto;
  }

  .entry-figure{
    padding:8px 18px 12px;
  }

  .entry-picture{
    border-radius:20px;
  }

  .entry-picture img{
    max-height:none;
  }

  .post-body{
    padding:12px 18px 34px;
  }

  .post-section{
    padding:42px 0;
  }

  .post-section:first-of-type{
    padding-top:8px;
  }

  .post-section p,
  .post-section li{
    font-size:1rem;
    line-height:1.76;
  }

  .post-meta-grid{
    grid-template-columns:1fr;
  }

  .home-intro,
  .listing-intro{
    padding-top:22px;
    padding-bottom:10px;
  }

  .home-intro h1,
  .listing-intro h1{
    max-width:100%;
    font-size:clamp(2rem, 10vw, 3rem);
    margin-bottom:10px;
  }

  .home-toolbar{
    grid-template-columns:1fr;
    gap:12px;
    padding:15px;
    border-radius:20px;
    margin:18px 0 22px;
  }

  .filter-field label{
    font-size:.78rem;
  }

  .filter-field select,
  .filter-field input{
    height:50px;
    padding:0 14px;
    border-radius:14px;
    font-size:16px;
  }

  .taxonomy-item{
    padding:16px 18px;
    border-radius:20px;
  }

  .list-item,
  .guide-card{
    padding:16px 18px;
    border-radius:20px;
  }

  .faq-list details{
    padding:15px 16px;
    border-radius:16px;
  }

  .site-footer{
    padding:22px 0 32px;
  }

  .footer-grid{
    grid-template-columns:1fr;
    gap:18px;
  }
}

@media (max-width:520px){
  .header-row{
    gap:10px;
    min-height:70px;
  }

  .brand .label span{
    font-size:1rem;
  }

  .lang-switch{
    gap:6px;
  }

  .lang-switch a{
    min-width:42px;
    min-height:42px;
    padding:0 12px;
  }

  .eyebrow,
  .post-kicker,
  .chip,
  .tag{
    font-size:.8rem;
  }

  .card-link.button.solid{
    min-height:46px;
  }

  .page-btn{
    min-width:42px;
    height:42px;
    border-radius:12px;
  }
}

/* Reduced motion */
@media (prefers-reduced-motion:reduce){
  html{
    scroll-behavior:auto;
  }

  *,
  *::before,
  *::after{
    animation:none !important;
    transition:none !important;
  }
}

/* --- Mobile header and listing spacing refinements --- */
.card-topline,
.card-eyebrow{
  display:none !important;
}

.listing-intro{
  padding-bottom:8px;
}

.listing-intro .home-lede{
  margin-bottom:10px;
}

.home-directory{
  padding-top:4px;
}

.home-toolbar{
  margin:12px 0 24px;
}

.section,
.home-cards,
.cards-grid,
.list-grid,
.guides-grid,
.taxonomy-grid{
  scroll-margin-top:96px;
}

@media (max-width:760px){
  .site-header .container,
  .site-header .container-narrow,
  .site-header .narrow{
    width:min(calc(100% - 16px), var(--max));
  }

  .site-header{
    overflow-x:clip;
  }

  .header-row{
    min-height:64px;
    gap:8px;
    flex-wrap:nowrap;
  }

  .brand{
    flex:1 1 auto;
    min-width:0;
    gap:10px;
  }

  .brand img{
    width:34px;
    height:34px;
    border-radius:10px;
    flex:0 0 auto;
  }

  .brand .label{
    min-width:0;
  }

  .brand .label span{
    font-size:.98rem;
    white-space:nowrap;
    overflow:hidden;
    text-overflow:ellipsis;
  }

  .nav-wrap{
    flex:0 0 auto;
    gap:6px;
  }

  .lang-switch{
    gap:5px;
    flex-wrap:nowrap;
  }

  .icon-btn,
  .menu-btn,
  .lang-switch a{
    min-width:42px;
    min-height:42px;
    padding:0 12px;
    font-size:.95rem;
    border-radius:999px;
    flex:0 0 auto;
  }

  .menu-btn{
    max-width:92px;
    white-space:nowrap;
  }

  .listing-intro{
    padding-top:18px;
    padding-bottom:6px;
  }

  .listing-intro h1{
    margin-bottom:8px;
  }

  .listing-intro .home-lede{
    margin-bottom:8px;
    line-height:1.65;
  }

  .home-directory{
    padding-top:0;
  }

  .home-toolbar{
    margin:10px 0 20px;
  }
}

@media (max-width:520px){
  .header-row{
    min-height:60px;
    gap:6px;
  }

  .brand{
    gap:8px;
  }

  .brand img{
    width:32px;
    height:32px;
  }

  .brand .label span{
    font-size:.95rem;
  }

  .nav-wrap{
    gap:5px;
  }

  .lang-switch{
    gap:4px;
  }

  .icon-btn,
  .menu-btn,
  .lang-switch a{
    min-width:40px;
    min-height:40px;
    padding:0 10px;
    font-size:.92rem;
  }

  .menu-btn{
    padding:0 12px;
    font-size:.9rem;
  }

  .listing-intro h1{
    margin-bottom:8px;
    font-size:clamp(1.9rem, 9.5vw, 2.8rem);
  }

  .listing-intro .home-lede{
    margin-bottom:6px;
    font-size:.98rem;
  }

  .home-toolbar{
    margin:8px 0 18px;
    padding:14px;
  }
}
@media (max-width: 820px){
  .crumbs{display:none;}
  .site-footer{display:none;}
}


/* PSI trim */
.card,.post-shell,.hero-side,.home-toolbar,.faq-list details,.list-item,.guide-card,.taxonomy-item,.post-cta-wrap,.key,.page-btn,.icon-btn,.menu-btn,.lang-switch a,.nav-links a{box-shadow:none;}
.card:hover,.list-item:hover,.guide-card:hover,.button:hover,.official-link:hover,.page-btn:hover:not(:disabled),.icon-btn:hover,.menu-btn:hover,.lang-switch a:hover{transform:none;}
.nav-links a{border:1px solid var(--line);}
html[data-theme="dark"] .site-header{background:#141110;border-bottom-color:#2a2321;}
html[data-theme="dark"] .nav-links a,html[data-theme="dark"] .icon-btn,html[data-theme="dark"] .menu-btn,html[data-theme="dark"] .lang-switch a{background:#201b1a;border-color:#3a312e;color:#f7f2ef;}
html[data-theme="dark"] .nav-links a:hover,html[data-theme="dark"] .nav-links a[aria-current="page"],html[data-theme="dark"] .icon-btn:hover,html[data-theme="dark"] .menu-btn:hover,html[data-theme="dark"] .lang-switch a:hover{background:#2a2321;border-color:#4a3e39;color:#fff;}


/* Entry SEO/UX upgrades */
.quick-facts{
  margin:18px 0 0;
  padding:18px;
  border:1px solid var(--line);
  border-radius:var(--radius-lg);
  background:color-mix(in srgb, var(--surface) 90%, var(--accent-warm));
  box-shadow:var(--shadow-xs);
}

.quick-facts--compact{
  margin:18px 0 22px;
}

.quick-facts-grid{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:12px;
}

.quick-facts .key{
  min-width:0;
  padding:13px 14px;
  border:1px solid var(--line);
  border-radius:var(--radius-sm);
  background:var(--surface);
}

.quick-facts .key strong{
  display:block;
  margin-bottom:4px;
  font-size:.72rem;
  line-height:1.25;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:var(--muted);
}

.quick-facts .key span{
  display:block;
  color:var(--text);
  font-weight:700;
  line-height:1.35;
}

.quick-facts a,
.source-review a{
  color:var(--accent-2);
  font-weight:800;
  text-decoration:underline;
  text-decoration-thickness:1px;
  text-underline-offset:3px;
}

.inline-cta{
  margin:22px 0;
}

.inline-cta .post-cta-wrap,
.mobile-post-cta .post-cta-wrap.compact{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  align-items:center;
}

.post-cta-wrap.compact .official-link{
  min-height:44px;
  padding:12px 16px;
  font-size:.95rem;
}

.source-review-grid{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:12px;
}

.source-review-grid > div{
  padding:14px 16px;
  border:1px solid var(--line);
  border-radius:var(--radius-sm);
  background:var(--surface-2);
}

.source-review-grid strong{
  display:block;
  margin-bottom:4px;
  font-size:.74rem;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:var(--muted);
}

.source-review-grid span{
  display:block;
  font-weight:700;
  line-height:1.45;
}

.similar-promos{
  margin-top:34px;
}

.similar-grid{
  margin-top:16px;
}

.similar-grid .card-title{
  font-size:1rem;
}

.notice a{
  font-weight:800;
  text-decoration:underline;
  text-underline-offset:3px;
}

@media (max-width: 860px){
  .quick-facts-grid,
  .source-review-grid{
    grid-template-columns:1fr 1fr;
  }
}

@media (max-width: 620px){
  .quick-facts{
    padding:14px;
  }

  .quick-facts-grid,
  .source-review-grid{
    grid-template-columns:1fr;
  }

  .inline-cta{
    display:none;
  }

  .post-cta-wrap.compact .official-link{
    width:100%;
    justify-content:center;
  }
}


/* --- Card CTR / scannability upgrades --- */
.card-media{
  position:relative;
}

.card-country-badge{
  position:absolute;
  top:14px;
  right:14px;
  z-index:2;
  width:42px;
  height:42px;
  display:grid;
  place-items:center;
  border-radius:999px;
  background:rgba(255,255,255,.94);
  border:1px solid rgba(24,20,18,.10);
  box-shadow:0 10px 24px rgba(24,20,18,.12);
  backdrop-filter:saturate(135%) blur(8px);
}

.card-country-badge svg{
  width:28px;
  height:20px;
  display:block;
  border-radius:5px;
}

.card-country-badge--global svg{
  width:23px;
  height:23px;
  border-radius:0;
}

.card-deadline{
  display:inline-flex;
  align-items:center;
  gap:7px;
  width:max-content;
  max-width:100%;
  color:var(--accent);
  font-size:.88rem;
  line-height:1.25;
  font-weight:850;
}

.card-deadline::before{
  content:"";
  width:7px;
  height:7px;
  flex:0 0 7px;
  border-radius:999px;
  background:currentColor;
  box-shadow:0 0 0 4px color-mix(in srgb, currentColor 12%, transparent);
}

.card-deadline.is-urgent{
  color:#b21f3a;
}

.card-deadline.is-soon{
  color:var(--accent-2);
}

.card-deadline.is-ended{
  color:var(--muted);
}

.card-meta{
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  gap:6px 10px;
  color:var(--text-soft);
  font-size:.88rem;
  line-height:1.35;
  font-weight:750;
}

.card-meta span{
  display:inline-flex;
  align-items:center;
  min-width:0;
}

.card-meta span + span::before{
  content:"";
  width:4px;
  height:4px;
  margin-right:10px;
  border-radius:999px;
  background:color-mix(in srgb, var(--accent) 42%, var(--line));
}

html[data-theme="dark"] .card-country-badge{
  background:rgba(32,27,26,.94);
  border-color:rgba(255,255,255,.10);
  box-shadow:0 10px 24px rgba(0,0,0,.28);
}

html[data-theme="dark"] .card-meta{
  color:#e8ded9;
}

html[data-theme="dark"] .card-deadline{
  color:#ffb9c4;
}

html[data-theme="dark"] .card-deadline.is-urgent{
  color:#ff8fa3;
}

@media (max-width:760px){
  .card-country-badge{
    top:12px;
    right:12px;
    width:38px;
    height:38px;
  }

  .card-country-badge svg{
    width:26px;
    height:18px;
  }

  .card-country-badge--global svg{
    width:22px;
    height:22px;
  }

  .card-deadline,
  .card-meta{
    font-size:.86rem;
  }
}

/* --- Internal authority / curated discovery UX --- */
.featured-cluster{
  padding-top:8px;
  padding-bottom:24px;
}

.featured-head{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:18px;
  margin-bottom:16px;
}

.featured-head h2{
  margin:0 0 6px;
  font-size:clamp(1.42rem, 2.8vw, 2.08rem);
  line-height:1.02;
  letter-spacing:-.05em;
}

.featured-head p,
.similar-intro{
  margin:0;
  max-width:68ch;
  color:var(--muted);
  line-height:1.68;
}

.featured-guide-link{
  flex:0 0 auto;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:44px;
  padding:0 15px;
  border:1px solid var(--line);
  border-radius:999px;
  background:var(--surface);
  color:var(--text);
  font-weight:800;
}

.featured-guide-link:hover{
  border-color:color-mix(in srgb, var(--accent) 30%, var(--line));
  color:var(--accent);
}

.featured-grid,
.similar-grid,
.curated-grid{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:18px;
}

.featured-grid .card,
.similar-grid .card,
.curated-grid .card{
  border-radius:22px;
}

.featured-grid .card-picture img,
.similar-grid .card-picture img,
.curated-grid .card-picture img{
  max-height:250px;
}

.featured-grid .card-body,
.similar-grid .card-body,
.curated-grid .card-body{
  padding:17px;
}

.featured-grid .card-title,
.similar-grid .card-title,
.curated-grid .card-title{
  font-size:1.06rem;
}

.value-section p + p,
.similar-intro + .similar-grid{
  margin-top:14px;
}

.curated-guide-list{
  padding-top:36px;
}

@media (max-width:980px){
  .featured-grid,
  .similar-grid,
  .curated-grid{
    grid-template-columns:repeat(2, minmax(0, 1fr));
  }
}

@media (max-width:760px){
  .featured-cluster{
    padding-top:0;
    padding-bottom:16px;
  }

  .featured-head{
    align-items:flex-start;
    flex-direction:column;
    gap:12px;
    margin-bottom:14px;
  }

  .featured-head h2{
    font-size:clamp(1.35rem, 7vw, 1.85rem);
  }

  .featured-guide-link{
    width:100%;
  }

  .featured-grid,
  .similar-grid,
  .curated-grid{
    grid-template-columns:1fr;
    gap:16px;
  }

  .featured-grid .card:nth-child(n+4){
    display:none;
  }

  .similar-grid .card:nth-child(n+5){
    display:none;
  }
}


/* --- Premium evergreen listing experience --- */
.hub-evergreen-wrap{
  padding:18px 0 54px;
}

.hub-evergreen-wrap .post-section{
  border-top:0;
  padding:28px 0;
}

.hub-evergreen,
.hub-related,
.hub-faq{
  position:relative;
  margin-top:22px;
  padding:26px;
  border:1px solid color-mix(in srgb, var(--line) 82%, transparent);
  border-radius:30px;
  background:
    radial-gradient(circle at 12% 0%, color-mix(in srgb, var(--accent-soft) 62%, transparent) 0, transparent 34%),
    linear-gradient(180deg, color-mix(in srgb, var(--surface) 98%, white 2%), var(--surface));
  box-shadow:0 18px 50px rgba(24,20,18,.07);
  overflow:hidden;
}

.hub-evergreen::after,
.hub-related::after{
  content:"";
  position:absolute;
  right:-80px;
  bottom:-100px;
  width:220px;
  height:220px;
  border-radius:50%;
  background:radial-gradient(circle, color-mix(in srgb, var(--accent) 12%, transparent), transparent 68%);
  pointer-events:none;
}

.hub-evergreen > h2,
.hub-faq > h2,
.hub-related-head h2{
  position:relative;
  z-index:1;
  margin:0 0 18px;
  max-width:780px;
  font-size:clamp(1.45rem, 2.6vw, 2.15rem);
  line-height:1.02;
  letter-spacing:-.055em;
  font-weight:850;
}

.hub-related-head{
  position:relative;
  z-index:1;
  display:flex;
  justify-content:space-between;
  align-items:flex-end;
  gap:18px;
  margin-bottom:18px;
}

.hub-related-head p{
  margin:0;
  max-width:62ch;
  color:var(--muted);
  line-height:1.7;
}

.hub-info-grid{
  position:relative;
  z-index:1;
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:14px;
}

.hub-info-card{
  padding:18px 18px 20px;
  border:1px solid color-mix(in srgb, var(--line) 88%, transparent);
  border-radius:22px;
  background:color-mix(in srgb, var(--surface) 94%, var(--accent-warm));
}

.hub-info-card h3{
  margin:0 0 8px;
  font-size:1.02rem;
  line-height:1.2;
  letter-spacing:-.025em;
}

.hub-info-card p{
  margin:0;
  color:var(--text-soft);
  font-size:.98rem;
  line-height:1.72;
}

.hub-link-grid{
  position:relative;
  z-index:1;
  display:grid;
  grid-template-columns:repeat(4, minmax(0, 1fr));
  gap:12px;
}

.hub-link-card{
  min-height:104px;
  padding:16px;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  gap:10px;
  border:1px solid color-mix(in srgb, var(--line) 85%, transparent);
  border-radius:20px;
  background:var(--surface);
  transition:background var(--transition), border-color var(--transition), color var(--transition), transform var(--transition), box-shadow var(--transition);
}

.hub-link-card strong{
  display:block;
  color:var(--text);
  font-size:1rem;
  line-height:1.2;
  letter-spacing:-.025em;
}

.hub-link-card span{
  display:block;
  color:var(--muted);
  font-size:.88rem;
  line-height:1.35;
  font-weight:700;
}

.hub-link-card:hover{
  transform:translateY(-2px);
  border-color:color-mix(in srgb, var(--accent) 34%, var(--line));
  box-shadow:0 16px 34px rgba(24,20,18,.08);
}

.hub-faq .faq-list{
  position:relative;
  z-index:1;
  grid-template-columns:repeat(2, minmax(0, 1fr));
}

.hub-faq .faq-list details{
  border-radius:20px;
  background:var(--surface);
}

.featured-cluster{
  background:linear-gradient(180deg, transparent, color-mix(in srgb, var(--surface-2) 42%, transparent));
}

.featured-head{
  padding:22px 24px;
  border:1px solid color-mix(in srgb, var(--line) 82%, transparent);
  border-radius:28px;
  background:var(--surface);
  box-shadow:0 14px 40px rgba(24,20,18,.055);
}

.featured-guide-link{
  min-height:46px;
  padding:0 18px;
  background:color-mix(in srgb, var(--surface) 92%, var(--accent-warm));
}

.home-toolbar{
  position:relative;
  overflow:hidden;
  border-radius:28px;
  box-shadow:0 12px 34px rgba(24,20,18,.055);
}

.home-toolbar::before{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  background:linear-gradient(135deg, color-mix(in srgb, var(--accent-soft) 34%, transparent), transparent 48%);
}

.home-toolbar > *{
  position:relative;
  z-index:1;
}

.filter-field select,
.filter-field input{
  border-radius:16px;
}

.cards-grid,
.home-cards{
  gap:24px;
}

.card{
  border-radius:30px;
}

.card-picture{
  border-radius:28px 28px 0 0;
}

.card-body{
  padding:22px;
}

.card-title{
  font-size:1.26rem;
}

html[data-theme="dark"] .hub-evergreen,
html[data-theme="dark"] .hub-related,
html[data-theme="dark"] .hub-faq,
html[data-theme="dark"] .featured-head{
  background:
    radial-gradient(circle at 12% 0%, rgba(209,95,114,.12) 0, transparent 34%),
    var(--surface);
  box-shadow:none;
}

html[data-theme="dark"] .hub-info-card,
html[data-theme="dark"] .hub-link-card{
  background:var(--surface-2);
  border-color:var(--line);
}

html[data-theme="dark"] .hub-link-card strong,
html[data-theme="dark"] .hub-info-card h3{
  color:var(--text);
}

html[data-theme="dark"] .hub-link-card span,
html[data-theme="dark"] .hub-info-card p,
html[data-theme="dark"] .hub-related-head p{
  color:var(--muted);
}

@media (max-width:980px){
  .hub-link-grid{
    grid-template-columns:repeat(2, minmax(0, 1fr));
  }

  .hub-faq .faq-list{
    grid-template-columns:1fr;
  }
}

@media (max-width:760px){
  .hub-evergreen-wrap{
    padding:4px 0 34px;
  }

  .hub-evergreen,
  .hub-related,
  .hub-faq{
    margin-top:16px;
    padding:20px 16px;
    border-radius:24px;
  }

  .hub-evergreen > h2,
  .hub-faq > h2,
  .hub-related-head h2{
    font-size:clamp(1.32rem, 7vw, 1.82rem);
    margin-bottom:14px;
  }

  .hub-related-head{
    display:block;
  }

  .hub-related-head p{
    margin-top:8px;
    font-size:.96rem;
  }

  .hub-info-grid,
  .hub-link-grid{
    grid-template-columns:1fr;
    gap:12px;
  }

  .hub-info-card{
    padding:16px;
    border-radius:18px;
  }

  .hub-link-card{
    min-height:auto;
    padding:15px 16px;
    border-radius:18px;
  }

  .featured-head{
    padding:18px;
    border-radius:22px;
  }

  .home-toolbar{
    border-radius:22px;
    box-shadow:none;
  }

  .card{
    border-radius:24px;
  }

  .card-picture{
    border-radius:22px 22px 0 0;
  }

  .card-body{
    padding:18px;
  }

  .card-title{
    font-size:1.18rem;
  }
}

@media (max-width:520px){
  .hub-evergreen,
  .hub-related,
  .hub-faq{
    padding:18px 14px;
  }

  .hub-link-card strong,
  .hub-info-card h3{
    font-size:.98rem;
  }

  .hub-info-card p{
    font-size:.95rem;
  }
}
/* =========================================================
   Wynplay premium polish — hubs, listings, guides and FAQ
   Add at the very end of assets/css/styles.css
   ========================================================= */

/* Base visual refinement */
:root{
  --premium-bg:#fbf8f6;
  --premium-surface:#ffffff;
  --premium-soft:#fff7f8;
  --premium-line:rgba(24,20,18,.095);
  --premium-line-strong:rgba(24,20,18,.145);
  --premium-shadow:0 18px 50px rgba(24,20,18,.075);
  --premium-shadow-soft:0 10px 30px rgba(24,20,18,.055);
  --premium-radius:26px;
  --premium-radius-sm:18px;
}

html[data-theme="dark"]{
  --premium-bg:#171413;
  --premium-surface:#211c1a;
  --premium-soft:#271d20;
  --premium-line:rgba(255,255,255,.10);
  --premium-line-strong:rgba(255,255,255,.16);
  --premium-shadow:none;
  --premium-shadow-soft:none;
}

body{
  background:
    radial-gradient(circle at 50% 0, rgba(197,72,90,.045), transparent 34rem),
    var(--bg);
}

/* Wider but still editorial-looking content */
.container-narrow{
  width:min(calc(100% - 32px), 980px);
}

.page-wrap{
  padding-top:42px;
  padding-bottom:72px;
}

.listing-intro{
  padding-top:44px;
  padding-bottom:18px;
}

.listing-intro h1,
.home-intro h1{
  max-width:720px;
  margin-bottom:14px;
  letter-spacing:-.065em;
  line-height:.94;
}

.listing-intro .home-lede,
.home-lede{
  max-width:720px;
  color:var(--muted);
  font-size:1.02rem;
  line-height:1.72;
}

/* Section cards: recommended, evergreen, related, FAQ */
.featured-section,
.evergreen-section,
.related-hubs-section,
.hub-faq-section{
  width:100%;
  margin:44px auto 0;
  padding:24px;
  border:1px solid var(--premium-line);
  border-radius:var(--premium-radius);
  background:
    linear-gradient(180deg, rgba(255,255,255,.82), rgba(255,255,255,.96)),
    var(--premium-surface);
  box-shadow:var(--premium-shadow);
}

html[data-theme="dark"] .featured-section,
html[data-theme="dark"] .evergreen-section,
html[data-theme="dark"] .related-hubs-section,
html[data-theme="dark"] .hub-faq-section{
  background:linear-gradient(180deg, rgba(255,255,255,.025), rgba(255,255,255,.01)), var(--surface);
}

.featured-section:first-child,
.evergreen-section:first-child,
.related-hubs-section:first-child,
.hub-faq-section:first-child{
  margin-top:28px;
}

/* Headers inside blocks */
.featured-head,
.evergreen-head,
.related-hubs-head,
.hub-faq-head{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:20px;
  margin-bottom:20px;
}

.featured-head h2,
.evergreen-head h2,
.related-hubs-head h2,
.hub-faq-head h2,
.evergreen-section h2,
.related-hubs-section h2,
.hub-faq-section h2{
  margin:0;
  font-size:clamp(1.42rem, 2.1vw, 2rem);
  line-height:1.02;
  letter-spacing:-.055em;
}

.featured-head p,
.evergreen-head p,
.related-hubs-head p,
.hub-faq-head p{
  margin:6px 0 0;
  max-width:560px;
  color:var(--muted);
  font-size:.95rem;
  line-height:1.6;
}

/* Recommended block */
.featured-section{
  margin-top:18px;
  padding:22px;
}

.featured-grid,
.recommended-grid,
.similar-grid{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:18px;
}

.featured-section .card,
.recommended-grid .card,
.similar-grid .card{
  border-radius:22px;
  border-color:var(--premium-line);
  box-shadow:var(--premium-shadow-soft);
  background:var(--premium-surface);
}

.featured-section .card-picture,
.recommended-grid .card-picture,
.similar-grid .card-picture{
  border-radius:20px 20px 0 0;
}

.featured-section .card-picture img,
.recommended-grid .card-picture img,
.similar-grid .card-picture img{
  max-height:190px;
  padding:0;
  object-fit:contain;
  background:#fff;
}

.featured-section .card-body,
.recommended-grid .card-body,
.similar-grid .card-body{
  padding:18px;
  gap:10px;
}

.featured-section .card-title,
.recommended-grid .card-title,
.similar-grid .card-title{
  font-size:1.04rem;
  line-height:1.18;
}

.featured-section .card p,
.recommended-grid .card p,
.similar-grid .card p{
  font-size:.92rem;
  line-height:1.62;
}

.featured-section .card-link.button.solid,
.recommended-grid .card-link.button.solid,
.similar-grid .card-link.button.solid{
  min-height:44px;
  margin-top:6px;
  border-radius:13px;
  font-size:.9rem;
}

/* Listing filters */
.home-toolbar{
  margin:24px 0 26px;
  padding:16px;
  border:1px solid var(--premium-line);
  border-radius:24px;
  background:rgba(255,255,255,.82);
  box-shadow:var(--premium-shadow-soft);
}

html[data-theme="dark"] .home-toolbar{
  background:var(--surface);
}

.filter-field{
  gap:7px;
}

.filter-field label{
  font-size:.7rem;
  letter-spacing:.09em;
  color:var(--text-soft);
}

.filter-field select,
.filter-field input{
  height:48px;
  border-radius:14px;
  border-color:var(--premium-line);
  background:var(--premium-surface);
  box-shadow:inset 0 1px 0 rgba(255,255,255,.65);
}

.results-meta{
  margin:0 0 18px;
  font-size:.9rem;
  color:var(--muted);
}

/* Normal listing cards */
.cards-grid,
.home-cards{
  gap:20px;
}

.cards-grid .card,
.home-cards .card{
  border-color:var(--premium-line);
  border-radius:23px;
  background:var(--premium-surface);
  box-shadow:var(--premium-shadow-soft);
}

.cards-grid .card:hover,
.home-cards .card:hover{
  border-color:rgba(197,72,90,.28);
  box-shadow:0 18px 46px rgba(197,72,90,.095);
}

.card-body{
  padding:19px;
}

.card-title{
  font-size:1.12rem;
  line-height:1.14;
}

.card-meta{
  gap:7px 12px;
  font-size:.84rem;
  color:var(--text-soft);
}

.card-deadline{
  font-size:.82rem;
}

.card p{
  font-size:.94rem;
  line-height:1.66;
}

/* Image badge refinement */
.card-country-badge{
  top:12px;
  right:12px;
  width:38px;
  height:38px;
  border:1px solid rgba(24,20,18,.08);
  box-shadow:0 8px 20px rgba(24,20,18,.08);
}

.card-country-badge svg{
  width:25px;
  height:18px;
}

/* Evergreen guide */
.evergreen-section{
  padding:26px;
  background:
    linear-gradient(135deg, rgba(197,72,90,.055), transparent 38%),
    var(--premium-surface);
}

.evergreen-grid,
.evergreen-cards,
.guide-grid{
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:14px;
}

.evergreen-card,
.guide-panel,
.evergreen-section article,
.evergreen-section .guide-card{
  padding:18px 20px;
  border:1px solid var(--premium-line);
  border-radius:20px;
  background:rgba(255,255,255,.86);
  box-shadow:none;
}

html[data-theme="dark"] .evergreen-card,
html[data-theme="dark"] .guide-panel,
html[data-theme="dark"] .evergreen-section article,
html[data-theme="dark"] .evergreen-section .guide-card{
  background:rgba(255,255,255,.035);
}

.evergreen-card h3,
.guide-panel h3,
.evergreen-section article h3,
.evergreen-section .guide-card strong{
  margin:0 0 8px;
  font-size:.98rem;
  line-height:1.28;
  letter-spacing:-.025em;
}

.evergreen-card p,
.guide-panel p,
.evergreen-section article p{
  margin:0;
  color:var(--text-soft);
  font-size:.93rem;
  line-height:1.65;
}

/* Related hubs */
.related-hubs-section{
  background:
    linear-gradient(135deg, rgba(197,72,90,.045), transparent 36%),
    var(--premium-surface);
}

.related-hubs-grid,
.related-grid,
.hub-related-grid{
  display:grid;
  grid-template-columns:repeat(4, minmax(0, 1fr));
  gap:12px;
}

.related-hub-card,
.related-grid a,
.hub-related-grid a,
.related-hubs-section .taxonomy-item{
  min-height:96px;
  padding:16px;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  border:1px solid var(--premium-line);
  border-radius:18px;
  background:rgba(255,255,255,.86);
  color:var(--text);
  box-shadow:none;
  transition:border-color .18s ease, background .18s ease;
}

.related-hub-card:hover,
.related-grid a:hover,
.hub-related-grid a:hover,
.related-hubs-section .taxonomy-item:hover{
  border-color:rgba(197,72,90,.30);
  background:#fff;
}

html[data-theme="dark"] .related-hub-card,
html[data-theme="dark"] .related-grid a,
html[data-theme="dark"] .hub-related-grid a,
html[data-theme="dark"] .related-hubs-section .taxonomy-item{
  background:rgba(255,255,255,.035);
}

.related-hub-card strong,
.related-grid a strong,
.hub-related-grid a strong,
.related-hubs-section .taxonomy-copy strong{
  font-size:.94rem;
  line-height:1.26;
  letter-spacing:-.02em;
}

.related-hub-card span,
.related-grid a span,
.hub-related-grid a span,
.related-hubs-section .taxonomy-copy span{
  margin-top:10px;
  color:var(--muted);
  font-size:.82rem;
  line-height:1.35;
}

/* FAQ */
.hub-faq-section{
  padding:26px;
}

.hub-faq-grid,
.faq-grid{
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:14px;
}

.hub-faq-section details,
.hub-faq-card,
.faq-grid details{
  padding:18px 20px;
  border:1px solid var(--premium-line);
  border-radius:20px;
  background:rgba(255,255,255,.88);
  box-shadow:none;
}

html[data-theme="dark"] .hub-faq-section details,
html[data-theme="dark"] .hub-faq-card,
html[data-theme="dark"] .faq-grid details{
  background:rgba(255,255,255,.035);
}

.hub-faq-section summary,
.faq-grid summary,
.hub-faq-card strong{
  cursor:pointer;
  font-weight:850;
  font-size:.96rem;
  line-height:1.35;
  letter-spacing:-.018em;
  color:var(--text);
}

.hub-faq-section p,
.faq-grid p,
.hub-faq-card p{
  margin:10px 0 0;
  color:var(--text-soft);
  font-size:.93rem;
  line-height:1.65;
}

/* Footer refinement */
.site-footer{
  margin-top:72px;
  padding:34px 0 44px;
  background:rgba(255,255,255,.45);
}

html[data-theme="dark"] .site-footer{
  background:rgba(255,255,255,.02);
}

/* Desktop balance */
@media (min-width:981px){
  .listing-intro,
  .home-intro{
    max-width:980px;
    margin-inline:auto;
  }

  .home-directory .container-narrow{
    width:min(calc(100% - 32px), 980px);
  }

  .cards-grid .card-picture img,
  .home-cards .card-picture img{
    max-height:210px;
  }
}

/* Tablet */
@media (max-width:980px){
  .featured-grid,
  .recommended-grid,
  .similar-grid{
    grid-template-columns:repeat(2, minmax(0, 1fr));
  }

  .related-hubs-grid,
  .related-grid,
  .hub-related-grid{
    grid-template-columns:repeat(2, minmax(0, 1fr));
  }
}

/* Mobile polish */
@media (max-width:760px){
  .container,
  .container-narrow,
  .narrow{
    width:min(calc(100% - 22px), var(--max));
  }

  .page-wrap{
    padding-top:24px;
    padding-bottom:44px;
  }

  .listing-intro{
    padding-top:22px;
    padding-bottom:10px;
  }

  .listing-intro h1,
  .home-intro h1{
    font-size:clamp(2rem, 10.5vw, 3.05rem);
    line-height:.98;
    letter-spacing:-.055em;
    margin-bottom:10px;
  }

  .listing-intro .home-lede,
  .home-lede{
    font-size:.96rem;
    line-height:1.64;
  }

  .featured-section,
  .evergreen-section,
  .related-hubs-section,
  .hub-faq-section{
    margin-top:28px;
    padding:16px;
    border-radius:22px;
    box-shadow:none;
  }

  .featured-head,
  .evergreen-head,
  .related-hubs-head,
  .hub-faq-head{
    display:block;
    margin-bottom:16px;
  }

  .featured-head h2,
  .evergreen-head h2,
  .related-hubs-head h2,
  .hub-faq-head h2,
  .evergreen-section h2,
  .related-hubs-section h2,
  .hub-faq-section h2{
    font-size:1.42rem;
    line-height:1.06;
  }

  .featured-head p,
  .evergreen-head p,
  .related-hubs-head p,
  .hub-faq-head p{
    margin-top:6px;
    font-size:.9rem;
    line-height:1.55;
  }

  .featured-grid,
  .recommended-grid,
  .similar-grid,
  .evergreen-grid,
  .evergreen-cards,
  .guide-grid,
  .hub-faq-grid,
  .faq-grid{
    grid-template-columns:1fr;
    gap:12px;
  }

  .related-hubs-grid,
  .related-grid,
  .hub-related-grid{
    grid-template-columns:1fr 1fr;
    gap:10px;
  }

  .related-hub-card,
  .related-grid a,
  .hub-related-grid a,
  .related-hubs-section .taxonomy-item{
    min-height:86px;
    padding:14px;
    border-radius:16px;
  }

  .related-hub-card strong,
  .related-grid a strong,
  .hub-related-grid a strong,
  .related-hubs-section .taxonomy-copy strong{
    font-size:.88rem;
  }

  .related-hub-card span,
  .related-grid a span,
  .hub-related-grid a span,
  .related-hubs-section .taxonomy-copy span{
    font-size:.78rem;
  }

  .home-toolbar{
    margin:18px 0 22px;
    padding:14px;
    border-radius:20px;
    box-shadow:none;
  }

  .filter-field select,
  .filter-field input{
    height:48px;
  }

  .cards-grid,
  .home-cards{
    gap:16px;
  }

  .cards-grid .card,
  .home-cards .card,
  .featured-section .card{
    border-radius:21px;
  }

  .card-body{
    padding:17px;
  }

  .card-title{
    font-size:1.06rem;
  }

  .card p{
    font-size:.91rem;
    line-height:1.6;
  }

  .card-link.button.solid{
    min-height:44px;
    border-radius:13px;
  }

  .evergreen-card,
  .guide-panel,
  .evergreen-section article,
  .evergreen-section .guide-card,
  .hub-faq-section details,
  .hub-faq-card,
  .faq-grid details{
    padding:16px;
    border-radius:17px;
  }

  .site-footer{
    display:block;
    margin-top:42px;
    padding:28px 0;
  }

  .footer-grid{
    gap:20px;
  }
}

/* Very small mobile */
@media (max-width:430px){
  .related-hubs-grid,
  .related-grid,
  .hub-related-grid{
    grid-template-columns:1fr;
  }

  .featured-section,
  .evergreen-section,
  .related-hubs-section,
  .hub-faq-section{
    padding:14px;
  }

  .home-toolbar{
    padding:13px;
  }

  .listing-intro h1,
  .home-intro h1{
    font-size:clamp(1.85rem, 11vw, 2.65rem);
  }
}
/* =========================================================
   Extra spacing polish for big sections and internal cards
   Add at the very end of styles.css
   ========================================================= */

/* 1) Large content sections: more inner air */
.featured-section,
.evergreen-section,
.related-hubs-section,
.hub-faq-section{
  padding: 30px;
  border-radius: 28px;
  overflow: hidden;
}

/* 2) Better spacing between header and content */
.featured-head,
.evergreen-head,
.related-hubs-head,
.hub-faq-head{
  margin-bottom: 22px;
}

.featured-head h2,
.evergreen-head h2,
.related-hubs-head h2,
.hub-faq-head h2{
  margin-bottom: 0;
}

.featured-head p,
.evergreen-head p,
.related-hubs-head p,
.hub-faq-head p{
  margin-top: 8px;
}

/* 3) Internal grids: add breathing room from outer border */
.featured-grid,
.recommended-grid,
.similar-grid,
.evergreen-grid,
.evergreen-cards,
.guide-grid,
.related-hubs-grid,
.related-grid,
.hub-related-grid,
.hub-faq-grid,
.faq-grid{
  padding: 4px;
  gap: 16px;
}

/* 4) Internal cards: slightly more refined */
.evergreen-card,
.guide-panel,
.evergreen-section article,
.evergreen-section .guide-card,
.related-hub-card,
.related-grid a,
.hub-related-grid a,
.related-hubs-section .taxonomy-item,
.hub-faq-section details,
.hub-faq-card,
.faq-grid details{
  border-radius: 18px;
}

/* 5) FAQ cards need more visual balance */
.hub-faq-section details,
.hub-faq-card,
.faq-grid details{
  padding: 18px 18px;
  min-height: 110px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

/* 6) Related blocks: more comfortable card height */
.related-hub-card,
.related-grid a,
.hub-related-grid a,
.related-hubs-section .taxonomy-item{
  min-height: 102px;
  padding: 16px;
}

/* 7) Guide cards: a touch more spacing */
.evergreen-card,
.guide-panel,
.evergreen-section article,
.evergreen-section .guide-card{
  padding: 18px;
  min-height: 132px;
}

/* 8) Recommended promo section can use slightly smaller padding than guide blocks */
.featured-section{
  padding: 26px;
}

/* 9) If a section has text intro + grid, separate both better */
.evergreen-section > * + .evergreen-grid,
.evergreen-section > * + .evergreen-cards,
.evergreen-section > * + .guide-grid,
.related-hubs-section > * + .related-hubs-grid,
.related-hubs-section > * + .related-grid,
.related-hubs-section > * + .hub-related-grid,
.hub-faq-section > * + .hub-faq-grid,
.hub-faq-section > * + .faq-grid{
  margin-top: 6px;
}

/* 10) Desktop: make big blocks feel more premium */
@media (min-width: 981px){
  .featured-section,
  .evergreen-section,
  .related-hubs-section,
  .hub-faq-section{
    padding: 32px;
  }

  .featured-grid,
  .recommended-grid,
  .similar-grid,
  .evergreen-grid,
  .evergreen-cards,
  .guide-grid,
  .related-hubs-grid,
  .related-grid,
  .hub-related-grid,
  .hub-faq-grid,
  .faq-grid{
    padding: 6px;
    gap: 18px;
  }
}

/* 11) Tablet */
@media (max-width: 980px){
  .featured-section,
  .evergreen-section,
  .related-hubs-section,
  .hub-faq-section{
    padding: 24px;
    border-radius: 24px;
  }

  .featured-grid,
  .recommended-grid,
  .similar-grid,
  .evergreen-grid,
  .evergreen-cards,
  .guide-grid,
  .related-hubs-grid,
  .related-grid,
  .hub-related-grid,
  .hub-faq-grid,
  .faq-grid{
    padding: 2px;
    gap: 14px;
  }
}

/* 12) Mobile: keep compact, but still with edge spacing */
@media (max-width: 760px){
  .featured-section,
  .evergreen-section,
  .related-hubs-section,
  .hub-faq-section{
    padding: 18px;
    border-radius: 22px;
  }

  .featured-head,
  .evergreen-head,
  .related-hubs-head,
  .hub-faq-head{
    margin-bottom: 16px;
  }

  .featured-grid,
  .recommended-grid,
  .similar-grid,
  .evergreen-grid,
  .evergreen-cards,
  .guide-grid,
  .related-hubs-grid,
  .related-grid,
  .hub-related-grid,
  .hub-faq-grid,
  .faq-grid{
    padding: 0;
    gap: 12px;
  }

  .evergreen-card,
  .guide-panel,
  .evergreen-section article,
  .evergreen-section .guide-card,
  .related-hub-card,
  .related-grid a,
  .hub-related-grid a,
  .related-hubs-section .taxonomy-item,
  .hub-faq-section details,
  .hub-faq-card,
  .faq-grid details{
    border-radius: 16px;
  }

  .hub-faq-section details,
  .hub-faq-card,
  .faq-grid details{
    min-height: auto;
    padding: 16px;
  }

  .related-hub-card,
  .related-grid a,
  .hub-related-grid a,
  .related-hubs-section .taxonomy-item{
    min-height: 90px;
    padding: 14px;
  }

  .evergreen-card,
  .guide-panel,
  .evergreen-section article,
  .evergreen-section .guide-card{
    min-height: auto;
    padding: 16px;
  }
}

/* 13) Very small mobile */
@media (max-width: 430px){
  .featured-section,
  .evergreen-section,
  .related-hubs-section,
  .hub-faq-section{
    padding: 16px;
  }
}
.featured-section,
.evergreen-section,
.related-hubs-section,
.hub-faq-section{
  padding: 34px;
}

@media (max-width: 760px){
  .featured-section,
  .evergreen-section,
  .related-hubs-section,
  .hub-faq-section{
    padding: 20px;
  }
}
/* =========================================================
   Wynplay — Premium editorial sections final polish
   Add this at the very end of styles.css
   ========================================================= */

/* Main evergreen blocks: more editorial, less boxed/table-like */
.evergreen-section,
.related-hubs-section,
.hub-faq-section{
  margin-top: 52px !important;
  padding: 34px !important;
  border-radius: 30px !important;
  border: 1px solid rgba(24,20,18,.10) !important;
  background:
    radial-gradient(circle at top left, rgba(197,72,90,.08), transparent 38%),
    linear-gradient(180deg, rgba(255,255,255,.96), rgba(255,255,255,.88)) !important;
  box-shadow: 0 24px 70px rgba(24,20,18,.08) !important;
  overflow: visible !important;
}

html[data-theme="dark"] .evergreen-section,
html[data-theme="dark"] .related-hubs-section,
html[data-theme="dark"] .hub-faq-section{
  border-color: rgba(255,255,255,.09) !important;
  background:
    radial-gradient(circle at top left, rgba(209,95,114,.14), transparent 42%),
    linear-gradient(180deg, #241d1b, #1d1817) !important;
  box-shadow: none !important;
}

/* Better titles */
.evergreen-section h2,
.related-hubs-section h2,
.hub-faq-section h2{
  max-width: 760px;
  margin: 0 0 22px !important;
  font-size: clamp(1.75rem, 2.4vw, 2.35rem) !important;
  line-height: 1.02 !important;
  letter-spacing: -.06em !important;
}

/* If there is a header row, align it better */
.evergreen-head,
.related-hubs-head,
.hub-faq-head{
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 340px);
  gap: 28px !important;
  align-items: end !important;
  margin-bottom: 24px !important;
}

.evergreen-head h2,
.related-hubs-head h2,
.hub-faq-head h2{
  margin-bottom: 0 !important;
}

.evergreen-head p,
.related-hubs-head p,
.hub-faq-head p{
  margin: 0 !important;
  color: var(--muted) !important;
  font-size: .98rem !important;
  line-height: 1.65 !important;
}

/* Guide section: keep 2 columns only when there is enough room */
.evergreen-grid,
.evergreen-cards,
.guide-grid{
  display: grid !important;
  grid-template-columns: repeat(2, minmax(280px, 1fr)) !important;
  gap: 18px !important;
  padding: 0 !important;
}

/* Related section: 3 columns max, never 4 cramped columns */
.related-hubs-grid,
.related-grid,
.hub-related-grid{
  display: grid !important;
  grid-template-columns: repeat(3, minmax(210px, 1fr)) !important;
  gap: 16px !important;
  padding: 0 !important;
}

/* FAQ: 2 comfortable columns */
.hub-faq-grid,
.faq-grid{
  display: grid !important;
  grid-template-columns: repeat(2, minmax(280px, 1fr)) !important;
  gap: 16px !important;
  padding: 0 !important;
}

/* Internal cards: more premium spacing */
.evergreen-card,
.guide-panel,
.evergreen-section article,
.evergreen-section .guide-card,
.related-hub-card,
.related-grid a,
.hub-related-grid a,
.related-hubs-section .taxonomy-item,
.hub-faq-section details,
.hub-faq-card,
.faq-grid details{
  min-width: 0;
  padding: 22px !important;
  border-radius: 22px !important;
  border: 1px solid rgba(24,20,18,.10) !important;
  background: rgba(255,255,255,.78) !important;
  box-shadow: none !important;
}

html[data-theme="dark"] .evergreen-card,
html[data-theme="dark"] .guide-panel,
html[data-theme="dark"] .evergreen-section article,
html[data-theme="dark"] .evergreen-section .guide-card,
html[data-theme="dark"] .related-hub-card,
html[data-theme="dark"] .related-grid a,
html[data-theme="dark"] .hub-related-grid a,
html[data-theme="dark"] .related-hubs-section .taxonomy-item,
html[data-theme="dark"] .hub-faq-section details,
html[data-theme="dark"] .hub-faq-card,
html[data-theme="dark"] .faq-grid details{
  border-color: rgba(255,255,255,.09) !important;
  background: rgba(255,255,255,.035) !important;
}

/* Card typography: less tiny, more readable */
.evergreen-card h3,
.guide-panel h3,
.evergreen-section article h3,
.evergreen-section .guide-card strong,
.related-hub-card strong,
.related-grid a strong,
.hub-related-grid a strong,
.related-hubs-section .taxonomy-copy strong,
.hub-faq-section summary,
.faq-grid summary,
.hub-faq-card strong{
  margin: 0 0 10px !important;
  color: var(--text) !important;
  font-size: 1rem !important;
  line-height: 1.32 !important;
  letter-spacing: -.025em !important;
  font-weight: 850 !important;
}

.evergreen-card p,
.guide-panel p,
.evergreen-section article p,
.related-hub-card span,
.related-grid a span,
.hub-related-grid a span,
.related-hubs-section .taxonomy-copy span,
.hub-faq-section p,
.faq-grid p,
.hub-faq-card p{
  margin: 0 !important;
  color: var(--muted) !important;
  font-size: .94rem !important;
  line-height: 1.68 !important;
}

/* Related cards: remove compressed look */
.related-hub-card,
.related-grid a,
.hub-related-grid a,
.related-hubs-section .taxonomy-item{
  min-height: 116px !important;
  justify-content: space-between !important;
}

/* FAQ: do not look like tiny buttons */
.hub-faq-section details,
.hub-faq-card,
.faq-grid details{
  min-height: 128px !important;
}

.hub-faq-section summary,
.faq-grid summary{
  cursor: pointer;
  list-style: none;
}

.hub-faq-section summary::-webkit-details-marker,
.faq-grid summary::-webkit-details-marker{
  display: none;
}

.hub-faq-section details p,
.faq-grid details p{
  margin-top: 12px !important;
}

/* Better hover, subtle */
.related-hub-card:hover,
.related-grid a:hover,
.hub-related-grid a:hover,
.related-hubs-section .taxonomy-item:hover,
.evergreen-card:hover,
.guide-panel:hover,
.evergreen-section article:hover,
.hub-faq-section details:hover,
.faq-grid details:hover{
  border-color: rgba(197,72,90,.28) !important;
  background: rgba(255,255,255,.92) !important;
}

html[data-theme="dark"] .related-hub-card:hover,
html[data-theme="dark"] .related-grid a:hover,
html[data-theme="dark"] .hub-related-grid a:hover,
html[data-theme="dark"] .related-hubs-section .taxonomy-item:hover,
html[data-theme="dark"] .evergreen-card:hover,
html[data-theme="dark"] .guide-panel:hover,
html[data-theme="dark"] .evergreen-section article:hover,
html[data-theme="dark"] .hub-faq-section details:hover,
html[data-theme="dark"] .faq-grid details:hover{
  background: rgba(255,255,255,.055) !important;
  border-color: rgba(209,95,114,.28) !important;
}

/* Desktop: give the whole hub content more space */
@media (min-width: 981px){
  .home-directory .container-narrow,
  .listing-intro .container-narrow,
  .container-narrow{
    width: min(calc(100% - 48px), 1080px) !important;
  }

  .evergreen-section,
  .related-hubs-section,
  .hub-faq-section{
    padding: 38px !important;
  }
}

/* Medium desktop / narrow windows: avoid cramped columns */
@media (max-width: 1120px){
  .related-hubs-grid,
  .related-grid,
  .hub-related-grid{
    grid-template-columns: repeat(2, minmax(240px, 1fr)) !important;
  }
}

/* Tablet */
@media (max-width: 900px){
  .evergreen-head,
  .related-hubs-head,
  .hub-faq-head{
    grid-template-columns: 1fr !important;
    gap: 10px !important;
  }

  .evergreen-grid,
  .evergreen-cards,
  .guide-grid,
  .hub-faq-grid,
  .faq-grid{
    grid-template-columns: 1fr !important;
  }

  .related-hubs-grid,
  .related-grid,
  .hub-related-grid{
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

/* Mobile */
@media (max-width: 760px){
  .evergreen-section,
  .related-hubs-section,
  .hub-faq-section{
    margin-top: 34px !important;
    padding: 18px !important;
    border-radius: 24px !important;
  }

  .evergreen-section h2,
  .related-hubs-section h2,
  .hub-faq-section h2{
    margin-bottom: 16px !important;
    font-size: 1.45rem !important;
    line-height: 1.08 !important;
  }

  .evergreen-card,
  .guide-panel,
  .evergreen-section article,
  .evergreen-section .guide-card,
  .related-hub-card,
  .related-grid a,
  .hub-related-grid a,
  .related-hubs-section .taxonomy-item,
  .hub-faq-section details,
  .hub-faq-card,
  .faq-grid details{
    padding: 17px !important;
    border-radius: 18px !important;
  }

  .related-hubs-grid,
  .related-grid,
  .hub-related-grid{
    grid-template-columns: 1fr !important;
  }

  .related-hub-card,
  .related-grid a,
  .hub-related-grid a,
  .related-hubs-section .taxonomy-item,
  .hub-faq-section details,
  .hub-faq-card,
  .faq-grid details{
    min-height: auto !important;
  }
}
/* =========================================================
   Fix real: more horizontal air inside large sections
   Add at the very end of styles.css
   ========================================================= */

/* 1) Big parent containers: give real side padding */
.evergreen-section,
.related-hubs-section,
.hub-faq-section{
  padding-top: 28px !important;
  padding-bottom: 28px !important;
  padding-left: 36px !important;
  padding-right: 36px !important;
  border-radius: 30px !important;
  box-sizing: border-box;
}

/* 2) Titles / intro text should align with that inner spacing */
.evergreen-section h2,
.related-hubs-section h2,
.hub-faq-section h2{
  margin: 0 0 18px !important;
}

.evergreen-head,
.related-hubs-head,
.hub-faq-head{
  margin-bottom: 18px !important;
}

/* 3) Grids should not add more weird internal compression */
.evergreen-grid,
.evergreen-cards,
.guide-grid,
.related-hubs-grid,
.related-grid,
.hub-related-grid,
.hub-faq-grid,
.faq-grid{
  padding: 0 !important;
  margin: 0 !important;
}

/* 4) Keep internal cards clean, but don't let them touch visually */
.evergreen-grid,
.evergreen-cards,
.guide-grid{
  gap: 16px !important;
}

.related-hubs-grid,
.related-grid,
.hub-related-grid{
  gap: 16px !important;
}

.hub-faq-grid,
.faq-grid{
  gap: 16px !important;
}

/* 5) FAQ cards a bit more comfortable */
.hub-faq-section details,
.hub-faq-card,
.faq-grid details{
  padding: 18px 18px !important;
  border-radius: 18px !important;
}

/* 6) Related cards */
.related-hub-card,
.related-grid a,
.hub-related-grid a,
.related-hubs-section .taxonomy-item{
  padding: 18px !important;
  border-radius: 18px !important;
}

/* 7) Guide cards */
.evergreen-card,
.guide-panel,
.evergreen-section article,
.evergreen-section .guide-card{
  padding: 18px !important;
  border-radius: 18px !important;
}

/* =========================================================
   DESKTOP: more side air, this is the key
   ========================================================= */
@media (min-width: 981px){
  .evergreen-section,
  .related-hubs-section,
  .hub-faq-section{
    padding-left: 42px !important;
    padding-right: 42px !important;
    padding-top: 30px !important;
    padding-bottom: 30px !important;
  }
}

/* If desktop is narrower, still keep enough side spacing */
@media (min-width: 761px) and (max-width: 980px){
  .evergreen-section,
  .related-hubs-section,
  .hub-faq-section{
    padding-left: 28px !important;
    padding-right: 28px !important;
    padding-top: 24px !important;
    padding-bottom: 24px !important;
  }
}

/* =========================================================
   MOBILE: compact but still with proper inner air
   ========================================================= */
@media (max-width: 760px){
  .evergreen-section,
  .related-hubs-section,
  .hub-faq-section{
    padding-left: 18px !important;
    padding-right: 18px !important;
    padding-top: 18px !important;
    padding-bottom: 18px !important;
    border-radius: 22px !important;
  }

  .evergreen-section h2,
  .related-hubs-section h2,
  .hub-faq-section h2{
    margin-bottom: 14px !important;
  }

  .evergreen-head,
  .related-hubs-head,
  .hub-faq-head{
    margin-bottom: 14px !important;
  }

  .evergreen-grid,
  .evergreen-cards,
  .guide-grid,
  .related-hubs-grid,
  .related-grid,
  .hub-related-grid,
  .hub-faq-grid,
  .faq-grid{
    gap: 12px !important;
  }

  .hub-faq-section details,
  .hub-faq-card,
  .faq-grid details,
  .related-hub-card,
  .related-grid a,
  .hub-related-grid a,
  .related-hubs-section .taxonomy-item,
  .evergreen-card,
  .guide-panel,
  .evergreen-section article,
  .evergreen-section .guide-card{
    padding: 16px !important;
    border-radius: 16px !important;
  }
}


/* =========================================================
   Wynplay FINAL FIX — real hub sections spacing
   This targets the actual generated classes: .hub-evergreen,
   .hub-related and .hub-faq.
   ========================================================= */

/* The previous patches targeted .evergreen-section / .related-hubs-section,
   but the generated HTML uses .hub-evergreen / .hub-related / .hub-faq. */

.hub-evergreen,
.hub-related,
.hub-faq{
  padding: 52px 56px 48px !important;
  border-radius: 34px !important;
  overflow: hidden !important;
  box-sizing: border-box !important;
}

/* Keep the content away from the parent border */
.hub-evergreen > h2,
.hub-faq > h2,
.hub-related-head{
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.hub-related-head{
  display: grid !important;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, .95fr) !important;
  gap: 56px !important;
  align-items: start !important;
  margin-bottom: 34px !important;
}

.hub-related-head h2{
  margin: 0 !important;
  max-width: 560px !important;
}

.hub-related-head p{
  margin: 8px 0 0 !important;
  max-width: 440px !important;
  font-size: 1rem !important;
  line-height: 1.72 !important;
}

/* More air between the big title and internal cards */
.hub-evergreen > h2,
.hub-faq > h2{
  margin: 0 0 30px !important;
}

/* Internal grids: wider gutters and no accidental inner offsets */
.hub-info-grid,
.hub-link-grid,
.hub-faq .faq-list{
  width: 100% !important;
  padding: 0 !important;
  margin: 0 !important;
  gap: 22px !important;
}

/* Related cards: reduce the "packed table" effect */
.hub-link-grid{
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
}

.hub-link-card{
  min-height: 128px !important;
  padding: 24px 24px 22px !important;
  border-radius: 22px !important;
}

/* Guide cards */
.hub-info-card{
  min-height: 156px !important;
  padding: 24px !important;
  border-radius: 22px !important;
}

/* FAQ cards: make them real content blocks, not narrow pills */
.hub-faq .faq-list{
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
}

.hub-faq .faq-list details{
  min-height: 126px !important;
  padding: 24px !important;
  border-radius: 22px !important;
}

/* Typography balance */
.hub-link-card strong,
.hub-info-card h3,
.hub-faq .faq-list summary{
  font-size: 1rem !important;
  line-height: 1.35 !important;
}

.hub-link-card span,
.hub-info-card p,
.hub-faq .faq-list p{
  font-size: .94rem !important;
  line-height: 1.68 !important;
}

/* Desktop: stronger internal breathing room */
@media (min-width: 1180px){
  .hub-evergreen,
  .hub-related,
  .hub-faq{
    padding-left: 64px !important;
    padding-right: 64px !important;
  }

  .hub-info-grid,
  .hub-link-grid,
  .hub-faq .faq-list{
    gap: 24px !important;
  }
}

/* Medium desktop: avoid cards becoming too small */
@media (max-width: 1100px){
  .hub-evergreen,
  .hub-related,
  .hub-faq{
    padding: 42px 38px !important;
  }

  .hub-related-head{
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }

  .hub-link-grid{
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

/* Tablet */
@media (max-width: 900px){
  .hub-evergreen,
  .hub-related,
  .hub-faq{
    padding: 32px 26px !important;
    border-radius: 28px !important;
  }

  .hub-info-grid,
  .hub-faq .faq-list{
    grid-template-columns: 1fr !important;
  }

  .hub-info-grid,
  .hub-link-grid,
  .hub-faq .faq-list{
    gap: 16px !important;
  }
}

/* Mobile */
@media (max-width: 760px){
  .hub-evergreen,
  .hub-related,
  .hub-faq{
    padding: 24px 18px !important;
    border-radius: 24px !important;
  }

  .hub-related-head{
    display: block !important;
    margin-bottom: 18px !important;
  }

  .hub-related-head h2,
  .hub-evergreen > h2,
  .hub-faq > h2{
    margin-bottom: 16px !important;
  }

  .hub-link-grid{
    grid-template-columns: 1fr !important;
  }

  .hub-info-card,
  .hub-link-card,
  .hub-faq .faq-list details{
    min-height: auto !important;
    padding: 18px !important;
    border-radius: 18px !important;
  }
}

/* Small phones */
@media (max-width: 430px){
  .hub-evergreen,
  .hub-related,
  .hub-faq{
    padding: 20px 16px !important;
  }
}

