/* ============================================================
   Rainbow Foundation — Global Stylesheet
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Khand:wght@500;600;700&family=Newsreader:ital,wght@0,300;0,400;0,600;0,700;1,300;1,400;1,600;1,700&family=Questrial&display=swap');

/* ── CSS Variables ── */
:root {
  --green-deep: #1a4b35;
  --green-mid:  #2d6a4f;
  --lime:       #c8f135;
  --lime-dark:  #a5cc1a;
  --charcoal:   #212121;
  --off-white:  #f2f0eb;
  --gray-light: #e2e0db;
  --font-heading: 'Newsreader', Georgia, serif;
  --font-display: 'Khand', sans-serif;
  --font-serif:   'Newsreader', Georgia, serif;
  --font-sans:    'Questrial', sans-serif;
  --transition:   0.25s ease;
  --shadow-sm:    0 2px 8px rgba(0,0,0,0.08);
  --shadow-md:    0 4px 20px rgba(0,0,0,0.12);
  --shadow-lg:    0 8px 40px rgba(0,0,0,0.16);
  --radius:       8px;
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  color: var(--charcoal);
  background: #fff;
  line-height: 1.7;
  font-size: 16px;
}

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

a { color: inherit; text-decoration: none; transition: color var(--transition); }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.5px;
}

/* Poster typography: bold headline + italic-light contrast word */
h1 em, h2 em, h3 em {
  font-style: italic;
  font-weight: 300;
  color: var(--charcoal);
}

/* On dark backgrounds the em word uses lime */
.on-dark h1 em, .on-dark h2 em, .on-dark h3 em {
  color: var(--lime);
}

/* Eyebrow / section label */
.section-label, .eyebrow {
  font-family: var(--font-sans);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--green-mid);
  display: block;
  margin-bottom: .6rem;
}

/* Khand for display/Devanagari accents */
.font-display { font-family: var(--font-display); }

p { margin-bottom: 1rem; }

/* ── Utility ── */
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); border: 0;
}

.container-custom {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ── Buttons ── */
.btn-lime {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: var(--lime);
  color: var(--charcoal);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: .05em;
  padding: .7rem 1.75rem;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}
.btn-lime:hover, .btn-lime:focus {
  background: var(--lime-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}
.btn-lime:active { transform: translateY(0); }

.btn-green {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: var(--green-deep);
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: .05em;
  padding: .7rem 1.75rem;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}
.btn-green:hover, .btn-green:focus {
  background: var(--green-mid);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.btn-outline-white {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: transparent;
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: .05em;
  padding: .65rem 1.75rem;
  border-radius: var(--radius);
  border: 2px solid #fff;
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
}
.btn-outline-white:hover, .btn-outline-white:focus {
  background: #fff;
  color: var(--charcoal);
}

/* ── Navigation ── */
#main-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: box-shadow var(--transition), background var(--transition);
}
.nav-scrolled {
  box-shadow: 0 2px 16px rgba(0,0,0,0.14) !important;
  background: var(--green-deep) !important;
}
#mobile-menu {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
}
#mobile-menu.open { max-height: 500px; }

/* ── Section Hero ── */
.section-hero {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: var(--green-deep);
  color: #fff;
  text-align: center;
  padding: 5rem 1.5rem 3rem;
}
.section-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,75,53,.85) 0%, rgba(45,106,79,.6) 100%);
  pointer-events: none;
}
.section-hero > * { position: relative; z-index: 1; }
.section-hero h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  line-height: 1.1;
  text-shadow: 0 2px 12px rgba(0,0,0,0.3);
}
.section-hero p {
  font-size: 1.2rem;
  opacity: .9;
  max-width: 640px;
  margin: 1rem auto 0;
}

/* ── Program Card ── */
.program-card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  border-bottom: 4px solid var(--lime);
  transition: transform var(--transition), box-shadow var(--transition);
}
.program-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

/* ── Stat / Counter Cards ── */
.stat-card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 1.75rem 1.5rem;
  text-align: center;
  border-top: 4px solid var(--lime);
  transition: box-shadow var(--transition), transform var(--transition);
}
.stat-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.stat-number {
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  font-weight: 700;
  color: var(--green-deep);
  line-height: 1;
  display: block;
}
.stat-label {
  font-size: 1rem;
  color: #555;
  margin-top: .4rem;
  font-family: var(--font-sans);
}

/* ── Dashboard Admin Stat Card ── */
.admin-stat-card {
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(26, 75, 53, 0.03);
  padding: 1.75rem 1.5rem;
  border: 1px solid rgba(26, 75, 53, 0.06);
  border-left: 6px solid var(--green-mid);
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.admin-stat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(26, 75, 53, 0.08);
}
.admin-stat-card.lime { border-left-color: var(--lime); }
.admin-stat-card.orange { border-left-color: #e07b39; }
.admin-stat-card.blue { border-left-color: #3b82f6; }

/* ── Category Badges ── */
.badge-news, .badge-event, .badge-campaign, .badge-general {
  display: inline-block;
  padding: .2rem .75rem;
  border-radius: 9999px;
  font-size: .75rem;
  font-weight: 600;
  font-family: var(--font-heading);
  letter-spacing: .06em;
  text-transform: uppercase;
}
.badge-news     { background: rgba(22, 101, 52, 0.06); color: #166534; border: 1px solid rgba(22, 101, 52, 0.15); }
.badge-event    { background: rgba(30, 64, 175, 0.06); color: #1e40af; border: 1px solid rgba(30, 64, 175, 0.15); }
.badge-campaign { background: rgba(146, 64, 14, 0.06); color: #92400e; border: 1px solid rgba(146, 64, 14, 0.15); }
.badge-general  { background: rgba(75, 85, 99, 0.06); color: #4b5563; border: 1px solid rgba(75, 85, 99, 0.15); }

/* ── Post / News Card ── */
.news-card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--transition), box-shadow var(--transition);
}
.news-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.news-card__img {
  width: 100%; height: 200px; object-fit: cover;
}
.news-card__placeholder {
  width: 100%; height: 200px;
  background: var(--gray-light);
  display: flex; align-items: center; justify-content: center;
  color: #9ca3af; font-size: 2.5rem;
}
.news-card__body { padding: 1.25rem; flex: 1; display: flex; flex-direction: column; }
.news-card__title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--charcoal);
  margin: .5rem 0;
  line-height: 1.3;
}
.news-card__excerpt { color: #555; font-size: .9rem; flex: 1; }
.news-card__footer { margin-top: 1rem; display: flex; align-items: center; justify-content: space-between; }

/* ── Gallery & Masonry ── */
.masonry-grid {
  columns: 3 280px;
  column-gap: 1rem;
}
.masonry-item {
  break-inside: avoid;
  margin-bottom: 1rem;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
}
.masonry-item img {
  width: 100%;
  display: block;
  transition: transform .35s ease;
  border-radius: var(--radius);
}
.masonry-item:hover img { transform: scale(1.04); }
.masonry-overlay {
  position: absolute; inset: 0;
  background: rgba(26,75,53,0);
  transition: background .3s ease;
  border-radius: var(--radius);
  display: flex; align-items: flex-end; padding: 1rem;
}
.masonry-item:hover .masonry-overlay { background: rgba(26,75,53,.45); }
.masonry-caption { color: #fff; font-size: .85rem; opacity: 0; transition: opacity .3s; }
.masonry-item:hover .masonry-caption { opacity: 1; }

/* ── Lightbox ── */
.lightbox-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,.92);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.lightbox-overlay.open { display: flex; }
.lightbox-img-wrap {
  position: relative;
  max-width: 90vw;
  max-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox-img-wrap img {
  max-width: 90vw;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 4px;
  box-shadow: var(--shadow-lg);
}
.lightbox-close {
  position: fixed; top: 1.25rem; right: 1.5rem;
  background: transparent; border: none;
  color: #fff; font-size: 2rem; cursor: pointer;
  line-height: 1; padding: .25rem .5rem;
  z-index: 10000;
  transition: color var(--transition);
}
.lightbox-close:hover { color: var(--lime); }
.lightbox-nav {
  background: rgba(255,255,255,.12);
  border: none; color: #fff;
  font-size: 2rem; cursor: pointer;
  padding: .5rem 1rem;
  border-radius: var(--radius);
  transition: background var(--transition);
}
.lightbox-nav:hover { background: rgba(255,255,255,.25); }
.lightbox-caption {
  color: rgba(255,255,255,.75);
  font-size: .9rem;
  margin-top: .75rem;
  text-align: center;
  max-width: 60ch;
}
.lightbox-counter {
  color: rgba(255,255,255,.5);
  font-size: .8rem;
  margin-top: .25rem;
}

/* ── Album Filter Tabs ── */
.filter-tab {
  padding: .5rem 1.25rem;
  border-radius: 9999px;
  border: 2px solid var(--green-mid);
  background: transparent;
  color: var(--green-mid);
  font-family: var(--font-heading);
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
}
.filter-tab:hover, .filter-tab.active {
  background: var(--green-deep);
  border-color: var(--green-deep);
  color: #fff;
}

/* ── Timeline (About page) ── */
.timeline { position: relative; padding-left: 2rem; }
.timeline::before {
  content: '';
  position: absolute; left: 0; top: 0; bottom: 0;
  width: 3px; background: var(--lime);
}
.timeline-item { position: relative; margin-bottom: 2rem; padding-left: 1.25rem; }
.timeline-item::before {
  content: '';
  position: absolute; left: -2.1rem; top: .4rem;
  width: 14px; height: 14px;
  background: var(--lime); border-radius: 50%;
  border: 3px solid #fff; box-shadow: 0 0 0 2px var(--green-deep);
}
.timeline-year {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--green-deep);
}

/* ── Admin Layout ── */
.admin-layout {
  display: flex;
  min-height: 100vh;
}
.admin-sidebar {
  width: 260px;
  background: #0d2a1d;
  flex-shrink: 0;
  position: fixed;
  top: 0; left: 0; bottom: 0;
  overflow-y: auto;
  z-index: 100;
  transition: transform var(--transition);
}
.admin-main {
  margin-left: 260px;
  flex: 1;
  background: #fdfbf9;
  min-height: 100vh;
  padding: 2rem;
}
.admin-sidebar__logo {
  padding: 1.5rem 1.25rem;
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.admin-sidebar__nav a {
  display: flex; align-items: center; gap: .75rem;
  padding: .75rem 1.25rem;
  color: rgba(255,255,255,.65);
  font-family: var(--font-heading);
  font-size: 1.05rem;
  transition: all var(--transition);
  border-left: 3px solid transparent;
}
.admin-sidebar__nav a:hover,
.admin-sidebar__nav a.active {
  color: #fff;
  background: rgba(255,255,255,.04);
  border-left-color: var(--lime);
}
.admin-topbar {
  display: flex; align-items: center; justify-content: space-between;
  background: #ffffff;
  padding: 1rem 1.5rem;
  border-radius: var(--radius);
  box-shadow: 0 10px 30px rgba(26, 75, 53, 0.02);
  border: 1px solid rgba(26, 75, 53, 0.05);
  margin-bottom: 1.75rem;
}

/* Admin Table - Premium High-Visibility Spatial Edition */
.admin-table {
  width: calc(100% - 2rem);
  margin: 0.75rem 1rem;
  border-collapse: separate;
  border-spacing: 0 10px;
  font-size: .86rem;
}
.admin-table th {
  background: transparent;
  color: var(--green-deep);
  padding: 0.75rem 1.25rem;
  text-align: left;
  font-family: var(--font-sans);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.68rem;
  letter-spacing: .12em;
  white-space: nowrap;
  border: none;
  opacity: 0.85;
}
.admin-table tr {
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.admin-table td {
  padding: 1.1rem 1.25rem;
  background: #ffffff;
  border-top: 1px solid rgba(26, 75, 53, 0.05);
  border-bottom: 1px solid rgba(26, 75, 53, 0.05);
  vertical-align: middle;
  color: var(--green-deep);
  transition: all 0.25s ease;
  box-shadow: 0 4px 12px rgba(26, 75, 53, 0.015);
}
.admin-table td:first-child {
  border-left: 1px solid rgba(26, 75, 53, 0.05);
  border-top-left-radius: 16px;
  border-bottom-left-radius: 16px;
}
.admin-table td:last-child {
  border-right: 1px solid rgba(26, 75, 53, 0.05);
  border-top-right-radius: 16px;
  border-bottom-right-radius: 16px;
}
.admin-table tr:nth-child(even) td {
  background: #faf9f6; /* Beautiful warm-sand contrasting tint */
}
.admin-table tr:hover td {
  background: rgba(200, 241, 53, 0.05) !important; /* Soft green-lime glow background */
  border-color: rgba(26, 75, 53, 0.15) !important;
  color: var(--green-deep);
  box-shadow: 0 6px 20px rgba(26, 75, 53, 0.04);
}
.admin-table tr:hover td:first-child {
  border-left-color: rgba(26, 75, 53, 0.15) !important;
  box-shadow: inset 4px 0 0 var(--lime), 0 6px 20px rgba(26, 75, 53, 0.04) !important;
}
.admin-table tr:hover td:last-child {
  border-right-color: rgba(26, 75, 53, 0.15) !important;
}

/* Admin Form */
.admin-form-card {
  background: #ffffff;
  border-radius: 24px;
  box-shadow: 0 10px 30px rgba(26, 75, 53, 0.03);
  border: 1px solid rgba(26, 75, 53, 0.06);
  padding: 2.25rem;
  margin-bottom: 2rem;
  transition: box-shadow var(--transition);
}
.admin-form-card:hover {
  box-shadow: 0 15px 35px rgba(26, 75, 53, 0.05);
}
.form-label {
  display: block;
  font-family: var(--font-heading);
  font-weight: 700;
  text-transform: uppercase;
  font-size: .8rem;
  letter-spacing: 0.05em;
  color: var(--green-deep);
  margin-bottom: .45rem;
}
.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: .75rem 1rem;
  border: 1px solid rgba(26, 75, 53, 0.15);
  border-radius: 12px;
  font-family: var(--font-sans);
  font-size: .92rem;
  color: var(--charcoal);
  background: #fdfdfd;
  transition: border-color var(--transition), box-shadow var(--transition), background-color var(--transition);
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--green-deep);
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(26, 75, 53, 0.08);
}
.form-textarea { resize: vertical; min-height: 120px; }

/* Flash Messages */
.flash-success {
  background: #dcfce7; color: #166534;
  border: 1px solid #bbf7d0;
  padding: .85rem 1.25rem;
  border-radius: var(--radius);
  margin-bottom: 1.25rem;
  font-weight: 500;
}
.flash-error {
  background: #fee2e2; color: #991b1b;
  border: 1px solid #fecaca;
  padding: .85rem 1.25rem;
  border-radius: var(--radius);
  margin-bottom: 1.25rem;
  font-weight: 500;
}

/* Status Badges */
.badge-success { background: rgba(22, 101, 52, 0.08); color: #166534; border: 1px solid rgba(22, 101, 52, 0.15); padding: .2rem .75rem; border-radius: 9999px; font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; }
.badge-pending { background: rgba(146, 64, 14, 0.08); color: #92400e; border: 1px solid rgba(146, 64, 14, 0.15); padding: .2rem .75rem; border-radius: 9999px; font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; }
.badge-failed  { background: rgba(153, 27, 27, 0.08); color: #991b1b; border: 1px solid rgba(153, 27, 27, 0.15); padding: .2rem .75rem; border-radius: 9999px; font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; }
.badge-new     { background: rgba(30, 64, 175, 0.08); color: #1e40af; border: 1px solid rgba(30, 64, 175, 0.15); padding: .2rem .75rem; border-radius: 9999px; font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; }
.badge-active  { background: rgba(22, 101, 52, 0.08); color: #166534; border: 1px solid rgba(22, 101, 52, 0.15); padding: .2rem .75rem; border-radius: 9999px; font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; }

/* Pagination */
.pagination { display: flex; gap: .4rem; flex-wrap: wrap; align-items: center; }
.page-btn {
  padding: .4rem .9rem;
  border-radius: var(--radius);
  border: 1.5px solid var(--gray-light);
  background: #fff;
  color: var(--charcoal);
  cursor: pointer;
  font-family: var(--font-heading);
  transition: all var(--transition);
  text-decoration: none;
  display: inline-block;
}
.page-btn:hover, .page-btn.active {
  background: var(--green-deep);
  border-color: var(--green-deep);
  color: #fff;
}
.page-btn.disabled { opacity: .4; pointer-events: none; }

/* Donate Page */
.amount-btn {
  padding: .65rem 1.25rem;
  border: 2px solid var(--gray-light);
  border-radius: var(--radius);
  background: #fff;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  color: var(--charcoal);
}
.amount-btn:hover, .amount-btn.active {
  border-color: var(--lime);
  background: var(--lime);
  color: var(--charcoal);
}
.pay-type-btn {
  flex: 1;
  padding: .6rem 1rem;
  border: 2px solid var(--gray-light);
  background: #fff;
  font-family: var(--font-heading);
  font-size: 1rem;
  cursor: pointer;
  transition: all var(--transition);
}
.pay-type-btn:first-child { border-radius: var(--radius) 0 0 var(--radius); }
.pay-type-btn:last-child  { border-radius: 0 var(--radius) var(--radius) 0; }
.pay-type-btn.active {
  background: var(--green-deep);
  border-color: var(--green-deep);
  color: #fff;
}
.donate-error {
  background: #fee2e2; color: #991b1b;
  border: 1px solid #fecaca;
  padding: .75rem 1rem;
  border-radius: var(--radius);
  margin-top: .75rem;
  display: none;
}
.donate-error.visible { display: block; }

/* Footer */
.site-footer {
  background: var(--charcoal);
  color: rgba(255,255,255,.8);
  padding: 3.5rem 0 1.5rem;
}
.site-footer h4 {
  color: #fff;
  font-family: var(--font-heading);
  font-size: 1.15rem;
  letter-spacing: .05em;
  margin-bottom: .85rem;
}
.site-footer a:hover { color: var(--lime); }

/* Breadcrumb */
.breadcrumb { display: flex; align-items: center; gap: .5rem; font-size: .9rem; color: rgba(255,255,255,.7); }
.breadcrumb a:hover { color: var(--lime); }
.breadcrumb-sep { opacity: .4; }

/* Transparency Reg Cards */
.reg-card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 1.75rem 1.5rem;
  border-top: 4px solid var(--lime);
  text-align: center;
}
.reg-card__label {
  font-family: var(--font-heading);
  font-size: .9rem;
  color: #6b7280;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: .4rem;
}
.reg-card__value {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--green-deep);
}

/* Report Download Card */
.report-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 1.25rem 1.5rem;
  border-left: 5px solid var(--green-deep);
  transition: box-shadow var(--transition);
}
.report-card:hover { box-shadow: var(--shadow-md); }
.report-card__title { font-family: var(--font-heading); font-size: 1.15rem; font-weight: 600; }
.report-card__year  { color: #6b7280; font-size: .9rem; margin-top: .2rem; }

/* Article Content */
.article-content {
  font-family: var(--font-serif);
  font-size: 1.08rem;
  line-height: 1.85;
  color: #333;
}
.article-content h2, .article-content h3 { font-family: var(--font-heading); color: var(--green-deep); margin: 1.5rem 0 .6rem; }
.article-content ul, .article-content ol { padding-left: 1.5rem; margin-bottom: 1rem; }
.article-content img { border-radius: var(--radius); margin: 1.25rem 0; }
.article-content blockquote {
  border-left: 4px solid var(--lime);
  padding: .75rem 1.25rem;
  margin: 1.25rem 0;
  background: var(--off-white);
  font-style: italic;
  color: #555;
  border-radius: 0 var(--radius) var(--radius) 0;
}

/* Social share */
.share-btn {
  display: inline-flex; align-items: center; gap: .4rem;
  padding: .55rem 1rem;
  border-radius: var(--radius);
  font-size: .9rem;
  font-weight: 600;
  cursor: pointer;
  transition: opacity var(--transition);
  color: #fff;
}
.share-btn:hover { opacity: .88; }
.share-btn--wa   { background: #25d366; }
.share-btn--fb   { background: #1877f2; }
.share-btn--tw   { background: #1da1f2; }

/* Responsive */
@media (max-width: 768px) {
  .admin-sidebar { transform: translateX(-100%); }
  .admin-sidebar.open { transform: translateX(0); }
  .admin-main { margin-left: 0; padding: 1rem; }
  .masonry-grid { columns: 2 200px; }
  .section-hero { min-height: 50vh; }
}
@media (max-width: 480px) {
  .masonry-grid { columns: 1; }
}

/* Misc */
.divider-lime { width: 60px; height: 4px; background: var(--lime); border-radius: 2px; margin: .75rem auto 1.5rem; }
.divider-lime-left { width: 60px; height: 4px; background: var(--lime); border-radius: 2px; margin: .75rem 0 1.5rem; }
.section-label {
  font-family: var(--font-heading);
  font-size: .85rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--green-mid);
  font-weight: 700;
}
.trust-seal {
  display: flex; align-items: center; justify-content: center;
  padding: 1rem 1.5rem;
  border: 2px solid var(--gray-light);
  border-radius: var(--radius);
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--green-deep);
  font-size: 1rem;
  background: #fff;
  gap: .5rem;
}

/* ── Admin Premium Card ── */
.admin-card {
  background: #ffffff !important;
  border-radius: 24px !important;
  box-shadow: 0 10px 30px rgba(26, 75, 53, 0.02) !important;
  border: 1px solid rgba(26, 75, 53, 0.05) !important;
  transition: transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.3s !important;
}
.admin-card:hover {
  box-shadow: 0 20px 40px rgba(26, 75, 53, 0.06) !important;
}

/* ── Custom Stat Card Variations ── */
.admin-stat-card {
  background: #ffffff !important;
  position: relative !important;
  overflow: hidden !important;
}
.admin-stat-card::after {
  content: '' !important;
  position: absolute !important;
  inset: 0 !important;
  background: linear-gradient(135deg, rgba(26, 75, 53, 0.01) 0%, transparent 60%) !important;
  pointer-events: none !important;
}
.admin-stat-card.lime::after {
  background: linear-gradient(135deg, rgba(200, 241, 53, 0.03) 0%, transparent 60%) !important;
}
.admin-stat-card.orange::after {
  background: linear-gradient(135deg, rgba(224, 123, 57, 0.02) 0%, transparent 60%) !important;
}
.admin-stat-card.blue::after {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.02) 0%, transparent 60%) !important;
}

