/* 香港玉衡公益基金會 - LKSF inspired design */
:root {
  --green: #5a9340;
  --green-dark: #4a7a35;
  --green-light: #eef5ea;
  --text: #333333;
  --text-light: #666666;
  --text-muted: #999999;
  --border: #e0e0e0;
  --bg: #ffffff;
  --bg-alt: #f8f8f8;
  --max-width: 1200px;
  --header-height: 140px;
  --font-serif: "Noto Serif TC", "Noto Serif SC", Georgia, serif;
  --font-sans: "Noto Sans TC", "Noto Sans SC", "Helvetica Neue", Arial, sans-serif;
  --transition: 0.3s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--green); }

.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }

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

.header-top {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 12px 24px 0;
  max-width: var(--max-width);
  margin: 0 auto;
  gap: 16px;
}

.lang-switch { display: flex; gap: 4px; font-size: 13px; }
.lang-switch a, .lang-switch span { padding: 2px 6px; color: var(--text-light); }
.lang-switch a.active, .lang-switch a:hover { color: var(--green); font-weight: 600; }
.lang-switch .sep { color: var(--border); }

.search-box {
  display: flex;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: 4px 10px;
  font-size: 13px;
}
.search-box input {
  border: none;
  outline: none;
  width: 120px;
  font-size: 13px;
  background: transparent;
}
.search-box button {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-muted);
}

.header-logo {
  text-align: center;
  padding: 16px 24px 8px;
}
.header-logo a { display: inline-flex; flex-direction: column; align-items: center; gap: 8px; }
.logo-icon {
  width: 48px;
  height: 48px;
  background: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 24px;
}
.logo-text {
  font-family: var(--font-serif);
  font-size: 15px;
  letter-spacing: 2px;
  color: var(--text);
  line-height: 1.4;
}
.logo-text-en { font-size: 11px; letter-spacing: 3px; color: var(--text-light); }

.main-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  padding: 12px 24px 16px;
  border-top: 1px solid transparent;
}
.main-nav a {
  padding: 8px 18px;
  font-size: 14px;
  color: var(--text);
  position: relative;
  white-space: nowrap;
}
.main-nav a:hover, .main-nav a.active { color: var(--green); }
.main-nav a.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 18px;
  right: 18px;
  height: 2px;
  background: var(--green);
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  padding: 8px;
}

/* Hero Banner */
.hero-banner {
  background: var(--green) url('../assets/images/bg001.jpg') center center / cover no-repeat;
  color: white;
  min-height: 420px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(74, 122, 53, 0.72) 0%, rgba(45, 80, 32, 0.55) 100%);
  z-index: 0;
}
.hero-banner .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  width: 100%;
  padding: 80px 24px;
  position: relative;
  z-index: 1;
  text-align: center;
}
.hero-graphic {
  flex: 0 0 200px;
  opacity: 0.9;
}
.hero-graphic svg { width: 180px; height: 180px; }
.hero-content { flex: 1; max-width: 720px; }
.hero-content h1 {
  font-family: var(--font-serif);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 400;
  line-height: 1.4;
  margin-bottom: 12px;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.25);
}
.hero-content p {
  font-size: clamp(16px, 2vw, 20px);
  opacity: 0.95;
  font-weight: 300;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.2);
}

.page-hero {
  background: var(--green);
  color: white;
  padding: 60px 24px;
  text-align: center;
}
.page-hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(24px, 3.5vw, 36px);
  font-weight: 400;
  margin-bottom: 8px;
}
.page-hero p { opacity: 0.85; font-size: 16px; }

/* Sections */
section { padding: 64px 0; }
section.alt-bg { background: var(--bg-alt); }

.section-header {
  text-align: center;
  margin-bottom: 48px;
}
.section-header h2 {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 400;
  margin-bottom: 12px;
  color: var(--text);
}
.section-header p {
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
  font-size: 15px;
}
.section-header .divider {
  width: 40px;
  height: 2px;
  background: var(--green);
  margin: 16px auto 0;
}

/* Three Column Grid */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.card {
  background: var(--bg);
  transition: transform var(--transition), box-shadow var(--transition);
}
.card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,0.08); }
.card-image {
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--bg-alt);
  position: relative;
}
a.card-image {
  display: block;
  text-decoration: none;
  color: inherit;
}
.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.card:hover .card-image img { transform: scale(1.05); }
.card-body { padding: 24px 0; }
#initiatives .card-body,
body[data-page="initiatives"] .card-body,
#media .card-body,
body[data-page="media"] .card-body {
  padding: 28px 24px 32px;
}
.card-body h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
  line-height: 1.4;
}
.card-body p {
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 16px;
}
.card-link {
  font-size: 14px;
  color: var(--green);
  font-weight: 500;
}
.card-link::after { content: ' →'; }

/* Feature Row (LKSF style) */
.feature-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--border);
}
.feature-item {
  padding: 40px 32px;
  border-right: 1px solid var(--border);
  text-align: center;
}
.feature-item:last-child { border-right: none; }
.feature-item .icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  background: var(--green-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
}
.feature-item h3 {
  font-size: 17px;
  margin-bottom: 12px;
  font-weight: 600;
}
.feature-item p { font-size: 14px; color: var(--text-light); }

/* Stats Section */
.stats-section {
  background: var(--green-light);
  padding: 64px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px;
}
.stat-item h3 {
  font-size: 14px;
  color: var(--green);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.stat-item .number {
  font-family: var(--font-serif);
  font-size: 36px;
  color: var(--text);
  margin-bottom: 8px;
}
.stat-item p { font-size: 14px; color: var(--text-light); }

/* Quote Block */
.quote-block {
  text-align: center;
  padding: 80px 24px;
  max-width: 800px;
  margin: 0 auto;
}
.quote-block blockquote {
  font-family: var(--font-serif);
  font-size: clamp(18px, 2.5vw, 24px);
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 24px;
  font-style: italic;
}
.quote-block cite { font-size: 14px; color: var(--text-muted); font-style: normal; }

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 32px;
  font-size: 14px;
  border: 1px solid var(--border);
  background: var(--bg);
  color: var(--text);
  cursor: pointer;
  transition: all var(--transition);
  text-align: center;
}
.btn:hover { border-color: var(--green); color: var(--green); }
.btn-primary {
  background: var(--green);
  border-color: var(--green);
  color: white;
}
.btn-primary:hover { background: var(--green-dark); border-color: var(--green-dark); color: white; }
.btn-ghost {
  background: transparent;
  border-color: var(--border);
}
.text-center { text-align: center; }

/* Article Content */
.article-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 48px 24px 80px;
}
.article-content .article-wechat {
  line-height: 1.85;
  overflow-x: hidden;
  word-wrap: break-word;
}
.article-wechat img {
  max-width: 100% !important;
  height: auto !important;
  display: block;
  margin: 16px auto;
}
.article-wechat .image-caption {
  text-align: center;
  color: var(--text-muted);
  margin: -8px 0 20px;
}
.article-wechat h3 {
  font-size: 17px;
  font-weight: 600;
  margin: 28px 0 12px;
  color: var(--text);
}
.article-source {
  margin-top: 32px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  color: var(--text-muted);
}
.article-content h2 {
  font-family: var(--font-serif);
  font-size: 24px;
  margin: 40px 0 16px;
  color: var(--text);
}
.article-content h3 {
  font-size: 18px;
  margin: 32px 0 12px;
}
.article-content p {
  margin-bottom: 16px;
  color: var(--text);
  font-size: 15px;
}
.article-content ul, .article-content ol {
  margin: 16px 0 16px 24px;
}
.article-content li { margin-bottom: 8px; font-size: 15px; }

/* Timeline */
.timeline { position: relative; padding-left: 32px; }
.timeline::before {
  content: '';
  position: absolute;
  left: 8px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--green);
}
.timeline-item { position: relative; margin-bottom: 32px; padding-left: 24px; }
.timeline-item::before {
  content: '';
  position: absolute;
  left: -28px;
  top: 6px;
  width: 12px;
  height: 12px;
  background: var(--green);
  border-radius: 50%;
  border: 2px solid white;
  box-shadow: 0 0 0 2px var(--green);
}
.timeline-year {
  font-weight: 700;
  color: var(--green);
  font-size: 16px;
  margin-bottom: 4px;
}
.timeline-text { font-size: 14px; color: var(--text-light); }

/* News */
.news-list { display: flex; flex-direction: column; gap: 0; }
.news-item {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 24px;
  padding: 32px 0;
  border-bottom: 1px solid var(--border);
  align-items: start;
}
.news-item:first-child { border-top: 1px solid var(--border); }
.news-thumb {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--bg-alt);
}
.news-thumb img { width: 100%; height: 100%; object-fit: cover; }
.news-meta { font-size: 13px; color: var(--text-muted); margin-bottom: 8px; }
.news-item h3 { font-size: 18px; margin-bottom: 8px; line-height: 1.4; }
.news-item h3 a:hover { color: var(--green); }
.news-excerpt { font-size: 14px; color: var(--text-light); }

/* Article Detail */
.article-header { padding: 48px 0 32px; border-bottom: 1px solid var(--border); }
.article-header h1 {
  font-family: var(--font-serif);
  font-size: clamp(24px, 3vw, 32px);
  margin-bottom: 16px;
  line-height: 1.4;
}
.article-featured {
  margin: 32px 0;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--bg-alt);
}
.article-featured img { width: 100%; height: 100%; object-fit: cover; }
.article-nav {
  display: flex;
  justify-content: space-between;
  padding: 32px 0;
  border-top: 1px solid var(--border);
  margin-top: 48px;
  font-size: 14px;
}
.share-buttons { display: flex; gap: 12px; margin: 24px 0; }
.share-buttons a {
  padding: 8px 16px;
  border: 1px solid var(--border);
  font-size: 13px;
}
.share-buttons a:hover { border-color: var(--green); color: var(--green); }

/* Video Grid */
.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.video-card { cursor: pointer; }
.video-thumb {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: #000;
  margin-bottom: 16px;
}
.video-thumb img { width: 100%; height: 100%; object-fit: cover; opacity: 0.85; }
.video-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 56px;
  height: 56px;
  background: rgba(255,255,255,0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--green);
}
.video-card h3 { font-size: 16px; margin-bottom: 8px; }
.video-card p { font-size: 13px; color: var(--text-light); }
.media-badge {
  position: absolute;
  bottom: 12px;
  left: 12px;
  padding: 4px 12px;
  background: var(--green);
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  border-radius: 2px;
}
.media-block-grid {
  align-items: start;
}
.media-card .card-body p {
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 16px;
}
.media-card .card-body h3 a:hover {
  color: var(--green);
}
.video-embed {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  margin: 32px 0;
}
.video-embed iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: none;
}

/* Contact Form */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}
.contact-info h3 {
  font-size: 18px;
  margin-bottom: 24px;
  color: var(--green);
}
.contact-info p { margin-bottom: 12px; font-size: 15px; }
.contact-info .info-item { margin-bottom: 20px; }
.contact-info .label { font-size: 13px; color: var(--text-muted); margin-bottom: 4px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 14px;
  margin-bottom: 6px;
  color: var(--text);
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border);
  font-size: 15px;
  font-family: inherit;
  transition: border-color var(--transition);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--green);
}
.form-group textarea { min-height: 140px; resize: vertical; }
.map-container {
  margin-top: 32px;
  aspect-ratio: 16/9;
  background: var(--bg-alt);
  border: 1px solid var(--border);
}
.map-container iframe { width: 100%; height: 100%; border: none; }

/* CTA Section */
.cta-section {
  background: var(--green);
  color: white;
  text-align: center;
  padding: 64px 24px;
}
.cta-section h2 {
  font-family: var(--font-serif);
  font-size: 28px;
  margin-bottom: 16px;
  font-weight: 400;
}
.cta-section p { opacity: 0.9; margin-bottom: 24px; max-width: 600px; margin-left: auto; margin-right: auto; }
.cta-section .btn { background: white; color: var(--green); border-color: white; }
.cta-section .btn:hover { background: transparent; color: white; }

/* Demo Notice */
.demo-notice {
  background: #fff8e6;
  border: 1px solid #f0d78c;
  padding: 16px 24px;
  margin: 24px 0;
  font-size: 14px;
  color: #8a6914;
  text-align: center;
}

/* Breadcrumb */
.breadcrumb {
  padding: 16px 0;
  font-size: 13px;
  color: var(--text-muted);
}
.breadcrumb a { color: var(--text-light); }
.breadcrumb a:hover { color: var(--green); }
.breadcrumb span { margin: 0 8px; }

/* Footer */
.site-footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 40px 24px 24px;
  text-align: center;
}
.footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 24px;
  margin-bottom: 24px;
}
.footer-links a {
  font-size: 13px;
  color: var(--text-light);
}
.footer-links a:hover { color: var(--green); }
.footer-copyright {
  font-size: 12px;
  color: var(--text-muted);
}

/* Sitemap */
.sitemap-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.sitemap-col h3 {
  font-size: 16px;
  margin-bottom: 16px;
  color: var(--green);
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
}
.sitemap-col ul { list-style: none; }
.sitemap-col li { margin-bottom: 8px; }
.sitemap-col a { font-size: 14px; color: var(--text-light); }
.sitemap-col a:hover { color: var(--green); }

/* Image Gallery */
.image-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 32px 0;
}
.image-gallery img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

/* Lazy load */
img[loading="lazy"] { opacity: 0; transition: opacity 0.3s; }
img[loading="lazy"].loaded, img:not([loading="lazy"]) { opacity: 1; }

/* Responsive */
@media (max-width: 992px) {
  .grid-3, .feature-row, .video-grid, .sitemap-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-item { border-right: none; border-bottom: 1px solid var(--border); }
  .stats-grid, .contact-grid { grid-template-columns: 1fr; }
  .news-item { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .header-top { justify-content: space-between; }
  .search-box { display: none; }
  .mobile-menu-btn { display: block; }
  .main-nav {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    padding: 16px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 12px 16px; border-bottom: 1px solid var(--border); }
  .hero-banner .container { flex-direction: column; text-align: center; }
  .hero-graphic { flex: none; }
  .grid-3, .grid-2, .feature-row, .video-grid, .sitemap-grid, .image-gallery {
    grid-template-columns: 1fr;
  }
  section { padding: 48px 0; }
}

/* Mission & Vision Page (PPT layout) */
.mission-part-banner {
  background: var(--green);
  color: white;
  padding: 48px 24px;
  text-align: center;
  margin: 0;
}
.mission-part-banner h2 {
  font-family: var(--font-serif);
  font-size: clamp(20px, 2.8vw, 28px);
  font-weight: 400;
  line-height: 1.6;
  max-width: 900px;
  margin: 0 auto;
}
.mission-part-label {
  display: inline-block;
  font-size: 13px;
  letter-spacing: 2px;
  opacity: 0.85;
  margin-bottom: 12px;
  text-transform: uppercase;
}
.mission-lead {
  font-size: 17px;
  line-height: 1.9;
  color: var(--text);
  max-width: 900px;
  margin: 0 auto 32px;
}
.mission-block {
  padding: 64px 0;
}
.mission-block.alt-bg { background: var(--bg-alt); }
.mission-img-full {
  width: 100%;
  margin: 32px 0;
  border-radius: 2px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}
.mission-img-full img { width: 100%; height: auto; }
.mission-img-pair {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin: 32px 0;
}
.mission-img-pair img {
  width: 100%;
  height: auto;
  border-radius: 2px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}
.mission-quote-img img {
  width: 100%;
  border-radius: 2px;
}
.mission-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin: 40px 0;
}
.mission-gallery img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 2px;
  transition: transform 0.3s ease;
}
.mission-gallery img:hover { transform: scale(1.03); }
.mission-founders-caption {
  text-align: center;
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 12px;
}
@media (max-width: 992px) {
  .mission-gallery { grid-template-columns: repeat(2, 1fr); }
  .mission-img-pair { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .mission-gallery { grid-template-columns: 1fr; }
  .mission-block { padding: 48px 0; }
}

/* Founder Story Page */
body[data-content="founder"] .founder-page-body {
  width: 100%;
  padding-top: 24px;
}
body[data-content="founder"] .founder-page-body > .founder-intro {
  max-width: 900px;
  margin: 0 auto 48px;
  padding: 0 24px;
}
.founder-intro {
  font-size: 17px;
  line-height: 1.9;
  color: var(--text-light);
  max-width: 900px;
  margin: 0 auto 48px;
}
.founder-gen-banner {
  background: var(--green);
  color: white;
  padding: 36px 24px;
  text-align: center;
}
.founder-gen-banner h2 {
  font-family: var(--font-serif);
  font-size: clamp(18px, 2.5vw, 24px);
  font-weight: 400;
  line-height: 1.6;
  max-width: 900px;
  margin: 0 auto;
}
.founder-section {
  padding: 56px 0;
}
.founder-section.alt-bg { background: var(--bg-alt); }
.founder-section h3 {
  font-family: var(--font-serif);
  font-size: 20px;
  color: var(--green);
  margin: 32px 0 16px;
}
.founder-section h3:first-child { margin-top: 0; }
.founder-section p {
  font-size: 16px;
  line-height: 1.9;
  color: var(--text);
  max-width: 900px;
  margin: 0 auto 20px;
}
.founder-section ol {
  max-width: 900px;
  margin: 0 auto 24px;
  padding-left: 24px;
}
.founder-section ol li {
  font-size: 16px;
  line-height: 1.9;
  color: var(--text);
  margin-bottom: 12px;
}
.founder-img-portrait {
  max-width: 420px;
  margin: 0 auto 32px;
  border-radius: 2px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}
.founder-img-portrait img { width: 100%; height: auto; display: block; }
.founder-img-wide {
  max-width: 900px;
  margin: 32px auto;
  border-radius: 2px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}
.founder-img-wide img { width: 100%; height: auto; display: block; }
.founder-img-pair {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 900px;
  margin: 32px auto;
}
.founder-img-pair img {
  width: 100%;
  height: auto;
  border-radius: 2px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}
.founder-quote {
  border-left: 3px solid var(--green);
  padding: 20px 0 20px 28px;
  margin: 40px auto;
  max-width: 900px;
  font-size: 17px;
  line-height: 1.9;
  font-style: italic;
  color: var(--text-light);
}
.founder-attribution {
  text-align: right;
  font-size: 14px;
  color: var(--text-muted);
  max-width: 900px;
  margin: 48px auto 0;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
@media (max-width: 992px) {
  .founder-img-pair { grid-template-columns: 1fr; }
}

/* Fund initiative pages */
.fund-lead {
  font-size: 18px;
  font-weight: 600;
  color: var(--green);
  margin-bottom: 16px;
}
.fund-subtitle {
  font-size: 17px;
  font-weight: 500;
  margin-bottom: 32px;
}
.fund-divider {
  border: none;
  border-top: 2px solid var(--border);
  margin: 48px 0;
}
.fund-table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  font-size: 14px;
}
.fund-table th,
.fund-table td {
  border: 1px solid var(--border);
  padding: 10px 14px;
  text-align: left;
}
.fund-table th {
  background: var(--bg-alt);
  font-weight: 600;
}
.fund-photo-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin: 32px 0;
}
.fund-photo img {
  width: 100%;
  border-radius: 4px;
  display: block;
}
.fund-photo figcaption {
  margin-top: 10px;
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.6;
}
@media (max-width: 768px) {
  .fund-photo-grid { grid-template-columns: 1fr; }
}
.article-content h2 {
  font-family: var(--font-serif);
  font-size: 22px;
  margin: 40px 0 16px;
  color: var(--text);
}
.article-content h3 {
  font-size: 17px;
  margin: 24px 0 12px;
  color: var(--text);
}
.article-content ul {
  margin: 12px 0 20px 24px;
}
.article-content li {
  margin-bottom: 8px;
  line-height: 1.8;
}
