/*
Theme Name: SKF Theme
Theme URI: https://snehakarma.org
Author: Sneha Karma Foundation
Author URI: https://snehakarma.org
Description: Custom WordPress theme for the Sneha Karma Foundation (SKF). Faithfully implements the SKF homepage design reference — dark green and orange brand palette, Fraunces display headings with Inter body text — across the full template hierarchy (pages, blog, archives, search, 404). Fully Gutenberg-ready (wide/full alignment, editor styles) and Elementor-compatible, with a blank canvas page template and no CSS that fights Elementor widgets. Homepage hero, impact stats, programs, founder quote and donation tiers are editable from wp-admin via Advanced Custom Fields (ACF).
Version: 1.9.3
Requires at least: 6.0
Tested up to: 7.0
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: skf-theme
Tags: one-column, custom-logo, custom-menu, custom-colors, editor-style, featured-images, full-width-template, translation-ready, wide-blocks, block-styles, accessibility-ready

Copyright © 2026 Sneha Karma Foundation.
SKF Theme is free software: you can redistribute it and/or modify it under
the terms of the GNU General Public License as published by the Free Software
Foundation, either version 2 of the License, or (at your option) any later
version.
*/

/* ==========================================================================
   SKF THEME — DESIGN TOKENS
   Mirrors design-reference/homepage-mockup.html exactly.
   ========================================================================== */
:root {
  --skf-green: #00a25a;          /* primary brand green */
  --skf-green-dark: #00844a;     /* hover green */
  --skf-green-deep: #0a3d2e;     /* dark green — hero + footer backgrounds */
  --skf-green-deep-2: #062b21;   /* darker footer */
  --skf-orange: #ff6f00;         /* brand orange accent */
  --skf-orange-dark: #e05e00;    /* accent hover (decorative) */
  --skf-cta-orange: #c84f00;     /* AA orange button bg (white text 4.59:1) */
  --skf-cta-orange-dark: #a84200;/* AA orange button hover */
  --skf-orange-ink: #b84700;     /* AA orange text on light backgrounds */
  --skf-cta-green: #007a44;      /* AA green button/link bg (white text 5.43:1) */
  --skf-cta-green-dark: #006636; /* AA green hover */
  --skf-cream: #f4f7f2;          /* light section background */
  --skf-white: #ffffff;
  --skf-ink: #1f2a24;            /* body text */
  --skf-ink-soft: #4a5a50;       /* muted text */
  --skf-border: #dfe8e1;         /* hairlines */
  --skf-gold: #f6c945;
  --skf-blue: #4a90d9;           /* brand blue (light, close to logo) */
  --skf-blue-dark: #2b6cb0;      /* blue hover */
  --skf-blue-deep: #0a0369;      /* deep blue — section headers / accents */

  --skf-font-head: 'Fraunces', Georgia, serif;
  --skf-font-body: 'Inter', system-ui, -apple-system, sans-serif;

  --skf-container: 1200px;
  --skf-gutter: 24px;
  --skf-radius: 12px;
  --skf-radius-lg: 18px;
  --skf-shadow: 0 18px 40px rgba(10, 61, 46, .12);
  --skf-transition: .22s ease;
}

/* ==========================================================================
   RESET & BASE
   ========================================================================== */
* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
  font-family: var(--skf-font-body);
  color: var(--skf-ink);
  background: var(--skf-white);
  font-size: 17px;
  line-height: 1.65;
}

a { color: var(--skf-cta-green); text-decoration: none; transition: color var(--skf-transition); }
a:hover, a:focus { color: var(--skf-cta-green-dark); }

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--skf-font-head);
  color: var(--skf-green-deep);
  line-height: 1.2;
  margin-bottom: .6em;
}
h1 { font-size: 44px; font-weight: 700; }
h2 { font-size: 36px; font-weight: 700; }
h3 { font-size: 28px; font-weight: 600; }
h4 { font-size: 22px; font-weight: 600; }

p { margin-bottom: 1.2em; }

ul, ol { margin: 0 0 1.2em 1.6em; }
li { margin-bottom: .4em; }

blockquote {
  border-left: 4px solid var(--skf-green);
  padding: 4px 0 4px 22px;
  font-style: italic;
  color: var(--skf-ink-soft);
  margin-bottom: 1.2em;
}

input[type="text"], input[type="email"], input[type="url"], input[type="password"],
input[type="search"], input[type="number"], input[type="tel"], textarea, select {
  width: 100%;
  max-width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--skf-border);
  border-radius: 10px;
  font-family: var(--skf-font-body);
  font-size: 16px;
  color: var(--skf-ink);
  background: var(--skf-white);
}
input:focus, textarea:focus, select:focus { outline: 2px solid var(--skf-green); outline-offset: 1px; }

label { font-weight: 500; display: block; margin-bottom: 6px; }

table { width: 100%; border-collapse: collapse; margin-bottom: 1.5em; }
th, td { border: 1px solid var(--skf-border); padding: 10px 14px; text-align: left; }
th { background: var(--skf-cream); font-weight: 600; }

/* Accessibility: screen reader text */
.screen-reader-text {
  border: 0; clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%); height: 1px; width: 1px;
  margin: -1px; overflow: hidden; padding: 0; position: absolute; word-wrap: normal !important;
}
.screen-reader-text:focus {
  background: var(--skf-green-deep); color: #fff;
  clip: auto !important; clip-path: none; display: block;
  height: auto; left: 5px; top: 5px; width: auto; z-index: 100000;
  padding: 12px 20px; border-radius: 8px; text-decoration: none; font-weight: 600;
}

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 1000;
  background: var(--skf-green-deep); color: #fff;
  padding: 12px 20px; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; color: #fff; }

/* Visible, high-contrast keyboard focus indicator */
a:focus-visible, button:focus-visible, .nav-toggle:focus-visible,
input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 3px solid var(--skf-green-deep);
  outline-offset: 2px;
  border-radius: 4px;
}
.hero a:focus-visible, .hero button:focus-visible, .site-footer a:focus-visible,
.site-footer button:focus-visible, .quote a:focus-visible, .cta-band a:focus-visible {
  outline-color: var(--skf-gold);
}

/* Admin bar offset for sticky header */
.admin-bar .site-header { top: 32px; }
@media screen and (max-width: 782px) {
  .admin-bar .site-header { top: 46px; }
}

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

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 28px; border-radius: 999px;
  font-family: var(--skf-font-body); font-weight: 600; font-size: 16px; line-height: 1.2;
  border: 2px solid transparent; cursor: pointer;
  transition: all var(--skf-transition); text-decoration: none;
}
.btn--primary { background: var(--skf-cta-orange); color: #fff; }
.btn--primary:hover, .btn--primary:focus { background: var(--skf-cta-orange-dark); color: #fff; transform: translateY(-2px); }
.btn--outline { background: transparent; color: #fff; border-color: rgba(255,255,255,.7); }
.btn--outline:hover, .btn--outline:focus { background: rgba(255,255,255,.12); color: #fff; }
.btn--green { background: var(--skf-cta-green); color: #fff; }
.btn--green:hover, .btn--green:focus { background: var(--skf-cta-green-dark); color: #fff; }
.btn--white { background: #fff; color: var(--skf-green-deep); }
.btn--white:hover, .btn--white:focus { background: var(--skf-cream); color: var(--skf-green-deep); }

/* ==========================================================================
   HEADER
   ========================================================================== */
.site-header {
  position: relative; top: 0; z-index: 100;
  box-shadow: 0 2px 6px rgba(10, 61, 46, 0.06);
  background: var(--skf-white);
  border-bottom: 1px solid var(--skf-border);
  padding-top: 10px;
}
.site-header__inner {
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  padding: 4px 0;
}
.site-branding { display: flex; align-items: center; gap: 12px; }
.custom-logo-link img { height: 48px; width: auto; }
.site-branding__text { line-height: 1.15; align-self: flex-start; }
.site-title { font-family: var(--skf-font-head); font-size: 24px; font-weight: 700; color: var(--skf-green-deep); margin: 0; }
.site-title a { color: var(--skf-green-deep); }
.site-title a:hover { color: var(--skf-green-dark); }
.site-description { font-size: 11px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--skf-ink-soft); margin: 0; }

.main-nav ul { list-style: none; display: flex; gap: 4px; margin: 0; }
.main-nav li { position: relative; margin: 0; }
.main-nav a {
  display: block; padding: 10px 14px; color: var(--skf-ink);
  font-weight: 500; font-size: 16px; border-radius: 8px;
}
.main-nav a:hover, .main-nav a:focus { color: var(--skf-cta-green-dark); background: var(--skf-cream); }
.main-nav .current-menu-item > a, .main-nav .current_page_item > a { color: var(--skf-cta-green); font-weight: 600; }
.main-nav .menu-item-has-children > a::after {
  content: ''; display: inline-block; width: 7px; height: 7px;
  border-right: 2px solid currentColor; border-bottom: 2px solid currentColor;
  transform: rotate(45deg); margin-left: 8px; margin-bottom: 2px;
}
.main-nav .sub-menu {
  position: absolute; top: 100%; left: 0; min-width: 220px;
  background: var(--skf-white); border: 1px solid var(--skf-border);
  border-radius: 10px; box-shadow: var(--skf-shadow);
  display: none; flex-direction: column; gap: 0; padding: 8px;
}
.main-nav li:hover > .sub-menu,
.main-nav li:focus-within > .sub-menu { display: flex; }
.main-nav .sub-menu a { padding: 9px 12px; font-size: 15px; }

.header-cta { display: flex; align-items: center; gap: 12px; }
.header-cta .btn { padding: 11px 22px; font-size: 15px; }

.nav-toggle {
  display: none; background: none; border: 0; cursor: pointer; padding: 8px; border-radius: 8px;
}
.nav-toggle:focus { outline: 2px solid var(--skf-green); }
.nav-toggle__bar { display: block; width: 26px; height: 3px; background: var(--skf-green-deep); margin: 5px 0; border-radius: 3px; transition: all var(--skf-transition); }
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
  position: relative;
  background: linear-gradient(135deg, var(--skf-green-deep) 0%, var(--skf-green-deep-2) 100%);
  color: #fff;
  padding: 50px 0 60px;
  overflow: hidden;
}
.hero::after {
  content: ''; position: absolute; right: -120px; bottom: -160px;
  width: 560px; height: 560px; border-radius: 50%;
  background: rgba(0, 162, 90, .28); filter: blur(6px);
}
.hero__inner { position: relative; z-index: 1; max-width: 720px; }
.hero__eyebrow {
  display: inline-block; font-size: 13px; font-weight: 600; letter-spacing: .14em;
  text-transform: uppercase; color: var(--skf-gold);
  border: 1px solid rgba(246, 201, 69, .5); border-radius: 999px; padding: 7px 16px; margin-bottom: 26px;
}
.hero__title {
  font-family: var(--skf-font-head); font-weight: 700; font-size: 46px;
  line-height: 1.08; letter-spacing: -.01em; margin-bottom: 22px; color: #fff;
}
.hero__title .accent { color: var(--skf-gold); }
.hero__subhead { font-size: 17px; line-height: 1.55; color: rgba(255,255,255,.85); max-width: 580px; margin-bottom: 24px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 46px; }
.hero__stat {
  display: inline-flex; align-items: center; gap: 18px;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.18);
  border-radius: var(--skf-radius); padding: 16px 26px;
}
.hero__stat-number { font-family: var(--skf-font-head); font-size: 44px; font-weight: 700; color: var(--skf-gold); line-height: 1; }
.hero__stat-label { font-size: 15px; color: rgba(255,255,255,.85); max-width: 160px; line-height: 1.4; margin: 0; }

/* ==========================================================================
   IMPACT STATS BAND
   ========================================================================== */
.impact { margin-top: 20px; position: relative; z-index: 5; }
.impact__grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px;
  background: var(--skf-white); border-radius: var(--skf-radius-lg);
  box-shadow: var(--skf-shadow); padding: 34px 28px;
}
.impact__item { text-align: center; padding: 8px; }
.impact__number { font-family: var(--skf-font-head); font-size: 46px; font-weight: 700; color: var(--skf-green); line-height: 1; }
.impact__label { margin-top: 10px; font-size: 15px; color: var(--skf-ink-soft); font-weight: 500; }
.impact__item + .impact__item { border-left: 1px solid var(--skf-border); }

/* ==========================================================================
   SECTIONS
   ========================================================================== */
.section { padding: 96px 0; }
.section--cream { background: var(--skf-cream); }
.section--green { background: var(--skf-green-deep); color: #fff; }
.section--green h1, .section--green h2, .section--green h3, .section--green h4 { color: #fff; }
.section--green a { color: var(--skf-gold); }

.section__head { max-width: 640px; margin-bottom: 56px; }
.section__head--center { margin-left: auto; margin-right: auto; text-align: center; }
.section__eyebrow {
  font-size: 13px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
  color: var(--skf-cta-green); margin-bottom: 14px; display: block;
}
.section--green .section__eyebrow { color: var(--skf-gold); }
.section__title {
  font-family: var(--skf-font-head); font-size: 40px; font-weight: 700;
  line-height: 1.15; color: var(--skf-green-deep); margin-bottom: 18px;
}
.section--green .section__title { color: #fff; }
.section__intro { font-size: 18px; color: var(--skf-ink-soft); }
.section--green .section__intro { color: rgba(255,255,255,.8); }

/* ==========================================================================
   PROGRAMS
   ========================================================================== */
.programs__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.program-card {
  background: var(--skf-white); border-radius: var(--skf-radius-lg);
  overflow: hidden; border: 1px solid var(--skf-border);
  display: flex; flex-direction: column;
  transition: transform var(--skf-transition), box-shadow var(--skf-transition);
}
.program-card:hover, .program-card:focus-within { transform: translateY(-6px); box-shadow: var(--skf-shadow); }
.program-card__media { height: 210px; background: linear-gradient(135deg, #d9f2e4, #bfe9d2); position: relative; }
.program-card__media-icon {
  position: absolute; inset: 0; margin: auto; width: 72px; height: 72px;
  display: grid; place-items: center; border-radius: 20px; background: var(--skf-white);
  box-shadow: var(--skf-shadow);
}
.program-card__media-icon svg { width: 38px; height: 38px; fill: var(--skf-green); }
.program-card__body { padding: 28px 26px 30px; display: flex; flex-direction: column; flex: 1; }
.program-card__title { font-family: var(--skf-font-head); font-size: 24px; font-weight: 600; color: var(--skf-green-deep); margin-bottom: 12px; }
.program-card__excerpt { color: var(--skf-ink-soft); font-size: 16px; margin-bottom: 20px; }
.program-card__link { margin-top: auto; font-weight: 600; color: var(--skf-cta-green); display: inline-flex; align-items: center; gap: 8px; }
.program-card__link:hover, .program-card__link:focus { color: var(--skf-orange-ink); }
.program-card__link svg { width: 18px; height: 18px; fill: currentColor; }

/* ==========================================================================
   FOUNDER QUOTE
   ========================================================================== */
.quote { background: var(--skf-green-deep); position: relative; overflow: hidden; }
.quote::before {
  content: '\201C'; position: absolute; top: -60px; left: 30px;
  font-family: var(--skf-font-head); font-size: 340px; line-height: 1;
  color: rgba(255,255,255,.06);
}
.quote__inner { position: relative; max-width: 820px; margin: 0 auto; text-align: center; }
.quote__mark { font-family: var(--skf-font-head); font-size: 60px; color: var(--skf-gold); line-height: 1; display: block; margin-bottom: 16px; }
.quote__text {
  font-family: var(--skf-font-head); font-size: 30px; font-weight: 400; font-style: italic;
  line-height: 1.4; color: #fff; margin-bottom: 30px;
}
.quote__author { color: var(--skf-gold); font-weight: 600; font-size: 17px; letter-spacing: .02em; margin: 0; }
.quote__author-role { color: rgba(255,255,255,.65); font-size: 15px; }

/* ==========================================================================
   QUOTE SECTION (site-wide, after the first content section)
   Boxed within the template width so it matches the page's other sections.
   ========================================================================== */
.skf-quote-section { margin: 20px 0; padding: 0; }
.skf-quote-section__box { border-radius: 18px; padding: 56px 48px; }

@media (max-width: 640px) {
  .skf-quote-section { margin: 20px 0; padding: 0; }
  .skf-quote-section__box { padding: 32px 20px; }
}

/* ==========================================================================
   DONATION TIERS
   ========================================================================== */
.tiers__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.tier-card {
  background: var(--skf-white); border: 2px solid var(--skf-border); border-radius: var(--skf-radius-lg);
  padding: 38px 30px; text-align: center; display: flex; flex-direction: column;
  transition: all var(--skf-transition);
}
.tier-card:hover { border-color: var(--skf-cta-green); box-shadow: var(--skf-shadow); }
.tier-card--featured { border-color: var(--skf-green); background: linear-gradient(180deg, #f2fbf6, #fff); position: relative; }
.tier-card--featured::before {
  content: 'MOST IMPACT'; position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--skf-cta-orange); color: #fff; font-size: 11px; font-weight: 700;
  letter-spacing: .12em; padding: 6px 16px; border-radius: 999px; white-space: nowrap;
}
.tier-card__amount { font-family: var(--skf-font-head); font-size: 52px; font-weight: 700; color: var(--skf-green); line-height: 1; }
.tier-card__amount small { font-size: 20px; font-weight: 600; }
.tier-card__name { margin: 14px 0 12px; font-weight: 700; font-size: 17px; color: var(--skf-green-deep); }
.tier-card__desc { color: var(--skf-ink-soft); font-size: 15.5px; margin-bottom: 26px; flex: 1; }
.tiers__empty { background: var(--skf-white); border: 2px dashed var(--skf-border); border-radius: var(--skf-radius-lg); padding: 48px 32px; text-align: center; max-width: 640px; margin: 0 auto; }
.tiers__empty-text { color: var(--skf-ink-soft); font-size: 17px; margin-bottom: 26px; }

/* ==========================================================================
   CTA BAND
   ========================================================================== */
.cta-band { background: linear-gradient(120deg, var(--skf-cta-green) 0%, var(--skf-cta-green-dark) 100%); padding: 0 0 40px; }
.cta-band__inner { display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; gap: 24px; }
.cta-band__title { font-family: var(--skf-font-head); font-size: 34px; font-weight: 700; color: #fff; margin-bottom: 8px; }
.cta-band__text { color: rgba(255,255,255,.88); max-width: 520px; margin: 0; }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer { background: var(--skf-green-deep-2); color: rgba(255,255,255,.78); }
.footer-top { padding: 70px 0 50px; }
.footer-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 36px; }
.footer-brand { text-align: center; margin-bottom: 40px; }
.footer-brand__logo { height: 40px; width: auto; margin-bottom: 18px; }
.footer-brand__text { font-size: 15px; color: rgba(255,255,255,.62); max-width: 300px; }
.site-footer .site-title a { color: #fff; }
.site-footer .site-title a:hover, .site-footer .site-title a:focus { color: var(--skf-gold); }
.footer-widget h3, .footer-widget .footer-widget__title,
.site-footer .wp-block-heading { color: #fff; font-size: 16px; font-weight: 700; margin-bottom: 20px; letter-spacing: .02em; }
.footer-widget ul { list-style: none; margin: 0; }
.footer-widget ul li { margin-bottom: 12px; }
.footer-widget a { color: rgba(255,255,255,.72); font-size: 15px; }
.footer-widget a:hover, .footer-widget a:focus { color: var(--skf-gold); }
.footer-widget .widget-title { color: #fff; font-size: 16px; font-weight: 700; margin-bottom: 20px; }
.footer-widget .widget { margin-bottom: 32px; }
.newsletter__form { display: flex; gap: 10px; margin-top: 16px; flex-wrap: wrap; }
.newsletter__input {
  flex: 1; min-width: 180px; padding: 12px 16px; border-radius: 999px; border: 0;
  font-family: var(--skf-font-body); font-size: 15px; background: rgba(255,255,255,.12); color: #fff;
}
.newsletter__input::placeholder { color: rgba(255,255,255,.55); }
.newsletter__input:focus { outline: 2px solid var(--skf-gold); outline-offset: 2px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); padding: 22px 0; }
.footer-bottom__inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: 14px; color: rgba(255,255,255,.5); }
.footer-bottom a { color: rgba(255,255,255,.7); }
.footer-bottom ul { list-style: none; display: flex; gap: 18px; margin: 0; }

/* ==========================================================================
   PAGE / BLOG CONTENT
   ========================================================================== */
.site-main { padding: 72px 0 0; }
.site-main--narrow { max-width: 820px; margin: 0 auto; }
.site-main--builder { max-width: 100%; padding: 0; }
.site-main--builder .entry-content > * { max-width: 100%; }

.entry { margin-bottom: 56px; }
.entry-header { margin-bottom: 28px; }
.entry-title { font-family: var(--skf-font-head); font-size: 42px; font-weight: 700; color: var(--skf-green-deep); margin-bottom: 12px; }
.entry-meta { color: var(--skf-ink-soft); font-size: 15px; }
.entry-meta a { color: var(--skf-ink-soft); text-decoration: underline; }
.entry-meta a:hover { color: var(--skf-green-dark); }
.entry-meta > span { margin-right: 14px; }
.entry-content { font-size: 17px; }
.entry-content > * { max-width: 100%; }
/* Donation form: keep the 900px inline form inside content columns */
.entry-content > .skf-donate-inline { max-width: 900px; }
.entry-content a:not(.btn):not(.wp-block-button__link) { text-decoration: underline; text-underline-offset: 3px; }
.entry-content img { border-radius: var(--skf-radius); }
.entry-footer { margin-top: 28px; padding-top: 18px; border-top: 1px solid var(--skf-border); font-size: 15px; color: var(--skf-ink-soft); }

.post-thumbnail { margin-bottom: 28px; border-radius: var(--skf-radius-lg); overflow: hidden; }

/* Page hero banner (for non-front pages) */
.page-hero {
  background: linear-gradient(135deg, var(--skf-green-deep) 0%, var(--skf-green-deep-2) 100%);
  color: #fff; padding: 46px 0;
}
.page-hero__title { font-size: 44px; color: #fff; margin: 0; }
.page-hero__breadcrumb { color: rgba(255,255,255,.7); font-size: 14px; margin-top: 6px; }

/* Archive / search listing */
.post-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.post-card {
  background: var(--skf-white); border: 1px solid var(--skf-border); border-radius: var(--skf-radius-lg);
  overflow: hidden; display: flex; flex-direction: column;
  transition: transform var(--skf-transition), box-shadow var(--skf-transition);
}
.post-card:hover { transform: translateY(-4px); box-shadow: var(--skf-shadow); }
.post-card__body { padding: 24px; display: flex; flex-direction: column; flex: 1; }
.post-card__title { font-size: 22px; margin-bottom: 10px; }
.post-card__title a { color: var(--skf-green-deep); }
.post-card__title a:hover { color: var(--skf-cta-green-dark); }
.post-card__meta { font-size: 14px; color: var(--skf-ink-soft); margin-bottom: 12px; }
.post-card__excerpt { color: var(--skf-ink-soft); font-size: 15.5px; margin-bottom: 16px; flex: 1; }
.post-card__link { font-weight: 600; color: var(--skf-cta-green); }

.archive-header, .search-header { margin-bottom: 40px; padding-bottom: 24px; border-bottom: 1px solid var(--skf-border); }
.archive-title, .search-title { font-size: 36px; }

/* Pagination */
.pagination { margin-top: 48px; }
.pagination .nav-links { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.pagination a, .pagination span {
  display: inline-flex; align-items: center; justify-content: center; min-width: 44px; height: 44px;
  padding: 0 14px; border: 1px solid var(--skf-border); border-radius: 10px; font-weight: 500;
}
.pagination .current { background: var(--skf-cta-green); color: #fff; border-color: var(--skf-cta-green); }
.pagination a:hover { border-color: var(--skf-green); color: var(--skf-green-dark); }

/* Search form */
.search-form { display: flex; gap: 10px; max-width: 480px; }
.search-form .search-field { flex: 1; }
.search-form .search-submit { padding: 12px 22px; border-radius: 999px; border: 0; background: var(--skf-cta-green); color: #fff; font-weight: 600; cursor: pointer; }
.search-form .search-submit:hover { background: var(--skf-cta-green-dark); }

/* 404 */
.error-404 { text-align: center; padding: 80px 0; }
.error-404__code { font-family: var(--skf-font-head); font-size: 140px; font-weight: 700; color: var(--skf-green); line-height: 1; }
.error-404 .search-form { margin: 28px auto; }

/* Comments */
.comments-area { margin-top: 48px; }
.comments-title { font-size: 26px; margin-bottom: 20px; }
.comment-list { list-style: none; margin: 0 0 32px; }
.comment-list .comment { margin-bottom: 24px; }
.comment-body { border: 1px solid var(--skf-border); border-radius: var(--skf-radius); padding: 22px; }
.comment-meta { margin-bottom: 12px; }
.comment-author .avatar { border-radius: 50%; margin-right: 10px; vertical-align: middle; }
.comment-metadata { font-size: 13px; color: var(--skf-ink-soft); }
.comment-content { font-size: 16px; }
.reply { margin-top: 12px; }
.reply a { font-weight: 600; font-size: 14px; }
.comment-form p { margin-bottom: 18px; }
.comment-form .submit { background: var(--skf-cta-green); color: #fff; border: 0; padding: 13px 28px; border-radius: 999px; font-weight: 600; cursor: pointer; }
.comment-form .submit:hover { background: var(--skf-cta-green-dark); }

/* ==========================================================================
   GUTENBERG / BLOCK SUPPORT
   ========================================================================== */
.alignwide { margin-left: calc(50% - min(50%, calc(var(--skf-container) / 2 - var(--skf-gutter) / 2))); margin-right: calc(50% - min(50%, calc(var(--skf-container) / 2 - var(--skf-gutter) / 2))); width: auto; max-width: min(100%, calc(100% + var(--skf-gutter) * 2)); }
.alignfull { width: 100%; max-width: 100%; margin-left: 0; margin-right: 0; }
.aligncenter { display: block; margin-left: auto; margin-right: auto; }
.alignleft { float: left; margin-right: 24px; }
.alignright { float: right; margin-left: 24px; }

.wp-block-button__link { border-radius: 999px; }
.wp-block-button.is-style-skf-pill .wp-block-button__link,
.is-style-skf-pill > .wp-block-button__link { border-radius: 999px; padding: 14px 28px; }
.wp-block-button.is-style-skf-outline .wp-block-button__link,
.is-style-skf-outline > .wp-block-button__link { border-radius: 999px; background: transparent !important; color: #fff; border: 2px solid rgba(255,255,255,.7); }

/* WordPress core classes */
.wp-caption { max-width: 100%; margin-bottom: 1.2em; }
.wp-caption img { width: 100%; }
.wp-caption-text, .wp-block-image figcaption, .wp-caption .wp-caption-text { font-size: 14px; color: var(--skf-ink-soft); text-align: center; padding: 8px 0 0; }
.sticky { }
.gallery-caption { }
.bypostauthor { }

/* ==========================================================================
   TABS / ACCORDION COMPONENT
   No-JS fallback: all panels visible, stacked. JS adds `.skf-js` to <html>,
   which collapses the panels into a tabbed interface.
   ========================================================================== */
.skf-tabs { margin: 0 0 2.5rem; }
.skf-tabs__list {
  display: flex; flex-wrap: wrap; gap: 6px;
  border-bottom: 2px solid var(--skf-border); margin-bottom: 24px; padding-bottom: 0;
}
.skf-tabs__tab {
  display: inline-block; padding: 12px 22px; border-radius: 10px 10px 0 0;
  font-family: var(--skf-font-body); font-size: 16px; font-weight: 600; line-height: 1.2;
  color: var(--skf-ink-soft); background: transparent; text-decoration: none;
  border: 1px solid transparent; border-bottom: none; margin-bottom: -2px;
  transition: all var(--skf-transition);
}
.skf-tabs__tab:hover, .skf-tabs__tab:focus { color: var(--skf-cta-green); background: var(--skf-cream); }
.skf-tabs__tab.is-active { color: var(--skf-green-deep); border-color: var(--skf-border); background: var(--skf-white); box-shadow: 0 2px 0 0 var(--skf-white); }
.skf-tabs__tab[aria-selected="true"] { color: var(--skf-green-deep); font-weight: 700; }
.skf-tabs__panel { padding: 4px 2px 8px; }
.skf-tabs__heading { font-size: 22px; font-weight: 600; margin-bottom: .8em; }

/* JS enabled: collapse inactive panels */
.skf-js .skf-tabs__panel { display: none; }
.skf-js .skf-tabs__panel.is-active { display: block; }
.skf-js .skf-tabs__panel .skf-tabs__heading { display: none; }
   --------------------------------------------------------------------------
   Elementor: theme rules are scoped to the .site-header, .hero, .site-main,
   .site-footer and .entry* namespaces. No global max-width, no body-level
   resets, and nothing targets .elementor-* so Elementor's own styles always
    win inside its widgets. iframes (Zeffy embeds, video embeds) are fluid.
    ========================================================================== */
/* ==========================================================================
   THIRD-PARTY COMPATIBILITY (scoped so nothing fights Elementor)
   --------------------------------------------------------------------------
   Elementor: theme rules are scoped to the .site-header, .hero, .site-main,
   .site-footer and .entry* namespaces. No global max-width, no body-level
   resets, and nothing targets .elementor-* so Elementor's own styles always
   win inside its widgets. iframes (Zeffy embeds, video embeds) are fluid.
   ========================================================================== */
iframe { max-width: 100%; }
.entry-content iframe { display: block; margin: 0 auto; }
.zeffy-embed iframe, iframe.zeffy-embed, .zeffy-embed { max-width: 100%; }

/* WPForms / CF7 general form niceties without fighting their CSS */
div.wpforms-container-full .wpforms-form input[type="submit"], div.wpforms-container-full .wpforms-form button[type="submit"] { border-radius: 999px; }

/* Invisible reCAPTCHA v3 badge: prevent it from overflowing the viewport on
   small screens (CF7 loads it on pages with forms; the privacy notice is in
   the form itself). */
.grecaptcha-badge { visibility: hidden; }
@media (min-width: 641px) {
  .grecaptcha-badge { visibility: visible; }
}

/* ==========================================================================
   RESPONSIVE — breakpoints mirror the mockup
   ========================================================================== */
@media (max-width: 1024px) {
  .impact__grid { grid-template-columns: repeat(2, 1fr); gap: 26px; }
  .impact__item:nth-child(3) { border-left: 0; }
  .programs__grid, .tiers__grid, .post-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .hero__title { font-size: 46px; }
  h1 { font-size: 38px; }
  h2 { font-size: 32px; }
  .entry-title { font-size: 36px; }
}

@media (max-width: 860px) {
  .main-nav {
    position: absolute; top: 100%; left: 0; right: 0; background: var(--skf-white);
    border-bottom: 1px solid var(--skf-border);
    display: none; flex-direction: column; padding: 10px 24px 20px;
    box-shadow: 0 24px 40px rgba(10, 61, 46, .1);
  }
  .main-nav.is-open { display: block; }
  .main-nav ul { flex-direction: column; gap: 0; }
  .main-nav .sub-menu { position: static; display: none; box-shadow: none; border: 0; padding-left: 18px; }
  .main-nav li:hover > .sub-menu { display: flex; }
  .nav-toggle { display: block; }
}

@media (max-width: 640px) {
  body { font-size: 16px; }
  .section { padding: 68px 0; }
  .hero { padding: 40px 0 60px; }
  .hero__title { font-size: 36px; }
  .hero__subhead { font-size: 17px; }
  .hero__stat-number { font-size: 36px; }
  .hero__stat { padding: 14px 20px; gap: 14px; }
  .impact__grid, .programs__grid, .tiers__grid, .post-grid { grid-template-columns: 1fr; }
  .impact__item + .impact__item { border-left: 0; border-top: 1px solid var(--skf-border); }
  .section__title { font-size: 32px; }
  .quote__text { font-size: 24px; }
  .footer-grid { grid-template-columns: 1fr; }
  .site-title { font-size: 20px; }
  .site-main { padding: 24px 0 0; }
  .page-hero { padding: 12px 0; }
  .page-hero__title { font-size: 34px; }
  .cta-band { padding: 56px 0; }
}

/* Footer: nested sub-menus mirror the main nav groups */
.footer-widget .menu-item-has-children > a {
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 10px;
  display: inline-block;
  text-decoration: none;
}
.footer-widget .sub-menu { margin-left: 0; padding-left: 0; }
.footer-widget .sub-menu a { padding: 4px 0; display: inline-block; }

/* Nested dropdown fly-out (e.g. Supporters & Partners) */
.main-nav .sub-menu .sub-menu { top: 0; left: 100%; margin-left: 4px; }

/* Header CTAs: even spacing between the nav and the two buttons */
.header-cta { gap: 10px; margin-left: 8px; }
.header-cta .btn { min-width: 0; white-space: nowrap; }

/* Mobile: brand + hamburger on row 1, CTA buttons wrap to a full-width row 2 */
@media (max-width: 640px) {
  .site-header__inner { flex-wrap: wrap; row-gap: 10px; }
  .site-branding__text { position: static; }
  .site-header .site-description { position: static; transform: none; white-space: normal; text-align: center; font-size: 9px; margin: 2px 0 0; max-width: 210px; }
  .header-cta { order: 6; flex: 1 1 100%; justify-content: center; margin-left: 0; gap: 10px; }
  .header-cta .btn { flex: 1 1 auto; max-width: 170px; padding: 10px 18px; font-size: 14px; }
}

/* Mobile: keep every page from overflowing horizontally */
@media (max-width: 640px) {
  html, body { overflow-x: clip; }
  img, iframe, .wp-block-image, .skf-row, .skf-section__inner, .container { max-width: 100%; }
}

/* Subtle SKF logo cursor-trail (desktop only, native cursor kept) */
.skf-cursor-trail {
  position: fixed; top: 0; left: 0; width: 38px; height: 38px;
  pointer-events: none; z-index: 9999; opacity: 0;
  transition: opacity .3s ease;
}
.skf-cursor-trail img {
  width: 38px; height: 38px; opacity: .9;
  /* 3D lift that follows the transparent logo silhouette — no solid background */
  filter: drop-shadow(0 3px 5px rgba(10, 61, 46, .35)) drop-shadow(0 1px 2px rgba(0, 0, 0, .18));
}
@media (pointer: coarse) { .skf-cursor-trail { display: none; } }
@media (prefers-reduced-motion: reduce) { .skf-cursor-trail { display: none; } }

/* Prevent minor horizontal overscroll from legacy content / embeds */
html { overflow-x: clip; } body { overflow-x: clip; }

/* 2-column page template (image + content) */
.skf-row.is-layout-2 .skf-column { justify-content: center; }
.skf-row.is-layout-2 .skf-column img { width: 100%; height: 320px; object-fit: cover; border-radius: 18px; }
.skf-row.is-layout-2 .skf-column .skf-logo-placeholder {
  width: 100%; height: 320px; display: flex; align-items: center; justify-content: center;
  background: var(--skf-cream, #f4f7f2); border-radius: 18px;
}
.skf-row.is-layout-2 .skf-column .skf-logo-placeholder img { width: 150px; height: 150px; object-fit: contain; border-radius: 0; }
@media (max-width: 640px) {
  .skf-row.is-layout-2 .skf-column img,
  .skf-row.is-layout-2 .skf-column .skf-logo-placeholder { height: 220px; }
}

/* Uniform equal-height sections (2-col + quote bands) */
.skf-row.is-layout-2 { min-height: 467px; }
.skf-section:has(.skf-quote) .skf-section__inner { min-height: 234px; display: flex; align-items: center; }

/* Narrow Quote Section — a compact quote band (1/4 the standard height) */
.skf-section.skf-narrow-quote .skf-section__inner { min-height: 117px; }
.skf-section.skf-narrow-quote .skf-quote { margin: 0; }

/* Compact the quote content so the narrow band fits 1/4 height */
.skf-section.skf-narrow-quote .skf-quote { padding: 12px 24px; margin: 0; border-radius: 12px; }
.skf-section.skf-narrow-quote .skf-quote__mark { display: none; }
.skf-section.skf-narrow-quote .skf-quote__text { font-size: 17px; margin: 0 0 2px; }
.skf-section.skf-narrow-quote .skf-quote__author,
.skf-section.skf-narrow-quote .skf-quote__role { font-size: 13px; margin: 0; display: inline; }
.skf-section.skf-narrow-quote .skf-quote__author::after { content: ' \2014  '; }

/* Content column matches the image height (320px), vertically centred */
.skf-row.is-layout-2 .skf-text-block { min-height: 320px; display: flex; flex-direction: column; justify-content: center; }
.skf-compact-list { margin: 0 0 0 18px; padding: 0; }
.skf-compact-list li { margin-bottom: 6px; }

/* Tighten section separators (remove excess white space between sections) */
.skf-accent-divider { margin: 0.5rem 0; }

/* Footer: Get Involved as a CTA button */
.footer-widget .menu-item.footer-cta > a {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 10px 24px; border-radius: 999px;
  background: var(--skf-cta-orange, #c84f00); color: #fff; font-weight: 600;
  line-height: 1.4; margin-bottom: 10px; overflow: visible;
}
.footer-widget .menu-item.footer-cta > a:hover,
.footer-widget .menu-item.footer-cta > a:focus { background: var(--skf-cta-orange-dark, #a84200); color: #fff; }

/* Tricolor section cards: light background + border, distinct per section */
.skf-sec-saffron .skf-section__inner { background: #fff4ec; border: 1px solid #ffb27a; }
.skf-sec-green   .skf-section__inner { background: #eef9f2; border: 1px solid #7fce9e; }
.skf-sec-teal    .skf-section__inner { background: #eaf7f6; border: 1px solid #63c0b7; }
.skf-sec-gold    .skf-section__inner { background: #fbf7ea; border: 1px solid #f3d87e; }
.skf-sec-saffron .skf-section__inner,
.skf-sec-green   .skf-section__inner,
.skf-sec-teal    .skf-section__inner,
.skf-sec-gold    .skf-section__inner { border-radius: 18px; padding: 20px 28px; }

/* Footer subgroup: plain label + indented children */
.footer-widget .menu-item.footer-subgroup > a {
  color: rgba(255, 255, 255, .72); font-weight: 400; font-size: 15px;
  margin: 0 0 6px; display: inline-block;
}
.footer-widget .menu-item.footer-subgroup > .sub-menu { padding-left: 14px; }

/* Center the brand tagline under the wordmark + center the 4 footer columns */
.footer-brand__text { margin: 0 auto; }
.footer-widget { text-align: left; }

/* Header: single row — brand, menu and CTAs on one line (desktop only) */
@media (min-width: 641px) {
  .site-header__inner { flex-wrap: nowrap; }
}
.site-branding { flex: 0 0 auto; }
.main-nav a { font-size: 14px; padding: 8px 10px; }

/* 20px clearance below the Get Involved CTA button so it never touches the footer */
.has-skf-saffron-to-forest-gradient-background { padding-bottom: 20px; }

/* Compact tagline so the header stays one line and menu aligns with the title */
.site-header .site-description { font-size: 9px; line-height: 1.1; margin: 2px 0 0; }

/* Tune header alignment: title + compact tagline align with the menu line */
.site-header .site-title { line-height: 1.1; margin: 0; }
.site-header .site-description { font-size: 8px; line-height: 1; margin: 1px 0 0; }

/* Tagline floats below the title, centred under it */
.site-branding__text { position: relative; }
.site-header .site-description {
  position: absolute; top: 100%; left: 50%; transform: translateX(-50%);
  white-space: nowrap; font-size: 9.5px; line-height: 1; margin: 0;
}
@media (max-width: 640px) {
  .site-branding__text { position: static; }
  .site-header .site-description { position: static; transform: none; white-space: normal; text-align: center; font-size: 9px; margin: 2px 0 0; max-width: 200px; }
}

/* Tighter rhythm: less space after CTA band, compact hero-to-content, one-line footer tagline */

.site-main { padding-top: 36px; }
.site-main { padding-bottom: 0; }
.footer-brand__text { font-size: 12px; max-width: none; white-space: nowrap; }

/* Align the footer-bottom bar with the footer menubar columns (keep container gutter) */
.footer-bottom__inner { padding: 0 var(--skf-gutter); }

/* Uniform 960px width: title bar, quote bars and footer CTA bands match the content */
.page-hero,
.skf-section.has-skf-forest-background-color,
.skf-section.has-skf-saffron-to-forest-gradient-background {
  max-width: 1200px; margin-left: auto; margin-right: auto; border-radius: 18px;
}
.page-hero { border-radius: 0; }

/* Footer CTA band matches the page content width */
.cta-band { max-width: 1200px; margin-left: auto; margin-right: auto; border-radius: 18px; }

/* Standard quote bar: fixed at 50% height, compact content (narrow quotes unaffected) */
.skf-section:has(.skf-quote):not(.skf-narrow-quote) .skf-section__inner { height: 234px; overflow: hidden; }
.skf-section:has(.skf-quote):not(.skf-narrow-quote) .skf-quote { padding: 16px 32px; margin: 0; }
.skf-section:has(.skf-quote):not(.skf-narrow-quote) .skf-quote__mark { font-size: 36px; }
.skf-section:has(.skf-quote):not(.skf-narrow-quote) .skf-quote__text { font-size: 21px; margin-bottom: 6px; }
.skf-section:has(.skf-quote):not(.skf-narrow-quote) .skf-quote__author,
.skf-section:has(.skf-quote):not(.skf-narrow-quote) .skf-quote__role { font-size: 14px; margin: 0; }

/* Separate the title bar from the header so it is never visually cut */
.page-hero { margin-top: 20px; border-radius: 0; }

/* Make the entire homepage program card clickable (stretched link) */
.program-card { position: relative; }
.program-card .program-card__link::after { content: ''; position: absolute; inset: 0; z-index: 1; }
.program-card__title, .program-card__excerpt, .program-card__media { position: relative; z-index: 0; }

/* Homepage: every section max-width 1200px, centered */
.site-main--home .hero,
.site-main--home .impact,
.site-main--home .section,
.site-main--home .section--cream {
  max-width: 1200px; margin-left: auto; margin-right: auto;
}

/* Quote + CTA sections match the page content width (1200px, centered) */
.site-main--home .quote,
.site-main--home .cta-band {
  max-width: 1200px; margin-left: auto; margin-right: auto; border-radius: 18px;
}

/* Our Causes: title bar background image (matches production) */
.page-id-12865 .page-hero {
  background-image: linear-gradient(rgba(10, 61, 46, 0.15), rgba(10, 61, 46, 0.15)), url(var(--skf-uploads)/girl-education-2_41048771435_o.jpg);
  background-size: cover;
  background-position: center;
}

/* Title bar background images (match production) */
.page-id-11825 .page-hero,
.page-id-11813 .page-hero,
.page-id-11837 .page-hero {
  background-size: cover;
  background-position: center;
}
.page-id-11825 .page-hero {
  background-image: linear-gradient(rgba(10, 61, 46, 0.15), rgba(10, 61, 46, 0.15)), url(var(--skf-uploads)/banner_40199797060_o.jpg);
}
.page-id-11813 .page-hero {
  background-image: linear-gradient(rgba(10, 61, 46, 0.15), rgba(10, 61, 46, 0.15)), url(var(--skf-uploads)/girls-education-1_28076705828_o.jpg);
}
.page-id-11837 .page-hero {
  background-image: linear-gradient(rgba(10, 61, 46, 0.15), rgba(10, 61, 46, 0.15)), url(var(--skf-uploads)/banner25_43021810672_o.jpg);
}

/* 60px space between each body content section (all pages) */
.site-main .wp-block-skf-tricolor-section:not(:last-child) { margin-bottom: 20px; }
.skf-accent-divider { margin: 0; }

/* Mobile: move the hamburger to the left of the brand */
@media (max-width: 860px) {
  .nav-toggle { order: -1; }
}

/* Homepage vision section: content left, video right */
.vision__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.vision__text { font-size: 17px; line-height: 1.7; color: var(--skf-ink-soft); margin-bottom: 0; }
.vision__video { position: relative; padding-top: 56.25%; border-radius: 18px; overflow: hidden; box-shadow: var(--skf-shadow); }
.vision__video iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: 0; }
@media (max-width: 860px) {
  .vision__grid { grid-template-columns: 1fr; gap: 28px; }
}

/* Homepage content boxes: bordered light tricolor cards per section */
.site-main--home .section.vision,
.site-main--home .impact,
.site-main--home .section:not(.quote),
.site-main--home .section.section--cream {
  border-radius: 18px;
  padding: 44px 40px;
}
.site-main--home .impact { background: #eef9f2; border: 1px solid #7fce9e; }
.site-main--home .impact { padding: 14px 40px; }
.site-main--home .section:not(.quote) { background: #eaf7f6; border: 1px solid #63c0b7; }
.site-main--home .section.section--cream { background: #fbf7ea; border: 1px solid #f3d87e; }
.site-main--home .section.vision { background: #fff4ec; border: 1px solid #ffb27a; }

/* 20px vertical space between the stacked homepage section cards */
.site-main--home .impact,
.site-main--home .section,
.site-main--home .cta-band,
.site-main--home .skf-site-faq { margin-bottom: 20px; }

/* Title bar background images for all pages (matching production) */

.page-id-12634 .page-hero,
.page-id-11827 .page-hero,
.page-id-11894 .page-hero,
.page-id-11892 .page-hero,
.page-id-11944 .page-hero,
.page-id-11839 .page-hero,
.page-id-11954 .page-hero,
.page-id-11950 .page-hero,
.page-id-11958 .page-hero { background-size: cover; background-position: center; }
.page-id-12634 .page-hero { background-image: linear-gradient(rgba(10,61,46,0.6), rgba(10,61,46,0.6)), url(var(--skf-uploads)/2019/02/support-a-girl-program-2_27078850347_o.jpg); }
.page-id-11827 .page-hero { background-image: linear-gradient(rgba(10,61,46,0.6), rgba(10,61,46,0.6)), url(var(--skf-uploads)/2019/02/child-marriage-1_42359182311_o.jpg); }
.page-id-11894 .page-hero { background-image: linear-gradient(rgba(10,61,46,0.6), rgba(10,61,46,0.6)), url(var(--skf-uploads)/social-enterprise-1_41230109664_o.jpg); }
.page-id-11892 .page-hero { background-image: linear-gradient(rgba(10,61,46,0.6), rgba(10,61,46,0.6)), url(var(--skf-uploads)/2018/05/SkillsDevelopment1.jpg); }
.page-id-11944 .page-hero { background-image: linear-gradient(rgba(10,61,46,0.6), rgba(10,61,46,0.6)), url(var(--skf-uploads)/2019/02/our-team_41578798285_o.jpg); }
.page-id-11839 .page-hero { background-image: linear-gradient(rgba(10,61,46,0.6), rgba(10,61,46,0.6)), url(var(--skf-uploads)/2018/05/SKF-Stay-Connected-1.jpg); }
.page-id-11954 .page-hero { background-image: linear-gradient(rgba(10,61,46,0.6), rgba(10,61,46,0.6)), url(var(--skf-uploads)/2019/02/impact-garbhanga_40199800020_o.jpg); }
.page-id-11950 .page-hero { background-image: linear-gradient(rgba(10,61,46,0.6), rgba(10,61,46,0.6)), url(var(--skf-uploads)/2019/02/banner22_41260053440_o.jpg); }
.page-id-11958 .page-hero { background-image: linear-gradient(rgba(10,61,46,0.6), rgba(10,61,46,0.6)), url(var(--skf-uploads)/2019/02/impact-garbhanga_40199800020_o.jpg); }

/* Stay Connected channel cards */
.skf-channel-card { border-radius: 18px; padding: 30px 24px; height: 100%; display: flex; flex-direction: column; }
.skf-channel-card.skf-sec-saffron { background: #fff4ec; border: 1px solid #ffb27a; }
.skf-channel-card.skf-sec-green { background: #eef9f2; border: 1px solid #7fce9e; }
.skf-channel-card.skf-sec-teal { background: #eaf7f6; border: 1px solid #63c0b7; }
.skf-channel-card.skf-sec-gold { background: #fbf7ea; border: 1px solid #f3d87e; }
.skf-channel-card h3 { margin: 0 0 10px; }
.skf-channel-card p { flex: 1; margin: 0 0 16px; color: var(--skf-ink-soft); }
.skf-channel-card__link { color: var(--skf-cta-green, #007a44); font-weight: 600; }

/* Stay Connected cards: image backgrounds with light overlay */
.skf-channel-card { background-size: cover; background-position: center; }

/* Brand-logo cards: logo centered (contain), clean tinted background */
.skf-channel-card--logo { background-size: contain; background-repeat: no-repeat; background-position: center; }

/* Blog (posts page): title bar background image (matches Stay Connected band) */
.page-id-11968 .page-hero,
.blog .page-hero {
  background-image: linear-gradient(rgba(10,61,46,0.6), rgba(10,61,46,0.6)), url(var(--skf-uploads)/skf_blog_slide1.jpg);
  background-size: cover;
  background-position: center;
}

/* ==========================================================================
   FAQ accordion (skf-tricolor/faq block)
   ========================================================================== */
.skf-faq { max-width: 100%; margin: 0 auto; }
.skf-faq__item {
  border: 1px solid var(--skf-border);
  border-radius: 12px;
  background: var(--skf-white);
  margin-bottom: 12px;
  overflow: hidden;
  transition: box-shadow var(--skf-transition);
}
.skf-faq__item.is-open { box-shadow: var(--skf-shadow); border-color: var(--skf-cta-green); }
.skf-faq__question { margin: 0; }
.skf-faq__toggle {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 18px 22px; text-align: left; background: none; border: 0; cursor: pointer;
  font-family: var(--skf-font-head); font-size: 18px; font-weight: 700; color: var(--skf-green-deep);
}
.skf-faq__toggle:hover, .skf-faq__toggle:focus-visible { color: var(--skf-cta-green-dark); }
.skf-faq__icon {
  flex: 0 0 auto; width: 22px; height: 22px; position: relative;
  border: 2px solid var(--skf-cta-green); border-radius: 50%;
}
.skf-faq__icon::before, .skf-faq__icon::after {
  content: ''; position: absolute; background: var(--skf-cta-green); top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}
.skf-faq__icon::before { width: 10px; height: 2px; }
.skf-faq__icon::after { width: 2px; height: 10px; transition: transform .2s ease; }
.skf-faq__item.is-open .skf-faq__icon::after { transform: translate(-50%, -50%) rotate(90deg); }
.skf-faq__panel { padding: 0 22px 20px; color: var(--skf-ink-soft); font-size: 16px; line-height: 1.7; }
.skf-faq__panel p { margin: 0 0 12px; }
.skf-faq__panel p:last-child { margin-bottom: 0; }
.skf-faq__empty { text-align: center; color: var(--skf-ink-soft); padding: 24px 0; }

/* Normalize FAQ answers: same font size and weight, no bold */
.skf-faq__panel p,
.skf-faq__panel span,
.skf-faq__panel div,
.skf-faq__panel li,
.skf-faq__panel a,
.skf-faq__panel strong,
.skf-faq__panel b,
.skf-faq__panel h1,
.skf-faq__panel h2,
.skf-faq__panel h3,
.skf-faq__panel h4,
.skf-faq__panel h5,
.skf-faq__panel h6 {
  font-size: 16px !important;
  font-weight: 400 !important;
}
.skf-faq__panel ul { margin: 0 0 12px; padding-left: 22px; }
.skf-faq__panel li { margin: 0 0 8px; }

/* FAQ block: heading + live search box */
.skf-faq-wrap { max-width: var(--skf-container, 1200px); margin: 0 auto; padding: 0 var(--skf-gutter, 24px) 48px; }
.skf-faq__heading {
  font-family: var(--skf-font-head); font-size: 30px; font-weight: 700;
  color: var(--skf-green-deep); margin: 0 0 22px;
}
.skf-faq-search {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  max-width: 800px; margin: 20px auto 26px;
  padding: 10px 12px 10px 20px;
  border: 2px solid var(--skf-blue-deep, #0a0369); border-radius: 999px;
  background: #f0f3fb;
  box-shadow: 0 4px 16px rgba(10, 3, 105, 0.08);
  transition: border-color var(--skf-transition), box-shadow var(--skf-transition);
}
.skf-faq-search:focus-within {
  border-color: var(--skf-blue-dark, #2b6cb0);
  box-shadow: 0 0 0 4px rgba(43, 108, 176, 0.18);
}
.skf-faq-search__field {
  flex: 1; min-width: 0; padding: 10px 8px; font-size: 16px; color: var(--skf-blue-deep, #0a0369);
  border: 0; border-radius: 999px; background: transparent;
  transition: box-shadow var(--skf-transition);
}
.skf-faq-search__field::placeholder { color: #6f8fc9; opacity: 1; }
.skf-faq-search__field:focus { outline: none; box-shadow: none; }
.skf-faq-search__button {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  flex: 0 0 auto; padding: 12px 26px; font-size: 15px; font-weight: 600; line-height: 1.2; cursor: pointer;
  color: #fff; background: var(--skf-blue-deep, #0a0369); border: 2px solid transparent; border-radius: 999px;
  font-family: var(--skf-font-body); transition: all var(--skf-transition);
}
.skf-faq-search__button:hover, .skf-faq-search__button:focus {
  background: var(--skf-blue-dark, #2b6cb0); color: #fff; transform: translateY(-2px);
}
.skf-faq__item[style*="display: none"] { display: none !important; }

/* ==========================================================================
   Pre-footer: site-wide FAQ
   ========================================================================== */
.skf-pre-footer { padding: 0; }
.skf-pre-footer__inner { max-width: 1200px; margin: 0 auto; }

.skf-site-faq {
   margin: 0 0 20px;
   background: var(--skf-cream);
   border: 1px solid var(--skf-border);
   border-radius: 18px;
   padding: 24px 40px;
 }
.skf-site-faq__title {
  text-align: center; font-family: var(--skf-font-head); font-size: 34px; font-weight: 700;
  color: var(--skf-green-deep); margin: 0 0 20px;
}
.skf-site-faq .skf-faq { max-width: 100%; }
.skf-body-row__inner { max-width: 1200px; margin: 0 auto; padding: 0; }

@media (max-width: 640px) {
  .skf-site-faq { padding: 28px 20px; }
  .skf-site-faq__title { font-size: 26px; }
}

/* SKF Builder: section width options (default 1200) */
.skf-section.skf-width-1200 .skf-section__inner { max-width: 1200px; }
.skf-section.skf-width-full .skf-section__inner { max-width: 100%; }
.skf-section.skf-width-960 .skf-section__inner { max-width: 960px; }
.skf-section.skf-width-820 .skf-section__inner { max-width: 820px; }
.skf-section .skf-section__inner { margin-left: auto; margin-right: auto; padding-left: 24px; padding-right: 24px; }


/* Our Causes page (12865): box each paragraph */
.page-id-12865 .skf-section__inner ul { list-style: none; padding-left: 0; }
.page-id-12865 .skf-section__inner li,
.page-id-12865 .skf-section__inner p {
  background: #fff;
  border: 1px solid var(--skf-border, #dfe8e1);
  border-radius: 10px;
  padding: 14px 16px;
  margin: 10px 0;
}
.page-id-12865 .skf-section__inner li li { margin-left: 0; }
.page-id-12865 .skf-section__inner h2.wp-block-heading { margin-bottom: 14px; }
/* reduce content font: paragraphs are not big/bold */
.page-id-12865 .skf-section__inner li h3,
.page-id-12865 .skf-section__inner p {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.65;
}
.page-id-12865 .skf-section__inner li h3 { margin: 0; color: inherit; }
.page-id-12865 .skf-row { align-items: flex-start; }
/* ==========================================================================
   SKF TRICOLOR BLOCKS (ported from skf-tricolor-builder plugin)
   Layout CSS for Section / Row / Column and content blocks. Kept so pages keep
   rendering after the plugin was removed.
   ========================================================================== */
/* box-sizing + visibility + fade-in (from plugin frontend.css) */

/**
 * SKF Tricolor Builder — shared front-end behaviour CSS.
 * Theme-independent box-sizing + visibility toggles + fade-in-on-scroll
 * (reduced-motion aware).
 *
 * @package SKF_Tricolor_Builder
 */

/* ---- Theme-independent box sizing ---- */
/* The plugin must not rely on a theme's global `* { box-sizing: border-box }`
   reset. Scoping border-box to the plugin's own blocks (and their descendants)
   keeps every layout intact under default, block and third-party themes. */
.wp-block-skf-tricolor-section,
.wp-block-skf-tricolor-row,
.wp-block-skf-tricolor-column,
.wp-block-skf-tricolor-stat-tile,
.wp-block-skf-tricolor-program-card,
.wp-block-skf-tricolor-donation-tier,
.wp-block-skf-tricolor-testimonial,
.wp-block-skf-tricolor-verified-badge,
.wp-block-skf-tricolor-accent-divider,
.wp-block-skf-tricolor-section *,
.wp-block-skf-tricolor-row *,
.wp-block-skf-tricolor-column *,
.wp-block-skf-tricolor-stat-tile *,
.wp-block-skf-tricolor-program-card *,
.wp-block-skf-tricolor-donation-tier *,
.wp-block-skf-tricolor-testimonial *,
.wp-block-skf-tricolor-verified-badge *,
.wp-block-skf-tricolor-accent-divider * {
	box-sizing: border-box;
}

/* ---- Visibility toggles ---- */
.skf-hide-mobile { display: none !important; }
@media ( min-width: 640px ) {
	.skf-hide-mobile { display: revert !important; }
}
.skf-hide-tablet { display: revert !important; }
@media ( min-width: 640px ) and ( max-width: 1023px ) {
	.skf-hide-tablet { display: none !important; }
}
.skf-hide-desktop { display: revert !important; }
@media ( min-width: 1024px ) {
	.skf-hide-desktop { display: none !important; }
}

/* ---- Fade-in on scroll ---- */
.skf-fade-in {
	opacity: 0;
	transform: translateY( 16px );
	transition: opacity 0.6s ease, transform 0.6s ease;
}

.skf-fade-in.is-visible {
	opacity: 1;
	transform: none;
}

/* Respect the OS reduced-motion preference: content simply appears. */
@media ( prefers-reduced-motion: reduce ) {
	.skf-fade-in {
		opacity: 1;
		transform: none;
		transition: none;
	}
}

/* Editor: keep blocks visible and editable even with the class applied. */
.editor-styles-wrapper .skf-fade-in {
	opacity: 1;
	transform: none;
}

/* ---- block: section ---- */
.skf-section{background-position:50%;background-size:cover;position:relative}.skf-section.is-full-bleed{width:100%}.skf-section.is-full-bleed .skf-section__inner{margin:0 auto;max-width:1200px;padding-left:24px;padding-right:24px}.skf-section.is-contained{margin-left:auto;margin-right:auto;max-width:1200px}.skf-section__inner>*+*{margin-top:0}

/* ---- block: row ---- */
.skf-row{align-items:stretch;display:flex;flex-wrap:wrap;column-gap:24px;row-gap:20px}.skf-row>*,.skf-row>.skf-column,.skf-row>.wp-block{flex:1 1 100%;min-width:0}.skf-row.is-layout-1>*{flex-basis:100%;flex-grow:0}.skf-row.is-layout-2>*{flex-basis:calc(50% - 12px);flex-grow:1}.skf-row.is-layout-3>*{flex-basis:calc(33.333% - 16px);flex-grow:1}.skf-row.is-layout-4>*{flex-basis:calc(25% - 18px);flex-grow:1}.skf-row.is-layout-60-40>:first-child{flex-basis:calc(60% - 10px);flex-grow:1}.skf-row.is-layout-40-60>:first-child,.skf-row.is-layout-60-40>:last-child{flex-basis:calc(40% - 14px);flex-grow:1}.skf-row.is-layout-40-60>:last-child{flex-basis:calc(60% - 10px);flex-grow:1}@media(max-width:781px){.skf-row>*{flex-basis:100%!important}}

/* ---- block: column ---- */
.skf-column{display:flex;flex-direction:column}.skf-column.is-vert-align-middle{justify-content:center}.skf-column.is-vert-align-bottom{justify-content:flex-end}.skf-column>*{max-width:100%;width:100%}.editor-styles-wrapper .skf-column{display:flex;flex-direction:column;min-height:60px}.editor-styles-wrapper .skf-column.is-vert-align-middle{justify-content:center}.editor-styles-wrapper .skf-column.is-vert-align-bottom{justify-content:flex-end}

/* ---- grid layout: unequal column splits (Avada-compatible) ---- */
/* A row may carry is-layout-2-1, 1-2, 3-1, 1-3, 4-1, 1-4, 3-4, 4-3 ...
   alongside the equal is-layout-N. Columns stretch to equal height and stack
   on mobile. Used by pages converted from Avada so side-by-side content keeps
   its proportions instead of flattening to a single column. */
.skf-row.is-layout-2-1>*:first-child{flex-basis:calc(66.666% - 12px)}.skf-row.is-layout-2-1>*:nth-child(n+2){flex-basis:calc(33.333% - 12px)}
.skf-row.is-layout-1-2>*:first-child{flex-basis:calc(33.333% - 12px)}.skf-row.is-layout-1-2>*:nth-child(n+2){flex-basis:calc(66.666% - 12px)}
.skf-row.is-layout-3-1>*:first-child{flex-basis:calc(75% - 6px)}.skf-row.is-layout-3-1>*:nth-child(n+2){flex-basis:calc(25% - 18px)}
.skf-row.is-layout-1-3>*:first-child{flex-basis:calc(25% - 18px)}.skf-row.is-layout-1-3>*:nth-child(n+2){flex-basis:calc(75% - 6px)}
.skf-row.is-layout-4-1>*:first-child{flex-basis:calc(80% - 6px)}.skf-row.is-layout-4-1>*:nth-child(n+2){flex-basis:calc(20% - 19px)}
.skf-row.is-layout-1-4>*:first-child{flex-basis:calc(20% - 19px)}.skf-row.is-layout-1-4>*:nth-child(n+2){flex-basis:calc(80% - 6px)}
.skf-row.is-layout-3-4>*:first-child{flex-basis:calc(75% - 6px)}.skf-row.is-layout-3-4>*:nth-child(n+2){flex-basis:calc(25% - 18px)}
.skf-row.is-layout-4-3>*:first-child{flex-basis:calc(57.14% - 10px)}.skf-row.is-layout-4-3>*:nth-child(n+2){flex-basis:calc(42.85% - 14px)}
@media(max-width:781px){.skf-row.is-layout-2-1>*,.skf-row.is-layout-1-2>*,.skf-row.is-layout-3-1>*,.skf-row.is-layout-1-3>*,.skf-row.is-layout-4-1>*,.skf-row.is-layout-1-4>*,.skf-row.is-layout-3-4>*,.skf-row.is-layout-4-3>*{flex-basis:100%!important}}

/* equal-height cards inside any grid row */
.skf-grid-card{display:flex;flex-direction:column;height:100%}.skf-grid-card>*{width:100%}.skf-grid-card img{display:block;height:auto;width:100%}.skf-grid-card .skf-grid-card__body{display:flex;flex:1;flex-direction:column;padding:20px 22px}.skf-grid-card .skf-grid-card__body .skf-grid-card__link{margin-top:auto}.skf-grid-card.is-surface{background:var(--skf-white,#fff);border:1px solid var(--skf-border,#dfe8e1);border-radius:18px;box-shadow:0 18px 40px rgba(10,61,46,.08);overflow:hidden}


/* ---- block: stat-tile ---- */
.skf-stat-tile{align-items:center;display:flex;flex-direction:column;gap:8px;padding:24px 16px;text-align:center}.skf-stat-tile__icon{align-items:center;background:var(--skf-cream,#f4f7f2);border-radius:16px;color:var(--skf-forest,#0a3d2e);display:inline-flex;height:52px;justify-content:center;width:52px}.skf-stat-tile__icon svg{fill:currentColor;height:28px;width:28px}.skf-stat-tile__number{color:var(--skf-green-dark,#007a44);font-family:var(--skf-font-head,Georgia,serif);font-size:46px;font-weight:700;line-height:1}.skf-stat-tile__label{color:var(--skf-ink-soft,#4a5a50);font-size:15px;font-weight:500}.skf-stat-tile.is-surface-light{background:var(--skf-cream,#f4f7f2);border-radius:18px}.skf-stat-tile.is-surface-dark{background:var(--skf-forest,#0a3d2e);border-radius:18px}.skf-stat-tile.is-surface-dark .skf-stat-tile__number{color:var(--skf-gold,#f6c945)}.skf-stat-tile.is-surface-dark .skf-stat-tile__label{color:hsla(0,0%,100%,.75)}.skf-stat-tile.is-surface-dark .skf-stat-tile__icon{background:hsla(0,0%,100%,.12);color:var(--skf-gold,#f6c945)}

/* ---- block: program-card ---- */
.skf-program-card{background:var(--skf-white,#fff);border:1px solid var(--skf-border,#dfe8e1);border-radius:18px;box-shadow:0 18px 40px rgba(10,61,46,.08);display:flex;flex-direction:column;height:100%;overflow:hidden}.skf-program-card__media{align-items:center;background:linear-gradient(135deg,#d9f2e4,#bfe9d2);display:flex;height:180px;justify-content:center;overflow:hidden;position:relative}.skf-program-card__media img{display:block;height:100%;object-fit:cover;width:100%}.skf-program-card__glyph{background:var(--skf-white,#fff);border-radius:20px;box-shadow:0 12px 28px rgba(10,61,46,.14);height:64px;position:relative;width:64px}.skf-program-card__glyph:before{background:var(--skf-green,#00a25a);border-radius:6px;content:"";inset:18px;position:absolute}.skf-program-card__body{display:flex;flex:1;flex-direction:column;padding:24px}.skf-program-card__title{color:var(--skf-forest,#0a3d2e);font-family:var(--skf-font-head,Georgia,serif);font-size:22px;font-weight:600;margin:0 0 10px}.skf-program-card__excerpt{color:var(--skf-ink-soft,#4a5a50);flex:1;font-size:15.5px;margin:0 0 18px}.skf-program-card__link{color:var(--skf-green-dark,#007a44);font-weight:600;margin-top:auto;text-decoration:underline;text-underline-offset:3px}.skf-program-card__link:focus,.skf-program-card__link:hover{color:var(--skf-saffron-dark,#a84200)}.skf-program-card__link.is-static{color:var(--skf-ink-soft,#4a5a50)}.skf-program-card.is-surface-light{background:var(--skf-cream,#f4f7f2)}.skf-program-card.is-surface-dark{background:var(--skf-forest,#0a3d2e);border-color:var(--skf-forest,#0a3d2e)}.skf-program-card.is-surface-dark .skf-program-card__title{color:#fff}.skf-program-card.is-surface-dark .skf-program-card__excerpt{color:hsla(0,0%,100%,.72)}.skf-program-card.is-surface-dark .skf-program-card__link{color:var(--skf-gold,#f6c945)}

/* ---- block: donation-tier ---- */
.skf-tier-card{align-items:center;background:var(--skf-white,#fff);border:2px solid var(--skf-border,#dfe8e1);border-radius:18px;display:flex;flex-direction:column;height:100%;padding:38px 30px;text-align:center}.skf-tier-card.is-featured{background:linear-gradient(180deg,#f2fbf6,#fff);border-color:var(--skf-green,#00a25a);position:relative}.skf-tier-card__amount{color:var(--skf-green-dark,#007a44);font-family:var(--skf-font-head,Georgia,serif);font-size:52px;font-weight:700;line-height:1}.skf-tier-card__amount small{font-size:20px;font-weight:600}.skf-tier-card__name{color:var(--skf-forest,#0a3d2e);font-size:17px;font-weight:700;margin:14px 0 12px}.skf-tier-card__desc{color:var(--skf-ink-soft,#4a5a50);flex:1;font-size:15.5px;margin:0 0 26px}.skf-tier-card .btn{align-items:center;background:var(--skf-saffron,#ff6f00);border:2px solid transparent;border-radius:999px;color:var(--skf-ink,#1f2a24);display:inline-flex;font-weight:600;gap:8px;justify-content:center;padding:14px 26px;text-decoration:none}.skf-tier-card.is-featured .btn{background:var(--skf-saffron-dark,#c84f00);color:#fff}.skf-tier-card .btn.is-static{background:#00804a;color:#fff}.skf-tier-card.is-surface-light{background:var(--skf-cream,#f4f7f2)}.skf-tier-card.is-surface-dark{background:var(--skf-forest,#0a3d2e);border-color:var(--skf-forest,#0a3d2e)}.skf-tier-card.is-surface-dark .skf-tier-card__amount{color:var(--skf-gold,#f6c945)}.skf-tier-card.is-surface-dark .skf-tier-card__name{color:#fff}.skf-tier-card.is-surface-dark .skf-tier-card__desc{color:hsla(0,0%,100%,.72)}

/* ---- block: testimonial ---- */
.skf-quote{background:var(--skf-forest,#0a3d2e);border-radius:18px;margin:0;padding:40px 32px;position:relative;text-align:center}.skf-quote__mark{color:var(--skf-gold,#f6c945);display:block;font-size:56px;line-height:1;margin-bottom:8px}.skf-quote__mark,.skf-quote__text{font-family:var(--skf-font-head,Georgia,serif)}.skf-quote__text{color:#fff;font-size:26px;font-style:italic;line-height:1.45;margin:0 0 22px}.skf-quote__author{color:var(--skf-gold,#f6c945);font-size:17px;font-weight:600;margin:0}.skf-quote__role{color:hsla(0,0%,100%,.7);font-size:15px;margin:4px 0 0}.skf-quote.is-surface-light{background:var(--skf-cream,#f4f7f2)}.skf-quote.is-surface-light .skf-quote__text{color:var(--skf-ink,#1f2a24)}.skf-quote.is-surface-light .skf-quote__author{color:var(--skf-forest,#0a3d2e)}.skf-quote.is-surface-light .skf-quote__role{color:var(--skf-ink-soft,#4a5a50)}.skf-quote.is-surface-dark{background:var(--skf-forest,#0a3d2e)}.skf-quote.is-surface-dark .skf-quote__text{color:#fff}

/* ---- block: verified-badge ---- */
.skf-verified-badge{align-items:center;background:#00804a;border-radius:999px;color:#fff;display:inline-flex;font-size:14px;font-weight:600;gap:8px;padding:8px 16px}.skf-verified-badge__icon{align-items:center;background:#fff;border-radius:50%;color:var(--skf-green,#00a25a);display:inline-flex;height:18px;justify-content:center;width:18px}.skf-verified-badge__icon svg{fill:currentColor;height:12px;width:12px}.skf-verified-badge.is-surface-light{background:var(--skf-white,#fff);border:1px solid var(--skf-border,#dfe8e1);color:var(--skf-forest,#0a3d2e)}.skf-verified-badge.is-surface-light .skf-verified-badge__icon{background:#00804a;color:#fff}.skf-verified-badge.is-surface-dark{background:var(--skf-forest,#0a3d2e);color:var(--skf-gold,#f6c945)}.skf-verified-badge.is-surface-dark .skf-verified-badge__icon{background:var(--skf-gold,#f6c945);color:var(--skf-forest,#0a3d2e)}

/* ---- block: accent-divider ---- */
.skf-accent-divider{margin:0;width:100%}.skf-accent-divider__bar{background:linear-gradient(to right,var(--skf-saffron,#ff6f00) 0,var(--skf-saffron,#ff6f00) 50%,var(--skf-green,#00a25a) 50%,var(--skf-green,#00a25a) 100%);border-radius:999px;height:4px;width:100%}.editor-styles-wrapper .skf-accent-divider__bar{outline:1px dashed rgba(0,0,0,.2);outline-offset:2px}

/* ---- Uniform 20px vertical rhythm (site-wide) ----
   Every section / block that starts a new content band is separated by at most
   20px. The accent divider no longer adds its own 40px top/bottom margins (its
   neighbouring sections supply the 20px), so the page never shows a >20px gap
   between two content sections. */
.site-main .wp-block-skf-tricolor-section:not(:last-child),
.site-main > .skf-quote-section:not(:last-child),
.site-main > .skf-body-row:not(:last-child) { margin-bottom: 20px; }
.site-main .skf-accent-divider { margin: 0; }
.page-hero { margin-bottom: 20px; }
.page-hero + * { margin-top: 0; }

/* ---- Card treatment: border + 3D shadow so each card/section stands out ---- */
.skf-program-card,
.skf-grid-card.is-surface,
.skf-child-page-card,
.skf-tier-card,
.skf-stat-tile.is-surface-light,
.skf-donate-form__panel,
.skf-post-card,
.post-card {
  border: 1px solid var(--skf-border-strong, #cfe2d3);
  box-shadow: 0 1px 2px rgba(10, 61, 46, .12), 0 8px 20px rgba(10, 61, 46, .10), 0 24px 48px rgba(10, 61, 46, .12);
}
.skf-program-card:hover,
.skf-grid-card.is-surface:hover,
.skf-child-page-card:hover,
.skf-tier-card:hover,
.skf-stat-tile.is-surface-light:hover,
.skf-post-card:hover,
.post-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 2px 4px rgba(10, 61, 46, .14), 0 12px 28px rgba(10, 61, 46, .14), 0 32px 64px rgba(10, 61, 46, .16);
}
.skf-program-card,
.skf-grid-card.is-surface,
.skf-child-page-card,
.skf-tier-card,
.skf-post-card,
.post-card { transition: transform .18s ease, box-shadow .18s ease; }

/* ---- contact page: blue form + green/saffron address cards ---- */
.skf-sec-blue { background: #eaf3fc; border: 1px solid #9ec9ef; }
.skf-sec-blue,
.skf-contact-card { border-radius: 18px; padding: 28px; }
.skf-contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; align-items: stretch; }
.skf-contact-cards { display: grid; gap: 28px; }
.skf-contact-card { border: 1px solid; }
.skf-contact-card__map iframe { display: block; width: 100%; height: 220px; border: 0; border-radius: 12px; }
.skf-contact-card h3 { margin: 16px 0 8px; font-size: 20px; }
.skf-contact-card address { font-style: normal; margin: 0 0 6px; line-height: 1.6; }
.skf-contact-card__phone { font-weight: 600; margin: 0; }
.skf-contact-card--usa { background: #eef9f2; border-color: #7fce9e; }
.skf-contact-card--usa h3 { color: #0a7a45; }
.skf-contact-card--india { background: #fff4ec; border-color: #ffb27a; }
.skf-contact-card--india h3 { color: #c84f00; }
.skf-contact-form h2 { margin-top: 0; }
.skf-contact-form .skf-form__field input:focus,
.skf-contact-form .skf-form__field textarea:focus,
.skf-contact-form .skf-form__field select:focus { outline-color: var(--skf-blue-dark, #2b6cb0); }
.skf-contact-form .skf-form__submit { background: var(--skf-blue-dark, #2b6cb0); border-color: var(--skf-blue-dark, #2b6cb0); }
.skf-contact-form .skf-form__submit:hover,
.skf-contact-form .skf-form__submit:focus { background: var(--skf-blue-deep, #0a0369); border-color: var(--skf-blue-deep, #0a0369); }
@media (max-width: 782px) {
  .skf-contact-grid { grid-template-columns: 1fr; }
}

/* ---- contact page spacing + centered form controls ---- */
.page-id-12634 .page-hero { margin-bottom: 20px; }              /* 20px after the title bar */
.page-id-12634 .skf-contact-section { margin-bottom: 20px; }    /* 20px before the footer */
.skf-contact-form .skf-form__actions,
.skf-contact-form .skf-form__turnstile,
.skf-contact-form .skf-form__recaptcha,
.skf-contact-form .skf-form__recaptcha-v3 { text-align: center; }
.skf-contact-form .skf-form__actions { display: flex; justify-content: center; gap: 8px; }
