/*
Theme Name: Pyrupay News
Theme URI: https://pyrupay.com
Author: Pyrupay Editorial
Author URI: https://pyrupay.com
Description: Premium editorial news theme for Pyrupay — Business · Finance · AI · World News. Features deep burgundy accent palette, Playfair Display masthead, Bitter headlines, Lora body text, and Work Sans UI. Responsive, accessible, ad-ready.
Version: 1.1.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 8.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: pyrupay
Tags: news, magazine, blog, custom-logo, featured-images, sticky-post, threaded-comments, translation-ready
*/

/* ══════════════════════════════════════════════════════
   DESIGN TOKENS
══════════════════════════════════════════════════════ */
:root {
  --burgundy:    #8B1A2E;
  --burgundy-dk: #5E1020;
  --burgundy-lt: #FBF0F2;
  --amber:       #B8750A;
  --amber-lt:    #FFFBEB;
  --navy:        #0E1B2E;
  --charcoal:    #1E2535;
  --ink:         #141820;
  --body-txt:    #1F2937;
  --mid:         #4B5563;
  --muted:       #6B7280;
  --pale:        #9CA3AF;
  --border:      #E2DDD5;
  --parchment:   #F9F6F1;
  --paper:       #FFFFFF;
  --section-dk:  #0E1B2E;
  --green:       #16a34a;
  --green-lt:    #f0fdf4;

  --f-brand: 'Playfair Display', Georgia, serif;
  --f-head:  'Bitter', Georgia, serif;
  --f-body:  'Lora', Georgia, serif;
  --f-ui:    'Work Sans', system-ui, sans-serif;

  --sz-hero:    clamp(30px, 4vw, 52px);
  --sz-cinema:  clamp(24px, 3vw, 38px);
  --sz-card-lg: clamp(21px, 2vw, 25px);
  --sz-card-sm: clamp(19px, 1.8vw, 22px);
  --sz-side:    18px;
  --sz-hlist:   17px;
  --sz-body:    17px;
  --sz-excerpt: 16px;
  --sz-label:   11px;
  --sz-meta:    12px;

  --lh-hero: 1.18;
  --lh-card: 1.35;
  --lh-body: 1.82;
  --lh-side: 1.42;

  --gap:         24px;
  --section-pad: 52px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--f-body);
  font-size: var(--sz-body);
  line-height: var(--lh-body);
  color: var(--body-txt);
  background: var(--parchment);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
::selection { background: var(--burgundy); color: #fff; }

/* ══════════════════════════════════════════════════════
   READING PROGRESS BAR (single.php)
══════════════════════════════════════════════════════ */
#progress-bar {
  position: fixed; top: 0; left: 0; right: 0;
  height: 3px; background: var(--border);
  z-index: 9999; pointer-events: none;
}
#progress-fill {
  height: 100%; width: 0%;
  background: linear-gradient(90deg, var(--burgundy), var(--amber));
  transition: width .1s linear;
}

/* ══════════════════════════════════════════════════════
   TOPBAR
══════════════════════════════════════════════════════ */
#topbar {
  background: var(--navy);
  padding: 7px 0;
  font-family: var(--f-ui);
  font-size: 12px;
  font-weight: 500;
  color: rgba(255,255,255,.48);
  letter-spacing: .2px;
}
#topbar a { color: rgba(255,255,255,.48); transition: color .15s; }
#topbar a:hover { color: var(--amber); }
.tb-sep { color: rgba(255,255,255,.14); margin: 0 10px; }
.market-up   { color: #4ade80; font-weight: 600; }
.market-down { color: #f87171; font-weight: 600; }

/* ══════════════════════════════════════════════════════
   BREAKING TICKER
══════════════════════════════════════════════════════ */
.ticker-bar { background: var(--burgundy); overflow: hidden; }
.ticker-inner { display: flex; align-items: stretch; height: 38px; }
.ticker-tag {
  background: var(--burgundy-dk);
  font-family: var(--f-ui); font-size: 11px; font-weight: 800;
  letter-spacing: 2.5px; text-transform: uppercase; color: #fff;
  padding: 0 28px 0 18px;
  display: flex; align-items: center; gap: 8px; flex-shrink: 0;
  clip-path: polygon(0 0,calc(100% - 11px) 0,100% 50%,calc(100% - 11px) 100%,0 100%);
}
.live-dot {
  width: 7px; height: 7px; background: #fff;
  border-radius: 50%; flex-shrink: 0;
  animation: blink-dot 1.3s ease-in-out infinite;
}
@keyframes blink-dot { 0%,100%{opacity:1}50%{opacity:.2} }
.ticker-scroll { overflow: hidden; flex: 1; display: flex; align-items: center; }
.ticker-track {
  display: flex; white-space: nowrap;
  animation: run-ticker 42s linear infinite;
}
.ticker-track:hover { animation-play-state: paused; cursor: default; }
.t-story {
  font-family: var(--f-ui); font-size: 13px; font-weight: 500;
  color: rgba(255,255,255,.95); padding: 0 60px 0 0;
  display: flex; align-items: center; gap: 10px;
}
.t-story::before { content: '◆'; font-size: 7px; color: rgba(255,255,255,.5); }
@keyframes run-ticker { from{transform:translateX(0)} to{transform:translateX(-50%)} }

/* ══════════════════════════════════════════════════════
   MASTHEAD
══════════════════════════════════════════════════════ */
#masthead {
  background: var(--paper);
  border-bottom: 1px solid var(--border);
  padding: 20px 0 16px;
}
.logo-type {
  font-family: var(--f-brand);
  font-size: clamp(38px, 5vw, 66px);
  font-weight: 900; color: var(--ink);
  line-height: 1; letter-spacing: -1.5px; display: inline-block;
}
.logo-type .dot { color: var(--burgundy); }
.logo-sub {
  font-family: var(--f-ui); font-size: 10px; font-weight: 600;
  letter-spacing: 4px; text-transform: uppercase;
  color: var(--pale); margin-top: 5px;
}
.mast-date {
  font-family: var(--f-body); font-size: 14px;
  font-style: italic; color: var(--muted);
}
.btn-primary-sm {
  font-family: var(--f-ui); font-size: 12px; font-weight: 700;
  letter-spacing: 1.8px; text-transform: uppercase;
  background: var(--burgundy); color: #fff;
  border: none; padding: 12px 24px; cursor: pointer;
  transition: background .2s; display: inline-block;
}
.btn-primary-sm:hover { background: var(--burgundy-dk); color: #fff; }
.btn-ghost-sm {
  font-family: var(--f-ui); font-size: 12px; font-weight: 600;
  letter-spacing: 1px; background: transparent; color: var(--mid);
  border: 1.5px solid var(--border); padding: 11px 18px;
  cursor: pointer; transition: all .18s; display: inline-block;
}
.btn-ghost-sm:hover { border-color: var(--ink); color: var(--ink); }

/* ══════════════════════════════════════════════════════
   STICKY NAV
══════════════════════════════════════════════════════ */
#sitenav {
  background: var(--ink);
  border-bottom: 3px solid var(--burgundy);
  position: sticky; top: 0; z-index: 1000;
  box-shadow: 0 2px 20px rgba(0,0,0,.3);
}
/* Force the nav list to be a horizontal row — overrides browser + WP defaults */
#mainMenu ul,
#mainMenu ul.pyrupay-nav {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  align-items: stretch !important;
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
  height: 100% !important;
  width: 100% !important;
}
#mainMenu ul li {
  display: flex !important;
  align-items: center !important;
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
}
#sitenav .nav-link {
  font-family: var(--f-ui) !important;
  font-size: 12px !important; font-weight: 700 !important;
  letter-spacing: 1.6px !important; text-transform: uppercase;
  color: rgba(255,255,255,.58) !important;
  padding: 15px 15px 12px !important;
  border-bottom: 3px solid transparent; margin-bottom: -3px;
  transition: color .15s, border-color .15s, background .15s;
  white-space: nowrap;
}
#sitenav .nav-link:hover,
#sitenav .nav-link.active {
  color: #fff !important;
  border-bottom-color: var(--burgundy);
  background: rgba(255,255,255,.04);
}
.nav-search { display: flex; }
.nav-search input {
  font-family: var(--f-ui); font-size: 13px;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12);
  border-right: none; color: #fff; padding: 8px 14px; width: 200px;
  outline: none; transition: all .2s;
}
.nav-search input::placeholder { color: rgba(255,255,255,.3); }
.nav-search input:focus { border-color: var(--burgundy); background: rgba(255,255,255,.11); }
.nav-search button {
  background: var(--burgundy); border: none; color: #fff;
  padding: 8px 14px; cursor: pointer; font-size: 14px; transition: background .2s;
}
.nav-search button:hover { background: var(--burgundy-dk); }
.nav-tog { background: none; border: 1px solid rgba(255,255,255,.2); padding: 6px 10px; cursor: pointer; }
.nav-tog i { color: rgba(255,255,255,.65); font-size: 18px; }

/* ══════════════════════════════════════════════════════
   SECTION HEADER
══════════════════════════════════════════════════════ */
.sh { display: flex; align-items: center; gap: 14px; margin-bottom: 28px; }
.sh-line { flex: 1; height: 1px; background: var(--border); position: relative; }
.sh-line::before {
  content: ''; position: absolute; left: 0; top: -1px;
  width: 56px; height: 3px; background: var(--burgundy);
}
.sh-line.amber-line::before { background: var(--amber); }
.sh-line.white-line { background: rgba(255,255,255,.1); }
.sh-line.white-line::before { background: var(--amber); }
.sh h2 {
  font-family: var(--f-ui); font-size: 12px; font-weight: 800;
  letter-spacing: 3.5px; text-transform: uppercase;
  color: var(--charcoal); margin: 0; white-space: nowrap;
}
.sh.dark-sh h2 { color: rgba(255,255,255,.8); }
.sh .all-link {
  font-family: var(--f-ui); font-size: 11px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase; color: var(--burgundy);
  white-space: nowrap; display: flex; align-items: center; gap: 5px;
  transition: gap .2s;
}
.sh .all-link:hover { gap: 8px; }
.sh .all-link.amber { color: var(--amber); }

/* ══════════════════════════════════════════════════════
   HERO SECTION
══════════════════════════════════════════════════════ */
#hero { background: var(--paper); padding: 30px 0 0; }
.lead-card {
  position: relative; overflow: hidden;
  background: var(--ink); height: 500px;
  display: block; cursor: pointer;
}
.lead-card img {
  width: 100%; height: 100%; object-fit: cover; opacity: .58;
  transition: transform .75s cubic-bezier(.22,.68,0,1.2), opacity .3s;
}
.lead-card:hover img { transform: scale(1.05); opacity: .48; }
.lead-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg,rgba(14,27,46,0) 0%,rgba(14,27,46,.32) 40%,rgba(14,27,46,.86) 78%,rgba(14,27,46,.97) 100%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 32px 30px;
}
.lead-hl {
  font-family: var(--f-head); font-size: var(--sz-hero); font-weight: 900;
  line-height: var(--lh-hero); color: #fff; margin: 0 0 14px;
  letter-spacing: -0.025em; max-width: 680px;
  text-shadow: 0 2px 16px rgba(0,0,0,.4);
}
.chip {
  display: inline-block; font-family: var(--f-ui); font-size: 10px;
  font-weight: 800; letter-spacing: 2px; text-transform: uppercase;
  padding: 4px 12px; margin-bottom: 14px;
}
.chip-burg { background: var(--burgundy); color: #fff; }
.chip-amber { background: var(--amber); color: #fff; }
.chip-navy { background: rgba(255,255,255,.12); color: rgba(255,255,255,.85); border: 1px solid rgba(255,255,255,.2); }
.lead-meta {
  font-family: var(--f-ui); font-size: 12px; font-weight: 500;
  color: rgba(255,255,255,.52); display: flex; align-items: center;
  flex-wrap: wrap; gap: 7px;
}
.lead-meta .sep { color: rgba(255,255,255,.2); }

.sec-lead-card {
  background: var(--paper); display: block; height: 160px; overflow: hidden;
  border-bottom: 1px solid var(--border); cursor: pointer; transition: background .15s;
}
.sec-lead-card:last-child { border-bottom: none; }
.sec-lead-card:hover { background: var(--parchment); }
.sec-lead-card .slc-inner { display: flex; height: 100%; }
.sec-lead-card .slc-img {
  width: 140px; min-width: 140px; height: 100%;
  object-fit: cover; flex-shrink: 0;
  transition: transform .4s cubic-bezier(.22,.68,0,1.2);
}
.sec-lead-card:hover .slc-img { transform: scale(1.04); }
.sec-lead-card .slc-body { padding: 16px 18px; display: flex; flex-direction: column; justify-content: center; }
.sec-lead-card .slc-title {
  font-family: var(--f-head); font-size: var(--sz-side); font-weight: 700;
  line-height: var(--lh-side); color: var(--ink); margin: 6px 0 8px;
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
  transition: color .15s;
}
.sec-lead-card:hover .slc-title { color: var(--burgundy); }

.bottom-grid { background: var(--paper); border-top: 1px solid var(--border); }
.bottom-item {
  padding: 18px 20px; border-right: 1px solid var(--border);
  cursor: pointer; transition: background .12s; display: block;
}
.bottom-item:last-child { border-right: none; }
.bottom-item:hover { background: var(--parchment); }
.bottom-item .bi-title {
  font-family: var(--f-head); font-size: 15px; font-weight: 700;
  line-height: 1.38; color: var(--ink); margin: 6px 0 0;
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
  transition: color .15s;
}
.bottom-item:hover .bi-title { color: var(--burgundy); }

/* ══════════════════════════════════════════════════════
   ARTICLE CARD
══════════════════════════════════════════════════════ */
.ac {
  background: var(--paper); border: 1px solid transparent;
  height: 100%; display: flex; flex-direction: column;
  cursor: pointer; transition: transform .22s, box-shadow .22s, border-color .2s;
}
.ac:hover { transform: translateY(-5px); box-shadow: 0 12px 40px rgba(0,0,0,.11); border-color: var(--border); }
.ac .ac-img { overflow: hidden; }
.ac .ac-img img { width: 100%; height: 210px; object-fit: cover; transition: transform .55s cubic-bezier(.22,.68,0,1.2); }
.ac:hover .ac-img img { transform: scale(1.07); }
.ac .ac-body { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.ac .ac-title {
  font-family: var(--f-head); font-size: var(--sz-card-lg); font-weight: 700;
  line-height: var(--lh-card); color: var(--ink); margin: 8px 0 10px; flex: 1;
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
  transition: color .15s;
}
.ac:hover .ac-title { color: var(--burgundy); }
.ac .ac-title-sm {
  font-family: var(--f-head); font-size: var(--sz-card-sm); font-weight: 700;
  line-height: var(--lh-card); color: var(--ink); margin: 8px 0 10px; flex: 1;
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
  transition: color .15s;
}
.ac:hover .ac-title-sm { color: var(--burgundy); }
.ac .ac-excerpt {
  font-family: var(--f-body); font-size: 15px; font-weight: 400;
  line-height: 1.78; color: var(--mid); margin-bottom: 14px;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.ac-foot {
  display: flex; align-items: center; gap: 8px;
  padding-top: 12px; border-top: 1px solid var(--border);
  font-family: var(--f-ui); font-size: 12px; color: var(--pale); font-weight: 500;
}
.ac-foot .rt { margin-left: auto; }

/* ══════════════════════════════════════════════════════
   HORIZONTAL LIST ITEM
══════════════════════════════════════════════════════ */
.hl-item {
  display: flex; gap: 16px; padding: 18px 0;
  border-bottom: 1px solid var(--border); cursor: pointer; transition: background .12s;
}
.hl-item:last-child { border-bottom: none; }
.hl-item .hl-thumb { width: 94px; min-width: 94px; height: 68px; object-fit: cover; flex-shrink: 0; transition: transform .35s; }
.hl-item:hover .hl-thumb { transform: scale(1.06); }
.hl-item .hl-title {
  font-family: var(--f-head); font-size: var(--sz-hlist); font-weight: 700;
  line-height: 1.42; color: var(--ink); margin: 5px 0;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
  transition: color .15s;
}
.hl-item:hover .hl-title { color: var(--burgundy); }

/* ══════════════════════════════════════════════════════
   CINEMA FEATURE CARD
══════════════════════════════════════════════════════ */
.cinema {
  position: relative; overflow: hidden; height: 360px;
  background: var(--ink); cursor: pointer; display: block;
}
.cinema img { width: 100%; height: 100%; object-fit: cover; opacity: .52; transition: transform .65s cubic-bezier(.22,.68,0,1.2), opacity .3s; }
.cinema:hover img { transform: scale(1.05); opacity: .42; }
.cinema-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg,rgba(14,27,46,0) 10%,rgba(14,27,46,.52) 55%,rgba(14,27,46,.96) 100%);
  padding: 28px; display: flex; flex-direction: column; justify-content: flex-end;
}
.cinema-title {
  font-family: var(--f-head); font-size: var(--sz-cinema); font-weight: 900;
  line-height: 1.22; color: #fff; margin: 8px 0 12px;
  letter-spacing: -0.02em; text-shadow: 0 2px 12px rgba(0,0,0,.3);
  transition: opacity .2s;
}
.cinema:hover .cinema-title { opacity: .88; }
.cinema-meta { font-family: var(--f-ui); font-size: 12px; color: rgba(255,255,255,.5); display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.cinema-meta .sep { color: rgba(255,255,255,.2); }

/* ══════════════════════════════════════════════════════
   SIDEBAR WIDGETS
══════════════════════════════════════════════════════ */
.widget { background: var(--paper); border: 1px solid var(--border); margin-bottom: 26px; overflow: hidden; }
.widget-hd {
  background: var(--charcoal); color: #fff;
  font-family: var(--f-ui); font-size: 11px; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase;
  padding: 11px 18px; display: flex; align-items: center; gap: 8px;
}
.tr-item {
  display: flex; align-items: flex-start; gap: 13px;
  padding: 15px 18px; border-bottom: 1px solid var(--border);
  cursor: pointer; transition: background .12s;
}
.tr-item:last-child { border-bottom: none; }
.tr-item:hover { background: var(--parchment); }
.tr-num {
  font-family: var(--f-brand); font-size: 36px; font-weight: 900;
  color: var(--border); line-height: 1; flex-shrink: 0; min-width: 28px;
  transition: color .2s;
}
.tr-item:hover .tr-num { color: var(--burgundy); }
.tr-title { font-family: var(--f-head); font-size: 15px; font-weight: 700; line-height: 1.45; color: var(--ink); margin: 0 0 4px; transition: color .15s; }
.tr-item:hover .tr-title { color: var(--burgundy); }
.tr-cat { font-family: var(--f-ui); font-size: 10px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--burgundy); display: block; margin-bottom: 4px; }
.tr-cat.amber { color: var(--amber); }

.cat-chip { font-family: var(--f-ui); font-size: 10px; font-weight: 700; letter-spacing: 1.8px; text-transform: uppercase; color: var(--burgundy); display: block; margin-bottom: 6px; }
.cat-chip.amber { color: var(--amber); }

.meta-row { font-family: var(--f-ui); font-size: 12px; color: var(--pale); font-weight: 500; display: flex; align-items: center; gap: 7px; flex-wrap: wrap; }
.meta-row .sp { color: var(--border); }

/* ══════════════════════════════════════════════════════
   NEWSLETTER WIDGET
══════════════════════════════════════════════════════ */
.nl-widget { background: var(--navy); padding: 26px 20px; margin-bottom: 26px; position: relative; overflow: hidden; }
.nl-widget::before { content: ''; position: absolute; bottom: -50px; right: -50px; width: 200px; height: 200px; background: var(--burgundy); border-radius: 50%; opacity: .1; }
.nl-widget h3 { font-family: var(--f-body); font-size: 22px; font-style: italic; font-weight: 600; color: #fff; margin-bottom: 8px; position: relative; }
.nl-widget p { font-family: var(--f-ui); font-size: 13px; font-weight: 400; color: rgba(255,255,255,.48); margin-bottom: 18px; line-height: 1.7; position: relative; }
.nl-widget input { width: 100%; background: rgba(255,255,255,.09); border: 1px solid rgba(255,255,255,.14); color: #fff; padding: 12px 15px; font-family: var(--f-ui); font-size: 14px; margin-bottom: 10px; outline: none; transition: border-color .2s; position: relative; }
.nl-widget input:focus { border-color: var(--burgundy); }
.nl-widget input::placeholder { color: rgba(255,255,255,.26); }
.nl-widget button { width: 100%; background: var(--burgundy); color: #fff; border: none; padding: 13px; font-family: var(--f-ui); font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; cursor: pointer; transition: background .2s; position: relative; }
.nl-widget button:hover { background: var(--burgundy-dk); }

/* Tag cloud */
.tag-cloud { padding: 16px; display: flex; flex-wrap: wrap; gap: 8px; }
.tc-pill {
  font-family: var(--f-ui); font-size: 11px; font-weight: 600;
  letter-spacing: 1px; text-transform: uppercase;
  padding: 6px 13px; border: 1.5px solid var(--border); color: var(--mid);
  cursor: pointer; transition: all .15s; background: transparent; display: inline-block;
}
.tc-pill:hover { border-color: var(--burgundy); color: var(--burgundy); background: var(--burgundy-lt); }

.sidebar-top { position: sticky; top: 65px; }

/* ══════════════════════════════════════════════════════
   DARK WORLD SECTION
══════════════════════════════════════════════════════ */
#world-sec { background: var(--section-dk); padding: var(--section-pad) 0; }
#world-sec .ac { background: rgba(255,255,255,.055); border-color: rgba(255,255,255,.07); }
#world-sec .ac:hover { box-shadow: 0 12px 48px rgba(0,0,0,.55); border-color: rgba(255,255,255,.13); }
#world-sec .ac .ac-title { color: rgba(255,255,255,.9); }
#world-sec .ac:hover .ac-title { color: var(--amber); }
#world-sec .cat-chip { color: var(--amber); }
#world-sec .ac .ac-excerpt { color: rgba(255,255,255,.42); }
#world-sec .ac-foot { border-color: rgba(255,255,255,.07); color: rgba(255,255,255,.28); }

/* ══════════════════════════════════════════════════════
   EDITOR SPOTLIGHT
══════════════════════════════════════════════════════ */
#editors { background: #F4F0EA; padding: var(--section-pad) 0; }
.pull-quote { border-left: 4px solid var(--burgundy); padding: 4px 0 4px 24px; margin-bottom: 32px; }
.pq-eyebrow { font-family: var(--f-ui); font-size: 10px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; color: var(--burgundy); margin-bottom: 12px; }
.pull-quote blockquote { font-family: var(--f-body); font-style: italic; font-weight: 500; font-size: clamp(17px, 1.8vw, 21px); line-height: 1.65; color: var(--body-txt); margin: 0; max-width: 62ch; }
.rd-link { font-family: var(--f-ui); font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--burgundy); display: inline-flex; align-items: center; gap: 6px; margin-top: 14px; cursor: pointer; transition: gap .2s; }
.rd-link:hover { gap: 10px; }

/* ══════════════════════════════════════════════════════
   SPONSORED STRIP
══════════════════════════════════════════════════════ */
#sponsored { background: var(--amber-lt); border-top: 1px solid #E6D28C; border-bottom: 1px solid #E6D28C; padding: 32px 0; }
.sp-banner { font-family: var(--f-ui); font-size: 10px; font-weight: 800; letter-spacing: 3px; text-transform: uppercase; color: var(--amber); margin-bottom: 18px; display: flex; align-items: center; gap: 10px; }
.sp-banner::after { content: ''; flex: 1; height: 1px; background: #E6D28C; }
.sp-card { background: var(--paper); border: 1px solid #E6D28C; padding: 22px; height: 100%; cursor: pointer; transition: box-shadow .2s; }
.sp-card:hover { box-shadow: 0 4px 24px rgba(184,117,10,.18); }
.sp-badge { font-family: var(--f-ui); font-size: 9px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--amber); border: 1px solid var(--amber); padding: 2px 8px; display: inline-block; margin-bottom: 12px; }
.sp-card h4 { font-family: var(--f-head); font-size: 18px; font-weight: 700; line-height: 1.4; color: var(--charcoal); margin: 0 0 10px; }
.sp-card p { font-family: var(--f-body); font-size: 14px; line-height: 1.72; color: var(--mid); margin: 0; }
.sp-cta { font-family: var(--f-ui); font-size: 11px; font-weight: 700; letter-spacing: 1px; color: var(--amber); margin-top: 12px; display: block; }

/* ══════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════ */
#footer { background: var(--ink); color: rgba(255,255,255,.48); }
.footer-body { padding: 52px 0 36px; }
.footer-logo { font-family: var(--f-brand); font-size: 42px; font-weight: 900; color: #fff; line-height: 1; }
.footer-logo span { color: var(--burgundy); }
.footer-sub-brand { font-family: var(--f-ui); font-size: 10px; letter-spacing: 4px; text-transform: uppercase; color: rgba(255,255,255,.2); margin-top: 6px; }
.footer-desc { font-family: var(--f-body); font-size: 14px; line-height: 1.8; color: rgba(255,255,255,.36); margin-top: 16px; font-weight: 400; font-style: italic; max-width: 36ch; }
.soc-row { display: flex; gap: 8px; margin-top: 20px; }
.soc-btn { width: 36px; height: 36px; background: rgba(255,255,255,.07); color: rgba(255,255,255,.42); display: flex; align-items: center; justify-content: center; font-size: 15px; cursor: pointer; border: 1px solid rgba(255,255,255,.06); transition: background .2s, color .2s; }
.soc-btn:hover { background: var(--burgundy); color: #fff; border-color: var(--burgundy); }
.f-hd { font-family: var(--f-ui); font-size: 11px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: #fff; margin-bottom: 18px; padding-bottom: 10px; border-bottom: 1px solid rgba(255,255,255,.07); }
.f-list { list-style: none; padding: 0; margin: 0; }
.f-list li { margin-bottom: 10px; }
.f-list a { font-family: var(--f-ui); font-size: 14px; color: rgba(255,255,255,.4); transition: color .15s; }
.f-list a:hover { color: #fff; }
.f-nl { display: flex; margin-bottom: 10px; }
.f-nl input { flex: 1; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12); border-right: none; color: #fff; padding: 11px 14px; font-family: var(--f-ui); font-size: 13px; outline: none; transition: border-color .2s; }
.f-nl input:focus { border-color: var(--burgundy); }
.f-nl input::placeholder { color: rgba(255,255,255,.22); }
.f-nl button { background: var(--burgundy); border: none; color: #fff; padding: 11px 18px; font-family: var(--f-ui); font-size: 12px; font-weight: 700; letter-spacing: 1.5px; cursor: pointer; white-space: nowrap; transition: background .2s; }
.f-nl button:hover { background: var(--burgundy-dk); }
.footer-bottom { background: rgba(0,0,0,.32); padding: 15px 0; font-family: var(--f-ui); font-size: 12px; color: rgba(255,255,255,.22); }
.footer-bottom a { color: rgba(255,255,255,.3); transition: color .15s; }
.footer-bottom a:hover { color: rgba(255,255,255,.65); }
.f-link-row { display: flex; gap: 18px; flex-wrap: wrap; align-items: center; }
/* Footer bottom WP menu */
ul.f-bottom-menu { list-style:none; margin:0; padding:0; display:flex; flex-wrap:wrap; gap:18px; align-items:center; }
ul.f-bottom-menu li { list-style:none; margin:0; padding:0; }
ul.f-bottom-menu li a { font-family:var(--f-ui); font-size:12px; color:rgba(255,255,255,.3); transition:color .15s; }
ul.f-bottom-menu li a:hover { color:rgba(255,255,255,.65); }

/* ══════════════════════════════════════════════════════
   ARTICLE / SINGLE PAGE
══════════════════════════════════════════════════════ */
.breadcrumb-bar { background: var(--paper); border-bottom: 1px solid var(--border); padding: 12px 0; font-family: var(--f-ui); font-size: 12px; font-weight: 500; color: var(--pale); }
.breadcrumb-bar a { color: var(--muted); transition: color .15s; }
.breadcrumb-bar a:hover { color: var(--burgundy); }
.breadcrumb-bar .bc-sep { margin: 0 8px; color: var(--border); }
.breadcrumb-bar .bc-current { color: var(--mid); }

#article-header { background: var(--paper); padding: 40px 0 0; border-bottom: 1px solid var(--border); }
.art-cat { font-family: var(--f-ui); font-size: 11px; font-weight: 800; letter-spacing: 3px; text-transform: uppercase; color: var(--burgundy); display: flex; align-items: center; gap: 10px; margin-bottom: 18px; }
.art-cat::after { content: ''; flex: 1; height: 1px; background: var(--border); max-width: 80px; }
.art-headline { font-family: var(--f-head); font-size: clamp(28px, 4vw, 48px); font-weight: 900; line-height: 1.15; color: var(--ink); margin: 0 0 20px; letter-spacing: -0.025em; }
.art-deck { font-family: var(--f-body); font-size: clamp(17px, 1.8vw, 20px); font-style: italic; font-weight: 400; line-height: 1.65; color: var(--mid); margin: 0 0 24px; max-width: 78ch; }
.byline-bar { display: flex; align-items: center; flex-wrap: wrap; gap: 18px; padding: 18px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); margin-bottom: 0; }
.byline-av { width: 44px; height: 44px; border-radius: 50%; background: var(--burgundy); display: flex; align-items: center; justify-content: center; font-family: var(--f-brand); font-size: 18px; font-weight: 900; color: #fff; flex-shrink: 0; }
.byline-name { font-family: var(--f-ui); font-size: 14px; font-weight: 700; color: var(--ink); }
.byline-role { font-family: var(--f-ui); font-size: 12px; color: var(--muted); }
.byline-meta { font-family: var(--f-ui); font-size: 12px; color: var(--pale); display: flex; flex-wrap: wrap; gap: 14px; margin-left: auto; }

.art-hero-img { width: 100%; max-height: 520px; object-fit: cover; display: block; }
.art-img-caption { font-family: var(--f-ui); font-size: 12px; color: var(--muted); padding: 10px 0; border-bottom: 1px solid var(--border); }

.article-body { font-family: var(--f-body); font-size: 18px; line-height: 1.85; color: var(--body-txt); }
.article-body p { margin: 0 0 1.4em; }
.article-body h2 { font-family: var(--f-head); font-size: clamp(22px, 2.5vw, 28px); font-weight: 700; color: var(--ink); margin: 2em 0 .8em; line-height: 1.3; }
.article-body h3 { font-family: var(--f-head); font-size: clamp(19px, 2vw, 23px); font-weight: 700; color: var(--charcoal); margin: 1.8em 0 .7em; line-height: 1.35; }
.article-body blockquote { border-left: 4px solid var(--burgundy); padding: 2px 0 2px 24px; margin: 2em 0; font-style: italic; color: var(--mid); }
.article-body ul, .article-body ol { padding-left: 1.6em; margin: 0 0 1.4em; }
.article-body li { margin-bottom: .5em; }
.article-body a { color: var(--burgundy); text-decoration: underline; text-underline-offset: 3px; }
.article-body a:hover { color: var(--burgundy-dk); }
.article-body strong { font-weight: 700; color: var(--ink); }

.article-key-fact { background: var(--parchment); border: 1px solid var(--border); border-left: 4px solid var(--burgundy); padding: 20px 24px; margin: 2em 0; }
.article-key-fact .kf-label { font-family: var(--f-ui); font-size: 10px; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; color: var(--burgundy); margin-bottom: 12px; }
.article-key-fact ul { padding-left: 1.4em; margin: 0; }
.article-key-fact li { font-family: var(--f-body); font-size: 16px; line-height: 1.7; margin-bottom: .5em; }

.share-bar { display: flex; align-items: center; gap: 10px; padding: 18px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); flex-wrap: wrap; }
.share-label { font-family: var(--f-ui); font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--muted); }
.share-btn { display: flex; align-items: center; gap: 7px; font-family: var(--f-ui); font-size: 12px; font-weight: 600; padding: 9px 16px; border: 1.5px solid var(--border); background: var(--paper); color: var(--mid); cursor: pointer; transition: all .15s; }
.share-btn:hover { border-color: var(--ink); color: var(--ink); }
.share-btn.twitter:hover { border-color: #000; color: #000; }
.share-btn.facebook:hover { border-color: #1877f2; color: #1877f2; }
.share-btn.linkedin:hover { border-color: #0a66c2; color: #0a66c2; }
.share-btn.whatsapp:hover { border-color: #25d366; color: #25d366; }

.tags-row { padding: 20px 0; display: flex; flex-wrap: wrap; gap: 8px; align-items: center; }
.tags-row .tags-label { font-family: var(--f-ui); font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--muted); }

/* ══════════════════════════════════════════════════════
   COMMENTS
══════════════════════════════════════════════════════ */
.comment-hdr { display: flex; align-items: center; flex-wrap: wrap; gap: 16px; margin-bottom: 28px; padding-bottom: 18px; border-bottom: 2px solid var(--border); position: relative; }
.comment-hdr::before { content: ''; position: absolute; bottom: -2px; left: 0; width: 56px; height: 2px; background: var(--burgundy); }
.comment-count { font-family: var(--f-head); font-size: clamp(22px, 2.5vw, 28px); font-weight: 700; color: var(--ink); margin: 0; }
.comment-count span { color: var(--burgundy); }

.comment-form-box { background: var(--paper); border: 1px solid var(--border); border-top: 3px solid var(--burgundy); padding: 28px; margin-bottom: 36px; }
.comment-form-box h3 { font-family: var(--f-head); font-size: 20px; font-weight: 700; color: var(--ink); margin: 0 0 6px; }
.cf-label { font-family: var(--f-ui); font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--mid); display: block; margin-bottom: 6px; }
.cf-input { width: 100%; border: 1.5px solid var(--border); background: var(--parchment); padding: 11px 14px; font-family: var(--f-ui); font-size: 14px; color: var(--ink); outline: none; transition: border-color .2s; }
.cf-input:focus { border-color: var(--burgundy); background: var(--paper); }
.cf-textarea { width: 100%; border: 1.5px solid var(--border); background: var(--parchment); padding: 14px; font-family: var(--f-body); font-size: 15px; line-height: 1.7; color: var(--ink); outline: none; resize: vertical; min-height: 130px; transition: border-color .2s; margin-bottom: 14px; }
.cf-textarea:focus { border-color: var(--burgundy); background: var(--paper); }
.cf-submit { font-family: var(--f-ui); font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; background: var(--burgundy); color: #fff; border: none; padding: 13px 30px; cursor: pointer; transition: background .2s; display: inline-flex; align-items: center; gap: 8px; }
.cf-submit:hover { background: var(--burgundy-dk); }

/* Comment thread */
.comment-thread { display: flex; flex-direction: column; }
.comment { background: var(--paper); border-bottom: 1px solid var(--border); padding: 24px 0; }
.comment:last-child { border-bottom: none; }
.comment-inner { display: flex; gap: 16px; align-items: flex-start; }
.c-avatar { width: 44px; height: 44px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--f-brand); font-size: 18px; font-weight: 900; color: #fff; flex-shrink: 0; }
.av-burg { background: linear-gradient(135deg,var(--burgundy),var(--burgundy-dk)); }
.av-navy { background: linear-gradient(135deg,var(--navy),#1a3a5c); }
.av-amber { background: linear-gradient(135deg,var(--amber),#8b5500); }
.c-body { flex: 1; min-width: 0; }
.c-header { display: flex; align-items: center; flex-wrap: wrap; gap: 8px; margin-bottom: 8px; }
.c-name { font-family: var(--f-head); font-size: 15px; font-weight: 700; color: var(--ink); }
.c-badge { font-family: var(--f-ui); font-size: 9px; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase; padding: 2px 8px; display: inline-block; }
.badge-staff { background: var(--burgundy); color: #fff; }
.c-time { font-family: var(--f-ui); font-size: 12px; color: var(--pale); margin-left: auto; }
.c-text { font-family: var(--f-body); font-size: 15px; line-height: 1.72; color: var(--body-txt); margin: 0 0 12px; }
.replies { margin-top: 16px; padding-left: 20px; border-left: 2px solid var(--border); display: flex; flex-direction: column; }
.reply { padding: 18px 0; border-bottom: 1px solid #F0EDE8; }
.reply:last-child { border-bottom: none; }

/* ══════════════════════════════════════════════════════
   SECTION PADDING & MISC
══════════════════════════════════════════════════════ */
.sec { padding: var(--section-pad) 0; }
#latest { background: var(--parchment); padding: var(--section-pad) 0; }
hr.divider { border: none; border-top: 1px solid var(--border); margin: 32px 0; }

.reveal { opacity: 0; transform: translateY(20px); transition: opacity .5s ease, transform .5s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ══════════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════════ */
@media(max-width:991px) {
  .lead-card { height: 380px; }
  .sec-lead-card .slc-img { width: 110px; min-width: 110px; }
  .sidebar-top { position: static; }
}
@media(max-width:767px) {
  .lead-card { height: 300px; }
  .lead-hl { font-size: 26px; }
  .bottom-item { border-right: none; border-bottom: 1px solid var(--border); }
  #sitenav { position: relative; }
  .sec-lead-card .slc-img { width: 95px; min-width: 95px; }
  .sec-lead-card .slc-title { font-size: 16px; }
}

/* ══════════════════════════════════════════════════════
   WORDPRESS DEFAULT ALIGNMENT CLASSES
══════════════════════════════════════════════════════ */
.alignleft { float: left; margin: 0 1.5em 1em 0; }
.alignright { float: right; margin: 0 0 1em 1.5em; }
.aligncenter { display: block; margin: 1.5em auto; }
.wp-caption { max-width: 100%; }
.wp-caption-text { font-family: var(--f-ui); font-size: 12px; color: var(--muted); margin-top: 6px; }
.screen-reader-text { clip: rect(1px,1px,1px,1px); height: 1px; overflow: hidden; position: absolute; width: 1px; }

/* ══════════════════════════════════════════════════════
   PAGINATION  — horizontal pill row, theme-styled
   Each link/span is wrapped in .pag-item so display
   is set on the wrapper, not on <a>/<span> directly
   (beats Bootstrap/WP resets on inline elements).
══════════════════════════════════════════════════════ */
.pyrupay-pagination {
  margin: 48px 0 28px;
  width: 100%;
  text-align: center;
}
.pyrupay-pagination .pag-wrap {
  display:         inline-flex !important;
  flex-direction:  row         !important;
  flex-wrap:       wrap        !important;
  align-items:     center      !important;
  justify-content: center      !important;
  gap:             6px         !important;
  padding:         0           !important;
  margin:          0           !important;
  list-style:      none        !important;
}
/* Wrapper div for each item — sets size */
.pyrupay-pagination .pag-item {
  display:     inline-flex    !important;
  align-items: center         !important;
  flex-shrink: 0              !important;
}
/* The <a> and <span> inside each item */
.pyrupay-pagination .pag-item a.page-numbers,
.pyrupay-pagination .pag-item span.page-numbers {
  display:         inline-flex  !important;
  align-items:     center       !important;
  justify-content: center       !important;
  min-width:       42px         !important;
  height:          42px         !important;
  padding:         0 14px       !important;
  font-family:     'Work Sans', sans-serif !important;
  font-size:       13px         !important;
  font-weight:     700          !important;
  line-height:     1            !important;
  letter-spacing:  .4px         !important;
  color:           #141820      !important;
  background:      #ffffff      !important;
  border:          1.5px solid #E2DDD5 !important;
  border-radius:   5px          !important;
  text-decoration: none         !important;
  white-space:     nowrap       !important;
  transition:      background .16s, color .16s, border-color .16s, box-shadow .16s !important;
  box-shadow:      0 1px 3px rgba(0,0,0,.06) !important;
  cursor:          pointer      !important;
}
/* Hover */
.pyrupay-pagination .pag-item a.page-numbers:hover {
  background:    #8B1A2E !important;
  border-color:  #8B1A2E !important;
  color:         #ffffff !important;
  box-shadow:    0 3px 10px rgba(139,26,46,.25) !important;
}
/* Current / active page */
.pyrupay-pagination .pag-item span.page-numbers.current {
  background:    #8B1A2E !important;
  border-color:  #8B1A2E !important;
  color:         #ffffff !important;
  box-shadow:    0 3px 10px rgba(139,26,46,.25) !important;
  pointer-events: none  !important;
}
/* Dots … */
.pyrupay-pagination .pag-item span.page-numbers.dots {
  background:    transparent   !important;
  border-color:  transparent   !important;
  box-shadow:    none          !important;
  color:         #6B7280       !important;
  pointer-events: none         !important;
  min-width:     28px          !important;
  padding:       0 4px         !important;
  font-weight:   400           !important;
}
/* Prev / Next — dark pill */
.pyrupay-pagination .pag-item a.prev.page-numbers,
.pyrupay-pagination .pag-item a.next.page-numbers {
  padding:       0 20px        !important;
  background:    #141820       !important;
  border-color:  #141820       !important;
  color:         rgba(255,255,255,.85) !important;
  font-size:     12px          !important;
  letter-spacing: .8px         !important;
  text-transform: uppercase    !important;
  box-shadow:    0 2px 6px rgba(0,0,0,.18) !important;
}
.pyrupay-pagination .pag-item a.prev.page-numbers:hover,
.pyrupay-pagination .pag-item a.next.page-numbers:hover {
  background:    #8B1A2E       !important;
  border-color:  #8B1A2E       !important;
  color:         #ffffff       !important;
  box-shadow:    0 3px 10px rgba(139,26,46,.3) !important;
}

/* ══════════════════════════════════════════════════════
   MAIN NAV — horizontal flex row, no bullets.
   .pyrupay-nav replaces Bootstrap's navbar-nav to avoid
   the collapse/hide behaviour Bootstrap applies to it.
══════════════════════════════════════════════════════ */
ul.pyrupay-nav {
  list-style:     none        !important;
  margin:         0           !important;
  padding:        0           !important;
  display:        flex        !important;
  flex-direction: row         !important;
  flex-wrap:      nowrap      !important;
  align-items:    stretch     !important;
  height:         100%        !important;
  width:          100%        !important;
}
ul.pyrupay-nav li.nav-item {
  list-style: none    !important;
  margin:     0       !important;
  padding:    0       !important;
  display:    flex    !important;
  align-items: center !important;
}
/* Mobile: stacked when JS hides/shows #mainMenu */
@media (max-width: 991px) {
  #sitenav { position: relative; }
  #mainMenu {
    position:       absolute    !important;
    top:            100%        !important;
    left:           0           !important;
    width:          100%        !important;
    background:     var(--ink)  !important;
    z-index:        999         !important;
    padding:        8px 0       !important;
    flex-direction: column      !important;
  }
  #mainMenu ul,
  #mainMenu ul.pyrupay-nav,
  ul.pyrupay-nav {
    flex-direction: column !important;
    width: 100% !important;
  }
}

/* ═══════════════════════════════════════════════════════════

/* ══════════════════════════════════════════════════════
   AUTH PAGES — Login & Register
   Matches Pyrupay theme: burgundy, navy, Work Sans, Playfair
══════════════════════════════════════════════════════ */

/* Full-page wrapper — uses site parchment background */
.auth-page {
  min-height: calc(100vh - 260px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 16px 80px;
  background: var(--parchment);
}

/* Card */
.auth-card {
  background: var(--paper);
  border: 1px solid var(--border);
  border-top: 4px solid var(--burgundy);
  width: 100%;
  max-width: 460px;
  padding: 48px 44px 40px;
  box-shadow: 0 8px 40px rgba(14,27,46,.10);
}
@media (max-width: 520px) {
  .auth-card { padding: 36px 24px 30px; }
}

/* Brand block */
.auth-brand {
  text-align: center;
  margin-bottom: 32px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border);
}
.auth-brand a { text-decoration: none; }
.auth-brand .logo-type {
  font-size: clamp(34px, 6vw, 52px);
  letter-spacing: -1px;
}
.auth-tagline {
  font-family: var(--f-ui);
  font-size: 13px;
  color: var(--muted);
  margin: 8px 0 0;
  font-style: italic;
}

/* Alerts */
.auth-error,
.auth-success {
  font-family: var(--f-ui);
  font-size: 13px;
  border-left: 3px solid;
  padding: 11px 14px;
  margin-bottom: 22px;
  display: flex;
  align-items: flex-start;
  gap: 9px;
  line-height: 1.5;
}
.auth-error {
  background: #FEF2F2;
  color: #991B1B;
  border-color: var(--burgundy);
}
.auth-error a { color: var(--burgundy); font-weight: 600; text-decoration: underline; }
.auth-success {
  background: var(--green-lt);
  color: #166534;
  border-color: var(--green);
}

/* Form fields */
.auth-form { display: flex; flex-direction: column; }
.auth-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 18px;
}
.auth-field label {
  font-family: var(--f-ui);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--charcoal);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.auth-field input[type="text"],
.auth-field input[type="email"],
.auth-field input[type="password"] {
  width: 100%;
  padding: 11px 14px;
  font-family: var(--f-ui);
  font-size: 14px;
  color: var(--ink);
  background: var(--parchment);
  border: 1.5px solid var(--border);
  border-radius: 0;
  outline: none;
  transition: border-color .18s, background .18s, box-shadow .18s;
  box-sizing: border-box;
}
.auth-field input:focus {
  border-color: var(--burgundy);
  background: var(--paper);
  box-shadow: 0 0 0 3px rgba(139,26,46,.08);
}
.req { color: var(--burgundy); margin-left: 2px; }

/* Password wrap */
.auth-pass-wrap { position: relative; display: flex; align-items: stretch; }
.auth-pass-wrap input { padding-right: 46px; flex: 1; }
.auth-eye {
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: 44px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: color .15s;
  padding: 0;
}
.auth-eye:hover { color: var(--burgundy); }

/* Remember me */
.auth-remember {
  display: flex;
  align-items: center;
  gap: 9px;
  cursor: pointer;
  font-family: var(--f-ui);
  font-size: 13px;
  color: var(--mid);
  margin-bottom: 22px;
  user-select: none;
}
.auth-remember input[type="checkbox"] {
  width: 15px; height: 15px;
  accent-color: var(--burgundy);
  cursor: pointer;
  flex-shrink: 0;
}

/* Forgot link */
.auth-forgot {
  font-family: var(--f-ui);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .5px;
  color: var(--burgundy);
  text-decoration: none;
}
.auth-forgot:hover { text-decoration: underline; }

/* Terms text */
.auth-terms {
  font-family: var(--f-ui);
  font-size: 12px;
  color: var(--muted);
  text-align: center;
  margin: 0 0 18px;
  line-height: 1.7;
}
.auth-terms a { color: var(--burgundy); text-decoration: underline; }

/* Submit button — matches .btn-primary-sm style */
.auth-btn {
  width: 100%;
  padding: 14px 20px;
  font-family: var(--f-ui);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: #fff;
  background: var(--burgundy);
  border: none;
  border-radius: 0;
  cursor: pointer;
  transition: background .2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.auth-btn:hover { background: var(--burgundy-dk); }

/* Switch link (below form) */
.auth-switch {
  text-align: center;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  font-family: var(--f-ui);
  font-size: 13px;
  color: var(--muted);
}
.auth-switch a {
  color: var(--burgundy);
  font-weight: 700;
  text-decoration: none;
}
.auth-switch a:hover { text-decoration: underline; }

/* ══════════════════════════════════════════════════════
   COMMENT FORM — logged-in heading
══════════════════════════════════════════════════════ */
.cf-heading { margin-bottom: 20px; }
.cf-heading h3 {
  font-family: var(--f-ui);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--charcoal);
  margin: 0 0 6px;
}
.cf-note {
  font-family: var(--f-ui);
  font-size: 13px;
  color: var(--muted);
  margin: 0;
}
.cf-signout { color: var(--burgundy); font-weight: 600; text-decoration: none; }
.cf-signout:hover { text-decoration: underline; }

/* ══════════════════════════════════════════════════════
   COMMENT LOGIN PROMPT — guest users
══════════════════════════════════════════════════════ */
.comment-login-prompt {
  text-align: center;
  padding: 44px 32px;
  background: var(--parchment);
  border: 1px solid var(--border);
  border-top: 4px solid var(--burgundy);
}
.clp-icon {
  font-size: 32px;
  color: var(--burgundy);
  margin-bottom: 16px;
  opacity: .9;
}
.comment-login-prompt h3 {
  font-family: var(--f-ui);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--charcoal);
  margin: 0 0 10px;
}
.comment-login-prompt > p {
  font-family: var(--f-body);
  font-size: 15px;
  color: var(--mid);
  margin: 0 0 26px;
  line-height: 1.65;
  font-style: italic;
}
.clp-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
/* Primary: matches .btn-primary-sm */
.clp-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 12px 26px;
  background: var(--burgundy);
  color: #fff;
  font-family: var(--f-ui);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  transition: background .2s;
}
.clp-btn-primary:hover { background: var(--burgundy-dk); color: #fff; }
/* Secondary: matches .btn-ghost-sm */
.clp-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 11px 26px;
  background: transparent;
  color: var(--mid);
  font-family: var(--f-ui);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: 1.5px solid var(--border);
  text-decoration: none;
  transition: border-color .18s, color .18s;
}
.clp-btn-secondary:hover { border-color: var(--ink); color: var(--ink); }
.clp-note {
  font-family: var(--f-ui);
  font-size: 12px;
  color: var(--pale);
  margin: 0 !important;
}
