/* ============================================================
   NAIJASABI — Premium Design System v2.0
   Fonts: Playfair Display (headings) + DM Sans (body)
   Design: World-class editorial magazine
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,700;0,800;0,900;1,700&family=DM+Sans:opsz,wght@9..40,300;9..40,400;9..40,500;9..40,600;9..40,700&display=swap');

/* ---- DESIGN TOKENS ---- */
:root {
  /* Brand */
  --ns-green:   #007A3D;
  --ns-green2:  #005C2E;
  --ns-green3:  #f0faf5;
  --ns-green4:  #e0f4eb;
  --ns-dark:    #0A1628;
  --ns-dark2:   #1e2d42;
  --ns-dark3:   #2d3f58;
  --ns-gold:    #F5A623;
  --ns-gold2:   #e8960f;
  --ns-red:     #E53935;

  /* Surfaces */
  --ns-bg:      #F4F6F9;
  --ns-white:   #ffffff;
  --ns-border:  #eaecf0;
  --ns-border2: #d1d5db;

  /* Text */
  --ns-muted:   #6b7280;
  --ns-muted2:  #9ca3af;

  /* Category accents */
  --cat-football:     #5B21B6; --cat-football-bg:     #EDE9FE;
  --cat-jobs:         #065F46; --cat-jobs-bg:         #D1FAE5;
  --cat-finance:      #B45309; --cat-finance-bg:      #FEF3C7;
  --cat-education:    #1E40AF; --cat-education-bg:    #DBEAFE;
  --cat-entertainment:#BE185D; --cat-entertainment-bg:#FCE7F3;
  --cat-tech:         #0369A1; --cat-tech-bg:         #E0F2FE;
  --cat-business:     #C2410C; --cat-business-bg:     #FFEDD5;
  --cat-health:       #0F766E; --cat-health-bg:       #CCFBF1;
  --cat-travel:       #7C3AED; --cat-travel-bg:       #EDE9FE;
  --cat-lifestyle:    #9D174D; --cat-lifestyle-bg:    #FCE7F3;

  /* Typography */
  --font-head: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body: 'DM Sans', system-ui, -apple-system, sans-serif;

  /* Spacing */
  --space-xs: 4px;  --space-sm: 8px;   --space-md: 16px;
  --space-lg: 24px; --space-xl: 40px;  --space-2xl: 64px;

  /* Radius */
  --r-sm: 4px; --r-md: 8px; --r-lg: 12px;
  --r-xl: 16px; --r-pill: 999px;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0,0,0,.06), 0 1px 2px rgba(0,0,0,.04);
  --shadow-md: 0 4px 16px rgba(0,0,0,.08), 0 2px 6px rgba(0,0,0,.04);
  --shadow-lg: 0 8px 32px rgba(0,0,0,.1), 0 4px 12px rgba(0,0,0,.06);
  --shadow-xl: 0 20px 60px rgba(0,0,0,.12), 0 8px 24px rgba(0,0,0,.06);

  /* Transitions */
  --ease: all .2s cubic-bezier(.4,0,.2,1);
  --ease-bounce: all .3s cubic-bezier(.34,1.56,.64,1);

  /* Container */
  --container: 1240px;
}

/* ---- RESET ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--ns-dark);
  background: var(--ns-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: var(--ease); }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea { font-family: inherit; }

/* ---- TYPOGRAPHY ---- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-head);
  font-weight: 800;
  line-height: 1.2;
  color: var(--ns-dark);
  letter-spacing: -.025em;
}
h1 { font-size: clamp(1.8rem, 4vw, 2.6rem); }
h2 { font-size: clamp(1.4rem, 3vw, 2rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); }
h4 { font-size: 1.1rem; }
p { margin-bottom: 1.2rem; }
p:last-child { margin-bottom: 0; }
strong { font-weight: 700; }

/* ---- UTILITIES ---- */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.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; }

/* ---- BREAKING TICKER ---- */
.breaking-ticker {
  background: var(--ns-red);
  height: 34px;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.breaking-ticker__label {
  background: var(--ns-dark);
  padding: 0 16px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-body);
  font-size: .72rem;
  font-weight: 700;
  color: var(--ns-white);
  text-transform: uppercase;
  letter-spacing: .1em;
  white-space: nowrap;
  flex-shrink: 0;
}
.breaking-ticker__pulse {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--ns-red);
  animation: pulse-dot 1s infinite;
  flex-shrink: 0;
}
@keyframes pulse-dot { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.5;transform:scale(.8)} }
.breaking-ticker__track {
  display: flex;
  animation: ticker-scroll 35s linear infinite;
  padding-left: 24px;
}
.breaking-ticker__track:hover { animation-play-state: paused; }
.breaking-ticker__item {
  padding: 0 40px 0 0;
  font-size: .82rem;
  color: var(--ns-white);
  white-space: nowrap;
  font-weight: 500;
}
.breaking-ticker__sep { color: rgba(255,255,255,.3); margin-right: 40px; }
@keyframes ticker-scroll { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }

/* ---- SITE HEADER ---- */
.site-header {
  background: var(--ns-white);
  border-bottom: 1px solid var(--ns-border);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: box-shadow .2s;
}
.site-header.is-scrolled { box-shadow: 0 2px 20px rgba(0,0,0,.1); }
.site-header__inner {
  display: flex;
  align-items: center;
  height: 68px;
  gap: 20px;
}

/* LOGO */
.site-logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.site-logo__mark {
  width: 40px; height: 40px;
  background: var(--ns-green);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 13px;
  color: var(--ns-white);
  letter-spacing: -1px;
  position: relative;
  overflow: hidden;
}
.site-logo__mark::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,.15) 0%, transparent 60%);
}
.site-logo__text {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 22px;
  letter-spacing: -.04em;
  color: var(--ns-dark);
  line-height: 1;
}
.site-logo__text span { color: var(--ns-green); }
.site-logo__tld {
  font-size: 9px;
  font-family: var(--font-body);
  font-weight: 700;
  color: var(--ns-white);
  background: var(--ns-green);
  padding: 1px 5px;
  border-radius: 3px;
  margin-left: 2px;
  vertical-align: middle;
  letter-spacing: .02em;
}

/* SEARCH */
.header-search { flex: 1; max-width: 400px; position: relative; }
.header-search__input {
  width: 100%;
  height: 40px;
  padding: 0 44px 0 16px;
  border: 1.5px solid var(--ns-border);
  border-radius: var(--r-pill);
  font-size: .9rem;
  font-family: var(--font-body);
  background: var(--ns-bg);
  outline: none;
  color: var(--ns-dark);
  transition: var(--ease);
}
.header-search__input:focus {
  border-color: var(--ns-green);
  background: var(--ns-white);
  box-shadow: 0 0 0 3px rgba(0,122,61,.1);
}
.header-search__input::placeholder { color: var(--ns-muted2); }
.header-search__btn {
  position: absolute;
  right: 6px; top: 50%;
  transform: translateY(-50%);
  width: 30px; height: 30px;
  background: var(--ns-green);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--ns-white);
  transition: var(--ease);
}
.header-search__btn:hover { background: var(--ns-green2); }
.header-search__btn svg { width: 14px; height: 14px; }

/* HEADER ACTIONS */
.header-actions { display: flex; align-items: center; gap: 10px; margin-left: auto; flex-shrink: 0; }
.geo-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: #EDF2FF;
  border: 1px solid #C7D7FD;
  border-radius: var(--r-pill);
  padding: 4px 10px;
  font-size: 10px;
  font-weight: 700;
  color: #3451B2;
  letter-spacing: .04em;
  text-transform: uppercase;
  white-space: nowrap;
}
.btn-subscribe {
  border: 1.5px solid var(--ns-green);
  color: var(--ns-green);
  padding: 8px 18px;
  border-radius: var(--r-pill);
  font-size: .82rem;
  font-weight: 700;
  font-family: var(--font-body);
  transition: var(--ease);
  white-space: nowrap;
}
.btn-subscribe:hover { background: var(--ns-green3); }
.btn-primary {
  background: var(--ns-green);
  color: var(--ns-white);
  padding: 9px 20px;
  border-radius: var(--r-pill);
  font-size: .82rem;
  font-weight: 700;
  font-family: var(--font-body);
  transition: var(--ease);
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.btn-primary:hover { background: var(--ns-green2); transform: translateY(-1px); }
.menu-toggle { display: none; flex-direction: column; gap: 5px; width: 28px; padding: 3px; }
.menu-toggle span { display: block; height: 2px; background: var(--ns-dark); border-radius: 2px; transition: var(--ease); }

/* ---- PRIMARY NAV ---- */
.site-nav {
  background: var(--ns-dark);
  position: sticky;
  top: 68px;
  z-index: 999;
}
.site-nav__inner {
  display: flex;
  align-items: center;
  overflow-x: auto;
  scrollbar-width: none;
}
.site-nav__inner::-webkit-scrollbar { display: none; }
.site-nav__link {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 0 13px;
  height: 44px;
  font-family: var(--font-body);
  font-size: .72rem;
  font-weight: 700;
  color: rgba(255,255,255,.55);
  text-transform: uppercase;
  letter-spacing: .07em;
  border-bottom: 2px solid transparent;
  white-space: nowrap;
  transition: var(--ease);
  flex-shrink: 0;
}
.site-nav__link .nav-icon { font-size: 13px; }
.site-nav__link:hover,
.site-nav__link.active { color: var(--ns-white); border-bottom-color: var(--ns-gold); }

/* ---- AD BANNER STRIP ---- */
.ad-header-strip {
  background: var(--ns-white);
  border-bottom: 1px solid var(--ns-border);
  padding: 6px 0;
  text-align: center;
}
.ad-label {
  display: block;
  font-size: .65rem;
  color: var(--ns-muted2);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 4px;
  font-family: var(--font-body);
}
.ad-zone {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--ns-bg);
  border: 1px dashed var(--ns-border2);
  border-radius: var(--r-md);
  font-size: .72rem;
  color: var(--ns-muted2);
  text-transform: uppercase;
  letter-spacing: .06em;
}
.ad-zone--728 { height: 90px; max-width: 728px; margin: 0 auto; }
.ad-zone--300 { height: 250px; width: 100%; }
.ad-zone--inline { height: 90px; max-width: 728px; margin: 24px auto; }

/* ---- CATEGORY QUICK STRIP ---- */
.cat-quick-strip {
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  gap: 8px;
  padding: 18px 0 14px;
}
.cat-strip-item {
  background: var(--ns-white);
  border: 1px solid var(--ns-border);
  border-radius: var(--r-lg);
  padding: 12px 6px;
  text-align: center;
  cursor: pointer;
  transition: var(--ease-bounce);
  position: relative;
  overflow: hidden;
}
.cat-strip-item::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--cat-color, var(--ns-green));
  transform: scaleX(0);
  transition: transform .2s cubic-bezier(.4,0,.2,1);
}
.cat-strip-item:hover::after { transform: scaleX(1); }
.cat-strip-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.cat-strip-item__icon { font-size: 18px; line-height: 1; margin-bottom: 5px; }
.cat-strip-item__name {
  font-family: var(--font-body);
  font-size: 8.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--cat-color, var(--ns-green));
}
.cat-strip-item__count { font-size: 8px; color: var(--ns-muted2); margin-top: 2px; }

/* ---- HERO GRID ---- */
.hero-section { margin-bottom: 28px; }
.hero-grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 3px;
  border-radius: var(--r-xl);
  overflow: hidden;
  height: 480px;
}
.hero-right-col { display: flex; flex-direction: column; gap: 3px; }
.hero-card { position: relative; overflow: hidden; cursor: pointer; }
.hero-card--main { height: 100%; }
.hero-card--sub { flex: 1; }
.hero-card__img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .55s cubic-bezier(.4,0,.2,1);
}
.hero-card:hover .hero-card__img { transform: scale(1.05); }
.hero-card__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top,
    rgba(8,18,34,.97) 0%,
    rgba(8,18,34,.45) 40%,
    rgba(8,18,34,.05) 100%
  );
}
.hero-card__content {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 20px;
}
.hero-card--main .hero-card__content { padding: 28px; }
.hero-card__category {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 3px 11px;
  border-radius: var(--r-pill);
  font-family: var(--font-body);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--ns-white);
  background: rgba(255,255,255,.15);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  margin-bottom: 10px;
}
.hero-card__title {
  font-family: var(--font-head);
  font-weight: 800;
  color: var(--ns-white);
  line-height: 1.2;
  letter-spacing: -.02em;
}
.hero-card--main .hero-card__title { font-size: clamp(1.2rem, 2.2vw, 1.75rem); }
.hero-card--sub .hero-card__title { font-size: clamp(.95rem, 1.5vw, 1.1rem); }
.hero-card__title a { color: var(--ns-white); }
.hero-card__title a:hover { text-decoration: underline; }
.hero-card__excerpt {
  font-size: .85rem;
  color: rgba(255,255,255,.72);
  margin-top: 8px;
  line-height: 1.55;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.hero-card__meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
  font-size: .72rem;
  color: rgba(255,255,255,.5);
}
.hero-card__author { color: rgba(255,255,255,.78); font-weight: 600; }

/* ---- CATEGORY BADGE ---- */
.cat-badge {
  display: inline-flex;
  align-items: center;
  padding: 3px 10px;
  border-radius: var(--r-pill);
  font-family: var(--font-body);
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  white-space: nowrap;
  transition: var(--ease);
}
.cat-badge--football     { background: var(--cat-football-bg);     color: var(--cat-football); }
.cat-badge--jobs         { background: var(--cat-jobs-bg);         color: var(--cat-jobs); }
.cat-badge--finance      { background: var(--cat-finance-bg);      color: var(--cat-finance); }
.cat-badge--education    { background: var(--cat-education-bg);    color: var(--cat-education); }
.cat-badge--entertainment{ background: var(--cat-entertainment-bg);color: var(--cat-entertainment); }
.cat-badge--tech         { background: var(--cat-tech-bg);         color: var(--cat-tech); }
.cat-badge--business     { background: var(--cat-business-bg);     color: var(--cat-business); }
.cat-badge--health       { background: var(--cat-health-bg);       color: var(--cat-health); }
.cat-badge--travel       { background: var(--cat-travel-bg);       color: var(--cat-travel); }
.cat-badge--lifestyle    { background: var(--cat-lifestyle-bg);    color: var(--cat-lifestyle); }
.cat-badge--on-dark      { background: rgba(255,255,255,.15); color: var(--ns-white); }

/* ---- POST CARDS ---- */
.post-card {
  background: var(--ns-white);
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--ns-border);
  transition: var(--ease);
  display: flex;
  flex-direction: column;
  height: 100%;
}
.post-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.post-card__thumb {
  aspect-ratio: 16/9;
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
}
.post-card__thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .4s cubic-bezier(.4,0,.2,1);
}
.post-card:hover .post-card__thumb img { transform: scale(1.06); }
.post-card__badge { position: absolute; top: 10px; left: 10px; }
.post-card__body { padding: 16px; flex: 1; display: flex; flex-direction: column; }
.post-card__title {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  letter-spacing: -.015em;
  flex: 1;
}
.post-card__title a:hover { color: var(--ns-green); }
.post-card__excerpt {
  font-size: .83rem;
  color: var(--ns-muted);
  line-height: 1.55;
  margin-bottom: 12px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.post-card__meta {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .72rem;
  color: var(--ns-muted2);
  padding-top: 10px;
  border-top: 1px solid var(--ns-bg);
  margin-top: auto;
}
.post-card__author { font-weight: 600; color: var(--ns-dark); }
.post-card__read { margin-left: auto; color: var(--ns-green); font-weight: 700; }

/* Post grids */
.posts-grid-3 { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 18px; }
.posts-grid-4 { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 14px; }
.posts-grid-2 { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 18px; }

/* ---- FEATURED STRIP (Horizontal cards) ---- */
.featured-strip {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  background: var(--ns-white);
  border-radius: var(--r-lg);
  border: 1px solid var(--ns-border);
  overflow: hidden;
  margin-bottom: 28px;
}
.featured-strip__item {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 12px;
  padding: 14px;
  cursor: pointer;
  transition: background .15s;
  border-bottom: 1px solid var(--ns-bg);
  align-items: start;
}
.featured-strip__item:nth-child(odd) { border-right: 1px solid var(--ns-bg); }
.featured-strip__item:hover { background: var(--ns-bg); }
.featured-strip__thumb {
  width: 88px; height: 66px;
  border-radius: var(--r-md);
  overflow: hidden;
  flex-shrink: 0;
}
.featured-strip__thumb img { width: 100%; height: 100%; object-fit: cover; }
.featured-strip__title {
  font-family: var(--font-head);
  font-size: .88rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 5px;
  letter-spacing: -.01em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.featured-strip__title:hover { color: var(--ns-green); }
.featured-strip__meta { font-size: .7rem; color: var(--ns-muted2); }

/* ---- SECTION HEADING ---- */
.section-heading {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 1.5px solid var(--ns-border);
}
.section-heading__bar {
  width: 4px; height: 22px;
  border-radius: 2px;
  background: var(--ns-green);
  flex-shrink: 0;
}
.section-heading__title {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: -.02em;
}
.section-heading__link {
  margin-left: auto;
  font-size: .8rem;
  font-weight: 700;
  color: var(--ns-green);
  display: flex;
  align-items: center;
  gap: 3px;
}
.section-heading__link:hover { text-decoration: underline; }

/* ---- LAYOUT ---- */
.page-layout { padding: 24px 0 52px; }
.content-sidebar {
  display: grid;
  grid-template-columns: 1fr 308px;
  gap: 28px;
  align-items: start;
}
.main-content { min-width: 0; }
.sidebar { min-width: 0; }

/* ---- SIDEBAR WIDGETS ---- */
.sidebar-widget {
  background: var(--ns-white);
  border-radius: var(--r-lg);
  border: 1px solid var(--ns-border);
  padding: 20px;
  margin-bottom: 16px;
}
.sidebar-widget__title {
  font-family: var(--font-head);
  font-size: .88rem;
  font-weight: 800;
  letter-spacing: -.01em;
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--ns-green);
  color: var(--ns-dark);
}

/* NEWSLETTER WIDGET */
.sidebar-newsletter {
  background: var(--ns-dark);
  border-radius: var(--r-lg);
  padding: 22px;
  margin-bottom: 16px;
  position: relative;
  overflow: hidden;
}
.sidebar-newsletter::before {
  content: '';
  position: absolute;
  top: -50px; right: -50px;
  width: 160px; height: 160px;
  background: var(--ns-green);
  opacity: .12;
  border-radius: 50%;
}
.sidebar-newsletter::after {
  content: '';
  position: absolute;
  bottom: -30px; left: -20px;
  width: 120px; height: 120px;
  background: var(--ns-gold);
  opacity: .08;
  border-radius: 50%;
}
.sidebar-newsletter h3 {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--ns-white);
  margin-bottom: 6px;
  position: relative;
}
.sidebar-newsletter p {
  font-size: .82rem;
  color: rgba(255,255,255,.62);
  margin-bottom: 16px;
  line-height: 1.65;
  position: relative;
}
.newsletter-form { display: flex; flex-direction: column; gap: 8px; position: relative; }
.newsletter-form input {
  padding: 11px 14px;
  border-radius: var(--r-md);
  border: none;
  font-size: .85rem;
  font-family: var(--font-body);
  background: rgba(255,255,255,.1);
  color: var(--ns-white);
  outline: none;
  transition: var(--ease);
}
.newsletter-form input::placeholder { color: rgba(255,255,255,.38); }
.newsletter-form input:focus { background: rgba(255,255,255,.18); }
.newsletter-form button {
  background: var(--ns-gold);
  color: var(--ns-dark);
  padding: 11px;
  border-radius: var(--r-md);
  font-weight: 700;
  font-family: var(--font-body);
  font-size: .88rem;
  transition: var(--ease);
}
.newsletter-form button:hover { background: var(--ns-gold2); transform: translateY(-1px); }

/* LIVE SCORES WIDGET */
.live-scores-widget {
  background: var(--ns-dark);
  border-radius: var(--r-lg);
  padding: 16px;
  margin-bottom: 16px;
}
.live-scores-widget__header {
  display: flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-body);
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .09em;
  color: var(--ns-gold);
  margin-bottom: 12px;
}
.live-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--ns-red);
  animation: pulse-dot 1s infinite;
}
.live-score-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
  font-size: .82rem;
}
.live-score-item:last-child { border-bottom: none; }
.live-score-item__teams {
  color: rgba(255,255,255,.8);
  font-weight: 600;
  font-family: var(--font-head);
  font-size: .85rem;
}
.live-score-item__score {
  background: rgba(255,255,255,.1);
  color: var(--ns-white);
  padding: 3px 10px;
  border-radius: 4px;
  font-weight: 900;
  font-family: var(--font-head);
  font-size: .92rem;
}
.live-score-item__time { font-size: .7rem; color: var(--ns-gold); font-weight: 700; min-width: 28px; text-align: right; }

/* TOP POSTS LIST */
.top-posts-list { counter-reset: tp; list-style: none; }
.top-posts-item {
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid var(--ns-bg);
  counter-increment: tp;
  align-items: start;
  cursor: pointer;
}
.top-posts-item:last-child { border-bottom: none; }
.top-posts-item::before {
  content: counter(tp);
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--ns-border);
  line-height: 1;
}
.top-posts-item:nth-child(1)::before { color: var(--ns-gold); }
.top-posts-item:nth-child(2)::before { color: #94A3B8; }
.top-posts-item:nth-child(3)::before { color: #C9956B; }
.top-posts-item__title {
  font-family: var(--font-head);
  font-size: .88rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 4px;
  letter-spacing: -.01em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.top-posts-item__title a:hover { color: var(--ns-green); }
.top-posts-item__meta { font-size: .7rem; color: var(--ns-muted2); display: flex; gap: 6px; }

/* TAG CLOUD */
.tag-cloud { display: flex; flex-wrap: wrap; gap: 6px; }
.tag-cloud__tag {
  padding: 5px 12px;
  background: var(--ns-bg);
  border: 1px solid var(--ns-border);
  border-radius: var(--r-pill);
  font-size: .78rem;
  color: var(--ns-muted);
  font-weight: 600;
  cursor: pointer;
  transition: var(--ease);
}
.tag-cloud__tag:hover { background: var(--ns-green); color: var(--ns-white); border-color: var(--ns-green); }

/* ---- SINGLE POST ---- */
.single-post {
  background: var(--ns-white);
  border-radius: var(--r-xl);
  border: 1px solid var(--ns-border);
  padding: 32px;
}
.single-post__cats { display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 14px; }
.single-post__title {
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 3.5vw, 2.3rem);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -.04em;
  margin-bottom: 16px;
  color: var(--ns-dark);
}
.single-post__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  font-size: .8rem;
  color: var(--ns-muted);
  padding-bottom: 18px;
  border-bottom: 1px solid var(--ns-border);
}
.single-post__meta-author { display: flex; align-items: center; gap: 8px; }
.single-post__meta-avatar {
  width: 32px; height: 32px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--ns-border);
}
.single-post__meta-name { font-weight: 700; color: var(--ns-dark); font-size: .85rem; }
.fact-checked-badge {
  margin-left: auto;
  background: var(--ns-green3);
  color: var(--ns-green);
  padding: 3px 12px;
  border-radius: var(--r-pill);
  font-size: .72rem;
  font-weight: 700;
  font-family: var(--font-body);
  border: 1px solid var(--ns-green4);
}
.single-post__featured-img {
  border-radius: var(--r-lg);
  overflow: hidden;
  margin: 20px 0;
}
.single-post__featured-img img {
  width: 100%;
  max-height: 500px;
  object-fit: cover;
}
.single-post__featured-img figcaption {
  font-size: .72rem;
  color: var(--ns-muted);
  text-align: center;
  padding: 8px 12px;
  background: var(--ns-bg);
}

/* ARTICLE BODY */
.article-body { font-size: 1.05rem; line-height: 1.85; color: #374151; }
.article-body h2 {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 800;
  margin: 32px 0 14px;
  color: var(--ns-dark);
  letter-spacing: -.025em;
  scroll-margin-top: 130px;
}
.article-body h3 {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 700;
  margin: 24px 0 10px;
  color: var(--ns-dark);
  scroll-margin-top: 130px;
}
.article-body p { margin-bottom: 1.4rem; }
.article-body ul, .article-body ol { padding-left: 24px; margin-bottom: 1.4rem; }
.article-body ul li { list-style: disc; margin-bottom: .5rem; }
.article-body ol li { list-style: decimal; margin-bottom: .5rem; }
.article-body a { color: var(--ns-green); text-decoration: underline; text-underline-offset: 2px; }
.article-body a:hover { color: var(--ns-green2); }
.article-body img { border-radius: var(--r-lg); margin: 22px 0; }
.article-body blockquote {
  border-left: 4px solid var(--ns-green);
  padding: 16px 22px;
  margin: 24px 0;
  background: var(--ns-green3);
  border-radius: 0 var(--r-md) var(--r-md) 0;
  font-style: italic;
  font-size: 1.08rem;
  color: #374151;
  line-height: 1.7;
}
.article-body strong { font-weight: 700; color: var(--ns-dark); }
.article-body table { width: 100%; border-collapse: collapse; margin: 20px 0; font-size: .92rem; }
.article-body th { background: var(--ns-dark); color: var(--ns-white); padding: 10px 14px; text-align: left; font-family: var(--font-body); font-weight: 700; }
.article-body td { padding: 10px 14px; border-bottom: 1px solid var(--ns-border); }
.article-body tr:hover td { background: var(--ns-bg); }

/* POST TAGS */
.post-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 24px; padding-top: 20px; border-top: 1px solid var(--ns-border); }
.post-tag {
  padding: 5px 14px;
  background: var(--ns-bg);
  border: 1px solid var(--ns-border);
  border-radius: var(--r-pill);
  font-size: .78rem;
  color: var(--ns-muted);
  font-weight: 600;
  font-family: var(--font-body);
  cursor: pointer;
  transition: var(--ease);
}
.post-tag:hover { background: var(--ns-green); color: var(--ns-white); border-color: var(--ns-green); }

/* AUTHOR BOX */
.author-box {
  display: flex;
  gap: 18px;
  padding: 22px;
  background: var(--ns-bg);
  border-radius: var(--r-lg);
  margin-top: 24px;
  border: 1px solid var(--ns-border);
  align-items: flex-start;
}
.author-box__avatar {
  width: 70px; height: 70px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--ns-white);
  box-shadow: var(--shadow-sm);
  flex-shrink: 0;
}
.author-box__name { font-family: var(--font-head); font-weight: 800; font-size: 1.05rem; margin-bottom: 2px; }
.author-box__role { font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--ns-green); margin-bottom: 8px; }
.author-box__bio { font-size: .85rem; color: var(--ns-muted); line-height: 1.65; }

/* ---- BREADCRUMB ---- */
.breadcrumb { padding: 12px 0; font-size: .78rem; color: var(--ns-muted2); display: flex; flex-wrap: wrap; align-items: center; gap: 4px; }
.breadcrumb a { color: var(--ns-muted); }
.breadcrumb a:hover { color: var(--ns-green); }
.breadcrumb__sep { color: var(--ns-border2); }
.breadcrumb__current { color: var(--ns-dark); font-weight: 600; }

/* ---- ARCHIVE HEADER ---- */
.archive-header {
  border-radius: var(--r-xl);
  padding: 32px;
  margin-bottom: 22px;
  color: var(--ns-white);
  position: relative;
  overflow: hidden;
}
.archive-header::before {
  content: '';
  position: absolute;
  top: -70px; right: -70px;
  width: 220px; height: 220px;
  background: var(--ns-white);
  opacity: .06;
  border-radius: 50%;
}
.archive-header::after {
  content: '';
  position: absolute;
  bottom: -50px; left: -30px;
  width: 180px; height: 180px;
  background: var(--ns-white);
  opacity: .04;
  border-radius: 50%;
}
.archive-header__badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  border-radius: var(--r-pill);
  background: rgba(255,255,255,.15);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--ns-white);
  margin-bottom: 12px;
  backdrop-filter: blur(8px);
}
.archive-header__title {
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 900;
  color: var(--ns-white);
  letter-spacing: -.03em;
  margin-bottom: 10px;
}
.archive-header__desc { font-size: .9rem; color: rgba(255,255,255,.78); line-height: 1.65; max-width: 540px; }
.archive-header__stats { display: flex; gap: 14px; margin-top: 18px; flex-wrap: wrap; }
.archive-stat {
  background: rgba(255,255,255,.12);
  padding: 8px 18px;
  border-radius: var(--r-md);
  backdrop-filter: blur(8px);
}
.archive-stat__number { font-family: var(--font-head); font-size: 1.4rem; font-weight: 900; color: var(--ns-white); }
.archive-stat__label { font-size: .68rem; color: rgba(255,255,255,.6); text-transform: uppercase; letter-spacing: .07em; }

/* ---- PAGINATION ---- */
.pagination { display: flex; justify-content: center; gap: 6px; margin-top: 32px; flex-wrap: wrap; }
.pagination a, .pagination span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 38px; height: 38px;
  padding: 0 12px;
  border-radius: var(--r-md);
  font-size: .85rem;
  font-weight: 700;
  font-family: var(--font-body);
  border: 1.5px solid var(--ns-border);
  background: var(--ns-white);
  color: var(--ns-dark);
  transition: var(--ease);
}
.pagination a:hover { background: var(--ns-green); color: var(--ns-white); border-color: var(--ns-green); }
.pagination .current { background: var(--ns-green); color: var(--ns-white); border-color: var(--ns-green); }
.pagination .dots { border: none; background: transparent; pointer-events: none; }

/* ---- SITE FOOTER ---- */
.site-footer { background: var(--ns-dark); color: rgba(255,255,255,.6); margin-top: 60px; }
.footer-top { padding: 52px 0 40px; }
.footer-grid { display: grid; grid-template-columns: 2.2fr 1fr 1fr 1fr; gap: 40px; }
.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.footer-logo__mark { width: 34px; height: 34px; background: var(--ns-green); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-family: var(--font-head); font-weight: 900; font-size: 11px; color: var(--ns-white); }
.footer-logo__text { font-family: var(--font-head); font-weight: 900; font-size: 18px; color: var(--ns-white); }
.footer-tagline { font-size: .82rem; line-height: 1.7; max-width: 260px; }
.footer-social { display: flex; gap: 8px; margin-top: 16px; }
.footer-social__btn { width: 33px; height: 33px; background: rgba(255,255,255,.08); border-radius: 7px; display: flex; align-items: center; justify-content: center; font-size: .72rem; font-weight: 700; color: rgba(255,255,255,.6); cursor: pointer; transition: var(--ease); font-family: var(--font-body); }
.footer-social__btn:hover { background: var(--ns-green); color: var(--ns-white); }
.footer-col__title { font-family: var(--font-body); font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--ns-white); margin-bottom: 14px; }
.footer-col ul li a { display: block; font-size: .82rem; color: rgba(255,255,255,.5); margin-bottom: 8px; transition: var(--ease); cursor: pointer; }
.footer-col ul li a:hover { color: var(--ns-gold); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.07); padding: 16px 0; display: flex; align-items: center; justify-content: space-between; gap: 14px; flex-wrap: wrap; font-size: .75rem; color: rgba(255,255,255,.35); }
.footer-bottom a { color: rgba(255,255,255,.35); }
.footer-bottom a:hover { color: var(--ns-gold); }

/* ---- BACK TO TOP ---- */
.back-to-top {
  position: fixed;
  bottom: 26px; right: 26px;
  width: 42px; height: 42px;
  background: var(--ns-green);
  color: var(--ns-white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 18px rgba(0,122,61,.4);
  opacity: 0;
  pointer-events: none;
  transition: var(--ease);
  z-index: 900;
}
.back-to-top.visible { opacity: 1; pointer-events: all; }
.back-to-top:hover { background: var(--ns-green2); transform: translateY(-3px); }
.back-to-top svg { width: 18px; height: 18px; }

/* ---- MOBILE NAV ---- */
.mobile-nav {
  position: fixed; inset: 0;
  background: var(--ns-dark);
  z-index: 1100;
  transform: translateX(-100%);
  transition: transform .3s cubic-bezier(.4,0,.2,1);
  overflow-y: auto;
  display: block !important;
}
.mobile-nav[hidden] { display: block !important; transform: translateX(-100%); pointer-events: none; }
.mobile-nav--open { transform: translateX(0) !important; pointer-events: all; }
.mobile-nav__inner { padding: 24px 20px 48px; }
.mobile-nav__logo { font-family: var(--font-head); font-size: 1.3rem; font-weight: 900; color: var(--ns-white); margin-bottom: 28px; padding-bottom: 18px; border-bottom: 1px solid rgba(255,255,255,.1); }
.mobile-nav__menu { list-style: none; }
.mobile-nav__menu li { border-bottom: 1px solid rgba(255,255,255,.07); }
.mobile-nav__menu a { display: flex; align-items: center; padding: 14px 0; font-family: var(--font-body); font-size: .95rem; font-weight: 700; color: rgba(255,255,255,.75); transition: color .15s; }
.mobile-nav__menu a:hover { color: var(--ns-gold); }
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.menu-toggle span { transition: transform .25s ease, opacity .2s ease; transform-origin: center; }

/* ---- READ PROGRESS ---- */
.read-progress-wrap { position: fixed; top: 0; left: 0; width: 100%; height: 3px; z-index: 9999; pointer-events: none; }
.read-progress-bar { height: 100%; width: 0; background: linear-gradient(90deg, var(--ns-green) 0%, var(--ns-gold) 100%); transition: width .1s linear; border-radius: 0 2px 2px 0; }

/* ---- COOKIE BANNER ---- */
.cookie-banner { position: fixed; bottom: 0; left: 0; right: 0; background: var(--ns-dark); color: rgba(255,255,255,.82); padding: 14px 24px; z-index: 9999; display: flex; flex-wrap: wrap; align-items: center; gap: 14px; font-size: .82rem; box-shadow: 0 -4px 20px rgba(0,0,0,.2); }
.cookie-banner p { margin: 0; flex: 1; line-height: 1.6; }
.cookie-banner a { color: var(--ns-gold); text-decoration: underline; }
.cookie-banner__accept { background: var(--ns-green); color: var(--ns-white); padding: 9px 22px; border-radius: var(--r-pill); font-weight: 700; font-size: .82rem; border: none; cursor: pointer; font-family: var(--font-body); white-space: nowrap; transition: var(--ease); }
.cookie-banner__accept:hover { background: var(--ns-green2); }

/* ---- WHATSAPP FLOAT ---- */
.whatsapp-float { display: none; position: fixed; bottom: 80px; left: 20px; width: 48px; height: 48px; background: #25D366; color: var(--ns-white); border-radius: 50%; align-items: center; justify-content: center; font-size: 20px; box-shadow: var(--shadow-md); z-index: 850; text-decoration: none; transition: var(--ease); }
.whatsapp-float:hover { transform: scale(1.1); }

/* ---- LOAD MORE ---- */
.load-more-wrap { display: flex; justify-content: center; margin-top: 24px; }
.btn-load-more { display: inline-flex; align-items: center; gap: 8px; padding: 12px 32px; border: 2px solid var(--ns-green); border-radius: var(--r-pill); color: var(--ns-green); font-weight: 700; font-family: var(--font-body); font-size: .9rem; cursor: pointer; transition: var(--ease); background: transparent; }
.btn-load-more:hover { background: var(--ns-green); color: var(--ns-white); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-load-more:disabled { opacity: .5; cursor: not-allowed; transform: none; }

/* ---- SEARCH FORM ---- */
.search-form { display: flex; max-width: 520px; margin: 0 auto; }
.search-form .search-field { flex: 1; padding: 12px 18px; border: 1.5px solid var(--ns-border); border-right: none; border-radius: var(--r-pill) 0 0 var(--r-pill); font-size: .9rem; font-family: var(--font-body); outline: none; transition: var(--ease); background: var(--ns-white); }
.search-form .search-field:focus { border-color: var(--ns-green); }
.search-form .search-submit { background: var(--ns-green); color: var(--ns-white); padding: 0 22px; border: none; border-radius: 0 var(--r-pill) var(--r-pill) 0; font-family: var(--font-body); font-weight: 700; font-size: .88rem; cursor: pointer; transition: var(--ease); }
.search-form .search-submit:hover { background: var(--ns-green2); }

/* ---- SKIP LINK ---- */
.skip-link { position: absolute; top: -44px; left: 0; background: var(--ns-green); color: var(--ns-white); padding: 9px 18px; z-index: 99999; font-weight: 700; border-radius: 0 0 var(--r-md) 0; transition: top .15s; }
.skip-link:focus { top: 0; }

/* ---- ACCESSIBILITY ---- */
:focus-visible { outline: 3px solid var(--ns-green); outline-offset: 2px; border-radius: 2px; }

/* ---- GUTENBERG ---- */
.wp-block-image img { border-radius: var(--r-lg); }
.wp-block-quote { border-left: 4px solid var(--ns-green); padding: 14px 20px; background: var(--ns-green3); border-radius: 0 var(--r-md) var(--r-md) 0; margin: 24px 0; }
.wp-block-button__link { background: var(--ns-green) !important; border-radius: var(--r-pill) !important; font-family: var(--font-body) !important; font-weight: 700 !important; }
.wp-block-separator { border: none; border-top: 2px solid var(--ns-border); margin: 32px 0; }
.wp-block-code { background: #1E293B; color: #E2E8F0; border-radius: var(--r-md); padding: 20px; font-size: .88rem; overflow-x: auto; }
.alignleft { float: left; margin: 0 24px 16px 0; }
.alignright { float: right; margin: 0 0 16px 24px; }
.aligncenter { margin: 20px auto; display: block; }
.alignwide { margin-left: -40px; margin-right: -40px; max-width: calc(100% + 80px); }

/* ---- PRINT ---- */
@media print {
  .site-header, .site-nav, .breaking-ticker, .sidebar, .site-footer,
  .ad-zone, .back-to-top, .share-bar, .sidebar-newsletter { display: none; }
  .content-sidebar { grid-template-columns: 1fr; }
  body { background: #fff; }
}

/* ---- RESPONSIVE ---- */
@media (max-width: 1100px) {
  .content-sidebar { grid-template-columns: 1fr; }
  .sidebar { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 16px; }
  .sidebar-widget, .sidebar-newsletter, .live-scores-widget { margin-bottom: 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
}
@media (max-width: 860px) {
  .hero-grid { grid-template-columns: 1fr; height: auto; }
  .hero-right-col { display: grid; grid-template-columns: 1fr 1fr; }
  .hero-card--main { height: 320px; }
  .hero-card--sub { height: 200px; }
  .posts-grid-3 { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .cat-quick-strip { grid-template-columns: repeat(5,1fr); gap: 6px; }
  .menu-toggle { display: flex; }
  .header-search { display: none; }
  .btn-subscribe { display: none; }
}
@media (max-width: 600px) {
  .container { padding: 0 16px; }
  .posts-grid-3, .posts-grid-2 { grid-template-columns: 1fr; }
  .posts-grid-4 { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .cat-quick-strip { grid-template-columns: repeat(5,1fr); gap: 4px; }
  .cat-strip-item__count { display: none; }
  .cat-strip-item { padding: 10px 4px; }
  .sidebar { grid-template-columns: 1fr; }
  .single-post { padding: 18px; }
  .single-post__title { font-size: 1.5rem; }
  .archive-header { padding: 20px; }
  .featured-strip { grid-template-columns: 1fr; }
  .featured-strip__item:nth-child(odd) { border-right: none; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: 1; }
  .hero-right-col { grid-template-columns: 1fr; }
  .whatsapp-float { display: flex; }
}
