/* ============================================================
   css/style.css — Campus Vibes Media
   EXACT original styles preserved + additions for new features
   ============================================================ */

/* ─── DESIGN TOKENS ─── */
:root {
  --blue:   #0A66C2;
  --navy:   #0F172A;
  --gold:   #FACC15;
  --white:  #FFFFFF;
  --gray:   #F1F5F9;
  --gray2:  #E2E8F0;
  --gray3:  #94A3B8;
  --text:   #1E293B;
  --card:   #FFFFFF;
  --radius: 12px;
  --shadow: 0 4px 24px rgba(10,102,194,.10);
  --shadow2:0 2px 12px rgba(0,0,0,.08);
}

/* ─── RESET ─── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Inter', sans-serif; color: var(--text); background: #fff; overflow-x: hidden; }
a    { text-decoration: none; color: inherit; }
img  { max-width: 100%; display: block; }
ul   { list-style: none; }
button { cursor: pointer; font-family: 'Inter', sans-serif; }

/* ─── UTILITY ─── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 16px; }
.badge { display: inline-block; background: var(--blue); color: #fff; font-size: 11px; font-weight: 600; padding: 3px 10px; border-radius: 20px; text-transform: uppercase; letter-spacing: .5px; }
.badge-gold { background: var(--gold); color: var(--navy); }
.badge-red  { background: #EF4444; color: #fff; }
.section-title { font-family: 'Poppins', sans-serif; font-size: clamp(22px,4vw,28px); font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.section-sub   { color: var(--gray3); font-size: 14px; margin-bottom: 28px; }
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 12px 24px; border-radius: 30px; font-weight: 600; font-size: 14px; border: none; transition: all .25s; }
.btn-primary { background: var(--blue); color: #fff; }
.btn-primary:hover { background: #0850a0; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(10,102,194,.35); }
.btn-gold    { background: var(--gold); color: var(--navy); }
.btn-gold:hover  { background: #e6b800; transform: translateY(-2px); }
.btn-outline { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,.5); }
.btn-outline:hover { background: rgba(255,255,255,.1); }
.btn-ghost   { background: transparent; color: var(--blue); border: 2px solid var(--blue); }
.btn-ghost:hover { background: var(--blue); color: #fff; }
.grid-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 20px; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }

/* ─── PAGE LOADER ─── */
#page-loader {
  position: fixed; inset: 0; background: rgba(255,255,255,.8);
  z-index: 9998; display: none; align-items: center; justify-content: center;
  backdrop-filter: blur(4px);
}
#page-loader .spinner {
  width: 40px; height: 40px; border: 3px solid var(--gray2);
  border-top-color: var(--blue); border-radius: 50%; animation: spin .7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ─── PAGE SYSTEM ─── */
.page { display: none; }
.page.active { display: block; }

/* ─── TOP BAR ─── */
#topbar { background: var(--navy); color: #fff; font-size: 12px; padding: 6px 0; }
#topbar .tb-inner { display: flex; justify-content: space-between; align-items: center; }
#topbar .tb-links a { color: rgba(255,255,255,.7); margin-left: 14px; font-size: 12px; }
#topbar .tb-links a:hover { color: var(--gold); }

/* ─── TICKER ─── */
#ticker { background: var(--blue); color: #fff; padding: 8px 0; overflow: hidden; }
#ticker .tick-label { background: var(--gold); color: var(--navy); font-weight: 700; font-size: 12px; padding: 2px 12px; border-radius: 3px; white-space: nowrap; margin-right: 16px; }
#ticker .ticker-wrap { display: flex; align-items: center; overflow: hidden; }
#ticker .ticker-move { display: inline-flex; animation: tickscroll 35s linear infinite; white-space: nowrap; font-size: 13px; gap: 0; }
#ticker .ticker-move span { padding: 0 24px; }
@keyframes tickscroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ─── NAVBAR ─── */
#navbar { background: #fff; box-shadow: 0 2px 12px rgba(0,0,0,.07); position: sticky; top: 0; z-index: 100; }
#navbar .nav-inner { display: flex; align-items: center; justify-content: space-between; height: 64px; }
#navbar .logo { display: flex; align-items: center; gap: 10px; cursor: pointer; }
/* Real logo image in navbar */
#navbar .nav-logo-img {
  height: 44px;
  width: auto;
  object-fit: contain;
  border-radius: 8px;
  display: block;
  transition: opacity .2s;
}
#navbar .logo:hover .nav-logo-img { opacity: .88; }
/* Keep fallback text styles if ever needed */
#navbar .logo-icon { width: 38px; height: 38px; background: var(--blue); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: #fff; font-family: 'Montserrat', sans-serif; font-weight: 900; font-size: 14px; }
#navbar .logo-text { font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 17px; color: var(--navy); }
#navbar .logo-text span { color: var(--blue); }
#navbar .nav-links { display: flex; align-items: center; gap: 4px; }
#navbar .nav-links a { font-size: 13px; font-weight: 500; color: var(--text); padding: 6px 12px; border-radius: 8px; transition: .2s; }
#navbar .nav-links a:hover, #navbar .nav-links a.active { background: var(--blue); color: #fff; }
#navbar .nav-cta { display: flex; gap: 8px; align-items: center; }
#navbar .nav-cta .btn { padding: 8px 18px; font-size: 13px; }
/* Search bar in nav */
#nav-search { display: flex; align-items: center; background: var(--gray); border-radius: 20px; padding: 6px 14px; gap: 8px; margin-right: 8px; }
#nav-search input { background: none; border: none; outline: none; font-size: 13px; width: 160px; font-family: 'Inter', sans-serif; color: var(--text); }
#nav-search i { color: var(--gray3); font-size: 13px; }
#hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; padding: 4px; }
#hamburger span { width: 24px; height: 2px; background: var(--navy); border-radius: 2px; transition: .3s; }
#mobile-menu { display: none; background: #fff; border-top: 1px solid var(--gray2); padding: 16px; }
#mobile-menu a { display: block; padding: 10px 0; font-size: 14px; font-weight: 500; border-bottom: 1px solid var(--gray2); color: var(--text); }

/* ─── HERO ─── */
#hero { background: linear-gradient(135deg,var(--navy) 0%,#1a2744 50%,#0a1628 100%); color: #fff; padding: 80px 0 60px; position: relative; overflow: hidden; }
#hero::before { content: ''; position: absolute; top: -40%; right: -10%; width: 600px; height: 600px; background: radial-gradient(circle,rgba(10,102,194,.25) 0%,transparent 70%); border-radius: 50%; }
#hero::after  { content: ''; position: absolute; bottom: -20%; left: -5%; width: 400px; height: 400px; background: radial-gradient(circle,rgba(250,204,21,.08) 0%,transparent 70%); border-radius: 50%; }
#hero .hero-inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
#hero .hero-tag { display: inline-flex; align-items: center; gap: 8px; background: rgba(250,204,21,.12); border: 1px solid rgba(250,204,21,.3); color: var(--gold); font-size: 13px; font-weight: 600; padding: 6px 16px; border-radius: 20px; margin-bottom: 20px; }
#hero h1 { font-family: 'Poppins', sans-serif; font-size: clamp(32px,5vw,56px); font-weight: 900; line-height: 1.1; margin-bottom: 16px; }
#hero h1 span { color: var(--gold); }
#hero p { font-size: 16px; color: rgba(255,255,255,.75); line-height: 1.7; margin-bottom: 28px; max-width: 500px; }
#hero .hero-btns { display: flex; flex-wrap: wrap; gap: 12px; }
#hero .hero-visual { position: relative; }
#hero .hero-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.hero-card { background: rgba(255,255,255,.07); backdrop-filter: blur(12px); border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius); padding: 16px; transition: .3s; cursor: pointer; }
.hero-card:hover { background: rgba(255,255,255,.12); transform: translateY(-4px); }
.hero-card .hc-cat   { font-size: 11px; color: var(--gold); font-weight: 600; text-transform: uppercase; margin-bottom: 6px; }
.hero-card .hc-title { font-size: 13px; font-weight: 600; line-height: 1.4; color: #fff; }
.hero-card .hc-meta  { font-size: 11px; color: rgba(255,255,255,.5); margin-top: 8px; }
.hero-stats { display: flex; gap: 24px; margin-top: 28px; }
.hero-stats .stat .num { font-family: 'Poppins', sans-serif; font-size: 24px; font-weight: 800; color: var(--gold); }
.hero-stats .stat .lbl { font-size: 11px; color: rgba(255,255,255,.6); }

/* ─── SECTIONS ─── */
.section { padding: 60px 0; }
.section-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 28px; }
.section-header .view-all { font-size: 13px; color: var(--blue); font-weight: 600; }
.section-header .view-all:hover { text-decoration: underline; }
.section.dark { background: var(--navy); }
.section.dark .section-title { color: #fff; }
.section.dark .section-sub   { color: rgba(255,255,255,.5); }
.section.gray { background: var(--gray); }

/* ─── ARTICLE CARD ─── */
.art-card { background: var(--card); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow2); transition: .3s; cursor: pointer; }
.art-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.art-card:focus { outline: 2px solid var(--blue); outline-offset: 2px; }
.art-card .ac-img { height: 180px; background: linear-gradient(135deg,#1e3a5f,#0a66c2); display: flex; align-items: center; justify-content: center; overflow: hidden; position: relative; }
.art-card .ac-img .placeholder-img { color: rgba(255,255,255,.3); font-size: 36px; }
.art-card .ac-img img { width: 100%; height: 100%; object-fit: cover; }
.art-card .ac-body { padding: 16px; }
.art-card .ac-cat  { margin-bottom: 8px; }
.art-card .ac-title   { font-family: 'Poppins', sans-serif; font-size: 15px; font-weight: 700; line-height: 1.4; color: var(--navy); margin-bottom: 8px; }
.art-card .ac-excerpt { font-size: 13px; color: var(--gray3); line-height: 1.6; margin-bottom: 12px; }
.art-card .ac-meta { display: flex; justify-content: space-between; align-items: center; font-size: 12px; color: var(--gray3); }
.art-card .ac-meta .author { display: flex; align-items: center; gap: 6px; }
.art-card .ac-meta .av { width: 24px; height: 24px; border-radius: 50%; background: var(--blue); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 10px; font-weight: 700; }
.featured-card { grid-column: span 2; }
.featured-card .ac-img   { height: 260px; }
.featured-card .ac-title { font-size: 18px; }

/* ─── SPORTS ─── */
.sport-card { background: var(--navy); border-radius: var(--radius); overflow: hidden; cursor: pointer; transition: .3s; border: 1px solid rgba(255,255,255,.08); }
.sport-card:hover { transform: translateY(-4px); border-color: var(--blue); }
.sport-card .sc-img { height: 160px; background: linear-gradient(135deg,#0a2040,#0a66c2); display: flex; align-items: center; justify-content: center; overflow: hidden; }
.sport-card .sc-img i { font-size: 40px; color: rgba(255,255,255,.2); }
.sport-card .sc-body { padding: 14px; }
.sport-card .sc-cat   { font-size: 11px; color: var(--gold); font-weight: 600; text-transform: uppercase; margin-bottom: 6px; }
.sport-card .sc-title { font-size: 14px; font-weight: 700; color: #fff; line-height: 1.4; }
.sport-card .sc-meta  { font-size: 11px; color: rgba(255,255,255,.45); margin-top: 8px; }

/* ─── OPPORTUNITIES ─── */
.opp-card { background: #fff; border-radius: var(--radius); box-shadow: var(--shadow2); border-left: 4px solid var(--blue); cursor: pointer; transition: .3s; overflow: hidden; display: flex; flex-direction: column; }
.opp-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.opp-card .oc-img { width: 100%; aspect-ratio: 16 / 9; background: linear-gradient(135deg,#1e3a5f,#0a66c2); display: flex; align-items: center; justify-content: center; overflow: hidden; position: relative; }
.opp-card .oc-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.opp-card .oc-img .oc-img-fallback { color: rgba(255,255,255,.45); font-size: 40px; }
.opp-card:nth-child(2n) .oc-img { background: linear-gradient(135deg,#b08927,#e9c46a); }
.opp-card:nth-child(3n) .oc-img { background: linear-gradient(135deg,#5b21b6,#8b5cf6); }
.opp-card:nth-child(4n) .oc-img { background: linear-gradient(135deg,#065f46,#10b981); }
.opp-card .oc-body    { padding: 18px 20px 20px; display: flex; flex-direction: column; flex: 1; }
.opp-card .oc-type    { font-size: 11px; font-weight: 600; text-transform: uppercase; color: var(--blue); margin-bottom: 6px; letter-spacing: .5px; }
.opp-card .oc-title   { font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 6px; line-height: 1.35; }
.opp-card .oc-org     { font-size: 13px; color: var(--gray3); margin-bottom: 8px; }
.opp-card .oc-preview { font-size: 13px; color: #475569; line-height: 1.55; margin-bottom: 14px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.opp-card .oc-footer  { display: flex; justify-content: space-between; align-items: center; gap: 10px; flex-wrap: wrap; margin-top: auto; }
.opp-card .oc-deadline{ font-size: 12px; color: var(--gray3); }
.opp-card:nth-child(2){ border-left-color: var(--gold); }
.opp-card:nth-child(3){ border-left-color: #8b5cf6; }
.opp-card:nth-child(4){ border-left-color: #10b981; }

/* ─── VIDEO ─── */
.video-card { background: var(--navy); border-radius: var(--radius); overflow: hidden; cursor: pointer; transition: .3s; }
.video-card:hover { transform: translateY(-4px); }
.video-card .vc-thumb { height: 180px; background: linear-gradient(135deg,#1a1a2e,#16213e); display: flex; align-items: center; justify-content: center; }
.video-card .play-btn { width: 52px; height: 52px; background: rgba(10,102,194,.9); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 18px; transition: .3s; }
.video-card:hover .play-btn { background: var(--blue); transform: scale(1.1); }
.video-card .vc-body  { padding: 14px; }
.video-card .vc-title { font-size: 14px; font-weight: 700; color: #fff; margin-bottom: 6px; }
.video-card .vc-meta  { font-size: 12px; color: rgba(255,255,255,.45); }

/* ─── LIFESTYLE ─── */
.lifestyle-card { background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow2); transition: .3s; cursor: pointer; }
.lifestyle-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.lifestyle-card .lc-img  { height: 160px; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.lifestyle-card .lc-body { padding: 16px; }
.lifestyle-card .lc-tag  { font-size: 11px; font-weight: 600; color: var(--blue); text-transform: uppercase; margin-bottom: 6px; }
.lifestyle-card .lc-title{ font-size: 14px; font-weight: 700; color: var(--navy); line-height: 1.4; }

/* ─── TEAM CARDS ─── */
.team-card { background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow2); text-align: center; transition: .3s; }
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.team-card .tc-avatar { width: 90px; height: 90px; border-radius: 50%; background: linear-gradient(135deg,var(--blue),#1a50a0); margin: 24px auto 12px; display: flex; align-items: center; justify-content: center; color: #fff; font-family: 'Poppins', sans-serif; font-size: 28px; font-weight: 700; overflow: hidden; }
.team-card .tc-name   { font-family: 'Poppins', sans-serif; font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.team-card .tc-role   { font-size: 13px; color: var(--blue); font-weight: 600; margin-bottom: 8px; }
.team-card .tc-bio    { font-size: 13px; color: var(--gray3); line-height: 1.5; padding: 0 16px 16px; }
.team-card .tc-social { display: flex; justify-content: center; gap: 10px; padding: 12px 0; border-top: 1px solid var(--gray2); }
.team-card .tc-social a { width: 32px; height: 32px; border-radius: 50%; background: var(--gray); display: flex; align-items: center; justify-content: center; color: var(--gray3); font-size: 13px; transition: .2s; }
.team-card .tc-social a:hover { background: var(--blue); color: #fff; }

/* ─── NEWSLETTER ─── */
#newsletter { background: linear-gradient(135deg,var(--blue),#0850a0); padding: 60px 0; text-align: center; color: #fff; }
#newsletter h2 { font-family: 'Poppins', sans-serif; font-size: clamp(24px,4vw,36px); font-weight: 800; margin-bottom: 8px; }
#newsletter p  { font-size: 15px; opacity: .85; margin-bottom: 28px; }
#newsletter .nl-form { display: flex; max-width: 480px; margin: 0 auto 16px; gap: 0; border-radius: 30px; overflow: hidden; box-shadow: 0 8px 32px rgba(0,0,0,.2); }
#newsletter .nl-form input  { flex: 1; padding: 14px 20px; border: none; outline: none; font-size: 14px; font-family: 'Inter', sans-serif; }
#newsletter .nl-form button { background: var(--gold); color: var(--navy); border: none; padding: 14px 24px; font-weight: 700; font-size: 14px; white-space: nowrap; cursor: pointer; }
#newsletter .nl-form button:hover { background: #e6b800; }
#newsletter .wa-btn { background: rgba(255,255,255,.12); border: 2px solid rgba(255,255,255,.4); color: #fff; padding: 12px 28px; border-radius: 30px; font-weight: 600; font-size: 14px; display: inline-flex; align-items: center; gap: 8px; margin-top: 8px; transition: .3s; cursor: pointer; }
#newsletter .wa-btn:hover { background: rgba(255,255,255,.2); }

/* ─── SOCIAL FOLLOW ─── */
#social-follow { background: var(--gray); padding: 50px 0; }
#social-follow h2 { font-family: 'Poppins', sans-serif; font-size: 24px; font-weight: 700; text-align: center; margin-bottom: 24px; color: var(--navy); }
.social-grid { display: flex; justify-content: center; flex-wrap: wrap; gap: 16px; }
.social-pill { display: flex; align-items: center; gap: 10px; background: #fff; border-radius: 30px; padding: 10px 20px; box-shadow: var(--shadow2); font-size: 14px; font-weight: 600; transition: .3s; cursor: pointer; }
.social-pill:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.social-pill.tiktok    { color: #000; }
.social-pill.instagram { color: #e1306c; }
.social-pill.twitter   { color: #1da1f2; }
.social-pill.facebook  { color: #1877f2; }
.social-pill.youtube   { color: #ff0000; }
.social-pill.whatsapp  { color: #25d366; }

/* ─── SIDEBAR ─── */
.with-sidebar { display: grid; grid-template-columns: 1fr 300px; gap: 32px; }
.sidebar-widget { background: var(--gray); border-radius: var(--radius); padding: 20px; margin-bottom: 24px; }
.sidebar-widget h4 { font-family: 'Poppins', sans-serif; font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 16px; padding-bottom: 10px; border-bottom: 2px solid var(--blue); }
.trend-item { display: flex; gap: 12px; padding: 10px 0; border-bottom: 1px solid var(--gray2); cursor: pointer; }
.trend-item:last-child { border-bottom: none; }
.trend-num   { font-family: 'Poppins', sans-serif; font-size: 22px; font-weight: 900; color: var(--gray2); min-width: 28px; }
.trend-title { font-size: 13px; font-weight: 600; color: var(--navy); line-height: 1.4; }
.trend-meta  { font-size: 11px; color: var(--gray3); margin-top: 3px; }

/* ─── ARTICLE PAGE ─── */
#article-page { padding: 40px 0; }
.article-container { max-width: 780px; margin: 0 auto; }
.art-header .art-cat-bar { margin-bottom: 12px; }
.art-header h1 { font-family: 'Poppins', sans-serif; font-size: clamp(22px,4vw,34px); font-weight: 800; color: var(--navy); line-height: 1.3; margin-bottom: 16px; }
.art-header .art-meta-bar { display: flex; align-items: center; gap: 16px; margin-bottom: 24px; padding-bottom: 20px; border-bottom: 1px solid var(--gray2); flex-wrap: wrap; }
.art-header .art-meta-bar .author-info { display: flex; align-items: center; gap: 10px; }
.art-header .art-meta-bar .av { width: 36px; height: 36px; border-radius: 50%; background: var(--blue); color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 700; }
.art-header .art-meta-bar .au-name { font-weight: 600; font-size: 14px; }
.art-header .art-meta-bar .au-date { font-size: 12px; color: var(--gray3); }
.art-header .art-meta-bar .share-btns { margin-left: auto; display: flex; gap: 8px; }
.share-btn { width: 32px; height: 32px; border-radius: 50%; border: none; display: flex; align-items: center; justify-content: center; font-size: 13px; cursor: pointer; transition: .2s; }
.share-btn:hover { transform: scale(1.15); }
.share-btn.fb { background: #1877f2; color: #fff; }
.share-btn.tw { background: #1da1f2; color: #fff; }
.share-btn.wa { background: #25d366; color: #fff; }
.share-btn.cp { background: var(--gray2); color: var(--text); }
.art-featured-img { width: 100%; height: 380px; background: linear-gradient(135deg,#1e3a5f,#0a66c2); border-radius: var(--radius); margin-bottom: 28px; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.art-featured-img img { width: 100%; height: 100%; object-fit: cover; }
.art-body { font-size: 16px; line-height: 1.85; color: #334155; }
.art-body p  { margin-bottom: 20px; }
.art-body h2 { font-family: 'Poppins', sans-serif; font-size: 22px; font-weight: 700; color: var(--navy); margin: 32px 0 12px; }
.art-body h3 { font-family: 'Poppins', sans-serif; font-size: 18px; font-weight: 700; color: var(--navy); margin: 24px 0 10px; }
.art-body blockquote { border-left: 4px solid var(--blue); padding: 16px 20px; background: var(--gray); border-radius: 0 8px 8px 0; margin: 24px 0; font-style: italic; color: var(--text); }
.art-body ul, .art-body ol { padding-left: 24px; margin-bottom: 20px; }
.art-body li { margin-bottom: 8px; line-height: 1.7; }
.art-body img { border-radius: 8px; margin: 20px 0; width: 100%; }
.art-body a { color: var(--blue); text-decoration: underline; }
.related-articles { margin-top: 48px; padding-top: 32px; border-top: 1px solid var(--gray2); }
.related-articles h3 { font-family: 'Poppins', sans-serif; font-size: 20px; font-weight: 700; margin-bottom: 20px; color: var(--navy); }
.comments-section { margin-top: 40px; padding-top: 32px; border-top: 1px solid var(--gray2); }
.comments-section h3 { font-family: 'Poppins', sans-serif; font-size: 20px; font-weight: 700; margin-bottom: 16px; color: var(--navy); }
.comment-form textarea { width: 100%; padding: 14px; border: 1px solid var(--gray2); border-radius: 10px; font-family: 'Inter', sans-serif; font-size: 14px; resize: vertical; min-height: 100px; outline: none; }
.comment-form textarea:focus { border-color: var(--blue); }
.comment-form .cf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 12px; }
.comment-form input { width: 100%; padding: 12px 14px; border: 1px solid var(--gray2); border-radius: 10px; font-family: 'Inter', sans-serif; font-size: 14px; outline: none; }
.comment-form input:focus { border-color: var(--blue); }

/* ─── CONTACT ─── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.contact-form { background: #fff; border-radius: var(--radius); padding: 32px; box-shadow: var(--shadow2); }
.contact-form h3 { font-family: 'Poppins', sans-serif; font-size: 20px; font-weight: 700; margin-bottom: 20px; color: var(--navy); }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; color: var(--navy); margin-bottom: 6px; }
.form-group input, .form-group textarea, .form-group select { width: 100%; padding: 12px 14px; border: 1px solid var(--gray2); border-radius: 10px; font-family: 'Inter', sans-serif; font-size: 14px; outline: none; transition: .2s; }
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: var(--blue); }
.form-group textarea { resize: vertical; min-height: 120px; }
.contact-info-card { background: linear-gradient(135deg,var(--navy),#1a2744); color: #fff; border-radius: var(--radius); padding: 32px; }
.contact-info-card h3 { font-family: 'Poppins', sans-serif; font-size: 20px; font-weight: 700; margin-bottom: 24px; }
.ci-item { display: flex; gap: 14px; margin-bottom: 20px; align-items: flex-start; }
.ci-icon { width: 40px; height: 40px; background: rgba(10,102,194,.4); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: var(--gold); flex-shrink: 0; }
.ci-text .ci-label { font-size: 12px; color: rgba(255,255,255,.5); margin-bottom: 3px; }
.ci-text .ci-val   { font-size: 14px; font-weight: 500; }
.wa-contact-btn { background: #25d366; color: #fff; border: none; padding: 14px 28px; border-radius: 30px; font-weight: 700; font-size: 14px; display: flex; align-items: center; gap: 10px; margin-top: 24px; width: 100%; justify-content: center; cursor: pointer; }
.wa-contact-btn:hover { background: #1ebe5a; }

/* ─── JOIN TEAM ─── */
.join-hero { background: linear-gradient(135deg,var(--blue),#0850a0); color: #fff; padding: 60px 0; text-align: center; }
.join-hero h1 { font-family: 'Poppins', sans-serif; font-size: clamp(28px,5vw,48px); font-weight: 900; margin-bottom: 12px; }
.join-hero p  { font-size: 16px; opacity: .85; max-width: 500px; margin: 0 auto; }
.roles-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.role-card { background: #fff; border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow2); text-align: center; cursor: pointer; transition: .3s; border: 2px solid transparent; }
.role-card:hover, .role-card.selected { border-color: var(--blue); transform: translateY(-4px); }
.role-card i  { font-size: 32px; color: var(--blue); margin-bottom: 12px; }
.role-card h4 { font-family: 'Poppins', sans-serif; font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.role-card p  { font-size: 13px; color: var(--gray3); }

/* ─── ABOUT ─── */
.about-hero { background: linear-gradient(135deg,var(--navy),#1a2744); color: #fff; padding: 80px 0; text-align: center; }
.about-hero h1 { font-family: 'Poppins', sans-serif; font-size: clamp(28px,5vw,48px); font-weight: 900; margin-bottom: 16px; }
.about-hero p  { font-size: 16px; opacity: .8; max-width: 600px; margin: 0 auto; }
.values-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.value-card { background: #fff; border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow2); text-align: center; }
.value-card i  { font-size: 36px; margin-bottom: 12px; }
.value-card h4 { font-family: 'Poppins', sans-serif; font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.value-card p  { font-size: 13px; color: var(--gray3); line-height: 1.6; }

/* ─── POLICY PAGES ─── */
.policy-page { max-width: 780px; margin: 0 auto; padding: 60px 0; }
.policy-page h1  { font-family: 'Poppins', sans-serif; font-size: 32px; font-weight: 800; color: var(--navy); margin-bottom: 8px; }
.policy-page .last-updated { font-size: 13px; color: var(--gray3); margin-bottom: 32px; }
.policy-page h2  { font-family: 'Poppins', sans-serif; font-size: 20px; font-weight: 700; color: var(--navy); margin: 32px 0 12px; }
.policy-page p   { font-size: 15px; line-height: 1.8; color: #475569; margin-bottom: 16px; }
.policy-page ul  { padding-left: 20px; margin-bottom: 16px; }
.policy-page ul li { font-size: 15px; color: #475569; margin-bottom: 8px; line-height: 1.7; }

/* ─── SEARCH PAGE ─── */
.search-hero { background: var(--gray); padding: 40px 0; border-bottom: 1px solid var(--gray2); }
.search-hero h1 { font-family: 'Poppins', sans-serif; font-size: 24px; font-weight: 700; color: var(--navy); }
.search-hero .search-bar { display: flex; margin-top: 16px; max-width: 560px; background: #fff; border-radius: 30px; overflow: hidden; box-shadow: var(--shadow2); }
.search-hero .search-bar input { flex: 1; padding: 14px 20px; border: none; outline: none; font-size: 15px; font-family: 'Inter', sans-serif; }
.search-hero .search-bar button { background: var(--blue); color: #fff; border: none; padding: 14px 24px; font-size: 15px; cursor: pointer; }

/* ─── FOOTER ─── */
#footer { background: var(--navy); color: #fff; padding: 60px 0 0; }
#footer .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 40px; }
#footer .footer-brand p { color: rgba(255,255,255,.6); font-size: 13px; line-height: 1.7; margin-top: 12px; margin-bottom: 20px; }
/* Footer logo image */
#footer .footer-brand .logo { display: inline-block; cursor: pointer; }
#footer .footer-brand .logo img {
  height: 56px;
  width: auto;
  object-fit: contain;
  border-radius: 10px;
  display: block;
  margin-bottom: 4px;
  transition: opacity .2s;
}
#footer .footer-brand .logo img:hover { opacity: .85; }
#footer h4 { font-family: 'Poppins', sans-serif; font-size: 14px; font-weight: 700; margin-bottom: 16px; color: #fff; }
#footer ul li { margin-bottom: 10px; }
#footer ul li a { color: rgba(255,255,255,.6); font-size: 13px; transition: .2s; }
#footer ul li a:hover { color: var(--gold); }
#footer .footer-social { display: flex; gap: 10px; margin-top: 4px; }
#footer .footer-social a { width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,.08); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.6); transition: .2s; }
#footer .footer-social a:hover { background: var(--blue); color: #fff; }
#footer .footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 16px 0; display: flex; justify-content: space-between; align-items: center; font-size: 12px; color: rgba(255,255,255,.4); }

/* ─── TOAST ─── */
#toast { position: fixed; bottom: 24px; right: 24px; background: var(--navy); color: #fff; padding: 12px 20px; border-radius: 10px; font-size: 14px; font-weight: 500; z-index: 9999; transform: translateY(80px); opacity: 0; transition: .3s; border-left: 4px solid var(--blue); max-width: 320px; }
#toast.show { transform: translateY(0); opacity: 1; }

/* ─── ADMIN LOGIN ─── */
.admin-login { min-height: 100vh; background: var(--navy); display: flex; align-items: center; justify-content: center; }
.login-box { background: #fff; border-radius: 16px; padding: 40px; width: 380px; max-width: calc(100vw - 32px); box-shadow: 0 20px 60px rgba(0,0,0,.3); }
.login-box .lb-logo { text-align: center; margin-bottom: 28px; }
/* Real logo image in login box */
.login-box .lb-logo img {
  width: 140px;
  height: 140px;
  object-fit: contain;
  margin: 0 auto 12px;
  display: block;
  border-radius: 16px;
}
.login-box .lb-logo .logo-icon { width: 52px; height: 52px; background: var(--blue); border-radius: 14px; display: flex; align-items: center; justify-content: center; color: #fff; font-family: 'Montserrat', sans-serif; font-weight: 900; font-size: 18px; margin: 0 auto 10px; }
.login-box .lb-logo h2 { font-family: 'Poppins', sans-serif; font-size: 20px; font-weight: 700; color: var(--navy); }
.login-box .lb-logo p  { font-size: 13px; color: var(--gray3); }
.login-form .fg { margin-bottom: 16px; }
.login-form label { display: block; font-size: 13px; font-weight: 600; color: var(--navy); margin-bottom: 6px; }
.login-form input { width: 100%; padding: 12px 14px; border: 1px solid var(--gray2); border-radius: 10px; font-family: 'Inter', sans-serif; font-size: 14px; outline: none; }
.login-form input:focus { border-color: var(--blue); }
.login-form button { width: 100%; background: var(--blue); color: #fff; border: none; padding: 13px; border-radius: 10px; font-weight: 700; font-size: 15px; margin-top: 8px; transition: .2s; }
.login-form button:hover { background: #0850a0; }
.login-form button:disabled { opacity: .7; cursor: not-allowed; }
.login-error { color: #ef4444; font-size: 13px; text-align: center; margin-top: 10px; display: none; }

/* ─── ADMIN PANEL ─── */
#admin-wrapper { display: none; min-height: 100vh; background: #f8fafc; }
#admin-sidebar { width: 260px; min-height: 100vh; background: var(--navy); color: #fff; display: flex; flex-direction: column; flex-shrink: 0; position: sticky; top: 0; height: 100vh; overflow-y: auto; }
#admin-sidebar .as-brand { padding: 16px 20px 14px; border-bottom: 1px solid rgba(255,255,255,.1); text-align: center; }
/* Real logo image in admin sidebar */
#admin-sidebar .as-brand img {
  width: 120px;
  height: auto;
  object-fit: contain;
  border-radius: 10px;
  display: block;
  margin: 0 auto 8px;
}
#admin-sidebar .as-brand .logo-text { font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 16px; }
#admin-sidebar .as-brand .logo-text span { color: var(--gold); }
#admin-sidebar .as-badge { font-size: 10px; background: var(--blue); padding: 2px 8px; border-radius: 10px; margin-top: 3px; display: inline-block; }
#admin-sidebar nav a { display: flex; align-items: center; gap: 12px; padding: 12px 20px; color: rgba(255,255,255,.65); font-size: 13px; font-weight: 500; transition: .2s; border-left: 3px solid transparent; }
#admin-sidebar nav a:hover, #admin-sidebar nav a.active { color: #fff; background: rgba(255,255,255,.07); border-left-color: var(--blue); }
#admin-sidebar nav a i { width: 18px; text-align: center; }
#admin-sidebar .sidebar-section { font-size: 10px; text-transform: uppercase; letter-spacing: 1px; color: rgba(255,255,255,.3); padding: 16px 20px 4px; }
#admin-sidebar .sidebar-footer { padding: 20px; border-top: 1px solid rgba(255,255,255,.1); margin-top: auto; }
#admin-sidebar .sidebar-footer a { color: rgba(255,255,255,.5); font-size: 13px; display: flex; align-items: center; gap: 8px; }
#admin-sidebar .sidebar-footer a:hover { color: #fff; }
#admin-main { flex: 1; display: flex; flex-direction: column; overflow: hidden; min-width: 0; }
#admin-topbar { background: #fff; padding: 0 24px; height: 60px; display: flex; align-items: center; justify-content: space-between; box-shadow: 0 1px 4px rgba(0,0,0,.06); flex-shrink: 0; }
#admin-topbar h2 { font-family: 'Poppins', sans-serif; font-size: 17px; font-weight: 700; color: var(--navy); }
#admin-topbar .atb-right { display: flex; align-items: center; gap: 12px; }
#admin-topbar .atb-right button { background: none; border: none; color: var(--gray3); font-size: 16px; cursor: pointer; }
#admin-topbar .atb-user { display: flex; align-items: center; gap: 8px; background: var(--gray); border-radius: 20px; padding: 4px 12px 4px 4px; }
#admin-topbar .atb-user .av { width: 28px; height: 28px; border-radius: 50%; background: var(--blue); color: #fff; font-size: 11px; font-weight: 700; display: flex; align-items: center; justify-content: center; }
#admin-topbar .atb-user span { font-size: 13px; font-weight: 500; }
#admin-content { flex: 1; padding: 24px; overflow-y: auto; }
.admin-section { display: none; }
.admin-section.active { display: block; }
.stats-row { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; margin-bottom: 24px; }
.stat-card { background: #fff; border-radius: var(--radius); padding: 20px; box-shadow: var(--shadow2); }
.stat-card .sc-label  { font-size: 12px; color: var(--gray3); font-weight: 500; margin-bottom: 8px; }
.stat-card .sc-num    { font-family: 'Poppins', sans-serif; font-size: 28px; font-weight: 800; color: var(--navy); }
.stat-card .sc-change { font-size: 12px; margin-top: 4px; }
.stat-card .sc-change.up   { color: #10b981; }
.stat-card .sc-change.down { color: #ef4444; }
.stat-card .sc-icon { float: right; width: 40px; height: 40px; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 18px; }
.stat-card:nth-child(1) .sc-icon { background: rgba(10,102,194,.1); color: var(--blue); }
.stat-card:nth-child(2) .sc-icon { background: rgba(250,204,21,.15); color: #b48a00; }
.stat-card:nth-child(3) .sc-icon { background: rgba(16,185,129,.1); color: #10b981; }
.stat-card:nth-child(4) .sc-icon { background: rgba(139,92,246,.1); color: #8b5cf6; }
.admin-card { background: #fff; border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow2); margin-bottom: 20px; }
.admin-card h3 { font-family: 'Poppins', sans-serif; font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 16px; }
.admin-table { width: 100%; border-collapse: collapse; }
.admin-table th { text-align: left; padding: 10px 12px; font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: .5px; color: var(--gray3); border-bottom: 1px solid var(--gray2); }
.admin-table td { padding: 12px; font-size: 13px; border-bottom: 1px solid var(--gray2); vertical-align: middle; }
.admin-table tr:last-child td { border-bottom: none; }
.admin-table tr:hover td { background: var(--gray); }
.status-badge { display: inline-flex; align-items: center; gap: 5px; font-size: 11px; font-weight: 600; padding: 3px 10px; border-radius: 20px; }
.status-badge.published { background: #d1fae5; color: #065f46; }
.status-badge.draft     { background: #fef3c7; color: #92400e; }
.status-badge.scheduled { background: #ede9fe; color: #4c1d95; }
.tbl-actions { display: flex; gap: 6px; }
.tbl-btn { padding: 4px 10px; border-radius: 6px; font-size: 11px; font-weight: 600; border: none; cursor: pointer; transition: .2s; }
.tbl-btn.edit   { background: rgba(10,102,194,.1); color: var(--blue); }
.tbl-btn.edit:hover   { background: var(--blue); color: #fff; }
.tbl-btn.delete { background: rgba(239,68,68,.1); color: #ef4444; }
.tbl-btn.delete:hover { background: #ef4444; color: #fff; }
.tbl-btn.view   { background: rgba(16,185,129,.1); color: #059669; }
.tbl-btn.view:hover { background: #10b981; color: #fff; }
.admin-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.admin-form .fg { margin-bottom: 16px; }
.admin-form .fg label { display: block; font-size: 13px; font-weight: 600; color: var(--navy); margin-bottom: 6px; }
.admin-form .fg input, .admin-form .fg select, .admin-form .fg textarea { width: 100%; padding: 10px 14px; border: 1px solid var(--gray2); border-radius: 8px; font-family: 'Inter', sans-serif; font-size: 14px; outline: none; }
.admin-form .fg input:focus, .admin-form .fg select:focus, .admin-form .fg textarea:focus { border-color: var(--blue); }
.admin-form .fg textarea { min-height: 120px; resize: vertical; }
.admin-topnav-actions { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; }
.admin-topnav-actions h3 { font-family: 'Poppins', sans-serif; font-size: 17px; font-weight: 700; color: var(--navy); }
.roadmap-card { background: linear-gradient(135deg,#1e3a5f,#0a2040); border-radius: var(--radius); padding: 24px; color: #fff; }
.roadmap-card h3 { font-family: 'Poppins', sans-serif; font-size: 16px; font-weight: 700; margin-bottom: 4px; }
.roadmap-card p  { font-size: 13px; opacity: .7; margin-bottom: 16px; }
.roadmap-items { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; }
.ri-item { background: rgba(255,255,255,.07); border-radius: 8px; padding: 12px; text-align: center; font-size: 12px; }
.ri-item i { font-size: 20px; color: var(--gold); margin-bottom: 6px; display: block; }
/* Quill rich text editor overrides */
#quill-editor { min-height: 240px; font-family: 'Inter', sans-serif; font-size: 15px; border-radius: 0 0 8px 8px; }
.ql-toolbar.ql-snow { border-radius: 8px 8px 0 0; border-color: var(--gray2); }
.ql-container.ql-snow { border-color: var(--gray2); }
/* Image upload area */
.img-upload-area { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.img-upload-area input[type=file] { display: none; }
.img-upload-area .img-preview { width: 80px; height: 60px; object-fit: cover; border-radius: 6px; display: none; border: 1px solid var(--gray2); }

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  #hero .hero-inner { grid-template-columns: 1fr; }
  #hero .hero-visual { display: none; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .with-sidebar { grid-template-columns: 1fr; }
  .sidebar { display: none; }
  #footer .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .roles-grid  { grid-template-columns: 1fr 1fr; }
  .stats-row   { grid-template-columns: 1fr 1fr; }
  .roadmap-items { grid-template-columns: 1fr 1fr; }
  .admin-form .form-row { grid-template-columns: 1fr; }
  #admin-sidebar { width: 220px; }
  #admin-sidebar .as-brand img { width: 100px; }
  #nav-search input { width: 120px; }
  #navbar .nav-logo-img { height: 38px; }
  #footer .footer-brand .logo img { height: 50px; }
}
@media (max-width: 640px) {
  #navbar .nav-links, #navbar .nav-cta { display: none; }
  #hamburger { display: flex; }
  #nav-search { display: none; }
  /* Mobile logo sizes */
  #navbar .nav-logo-img { height: 34px; }
  #footer .footer-brand .logo img { height: 44px; }
  .login-box .lb-logo img { width: 110px; height: 110px; }
  #admin-sidebar .as-brand img { width: 88px; }
  .grid-4 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .featured-card { grid-column: span 1; }
  .featured-card .ac-img { height: 200px; }
  #footer .footer-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .roles-grid  { grid-template-columns: 1fr; }
  .stats-row   { grid-template-columns: 1fr 1fr; }
  #admin-sidebar { display: none; }
  #admin-sidebar.open { display: flex; position: fixed; z-index: 200; height: 100vh; }
  .section-header { flex-direction: column; align-items: flex-start; gap: 8px; }
  .art-header .art-meta-bar { flex-direction: column; align-items: flex-start; gap: 12px; }
  .art-header .art-meta-bar .share-btns { margin-left: 0; width: 100%; justify-content: space-between; }
  .art-header .art-title { font-size: 24px; line-height: 1.3; }
  .art-view-meta { flex-wrap: wrap; }
  #admin-wrapper { flex-direction: column; }
  
  /* Newsletter mobile fix */
  .nl-form { flex-direction: column; width: 100%; }
  .nl-form input, .nl-form button { width: 100%; border-radius: 8px !important; }
  
  /* Hero section mobile fix */
  #hero { padding: 40px 0; text-align: center; }
  #hero-headline { font-size: 32px; line-height: 1.2; }
  #hero-subheadline { font-size: 15px; }
  .hero-cards-grid { grid-template-columns: 1fr; }
}


/* ---------------- v11 polish: video card shade + opportunity article ---------------- */
.video-card .vc-thumb { position: relative; }
.video-card .vc-thumb .vc-shade {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(0,0,0,.55) 100%);
  pointer-events: none;
}
.video-card .play-btn { position: relative; z-index: 1; }

/* Opportunity-style article body — applied via .art-body.opp-article */
.art-body.opp-article { font-size: 17px; line-height: 1.9; color: #1f2937; }
.art-body.opp-article h2 {
  font-family: 'Poppins', sans-serif; font-size: 22px; font-weight: 800;
  color: var(--navy); margin: 36px 0 14px; padding-bottom: 8px;
  border-bottom: 2px solid var(--blue); display: inline-block;
}
.art-body.opp-article h3 { margin: 26px 0 10px; font-size: 17px; color: var(--navy); }
.art-body.opp-article ul, .art-body.opp-article ol { padding-left: 28px; margin: 12px 0 22px; }
.art-body.opp-article li { margin-bottom: 10px; }
.art-body.opp-article a { color: var(--blue); font-weight: 600; }
.art-body.opp-article blockquote {
  background: #f1f5ff; border-left: 4px solid var(--blue);
  padding: 14px 18px; border-radius: 0 8px 8px 0; margin: 18px 0;
}
.art-body.opp-article .opp-cta {
  display: inline-block; background: var(--blue); color: #fff !important;
  padding: 12px 22px; border-radius: 8px; font-weight: 700;
  text-decoration: none !important; margin-top: 8px;
}
.art-body.opp-article .opp-cta:hover { background: var(--navy); }

/* Reply modal — sender identity notice */
.reply-from-notice {
  background: #eff6ff; border: 1px solid #bfdbfe; color: #1e3a8a;
  padding: 10px 14px; border-radius: 8px; font-size: 13px;
  margin-bottom: 14px; display: flex; gap: 10px; align-items: flex-start;
}
.reply-from-notice strong { color: #0a66c2; }

@media (max-width: 640px){
  .art-body.opp-article { font-size: 16px; line-height: 1.85; }
  .art-body.opp-article h2 { font-size: 19px; }
}

/* ---------------- v12: news-article editorial typography ---------------- */
.art-body.news-article { font-size: 17px; line-height: 1.85; color: #1f2937; }
.art-body.news-article p { margin: 0 0 18px; }
.art-body.news-article h2 {
  margin: 32px 0 12px; font-size: 22px; font-weight: 800;
  color: var(--navy, #0a2540); letter-spacing: -0.01em;
  border-left: 4px solid var(--blue, #0a66c2); padding-left: 10px;
}
.art-body.news-article h3 { margin: 24px 0 10px; font-size: 18px; color: var(--navy, #0a2540); }
.art-body.news-article ul,
.art-body.news-article ol { padding-left: 26px; margin: 10px 0 22px; }
.art-body.news-article li { margin-bottom: 8px; }
.art-body.news-article a { color: var(--blue, #0a66c2); font-weight: 600; }
.art-body.news-article blockquote {
  margin: 22px 0; padding: 14px 18px; background: #f5f7fb;
  border-left: 4px solid var(--blue, #0a66c2); border-radius: 0 8px 8px 0;
  font-style: italic; color: #334155;
}
.art-body.news-article img { max-width: 100%; height: auto; border-radius: 10px; margin: 18px 0; }
@media (max-width: 640px){
  .art-body.news-article { font-size: 16px; line-height: 1.8; }
  .art-body.news-article h2 { font-size: 19px; }
}

/* ---------------- v13: share buttons + opp readability + mobile polish ---------------- */
.art-header .art-meta-bar .share-btns { flex-wrap: wrap; }
.share-btn {
  width: 40px; height: 40px;
  position: relative; z-index: 5;
  touch-action: manipulation;
  -webkit-tap-highlight-color: rgba(0,0,0,.08);
  user-select: none;
}
.share-btn i { pointer-events: none; }
.share-btn:active { transform: scale(.94); }

/* Make opportunity content darker + heavier for readability */
.art-body.opp-article { color: #0f172a; font-weight: 450; }
.art-body.opp-article p,
.art-body.opp-article li { color: #111827; }
.art-body.opp-article h2,
.art-body.opp-article h3 { color: #0a2540; }
.art-body.opp-article .opp-description p { margin: 0 0 16px; }

@media (max-width: 640px){
  .art-header .art-meta-bar .share-btns { gap: 10px; justify-content: flex-start; }
  .share-btn { width: 44px; height: 44px; font-size: 15px; }
  .art-body.opp-article { font-size: 16.5px; line-height: 1.85; color: #0f172a; }
}

/* ============================================================
   v18 — Mobile responsive polish + admin mobile drawer
   ============================================================ */

/* Global: no horizontal scroll, smoother touch */
html, body { max-width: 100%; overflow-x: hidden; }
img, video, iframe { max-width: 100%; height: auto; }
button, a { -webkit-tap-highlight-color: rgba(0,0,0,.06); }

/* Fluid headings */
@media (max-width: 900px){
  h1 { font-size: clamp(26px, 6vw, 36px); line-height: 1.2; }
  h2 { font-size: clamp(20px, 4.5vw, 28px); line-height: 1.25; }
  h3 { font-size: clamp(17px, 3.8vw, 22px); line-height: 1.3; }
  .container { padding-left: 16px; padding-right: 16px; }
  section { padding-top: 36px !important; padding-bottom: 36px !important; }
}

/* Touch targets */
@media (max-width: 640px){
  .btn { min-height: 44px; padding: 11px 18px; font-size: 14px; }
  input, select, textarea { font-size: 16px !important; } /* prevent iOS zoom */
  .art-card .ac-img { height: 200px; }
  .opp-card .oc-img { aspect-ratio: 16 / 9; }
  .art-card .ac-body { padding: 14px; }
  .opp-card .oc-body { padding: 14px 16px 16px; }
  .ac-title { font-size: 16px !important; }
  .ac-excerpt { font-size: 14px !important; }
  .section-header h2 { font-size: 22px; }
  /* Footer */
  #footer .footer-grid { gap: 24px; }
  #footer .social-icons { justify-content: flex-start; gap: 14px; }
  #footer .social-icons a { width: 40px; height: 40px; display: inline-flex; align-items: center; justify-content: center; }
  /* Comments + forms */
  .comments-section .comment { padding: 14px; }
  form input, form textarea, form select { width: 100%; box-sizing: border-box; }
  /* Article body */
  .art-body { font-size: 16px; line-height: 1.75; }
  .art-body img, .art-body iframe { border-radius: 8px; margin: 14px 0; }
}

/* Extra-narrow phones (320–375) */
@media (max-width: 380px){
  #hero-headline { font-size: 26px; }
  .btn { padding: 10px 14px; font-size: 13px; }
  .container { padding-left: 14px; padding-right: 14px; }
}

/* Tablet two-column comfort */
@media (min-width: 641px) and (max-width: 900px){
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
}

/* ── ADMIN MOBILE DRAWER ───────────────────────────────────── */
.admin-hamburger {
  display: none;
  background: none; border: none;
  font-size: 20px; color: var(--navy);
  width: 40px; height: 40px;
  align-items: center; justify-content: center;
  cursor: pointer; margin-right: 8px;
  border-radius: 8px;
}
.admin-hamburger:hover { background: var(--gray); }
.admin-sidebar-backdrop {
  display: none;
  position: fixed; inset: 0;
  background: rgba(0,0,0,.45);
  z-index: 199;
}
.admin-sidebar-backdrop.open { display: block; }

@media (max-width: 900px){
  #admin-wrapper { flex-direction: row; }
  #admin-main { width: 100%; min-width: 0; }
  #admin-sidebar {
    position: fixed; top: 0; left: 0;
    width: 270px; max-width: 82vw; height: 100vh;
    transform: translateX(-100%);
    transition: transform .25s ease;
    z-index: 200; display: flex;
    box-shadow: 4px 0 20px rgba(0,0,0,.2);
  }
  #admin-sidebar.open { transform: translateX(0); }
  .admin-hamburger { display: inline-flex; }
  #admin-topbar { padding: 0 14px; height: 56px; }
  #admin-topbar h2 { font-size: 15px; flex: 1; min-width: 0; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
  #admin-topbar .atb-user span { display: none; }
  #admin-content { padding: 16px; }
  .admin-card { padding: 16px; }
  .admin-form .form-row { grid-template-columns: 1fr; gap: 12px; }
  /* Tables → horizontal scroll containers */
  .admin-card { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .admin-table { min-width: 560px; }
  .admin-table th, .admin-table td { padding: 10px 8px; font-size: 12.5px; }
  .tbl-actions { display: flex; gap: 6px; flex-wrap: wrap; }
  .tbl-btn { padding: 6px 10px; font-size: 12px; }
  /* Quill */
  .ql-toolbar.ql-snow, .ql-container.ql-snow { font-size: 14px; }
  .ql-editor { min-height: 220px; }
  /* Stat cards stack 2-up */
  .stats-row { grid-template-columns: 1fr 1fr; gap: 12px; }
  .stat-card { padding: 14px; }
}
@media (max-width: 480px){
  .stats-row { grid-template-columns: 1fr; }
}

/* Override the older 640px rule that hid the admin sidebar with display:none */
@media (max-width: 640px){
  #admin-sidebar { display: flex; }
  #admin-wrapper { flex-direction: row; }
}
