/*
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: 2.7.45
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: sticky; 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: 10px; }
.custom-logo-link img { height: 44px; width: auto; }
.site-branding__text { line-height: 1.15; align-self: flex-start; }
.site-title { font-family: var(--skf-font-head); font-size: 22px; 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: 2px; margin: 0; }
.main-nav li { position: relative; margin: 0; }
.main-nav a {
  display: block; padding: 9px 11px; color: var(--skf-ink);
  font-weight: 500; font-size: 14px; 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: 6px; 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: 8px 11px; font-size: 14px; }

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

/* Compact header so all top-level menus fit on one line at laptop widths */
@media (max-width: 1280px) {
  .site-header__inner { gap: 8px; }
  .site-branding { gap: 8px; }
  .custom-logo-link img { height: 40px; }
  .site-title { font-size: 19px; }
  .site-description { display: none; }
  .main-nav a { padding: 8px 9px; font-size: 13.5px; }
  .header-cta { gap: 6px; margin-left: 2px; }
  .header-cta .btn { padding: 7px 11px; font-size: 12.5px; }
}

/* Extra tightening at smaller laptop widths keeps the menu on one line */
@media (max-width: 1150px) {
  .site-header__inner { gap: 6px; }
  .site-branding { gap: 6px; }
  .custom-logo-link img { height: 38px; }
  .site-title { font-size: 18px; }
  .main-nav a { padding: 7px 7px; font-size: 12.5px; }
  .main-nav .menu-item-has-children > a::after { margin-left: 4px; }
  .header-cta { gap: 4px; }
  .header-cta .btn { padding: 6px 9px; font-size: 11.5px; }
}

.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-color: var(--skf-green-deep);
  background-size: cover;
  background-position: center;
  color: #fff;
  padding: 50px 0 60px;
  overflow: hidden;
}
/* Dark overlay so hero text stays legible over the photo (interior hero tint). */
.hero::before {
  content: ''; position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(180deg, rgba(6, 43, 33, .58) 0%, rgba(6, 43, 33, .38) 45%, rgba(6, 43, 33, .74) 100%);
}
.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: #eef9f2; }
.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; overflow: hidden; }
.program-card__media-img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  margin: 0; object-fit: cover;
  opacity: 0; transition: opacity .8s ease;
}
.program-card__media-img.is-active { opacity: 1; }
.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; }
/* Balanced quote marks are added at render time — inline flanks around the text. */
.quote__text .quote__mark { display: inline; font-size: 1.4em; line-height: 1; margin: 0 .18em 0 0; vertical-align: -.06em; }
.quote__text .quote__mark--close { margin: 0 0 0 .18em; }
.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: 40px 0; }
.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; }

/* Production-style rotating banner hero (approved pages) */
.skf-banner-hero {
  position: relative; overflow: hidden;
  width: 100%;
  min-height: clamp(320px, 42vh, 480px);
  background: var(--skf-green-deep);
}
.skf-banner-hero__slides,
.skf-banner-hero__slide {
  position: absolute; inset: 0;
}
.skf-banner-hero__slide {
  background-size: cover; background-position: center;
  opacity: 0; transition: opacity 1.2s ease;
}
.skf-banner-hero__slide.is-active { opacity: 1; }
.skf-banner-hero__scrim {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(6, 43, 33, .55) 0%, rgba(6, 43, 33, .2) 45%, rgba(6, 43, 33, .72) 100%);
}
.skf-banner-hero__content {
  position: relative; z-index: 2; height: 100%;
  display: flex; align-items: center; justify-content: center;
  padding: 56px 32px; text-align: center;
}
.skf-banner-hero__quote { max-width: 860px; }
.skf-banner-hero__quote-slide { display: none; }
.skf-banner-hero__quote-slide.is-active { display: block; animation: skfHeroFade .8s ease both; }
@keyframes skfHeroFade { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
.skf-banner-hero__text .skf-banner-hero__mark {
  display: inline; font-family: var(--skf-font-head, Georgia, serif);
  font-size: 1.3em; line-height: 1; color: var(--skf-gold, #f6c945);
  vertical-align: -.06em; margin: 0 .12em 0 0;
}
.skf-banner-hero__text .skf-banner-hero__mark--close { margin: 0 0 0 .12em; }
.skf-banner-hero__text {
  margin: 0 0 12px; color: #fff;
  font-family: var(--skf-font-head, Georgia, serif);
  font-size: clamp(22px, 3.2vw, 34px); font-style: italic; line-height: 1.4;
}
.skf-banner-hero__author {
  margin: 0; color: var(--skf-gold, #f6c945);
  font-size: 17px; font-weight: 600;
}
.skf-banner-hero__role { margin: 2px 0 0; color: rgba(255,255,255,.78); font-size: 15px; }
@media (max-width: 640px) {
  .skf-banner-hero { min-height: 320px; }
  .skf-banner-hero__content { padding: 40px 20px; }
}

/* The rotating banner is its own section before <main> — pull the content up
   flush underneath it (Avada places the slider above the page body). */
.skf-banner-hero + .site-main,
.page-hero + .site-main,
.page-hero + main.site-main,
.skf-banner-hero + main.site-main,
.skf-banner-hero + .site-main.container,
.page-hero + .site-main.container { padding-top: 20px; }

/* Archive / search listing */
.post-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; align-items: stretch; }
.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; height: 100%;
  transition: transform var(--skf-transition), box-shadow var(--skf-transition);
}
.post-card:hover { transform: translateY(-4px); box-shadow: var(--skf-shadow); }
.post-card__media {
  display: block; position: relative; width: 100%; aspect-ratio: 16 / 9;
  overflow: hidden; background: linear-gradient(135deg, #d9f2e4, #bfe9d2);
}
.post-card__media img { display: block; width: 100%; height: 100%; object-fit: cover; object-position: center; transition: transform var(--skf-transition); }
.post-card__media:hover img { transform: scale(1.03); }
.post-card__placeholder { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; }
.post-card__glyph {
  background: var(--skf-white); border-radius: 20px; box-shadow: 0 12px 28px rgba(10, 61, 46, .14);
  height: 64px; position: relative; width: 64px;
}
.post-card__glyph::before { background: var(--skf-green); border-radius: 6px; content: ''; inset: 18px; position: absolute; }
.post-card__body { padding: 24px 24px 26px; display: flex; flex-direction: column; flex: 1; }
.post-card .post-card__title { font-size: 22px; line-height: 1.3; margin-bottom: 10px; }
.post-card .post-card__title a { color: var(--skf-green-deep); }
.post-card .post-card__title a:hover { color: var(--skf-cta-green-dark); }
.post-card__meta { font-size: 13.5px; color: var(--skf-ink-soft); margin-bottom: 14px; display: flex; flex-wrap: wrap; align-items: center; gap: 4px 10px; }
.post-card .entry-header { margin-bottom: 0; }
.post-card__meta .byline { display: inline-flex; align-items: center; }
.post-card__meta .byline::before { content: ''; width: 4px; height: 4px; border-radius: 50%; background: var(--skf-green); margin-right: 10px; }
.post-card__excerpt { color: var(--skf-ink-soft); font-size: 15.5px; line-height: 1.62; margin-bottom: 18px; flex: 1; }
.post-card__link { margin-top: auto; font-weight: 600; color: var(--skf-cta-green); display: inline-flex; align-items: center; gap: 8px; }
.post-card__link:hover, .post-card__link:focus { color: var(--skf-cta-green-dark); }
.post-card__link-arrow { transition: transform var(--skf-transition); }
.post-card__link:hover .post-card__link-arrow { transform: translateX(4px); }

.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: 1024px) {
  .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; }
}
/* Our Programs intro logo: 3D lifted logo with a grounded cast shadow. */
.page-id-11825 .skf-logo-placeholder img {
  transform: perspective(1400px) rotateY(-12deg) rotateX(5deg) scale(0.92);
  transform-origin: center center;
  filter: drop-shadow(0 24px 30px rgba(10, 61, 46, .30)) drop-shadow(0 6px 10px rgba(10, 61, 46, .18));
}

/* Runaround: the text wraps around a floated image. JS aligns the image to the
   text line grid so an equal number of full-width lines sit above and below it.
   The 3D shadow follows the image itself (no artificial box). */
.skf-runaround { display: flow-root; }
.skf-runaround__img {
  float: right;
  width: min(36%, 380px);
  height: auto;
  margin: 0;
  -webkit-shape-outside: polygon(-16px 0, 100% 0, 100% 100%, -16px 100%) border-box;
  shape-outside: polygon(-16px 0, 100% 0, 100% 100%, -16px 100%) border-box;
  -webkit-shape-margin: 0;
  shape-margin: 0;
  filter: drop-shadow(0 20px 26px rgba(10, 61, 46, .34)) drop-shadow(0 6px 10px rgba(10, 61, 46, .20));
}
.skf-runaround--left .skf-runaround__img {
  float: left;
  -webkit-shape-outside: polygon(0 0, calc(100% + 16px) 0, calc(100% + 16px) 100%, 0 100%) border-box;
  shape-outside: polygon(0 0, calc(100% + 16px) 0, calc(100% + 16px) 100%, 0 100%) border-box;
}
.skf-runaround__img--icon { width: min(16%, 150px); }
@media (max-width: 781px) {
  .skf-runaround__img {
    float: none;
    display: block;
    width: min(62%, 300px);
    margin: 0 auto 18px;
  }
  .skf-runaround__img--icon { width: min(48%, 160px); }
}

/* Support-A-Girl lead logo: 3D logo inside a white circle. The circle carries
   its own soft cast shadow, so the logo itself needs no extra drop-shadow. */
.page-id-11827 .skf-sag-logo { filter: none; }
.page-id-11827 .skf-sag-logo img {
  transform: scale(1.1);
  transform-origin: center center;
}
@media (max-width: 640px) {
  .page-id-11827 .skf-sag-logo { padding: 7%; }
}

/* Alternating 2-column sections: flip the image column to the right.
   Reset on mobile so the image still stacks above the text. */
.skf-row.is-image-right { flex-direction: row-reverse; }
@media (max-width: 781px) { .skf-row.is-image-right { flex-direction: row; } }

/* Soft grounded shadow for section media (images inside the builder rows). */
.skf-img-shadow { box-shadow: 0 20px 40px rgba(10, 61, 46, .28), 0 8px 16px rgba(10, 61, 46, .16); }

/* Uniform equal-height sections (2-col + quote bands) */
.skf-row.is-layout-2 { min-height: 0; }

/* Content quote bands (authored per page).
   Each band is a rounded dark-green panel at the 1200 content width — it is
   part of the page body content, not a full-bleed section. Where it sits on a
   page is decided per page in the editor (no theme auto-injection).
   Sections flagged as a body banner (.skf-body-banner) escape this clamp —
   they are the only full-bleed bands inside page content. */
.skf-section:not(.skf-body-banner):has(.skf-quote) { max-width: 1200px; margin-left: auto; margin-right: auto; border-radius: 18px; background: linear-gradient(150deg, #0d4a37 0%, #0a3d2e 60%, #062b21 100%); }
.skf-section:not(.skf-body-banner):has(.skf-quote) .skf-section__inner { display: block; }
.skf-section:not(.skf-body-banner):has(.skf-quote) .skf-section__inner > * { width: 100%; margin: 0 auto; }
.skf-section:not(.skf-body-banner):has(.skf-quote) .skf-quote { width: 100%; margin: 0 auto; padding: clamp(48px, 6vw, 76px) 40px; background: transparent; border-radius: 0; }
.skf-section:not(.skf-body-banner):has(.skf-quote) .skf-quote__mark { font-size: 48px; margin-bottom: 10px; }
.skf-section:not(.skf-body-banner):has(.skf-quote) .skf-quote__text { max-width: 900px; margin-left: auto; margin-right: auto; font-size: clamp(22px, 2.4vw, 28px); }
.skf-section:not(.skf-body-banner):has(.skf-quote) .skf-quote__author { font-size: 17px; margin-top: 4px; }
.skf-section:not(.skf-body-banner):has(.skf-quote) .skf-quote__role { font-size: 15px; }
@media (max-width: 640px) {
  .skf-section:not(.skf-body-banner):has(.skf-quote) .skf-quote { padding: 40px 20px; }
  .skf-section:not(.skf-body-banner):has(.skf-quote) .skf-quote__text { font-size: 20px; }
  .skf-section:not(.skf-body-banner):has(.skf-quote) .skf-quote__mark { font-size: 38px; }
}

/* Content column matches the image height (320px), vertically centred */
.skf-row.is-layout-2 .skf-text-block { min-height: 0; 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. Site-wide only three light backgrounds are allowed:
   light green, light saffron and light blue. Gold, teal and cream are retired. */
.skf-sec-green   .skf-section__inner { background: #eef9f2; border: 1px solid #7fce9e; }
.skf-sec-saffron .skf-section__inner { background: #fff4ec; border: 1px solid #ffb27a; }
.skf-sec-blue    .skf-section__inner { background: #eaf3fc; border: 1px solid #9ec9ef; }
.skf-sec-green   .skf-section__inner,
.skf-sec-saffron .skf-section__inner,
.skf-sec-blue    .skf-section__inner { border-radius: 18px; padding: 20px 28px; }
/* Legacy aliases so any un-migrated content still renders in-palette:
   teal -> light blue, gold -> light saffron. */
.skf-sec-teal    .skf-section__inner { background: #eaf3fc; border: 1px solid #9ec9ef; border-radius: 18px; padding: 20px 28px; }
.skf-sec-gold    .skf-section__inner { background: #fff4ec; border: 1px solid #ffb27a; border-radius: 18px; padding: 20px 28px; }
/* Blue sections behave like the other tints: background on the boxed inner,
   not the full-bleed <section>. (The Contact page form keeps its own blue.) */
.skf-section.skf-sec-blue { background: transparent; border: 0; }

/* 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 width: title bar and non-banner background bands match the 1200
   content column. Only .skf-body-banner sections stay full-bleed. */
.page-hero,
.skf-section.has-skf-forest-background-color:not(.skf-body-banner),
.skf-section.has-skf-saffron-to-forest-gradient-background:not(.skf-body-banner) {
  max-width: 1200px; margin-left: auto; margin-right: auto; border-radius: 18px;
}
/* Quote bands are part of the body content at the 1200 width (no full-bleed
   override; the dedicated :has(.skf-quote) rules style them as a contained
   rounded band inside the content column). */
.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; }

/* 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;
}

/* Home banner matches the interior page header banners: full-bleed width and
   the same min-height (320px–480px), content vertically centered. */
.site-main--home .hero {
  max-width: none;
  margin-left: 0;
  margin-right: 0;
  min-height: clamp(320px, 42vh, 480px);
  display: flex;
  align-items: center;
  padding: 0;
}
.site-main--home .hero .hero__inner { width: 100%; }

/* 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: 1024px) {
  .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; }
}

/* In-body text: video floated right so surrounding text wraps around it */
.skf-text-video { float: right; width: min(100%, 500px); margin: 6px 0 22px 32px; }
.skf-text-video__frame { position: relative; width: 100%; padding-top: 56.25%; border-radius: 18px; overflow: hidden; box-shadow: var(--skf-shadow); }
.skf-text-video__frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
@media (max-width: 860px) {
  .skf-text-video { float: none; width: 100%; margin: 0 0 22px; }
}

/* 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: #eaf3fc; border: 1px solid #9ec9ef; }
.site-main--home .section.section--cream { background: #fff4ec; border: 1px solid #ffb27a; }
.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-blue { background: #eaf3fc; border: 1px solid #9ec9ef; }
.skf-channel-card.skf-sec-teal { background: #eaf3fc; border: 1px solid #9ec9ef; }
.skf-channel-card.skf-sec-gold { background: #fff4ec; border: 1px solid #ffb27a; }
.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; }

/* Social Media page: branded logo cards */
.skf-social-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.skf-social-card {
  display: flex; flex-direction: column; align-items: center; text-align: center;
  background: #fff; border: 1px solid var(--skf-border, #dfe8e1);
  border-radius: 18px; padding: 34px 24px 30px; height: 100%;
  box-shadow: 0 12px 30px rgba(10, 61, 46, .06);
  transition: transform .18s ease, box-shadow .18s ease;
}
.skf-social-card:hover { transform: translateY(-3px); box-shadow: 0 16px 36px rgba(10,61,46,.12); }
.skf-social-card__logo {
  display: inline-flex; align-items: center; justify-content: center;
  width: 84px; height: 84px; border-radius: 50%; margin-bottom: 16px;
  background: var(--skf-cream, #f4f7f2); border: 1px solid var(--skf-border, #dfe8e1);
}
.skf-social-card__logo img { width: 44px; height: 44px; object-fit: contain; }
.skf-social-card__name { margin: 0 0 2px; font-family: var(--skf-font-head, Georgia, serif); font-size: 22px; color: var(--skf-forest, #0a3d2e); }
.skf-social-card__handle { margin: 0 0 10px; font-size: 14px; font-weight: 600; color: var(--skf-green-dark, #00844a); }
.skf-social-card__blurb { margin: 0 0 20px; font-size: 15px; line-height: 1.6; color: var(--skf-ink-soft, #4a5a50); }
.skf-social-card__link { text-decoration: none; }
.skf-social-card__link {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--skf-cta-orange, #c84f00); color: #fff;
  font-weight: 600; padding: 10px 22px; border-radius: 999px;
  transition: background var(--skf-transition, .22s ease), transform var(--skf-transition, .22s ease);
}
.skf-social-card__link:hover, .skf-social-card__link:focus { background: var(--skf-cta-orange-dark, #a84200); color: #fff; transform: translateY(-1px); }
.skf-social-card__link::after { content: '\2192'; }
@media (max-width: 900px) {
  .skf-social-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 560px) {
  .skf-social-grid { grid-template-columns: 1fr; }
}

/* 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); }
/* "Have a Question or Feedback ?" row links straight to Contact Us. */
.skf-faq__item--contact .skf-faq__toggle { text-decoration: none; }
.skf-faq__arrow { flex: 0 0 auto; color: var(--skf-cta-orange, #c84f00); font-weight: 700; }
.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-site-faq__all { margin: 4px 0 0; text-align: right; }
.skf-site-faq__all-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--skf-font-head); font-size: 16px; font-weight: 700;
  color: var(--skf-cta-green-dark, #1c6b4d); text-decoration: none;
}
.skf-site-faq__all-link:hover, .skf-site-faq__all-link:focus-visible { text-decoration: underline; }

/* Master FAQ page: collapsible categories, each its own bordered box with a
   distinct background. 20px of breathing room between every section/quote. */
.skf-faq-master { margin-bottom: 8px; }
.skf-faq-master__search { margin: 0 auto 20px; }
.skf-faq-master__category {
  margin: 0 0 20px;
  background: #eef9f2;
  border: 1px solid var(--skf-border);
  border-radius: 18px;
  overflow: hidden;
  transition: box-shadow var(--skf-transition), border-color var(--skf-transition);
}
.skf-faq-master__category--green   { background: #eef9f2; }
.skf-faq-master__category--blue    { background: #eaf3fc; }
.skf-faq-master__category--saffron { background: #fff4ec; }
/* Legacy tone aliases (green / light blue / light saffron palette). */
.skf-faq-master__category--sky   { background: #eaf3fc; }
.skf-faq-master__category--sun   { background: #fff4ec; }
.skf-faq-master__category--leaf  { background: #eef9f2; }
.skf-faq-master__category.is-open {
  box-shadow: var(--skf-shadow);
  border-color: var(--skf-cta-green);
}
.skf-faq-master__cat-heading { margin: 0; }
.skf-faq-master__cat-toggle {
  width: 100%; display: flex; align-items: center; justify-content: flex-start; gap: 16px;
  padding: 18px 22px; text-align: left; background: none; border: 0; cursor: pointer;
  font-family: var(--skf-font-head); font-size: 24px; font-weight: 700; color: var(--skf-green-deep);
}
.skf-faq-master__cat-toggle:hover,
.skf-faq-master__cat-toggle:focus-visible { color: var(--skf-cta-green-dark); }
.skf-faq-master__cat-text { display: flex; flex-direction: column; gap: 4px; min-width: 0; }
.skf-faq-master__cat-label { font-family: var(--skf-font-head); font-size: 24px; font-weight: 700; line-height: 1.15; }
.skf-faq-master__cat-desc { font-family: var(--skf-font-body); font-size: 15px; font-weight: 400; color: var(--skf-ink-soft); line-height: 1.4; }
.skf-faq-master__category.is-open .skf-faq__icon::after { transform: translate(-50%, -50%) rotate(90deg); }
.skf-faq-master__cat-panel { padding: 0 22px 20px; }
.skf-faq-master .skf-faq { max-width: 100%; margin: 0; }
/* Icon on the left of every question in the master list. */
.skf-faq-master .skf-faq__toggle { justify-content: flex-start; }
/* Banner quote drawn after each category. */
.skf-faq-master__quote { margin: 0 0 20px; }
.skf-faq-master__quote:last-child { margin-bottom: 0; }
.skf-faq-master__quote .skf-quotes { margin: 0; }
.skf-faq-master__quote .skf-quote { margin: 0; border-radius: 18px; }
.skf-faq__backlink { margin: 14px 0 0; }
.skf-faq__backlink a { font-weight: 600 !important; color: var(--skf-cta-green-dark, #1c6b4d); text-decoration: none; }
.skf-faq__backlink a:hover, .skf-faq__backlink a:focus-visible { text-decoration: underline; }
@media (max-width: 640px) {
  .skf-site-faq__all { text-align: left; }
  .skf-faq-master__category { margin-bottom: 20px; }
  .skf-faq-master__cat-toggle { padding: 16px 18px; gap: 12px; }
  .skf-faq-master__cat-label { font-size: 20px; }
  .skf-faq-master__cat-desc { font-size: 14px; }
  .skf-faq-master__cat-panel { padding: 0 18px 18px; }
  .skf-faq-master__quote { margin-bottom: 20px; }
  .skf-faq__heading { font-size: 24px; }
}
.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; max-width: 1200px; }


/* Our Causes hub (12865): the story flow (SCIPAB narrative). Text sits on the
   tinted section bands; no per-paragraph boxes. Narrative measure ~880px for
   comfortable reading, while headings and card rows keep the full band width. */
.page-id-12865 .skf-section__inner ul { list-style: none; padding-left: 0; margin-left: 0; }
.page-id-12865 .skf-text-block { max-width: 880px; margin-left: auto; margin-right: auto; }
.page-id-12865 .skf-section__inner h2 { margin-bottom: .7em; }
.page-id-12865 .skf-row.is-layout-3 { align-items: stretch; }
/* ==========================================================================
   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 (legacy-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 converted legacy pages 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: cause-card (Our Causes hub, mirrors .skf-opp on VV roles) ---- */
.skf-cause-card{background:var(--skf-white,#fff);border:1px solid var(--skf-border,#dfe8e1);border-radius:18px;box-shadow:0 12px 30px rgba(10,61,46,.06);display:flex;flex-direction:column;height:100%;overflow:hidden}.skf-cause-card__media{display:block;background:#fff}.skf-cause-card__media img{display:block;width:100%;height:auto;object-fit:cover}.skf-cause-card__body{display:flex;flex:1;flex-direction:column;gap:10px;padding:20px 22px 22px}.skf-cause-card__title{margin:0;font-family:var(--skf-font-head,Georgia,serif);font-size:22px;line-height:1.25;color:var(--skf-ink,#16352a)}a.skf-cause-card__title-link{text-decoration:none}a.skf-cause-card__title-link:hover .skf-cause-card__title,a.skf-cause-card__title-link:focus .skf-cause-card__title{color:var(--skf-cta-green,#007a44)}.skf-cause-card__excerpt{margin:0;font-size:15px;line-height:1.6;color:var(--skf-ink-soft,#4a5a50);flex:1}.skf-cause-card__footer{margin-top:auto;padding-top:10px}.skf-cause-card__footer .btn{text-decoration:none}
@media(max-width:781px){.skf-cause-card__media img{height:auto}}
.skf-cause-card{height:auto}.skf-column>.skf-cause-card{flex:1 1 auto}.skf-cause-card__body .skf-cause-card__excerpt{flex:1 1 auto}

/* ---- program benefit tiles (image band + label, used on program pages) ---- */
.skf-sag-tile{background:var(--skf-white,#fff);border:1px solid var(--skf-border,#dfe8e1);border-radius:18px;box-shadow:0 12px 30px rgba(10,61,46,.06);display:flex;flex-direction:column;height:100%;overflow:hidden}.skf-sag-tile__media{align-items:center;background:linear-gradient(150deg,#f2fbf6,#e4f3ea);display:flex;gap:12px;justify-content:center;min-height:170px;padding:20px}.skf-sag-tile__media img{height:auto;max-height:150px;max-width:42%;width:auto;object-fit:contain}.skf-sag-tile__title{color:var(--skf-forest,#0a3d2e);font-family:var(--skf-font-head,Georgia,serif);font-size:20px;font-weight:600;line-height:1.3;margin:0;padding:18px 18px 20px;text-align:center}.skf-column>.skf-sag-tile{flex:1 1 auto}
@media(max-width:781px){.skf-sag-tile__media{min-height:140px}.skf-sag-tile__media img{max-height:120px}}

/* ---- Our Causes: cause cards (hub) + related-causes panels (sub pages) ---- */
.skf-cause-card__tag{display:inline-block;align-self:flex-start;background:linear-gradient(150deg,#7a1f0d,#a84200);color:#fff;font-size:11px;font-weight:700;letter-spacing:.06em;text-transform:uppercase;border-radius:999px;padding:4px 10px;margin:0 0 2px}
.skf-related{background:#fff;border:1px solid var(--skf-border,#dfe8e1);border-radius:18px;padding:22px 24px;box-shadow:0 10px 24px rgba(10,61,46,.06)}
.skf-related__title{margin:0 0 14px;font-family:var(--skf-font-head,Georgia,serif);font-size:20px;color:var(--skf-forest,#0a3d2e)}
.skf-related__grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:12px}
.skf-related__item{display:flex;flex-direction:column;gap:4px;background:var(--skf-cream,#f4f7f2);border:1px solid var(--skf-border,#dfe8e1);border-radius:14px;padding:14px 16px;text-decoration:none}
.skf-related__item:hover{box-shadow:0 6px 16px rgba(10,61,46,.1)}
.skf-related__item-name{color:var(--skf-forest,#0a3d2e);font-weight:600;font-size:15.5px}
.skf-related__item-hint{color:var(--skf-ink-soft,#4a5a50);font-size:13.5px;line-height:1.5}
.skf-related__item:hover .skf-related__item-name{color:var(--skf-cta-green,#007a44)}
@media(max-width:640px){.skf-related__grid{grid-template-columns:1fr}}

/* ---- 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; }

/* Our Supporters category link cards */
.skf-support-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 22px; margin: 36px 0 10px; }
.skf-support-card { display: block; background: #fff; border: 1px solid #e2e6ee; border-top: 4px solid #16294d; border-radius: 12px; padding: 22px 22px 18px; text-decoration: none; color: inherit; box-shadow: 0 2px 6px rgba(20,40,90,.07); transition: transform .12s ease, box-shadow .12s ease, border-top-color .12s ease; }
.skf-support-card:hover, .skf-support-card:focus { box-shadow: 0 8px 22px rgba(20,40,90,.14); transform: translateY(-2px); border-top-color: #b2540d; }
.skf-support-card__kicker { display: block; font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: #b2540d; }
.skf-support-card__title { display: block; margin-top: 9px; font-size: 19px; font-weight: 700; line-height: 1.25; color: #16294d; }
.skf-support-card__desc { display: block; margin-top: 7px; font-size: 13.5px; line-height: 1.55; color: #4c5364; }
.skf-support-card__more { display: inline-block; margin-top: 13px; font-weight: 700; font-size: 13.5px; color: #1b7a43; }
.skf-anchor-target { scroll-margin-top: 130px; }
@media (max-width: 640px) { .skf-support-cards { grid-template-columns: 1fr; } }

/* Individual Supporters page — supporter boxes with 3D photo frames */
.skf-supporter { display: flow-root; position: relative; margin: 0 0 30px; padding: 30px 34px 28px; background: #fff; border: 1px solid #e3e8f2; border-radius: 22px; box-shadow: 0 8px 22px -12px rgba(20,40,90,.14); transition: box-shadow .3s ease, transform .3s ease; }
.skf-supporter:hover { box-shadow: 0 18px 40px -18px rgba(20,40,90,.28); transform: translateY(-2px); }
.skf-supporter__media { float: left; margin: 6px 30px 20px 0; perspective: 900px; }
.skf-supporter__title { margin: 0 0 14px; font-size: 24px; color: #16294d; }
.skf-supporter__text { margin: 0 0 10px; font-size: 17px; line-height: 1.65; color: #333c4e; }
.skf-frame3d { position: relative; display: inline-block; border-radius: 18px; transform-style: preserve-3d; transition: transform .35s ease; }
.skf-frame3d img { display: block; position: relative; z-index: 1; width: 190px; height: 190px; object-fit: cover; border-radius: 14px; border: 6px solid #fff; box-shadow: 0 10px 22px -10px rgba(20,40,90,.35); }
.skf-frame3d::before { content: ""; position: absolute; z-index: -2; inset: -10px; border-radius: 22px; background: linear-gradient(135deg, #dce6f5, #c9d6ec); }
.skf-frame3d::after { content: ""; position: absolute; z-index: -1; inset: 0; transform: translate(12px, 14px); border-radius: 16px; background: linear-gradient(135deg, #16294d 0%, #1b7a43 100%); transition: transform .35s ease; }
.skf-supporter:hover .skf-frame3d { transform: rotateY(-9deg) rotateX(6deg) translateY(-6px); }
.skf-supporter:hover .skf-frame3d::after { transform: translate(16px, 19px); }
@media (max-width: 640px) { .skf-supporter__media { float: none; margin: 0 auto 22px; text-align: center; } .skf-supporter { padding: 24px 20px; } }

/* Organisation badge inside the 3D supporter frame (partners) */
.skf-orgbadge { display: flex; flex-direction: column; align-items: center; justify-content: center; width: 190px; height: 190px; border-radius: 14px; background: #fff; border: 6px solid #fff; box-shadow: inset 0 0 0 1px rgba(22,41,77,.08), 0 10px 22px -10px rgba(20,40,90,.35); }
.skf-orgbadge__initials { font-size: 58px; font-weight: 800; line-height: 1; color: #16294d; }
.skf-orgbadge__label { margin-top: 6px; font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: #1b7a43; }
.skf-orgbadge--ms .skf-orgbadge__label { color: #0078d4; }
.skf-orgbadge--sf .skf-orgbadge__label { color: #00a1e0; }

/* Partner logo tile inside the supporter 3D frame */
.skf-logo-tile { display: flex; align-items: center; justify-content: center; box-sizing: border-box; width: 190px; height: 190px; border-radius: 14px; background: #fff; border: 1px solid #e7ebf3; padding: 22px; box-shadow: 0 10px 22px -10px rgba(20,40,90,.3); }
.skf-frame3d .skf-logo-tile img { width: auto; max-width: 100%; height: auto; max-height: 130px; object-fit: contain; border: none; border-radius: 0; box-shadow: none; }

/* Clean white 3D logo boxes — no colored offset layers */
.skf-frame3d::before, .skf-frame3d::after { display: none !important; }
.skf-supporter:hover .skf-frame3d { transform: translateY(-5px) scale(1.02); }
.skf-supporter:hover .skf-frame3d::after { transform: none; }
.skf-logo-tile { display: flex; align-items: center; justify-content: center; box-sizing: border-box; width: 210px; height: 210px; border-radius: 22px; background: #fff; border: 1px solid rgba(22,41,77,.08); padding: 30px; box-shadow: 0 1px 2px rgba(20,40,90,.06), 0 8px 16px -6px rgba(20,40,90,.14), 0 22px 44px -14px rgba(20,40,90,.22); }
.skf-frame3d .skf-logo-tile img { width: auto; max-width: 100%; height: auto; max-height: 120px; object-fit: contain; }
.skf-frame3d img { border-radius: 20px; box-shadow: 0 8px 16px -6px rgba(20,40,90,.16), 0 20px 40px -14px rgba(20,40,90,.2); }

/* Affiliate/partner cards with a dark-green company title bar */
.skf-supporter--bar { padding: 0; overflow: hidden; }
.skf-supporter--bar .skf-supporter__bar { background: var(--skf-green-deep, #0f5c32); color: #fff; padding: 15px 24px; font-family: var(--skf-font-head); font-size: 21px; font-weight: 700; line-height: 1.25; border-radius: 21px 21px 0 0; }
.skf-supporter--bar .skf-supporter__content { padding: 24px 28px 26px; display: flow-root; }
.skf-supporter--bar .skf-supporter__content .skf-supporter__media { float: left; margin: 4px 28px 16px 0; }
.skf-supporter--bar .skf-supporter__content .skf-supporter__title { margin: 0 0 12px; }
@media (max-width: 640px) { .skf-supporter--bar .skf-supporter__content .skf-supporter__media { float: none; margin: 0 auto 20px; text-align: center; } }

/* Media kit resource cards */
.skf-dl-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 22px; margin: 26px 0 6px; }
.skf-dl-card { display: flex; flex-direction: column; background: #fff; border: 1px solid #e3e8f2; border-radius: 16px; overflow: hidden; box-shadow: 0 6px 18px -10px rgba(20,40,90,.15); }
.skf-dl-preview { height: 180px; padding: 16px; background: #f4f6fb; border-bottom: 1px solid #eceff5; display: flex; align-items: center; justify-content: center; }
.skf-dl-preview img { max-height: 100%; max-width: 100%; object-fit: contain; }
.skf-dl-body { display: flex; flex-direction: column; flex: 1; padding: 16px 18px 18px; }
.skf-dl-body h3 { margin: 0 0 8px; font-size: 18px; color: #16294d; }
.skf-dl-body p { margin: 0 0 12px; font-size: 13.5px; line-height: 1.5; color: #4c5364; }
.skf-dl-card__watch { display: inline-block; margin: -6px 0 12px; font-size: 13px; font-weight: 600; }
.skf-dl-link { display: block; margin-top: auto; text-align: center; background: #16294d; color: #fff; border-radius: 999px; padding: 9px 16px; font-weight: 700; font-size: 13px; text-decoration: none; }
.skf-dl-link:hover { background: #0f5c32; color: #fff; }
@media (max-width: 640px) { .skf-dl-grid { grid-template-columns: 1fr; } }

/* Media kit: clickable previews + footer CTA */
.skf-dl-preview a { display: flex; align-items: center; justify-content: center; width: 100%; height: 100%; }
.skf-dl-preview a:hover img { opacity: .85; transform: scale(1.04); }
.skf-dl-preview img { transition: transform .15s ease, opacity .15s ease; }
.skf-mk-cta { margin-top: 36px; padding: 48px 28px; border-radius: 20px; text-align: center; color: #fff; background: linear-gradient(135deg, #16294d 0%, #0f5c32 100%); }
.skf-mk-cta h2 { margin: 0 0 8px; color: #fff; }
.skf-mk-cta p { margin: 0 auto 24px; max-width: 660px; color: rgba(255,255,255,.85); }
.skf-mk-cta__btns { display: flex; justify-content: center; flex-wrap: wrap; gap: 14px; }
.skf-mk-cta__btns a { display: inline-block; padding: 13px 28px; border-radius: 999px; font-weight: 700; text-decoration: none; color: #fff; }
.skf-mk-cta__btns a.is-donate { background: #b2540d; }
.skf-mk-cta__btns a.is-volunteer { background: #0b7a43; }
.skf-mk-cta__btns a:hover { opacity: .9; }

/* Homepage social media banner */
.social-banner { padding: 26px 0 40px; text-align: center; }
.social-banner__inner { max-width: 820px; margin: 0 auto; }
.social-banner__title { margin: 0 0 6px; }
.social-banner__sub { margin: 0 0 22px; color: #4c5364; }
.social-banner__links { display: flex; justify-content: center; flex-wrap: wrap; gap: 14px; }
.social-banner__link { display: inline-flex; align-items: center; gap: 10px; padding: 9px 18px 9px 9px; border-radius: 999px; background: #fff; border: 1px solid #e2e6ee; color: #16294d; font-weight: 700; font-size: 13.5px; text-decoration: none; box-shadow: 0 3px 10px -4px rgba(20,40,90,.12); transition: transform .12s ease, box-shadow .12s ease; }
.social-banner__link:hover { transform: translateY(-2px); box-shadow: 0 8px 18px -6px rgba(20,40,90,.2); color: #0f5c32; }
.social-banner__glyph { display: inline-flex; align-items: center; justify-content: center; width: 30px; height: 30px; border-radius: 50%; background: #16294d; color: #fff; font-size: 13px; font-weight: 800; }
.social-banner__link:hover .social-banner__glyph { background: #0f5c32; }

/* Social banner: official brand logos */
.social-banner__link { padding: 8px 18px 8px 10px; }
.social-banner__logo { width: 22px; height: 22px; display: inline-block; }


.cta-band__actions { display: flex; justify-content: center; flex-wrap: wrap; gap: 14px; }


.skf-gi-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px; margin-top: 30px; }
@media (max-width: 640px) { .skf-gi-grid { grid-template-columns: 1fr; } }


/* Get Involved intro box */
.skf-gi-intro { background: #fff4ec; border: 1px solid #ffb27a; border-radius: 18px; padding: 30px 30px 24px; }
.skf-gi-intro p { margin: 0 0 14px; font-size: 16.5px; line-height: 1.65; color: #333c4e; }
.skf-gi-intro p:last-child { margin-bottom: 0; }


/* Get Involved: intro box + photo cards */
.skf-gi-intro { background: #fff4ec; border: 1px solid #ffb27a; border-radius: 18px; padding: 30px 30px 26px; overflow: hidden; }
.skf-gi-intro p { margin: 0 0 14px; font-size: 16.5px; line-height: 1.65; color: #333c4e; }
.skf-gi-intro p:last-child { margin-bottom: 0; }
.skf-gi-intro__img { float: right; width: min(46%, 380px); margin: 6px 0 16px 26px; border-radius: 14px; box-shadow: 0 14px 30px -12px rgba(20,40,90,.25); }
.skf-channel-card--photo { overflow: hidden; padding: 0; }
.skf-channel-card--photo .skf-channel-card__photo { height: 160px; overflow: hidden; background: #eef1f6; }
.skf-channel-card--photo .skf-channel-card__photo img { display: block; width: 100%; height: 100%; object-fit: cover; }
.skf-channel-card--photo .skf-channel-card__body { padding: 24px 24px 26px; }
@media (max-width: 640px) {
  .skf-gi-intro__img { float: none; width: 100%; margin: 0 0 16px; }
}

/* Get Involved v3: intro photos + icon cards */
.skf-gi-intro { background: #fff4ec; border: 1px solid #ffb27a; border-radius: 18px; padding: 30px 30px 28px; }
.skf-gi-intro p { margin: 0 0 14px; font-size: 16.5px; line-height: 1.65; color: #333c4e; }
.skf-gi-intro p:last-of-type { margin-bottom: 20px; }
.skf-gi-photos { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.skf-gi-photo { margin: 0; }
.skf-gi-photo img { display: block; width: 100%; height: 230px; object-fit: cover; border-radius: 14px; box-shadow: 0 12px 26px -14px rgba(20,40,90,.3); }
.skf-gi-photo figcaption { margin-top: 8px; font-size: 13px; font-weight: 600; color: #7a4a12; text-align: center; }
.skf-channel-card--icons { overflow: hidden; padding: 0; }
.skf-channel-card--icons .skf-channel-card__icons { display: flex; justify-content: center; gap: 16px; padding: 22px 16px 6px; }
.skf-channel-card--icons .skf-ico { display: inline-flex; align-items: center; justify-content: center; width: 56px; height: 56px; border-radius: 50%; background: #fff; box-shadow: 0 6px 16px -8px rgba(20,40,90,.25); }
.skf-channel-card--icons .skf-ico img { width: 26px; height: 26px; object-fit: contain; }
.skf-channel-card--icons .skf-channel-card__body { padding: 14px 24px 26px; text-align: center; }
.skf-channel-card--icons .skf-gi-tags { list-style: none; margin: 4px 0 16px; padding: 0; display: flex; flex-direction: column; gap: 6px; }
.skf-channel-card--icons .skf-gi-tags li { font-size: 13.5px; color: #4c5364; }
.skf-channel-card--icons .skf-channel-card__link { display: inline-block; }
@media (max-width: 640px) { .skf-gi-photos { grid-template-columns: 1fr; } .skf-gi-photo img { height: 200px; } }

/* Get Involved intro: top-right floating photo */
.skf-gi-intro__float { float: right; width: min(44%, 340px); height: 215px; object-fit: cover; border-radius: 14px; margin: 4px 0 14px 26px; box-shadow: 0 14px 30px -14px rgba(20,40,90,.3); }
.skf-gi-intro::after { content: ""; display: table; clear: both; }
@media (max-width: 720px) { .skf-gi-intro__float { float: none; width: 100%; height: 200px; margin: 0 0 16px; } }


/* Get Involved cards: CTA links as buttons */
.skf-channel-card--icons .skf-channel-card__body { align-items: center; }
.skf-channel-card--icons .skf-channel-card__link { display: inline-flex; align-items: center; gap: 6px; padding: 11px 24px; border-radius: 999px; background: #16294d; color: #fff; font-weight: 700; font-size: 13.5px; text-decoration: none; box-shadow: 0 6px 14px -8px rgba(20,40,90,.35); transition: background .15s ease, transform .15s ease; }
.skf-channel-card--icons .skf-channel-card__link:hover { background: #0f5c32; color: #fff; transform: translateY(-1px); }

/* Get Involved cards: equal-height bodies, buttons aligned to same line */
.skf-channel-card--icons { display: flex; flex-direction: column; }
.skf-channel-card--icons .skf-channel-card__body { display: flex; flex-direction: column; align-items: center; flex: 1 1 auto; }
.skf-channel-card--icons .skf-channel-card__link { margin-top: auto; }
.skf-channel-card--icons .skf-gi-tags { width: 100%; }

/* ============================================================
   Footer Quote CTA banner — sits directly before the Q&A section
   1200px wide x 200px tall box; quote on the left, CTA buttons right.
   ============================================================ */
.skf-footer-quote-cta {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  box-sizing: border-box;
}
.skf-footer-quote-cta__box {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 12px;
  height: 200px;
  padding: 22px 40px;
  border-radius: 18px;
  overflow: hidden;
  color: #fff;
  background: linear-gradient(120deg, var(--skf-green-deep, #0a3d2e) 0%, var(--skf-green-deep, #0a3d2e) 55%, var(--skf-green-deeper, #062b21) 100%);
  box-sizing: border-box;
}
.skf-footer-quote-cta__quote {
  max-width: 820px;
  margin: 0 auto;
}
.skf-footer-quote-cta__mark {
  font-family: var(--skf-font-head, Georgia, serif);
  font-style: normal;
  line-height: 1;
  color: var(--skf-gold, #f6c945);
}
.skf-footer-quote-cta__mark:first-child { margin-right: 2px; }
.skf-footer-quote-cta__mark:last-child { margin-left: 2px; }
.skf-footer-quote-cta__text {
  margin: 0;
  font-family: var(--skf-font-head, Georgia, serif);
  font-size: 19px;
  line-height: 1.5;
  font-style: italic;
  color: #fff;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.skf-footer-quote-cta__cite {
  margin: 4px 0 0;
  color: var(--skf-gold, #f6c945);
  font-size: 13px;
  font-weight: 600;
}
.skf-footer-quote-cta__cite-role {
  color: rgba(255, 255, 255, .72);
  font-weight: 400;
}
.skf-footer-quote-cta__actions {
  display: flex;
  flex: 0 0 auto;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 2px;
}
.skf-footer-quote-cta__actions .btn { text-decoration: none; }
@media (max-width: 860px) {
  .skf-footer-quote-cta__box {
    height: auto;
    min-height: 200px;
    padding: 30px 24px;
  }
  .skf-footer-quote-cta__actions { justify-content: center; }
}

/* 3D lift shadow for the footer quote CTA banner and the Q&A (FAQ) box */
.skf-footer-quote-cta__box,
.skf-site-faq {
  box-shadow:
    0 1px 2px rgba(6, 43, 33, .10),
    0 8px 18px rgba(6, 43, 33, .12),
    0 24px 48px rgba(6, 43, 33, .18);
}

/* About Us page: consistent 20px rhythm between sections, divider bars hidden */
.page-id-11813 .site-main > .skf-accent-divider { display: none; }
.page-id-11813 .site-main > * + * { margin-top: 20px; }
.page-id-11813 .site-main .wp-block-skf-tricolor-section { margin-bottom: 0 !important; }
/* ==========================================================================
   Body banner — dark quote band inside page content.
   Kept inside the 1200px column (like every other content section) and given
   a rounded 3D shadow. Shows the quoted person's photo in an oval bubble on
   the left of the quote; quote text + attribution are pulled live from the
   SKF Quotes DB via the skf/quotes block. No vertical rule on the left end —
   the quote reads cleanly inside its gradient band.
   ========================================================================== */
.skf-section.is-full-bleed.skf-body-banner,
.skf-section.skf-body-banner {
  width: auto;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  border-radius: 18px;
  border: 0;
  background: linear-gradient(120deg, var(--skf-green-deep, #0a3d2e) 0%, var(--skf-green-deep, #0a3d2e) 55%, var(--skf-green-deeper, #062b21) 100%);
  box-shadow:
    0 1px 2px rgba(6, 43, 33, .10),
    0 10px 22px rgba(6, 43, 33, .16),
    0 32px 64px rgba(6, 43, 33, .30);
}
.skf-section.is-full-bleed.skf-body-banner .skf-section__inner,
.skf-section.skf-body-banner .skf-section__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: clamp(30px, 4vw, 56px) clamp(20px, 4vw, 52px);
}
.skf-body-banner .skf-quotes {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
}
.skf-body-banner .skf-quotes .skf-quote {
  margin: 0;
  padding: 0;
  border: 0;
  border-left: 0;
  background: transparent;
  border-radius: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  gap: clamp(22px, 4vw, 56px);
  text-align: left;
}
.skf-body-banner .skf-quotes .skf-quote:not(.has-photo) {
  flex-direction: column;
  justify-content: center;
  gap: 0;
  text-align: center;
}
/* Oval "bubble" photo on the left of the quote */
.skf-body-banner .skf-quote__photo {
  flex: 0 0 auto;
  width: clamp(96px, 15vw, 132px);
  height: clamp(132px, 20vw, 180px);
  margin: 0;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid rgba(255, 255, 255, .28);
  box-shadow: 0 16px 34px rgba(6, 43, 33, .45);
  background: rgba(255, 255, 255, .12);
}
.skf-body-banner .skf-quote__photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.skf-body-banner .skf-quote__body {
  flex: 1 1 auto;
  min-width: 0;
}
.skf-body-banner .skf-quote__text {
  font-size: clamp(22px, 2.4vw, 29px);
  line-height: 1.5;
  margin: 0 0 12px;
}
.skf-body-banner .skf-quote:not(.has-photo) .skf-quote__text { text-align: center; }
.skf-body-banner .skf-quote__author { font-size: 18px; }
.skf-body-banner .skf-quote__role { font-size: 15px; margin-top: 2px; }
@media (max-width: 780px) {
  .skf-body-banner .skf-quotes .skf-quote {
    flex-direction: column;
    justify-content: center;
    text-align: center;
    gap: 18px;
  }
  .skf-body-banner .skf-quote__body { width: 100%; }
  .skf-body-banner .skf-quote__text,
  .skf-body-banner .skf-quote:not(.has-photo) .skf-quote__text { text-align: center; }
}
@media (max-width: 640px) {
  .skf-section.is-full-bleed.skf-body-banner .skf-section__inner,
  .skf-section.skf-body-banner .skf-section__inner { padding: 34px 20px; }
  .skf-body-banner .skf-quote__text { font-size: 20px; }
}


/* Balanced quote marks are added at render time (inside .skf-quote__text),
   never stored in the quote DB — so a quote always shows both ends. */
.skf-quote__text .skf-quote__mark {
  display: inline;
  font-size: 1.35em;
  line-height: 1;
  margin: 0 .16em 0 0;
  vertical-align: -.08em;
}
.skf-quote__text .skf-quote__mark--close { margin: 0 0 0 .16em; }
/* Legacy authored quote boxes carry a single standalone opening glyph above
   the text (mark added before render-time pairing existed). Hide it so no
   quote ever shows an unpaired " — text is already displayed as a quote. */
.skf-quote > .skf-quote__mark { display: none; }
@media (max-width: 640px) {
  .skf-quote__text .skf-quote__mark { font-size: 1.25em; }
}

/* Generic SKF Quotes blocks (outside the banner) with a person photo */
.skf-quote__photo {
  display: inline-block;
  margin: 0 0 16px;
}
.skf-quote__photo img {
  width: 104px;
  height: 104px;
  max-width: none;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid rgba(255, 255, 255, .28);
}

/* Banner hero: person photo bubble (oval) on the left of the quote, quote copy
   on the right, and no vertical rule on the quote's left end. */
.skf-banner-hero__row {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 3vw, 44px);
  text-align: left;
}
.skf-banner-hero__row:not(:has(.skf-banner-hero__photo)) {
  justify-content: center;
  text-align: center;
}
.skf-banner-hero__photo {
  flex: 0 0 auto;
  width: clamp(92px, 12vw, 124px);
  height: clamp(124px, 16vw, 168px);
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid rgba(255, 255, 255, .34);
  box-shadow: 0 14px 30px rgba(6, 43, 33, .5);
  background: #0d4a37;
}
.skf-banner-hero__copy {
  max-width: 780px;
}
/* Remove the default blockquote vertical rule + side padding in the hero */
.skf-banner-hero__text {
  border: 0;
  border-left: 0;
  padding: 0;
}
@media (max-width: 640px) {
  .skf-banner-hero__row {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
  .skf-banner-hero__copy { text-align: center; }
  .skf-banner-hero__photo { width: 88px; height: 118px; }
}

/* Per-page authored SKF quote boxes (.skf-quote) with a person photo: photo
   bubble on the left, quote + attribution on the right, and no vertical rule
   on the left end. */
.skf-quote { border-left: 0; }
.skf-quote.has-photo {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  gap: clamp(20px, 3vw, 44px);
  padding: clamp(24px, 4vw, 44px) clamp(22px, 4vw, 48px);
  text-align: left;
}
.skf-quote.has-photo .skf-quote__photo {
  flex: 0 0 auto;
  width: clamp(92px, 12vw, 124px);
  height: clamp(124px, 16vw, 168px);
  margin: 0;
}
.skf-quote.has-photo .skf-quote__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid rgba(255, 255, 255, .28);
  box-shadow: 0 14px 30px rgba(6, 43, 33, .4);
}
.skf-quote.has-photo .skf-quote__body {
  flex: 1 1 auto;
  min-width: 0;
}
.skf-quote.has-photo .skf-quote__body > p { text-align: left; }
@media (max-width: 720px) {
  .skf-quote.has-photo {
    flex-direction: column;
    justify-content: center;
    text-align: center;
    gap: 18px;
  }
  .skf-quote.has-photo .skf-quote__body { width: 100%; }
  .skf-quote.has-photo .skf-quote__body > p { text-align: center; }
}

/* 3D lift shadow on the mid-body quote banner panels */
.skf-section:not(.skf-body-banner):has(.skf-quote) {
  box-shadow:
    0 1px 2px rgba(6, 43, 33, .10),
    0 10px 22px rgba(6, 43, 33, .16),
    0 30px 60px rgba(6, 43, 33, .28);
}

/* Header banner: let the content stretch to the banner's full (min-)height so
   the quote group is vertically centred within the whole banner, not just its
   own text height. */
.skf-banner-hero {
  display: flex;
  flex-direction: column;
}
.skf-banner-hero__content {
  flex: 1 1 auto;
  height: auto;
}

/* SKF Contacts — card grid (photos/avatars from the SKF Contacts DB) */
.skf-contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  gap: 22px;
}
.skf-contact-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 28px 20px 22px;
  background: var(--skf-white, #fff);
  border: 1px solid var(--skf-border, #dfe8e1);
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(10, 61, 46, .08);
  height: 100%;
}
.skf-contact-card__photo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 104px;
  height: 104px;
  margin: 0 0 14px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--skf-cream, #f4f7f2);
  border: 3px solid #fff;
  box-shadow: 0 10px 22px rgba(10, 61, 46, .16);
}
.skf-contact-card__photo img { width: 100%; height: 100%; object-fit: cover; }
.skf-contact-card__initials {
  font-family: var(--skf-font-head, Georgia, serif);
  font-size: 34px;
  font-weight: 600;
  color: var(--skf-green-deep, #0a3d2e);
}
.skf-contact-card__body {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  min-width: 0;
}
.skf-contact-card__name {
  margin: 0 0 4px;
  font-family: var(--skf-font-head, Georgia, serif);
  font-size: 18px;
  line-height: 1.25;
  color: var(--skf-green-deep, #0a3d2e);
}
.skf-contact-card__org,
.skf-contact-card__role {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.45;
  color: var(--skf-ink-soft, #4a5a50);
}
.skf-contact-card__role { margin-top: 2px; }
.skf-contact-card__link {
  margin-top: auto;
  padding-top: 10px;
  font-size: 13px;
  font-weight: 600;
  color: var(--skf-cta-green, #007a44);
  text-decoration: none;
  word-break: break-word;
}
.skf-contact-card__link:hover { color: var(--skf-cta-green-dark, #006636); }

/* SKF Contacts — supporter feature cards.
   One self-contained card per supporter type: rotating photo on the LEFT,
   content on the RIGHT, call to action pinned at the bottom. */
.skf-contact-cards {
  display: flex;
  flex-direction: column;
  gap: 26px;
}
.skf-contact-feature {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: stretch;
  gap: clamp(20px, 4vw, 46px);
  background: var(--skf-white, #fff);
  border: 1px solid var(--skf-border, #dfe8e1);
  border-radius: 18px;
  overflow: hidden;
  box-shadow:
    0 1px 2px rgba(6, 43, 33, .08),
    0 10px 22px rgba(6, 43, 33, .10),
    0 28px 54px rgba(6, 43, 33, .16);
}
.skf-contact-feature__media {
  flex: 0 0 clamp(220px, 32vw, 340px);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 220px;
  background: linear-gradient(150deg, #eef9f2 0%, #dff1e7 100%);
  position: relative;
}
.skf-contact-feature__rotator {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 220px;
}
.skf-contact-feature__slide {
  position: absolute;
  inset: 0;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .8s ease, visibility .8s ease;
}
.skf-contact-feature__slide.is-active {
  opacity: 1;
  visibility: visible;
}
.skf-contact-feature__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}
.skf-contact-feature__slide.is-logo-contain img {
  object-fit: contain;
  border-radius: 0;
}
.skf-contact-feature__slide figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 8px 14px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--skf-green-deep, #0a3d2e);
  background: rgba(255, 255, 255, .82);
  text-align: center;
}
.skf-contact-feature__media.no-photo .skf-contact-feature__fallback {
  font-family: var(--skf-font-head, Georgia, serif);
  font-size: 72px;
  color: rgba(10, 61, 46, .35);
}
.skf-contact-feature__body {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  flex-direction: column;
  padding: clamp(24px, 3vw, 40px) clamp(22px, 3vw, 40px) clamp(22px, 3vw, 36px) 0;
}
.skf-contact-feature__kicker {
  margin: 0 0 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--skf-cta-orange, #c84f00);
}
.skf-contact-feature__title {
  margin: 0 0 12px;
  font-family: var(--skf-font-head, Georgia, serif);
  font-size: clamp(24px, 3vw, 34px);
  color: var(--skf-green-deep, #0a3d2e);
}
.skf-contact-feature__desc {
  margin: 0 0 20px;
  font-size: 16px;
  line-height: 1.7;
  color: var(--skf-ink-soft, #4a5a50);
}
.skf-contact-feature__actions {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
@media (max-width: 720px) {
  .skf-contact-feature {
    flex-direction: column;
  }
  .skf-contact-feature__media {
    flex-basis: auto;
    width: 100%;
    min-height: 220px;
  }
  .skf-contact-feature__body {
    padding: 0 20px 22px;
  }
}

/* Supporter feature cards — vertical cards, three per row */
.skf-contact-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
  align-items: stretch;
}
.skf-contact-feature {
  flex-direction: column;
}
.skf-contact-feature__media {
  flex: none;
  width: auto;
  height: 230px;
  min-height: 0;
}
.skf-contact-feature__body {
  padding: 24px 22px 22px;
  text-align: center;
  align-items: center;
}
.skf-contact-feature__kicker { margin-bottom: 8px; }
.skf-contact-feature__title {
  font-size: clamp(20px, 2vw, 26px);
}
.skf-contact-feature__desc {
  font-size: 15px;
  line-height: 1.6;
}
.skf-contact-feature__actions { justify-content: center; }
@media (max-width: 1100px) {
  .skf-contact-cards { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 720px) {
  .skf-contact-cards { grid-template-columns: 1fr; }
  .skf-contact-feature__media { width: 100%; }
  .skf-contact-feature__body { padding: 20px 18px 22px; }
}

/* Supporter feature cards — back to one self-contained card per line with the
   rotating photo on the left, content on the right, CTA at the bottom. */
.skf-contact-cards {
  display: flex;
  flex-direction: column;
}
.skf-contact-feature {
  flex-direction: row;
}
.skf-contact-feature__media {
  flex: 0 0 clamp(220px, 30vw, 320px);
  width: auto;
  height: auto;
  min-height: 230px;
}
.skf-contact-feature__body {
  text-align: left;
  align-items: flex-start;
  padding: clamp(24px, 3vw, 40px) clamp(22px, 3vw, 40px) clamp(22px, 3vw, 34px) 0;
}
.skf-contact-feature__title {
  font-size: clamp(24px, 3vw, 34px);
}
.skf-contact-feature__actions { justify-content: flex-start; }
@media (max-width: 720px) {
  .skf-contact-feature { flex-direction: column; }
  .skf-contact-feature__media {
    flex-basis: auto;
    width: 100%;
    height: 240px;
  }
  .skf-contact-feature__body {
    padding: 0 20px 22px;
    text-align: center;
    align-items: center;
  }
}

/* Keep supporter photos proportional — people shown in a square circular
   avatar, logos contained; never stretched to the card's width/height. */
.skf-contact-feature__media { height: 220px; }
.skf-contact-feature__rotator { position: absolute; inset: 0; }
.skf-contact-feature__slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 12px;
}
.skf-contact-feature__slide img {
  width: 168px;
  height: 168px;
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
  object-position: center top;
  border-radius: 50%;
  box-shadow: 0 12px 26px rgba(10, 61, 46, .22);
}
.skf-contact-feature__slide.is-logo-contain img {
  width: auto;
  height: auto;
  max-width: 72%;
  max-height: 78%;
  object-fit: contain;
  object-position: center;
  border-radius: 10px;
  box-shadow: none;
  padding: 4px;
}

/* 3D circular photo avatars — white ring + layered drop shadow for depth */
.skf-contact-feature__slide img {
  border: 3px solid rgba(255, 255, 255, .95);
  box-shadow:
    0 1px 2px rgba(6, 43, 33, .14),
    0 5px 10px rgba(6, 43, 33, .18),
    0 14px 26px rgba(6, 43, 33, .26),
    0 24px 48px rgba(6, 43, 33, .30),
    inset 0 -2px 4px rgba(6, 43, 33, .10);
}
.skf-contact-feature__slide.is-logo-contain img {
  border: 0;
  box-shadow: none;
}

/* Supporter feature cards — make the photo column span the full card height
   (aligned with the content section) and enlarge the photo inside it. */
.skf-contact-feature__media {
  height: auto;
  min-height: 0;
  align-self: stretch;
}
.skf-contact-feature__rotator { min-height: 100%; }
.skf-contact-feature__slide img {
  width: clamp(150px, 17vw, 250px);
  height: clamp(150px, 17vw, 250px);
}
.skf-contact-feature__slide.is-logo-contain img {
  max-width: 84%;
  max-height: 92%;
}
@media (max-width: 720px) {
  .skf-contact-feature__media { min-height: 280px; }
  .skf-contact-feature__slide img {
    width: clamp(150px, 40vw, 220px);
    height: clamp(150px, 40vw, 220px);
  }
}

/* Uniform 20px vertical rhythm between every top-level body section */
.site-main > .wp-block-skf-tricolor-section + .wp-block-skf-tricolor-section {
  margin-top: 20px !important;
}
.site-main > .wp-block-skf-tricolor-section:not(:last-child) {
  margin-bottom: 0 !important;
}
.site-main > .wp-block-skf-tricolor-section:first-child {
  margin-top: 0 !important;
}

/* Guarantee the 20px rhythm for EVERY top-level section in a page body,
   regardless of the block class it carries. */
.site-main > section + section { margin-top: 20px !important; }
.site-main > section:not(:last-child) { margin-bottom: 0 !important; }
.site-main > section:first-child { margin-top: 0 !important; }

/* Program feature sections (Our Programs page). The About Us body reuses the
   same eyebrow label so every section reads as one repeating content unit. */
.skf-program-kicker,
.skf-section-eyebrow {
  margin: 0 0 4px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--skf-cta-orange, #c84f00);
}
.skf-program-cta { margin: 16px 0 0; }

/* ─── Our Approach page (About Us → Our Vision) ─────────────────────── */
.skf-approach-card__box{
  max-width:1200px; margin:0 auto; background:#fff;
  border:1px solid rgba(10,61,46,.08); border-radius:20px; overflow:hidden;
  box-shadow:0 2px 6px rgba(10,61,46,.05), 0 24px 48px -20px rgba(10,61,46,.28), inset 0 1px 0 rgba(255,255,255,.75);
}
.skf-approach-card__media{ height:320px; position:relative; background:#eef2ec; overflow:hidden; }
.skf-approach-card__media img{ width:100%; height:100%; object-fit:cover; display:block; }
.skf-approach-card--logo .skf-approach-card__media{ height:auto; background:linear-gradient(180deg,#fff7ea,#fff); display:flex; align-items:center; justify-content:center; padding:44px 24px 36px; }
.skf-approach-card--logo .skf-approach-card__media img{ width:auto; height:auto; max-height:150px; object-fit:contain; }

/* Our Approach: alternate the logo's three colours (blue #0078c0, green,
   orange) across the content sections so each section has its own background
   and no two neighbours repeat. */
.skf-approach-card--blue .skf-approach-card__box{ background:#eaf3fc; border-color:#9ec9ef; }
.skf-approach-card--green .skf-approach-card__box{ background:#eef9f2; border-color:#7fce9e; }
.skf-approach-card--saffron .skf-approach-card__box{ background:#fff4ec; border-color:#ffb27a; }
.skf-approach-card--blue .skf-approach-card__media{ background:#dcecf9; }
.skf-approach-card--green .skf-approach-card__media{ background:#dff3e6; }
.skf-approach-card--saffron .skf-approach-card__media{ background:#ffe9d6; }
.skf-approach-card--logo .skf-approach-card__media{ background:#fff; }
.skf-approach-card__body{ padding:32px 40px 40px; }
.skf-approach-card__body h2{ margin:0 0 16px; font-family:var(--skf-font-head, Georgia, serif); font-size:30px; line-height:1.25; color:var(--skf-green-deep,#0a3d2e); }
.skf-approach-card__body p{ margin:0 0 16px; font-size:16.5px; line-height:1.75; color:var(--skf-ink,#1f2a24); }
.skf-approach-card__body p:last-child{ margin-bottom:0; }
.skf-approach-card__list{ list-style:none; margin:0; padding:0; }
.skf-approach-card__list li{ margin:0 0 14px; padding:18px 20px; border-left:4px solid var(--skf-cta-green,#007a44); background:#f5faf6; border-radius:0 14px 14px 0; }
.skf-approach-card__list li:last-child{ margin-bottom:0; }
.skf-approach-card__list strong{ display:block; margin-bottom:5px; font-size:16.5px; color:var(--skf-green-deep,#0a3d2e); }
.skf-approach-card__list li, .skf-approach-card__list li a{ font-size:16px; line-height:1.7; color:var(--skf-ink,#1f2a24); }
.skf-approach-card__list a{ color:var(--skf-cta-green,#007a44); font-weight:600; text-decoration:underline; text-underline-offset:3px; }
.skf-approach-note{ font-style:italic; color:#5f6f86; font-size:14.5px; margin-top:20px !important; padding-top:14px; border-top:1px solid #e6ece6; }
.skf-approach-card__cta{ margin-top:24px !important; }
.skf-approach-card__box{ transition:transform .25s ease, box-shadow .25s ease; }
.skf-approach-card:hover .skf-approach-card__box{ transform:translateY(-4px); box-shadow:0 4px 10px rgba(10,61,46,.06), 0 32px 60px -24px rgba(10,61,46,.35); }
@media (max-width:700px){
  .skf-approach-card__media{ height:210px; }
  .skf-approach-card__body{ padding:24px 20px 28px; }
  .skf-approach-card__body h2{ font-size:24px; }
  .skf-approach-card__list li{ padding:14px 14px; }
}

/* Our Approach first card: title spanning full width, logo left of text */
.skf-approach-card--logo .skf-approach-card__head{ padding:34px 40px 0; }
.skf-approach-card--logo .skf-approach-card__head h2{ margin:0; }
.skf-approach-card--logo .skf-approach-card__grid{ display:grid; grid-template-columns:280px 1fr; gap:32px; align-items:center; padding:30px 40px 42px; }
.skf-approach-card--logo .skf-approach-card__media{ height:auto; background:none; padding:0; display:flex; align-items:center; justify-content:center; }
.skf-approach-card--logo .skf-approach-card__media img{ max-height:190px; width:auto; object-fit:contain; }
.skf-approach-card__text p{ margin:0 0 16px; font-size:16.5px; line-height:1.75; color:var(--skf-ink,#1f2a24); }
.skf-approach-card__text p:last-child{ margin-bottom:0; }
@media (max-width:700px){
  .skf-approach-card--logo .skf-approach-card__grid{ grid-template-columns:1fr; text-align:center; padding:26px 20px 30px; }
  .skf-approach-card--logo .skf-approach-card__media{ margin-bottom:4px; }
  .skf-approach-card--logo .skf-approach-card__head{ padding:26px 20px 0; text-align:center; }
  .skf-approach-card--logo .skf-approach-card__text p{ text-align:left; }
}

/* Split cards (title full-width; media left of text) */
.skf-approach-card--split .skf-approach-card__head{ padding:34px 40px 0; }
.skf-approach-card--split .skf-approach-card__head h2{ margin:0; }
.skf-approach-card--split .skf-approach-card__grid{ display:grid; grid-template-columns:40% 60%; align-items:stretch; }
.skf-approach-card--split .skf-approach-card__media{ height:auto; min-height:340px; background:#eef2ec; position:relative; overflow:hidden; }
.skf-approach-card--split .skf-approach-card__media img{ position:absolute; inset:0; width:100%; height:100%; object-fit:cover; }
.skf-approach-card--split .skf-approach-card__text{ padding:32px 40px 40px; }
@media (max-width:700px){
  .skf-approach-card--split .skf-approach-card__grid{ grid-template-columns:1fr; }
  .skf-approach-card--split .skf-approach-card__media{ min-height:0; height:210px; }
  .skf-approach-card--split .skf-approach-card__head{ padding:26px 20px 0; text-align:center; }
  .skf-approach-card--split .skf-approach-card__text{ padding:24px 20px 28px; }
}

/* Equal-height program cards (final): image column collapses in-flow and the
   image fills the exact height of the text column. */
.skf-section:has(.skf-program-kicker) .skf-row.is-layout-2,
.skf-section:has(.skf-section-eyebrow) .skf-row.is-layout-2 { align-items: stretch; }
.skf-section:has(.skf-program-kicker) .skf-row.is-layout-2 > .skf-column:first-child,
.skf-section:has(.skf-section-eyebrow) .skf-row.is-layout-2 > .skf-column:first-child { position: relative; overflow: hidden; min-height: 0; }
.skf-section:has(.skf-program-kicker) .skf-row.is-layout-2 > .skf-column:first-child .wp-block-image,
.skf-section:has(.skf-section-eyebrow) .skf-row.is-layout-2 > .skf-column:first-child .wp-block-image { position: absolute; inset: 0; margin: 0; display: block; }
.skf-section:has(.skf-program-kicker) .skf-row.is-layout-2 > .skf-column:first-child .wp-block-image img,
.skf-section:has(.skf-section-eyebrow) .skf-row.is-layout-2 > .skf-column:first-child .wp-block-image img { position: static; width: 100%; height: 100%; object-fit: cover; border-radius: 18px; }
.skf-section:has(.skf-program-kicker) .skf-row.is-layout-2 .skf-text-block,
.skf-section:has(.skf-section-eyebrow) .skf-row.is-layout-2 .skf-text-block { height: auto; }
@media (max-width: 781px) {
  .skf-section:has(.skf-program-kicker) .skf-row.is-layout-2 > .skf-column:first-child .wp-block-image,
  .skf-section:has(.skf-section-eyebrow) .skf-row.is-layout-2 > .skf-column:first-child .wp-block-image { position: static; inset: auto; }
  .skf-section:has(.skf-program-kicker) .skf-row.is-layout-2 > .skf-column:first-child .wp-block-image img,
  .skf-section:has(.skf-section-eyebrow) .skf-row.is-layout-2 > .skf-column:first-child .wp-block-image img { height: 220px; }
}

/* SKF logo shown whole, transparent with a 3D lift (About Us "Our Story" and
   Our Mission "Our Mission" sections). Background removed + soft shadow baked
   into the PNG. */
.skf-row.is-layout-2 > .skf-column:first-child .wp-block-image.skf-about-logo,
.skf-row.is-layout-2 > .skf-column:first-child .wp-block-image.skf-about-logo img {
  background: transparent;
}
.skf-row.is-layout-2 > .skf-column:first-child .wp-block-image.skf-about-logo img {
  object-fit: contain; padding: 40px; box-sizing: border-box;
}
@media (max-width: 781px) {
  .skf-row.is-layout-2 > .skf-column:first-child .wp-block-image.skf-about-logo img { padding: 28px; }
}

/* Center program CTA buttons under the card text */
.skf-program-cta { text-align: center; }
.skf-approach-card__cta { text-align: center; }

/* Homepage vision: read-more link under the vision statement */
.vision__link { margin: 20px 0 0; }
.vision__link a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  color: var(--skf-cta-green, #007a44);
  text-decoration: none;
  text-underline-offset: 3px;
}
.vision__link a:hover,
.vision__link a:focus { color: var(--skf-cta-green-dark, #006636); text-decoration: underline; }
.vision__link [aria-hidden="true"] { color: var(--skf-cta-orange, #c84f00); }

/* Our programs teaser grid — three vertical cards in a row */
.skf-program-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 22px; }
.skf-program-teaser { display: flex; flex-direction: column; background: #fff; border: 1px solid rgba(10,61,46,.08); border-radius: 16px; overflow: hidden; box-shadow: 0 12px 30px -14px rgba(10,61,46,.25); transition: transform .25s ease, box-shadow .25s ease; }
.skf-program-teaser:hover { transform: translateY(-4px); box-shadow: 0 22px 44px -18px rgba(10,61,46,.32); }
.skf-program-teaser__img { width: 100%; height: 180px; object-fit: cover; display: block; }
.skf-program-teaser__content { padding: 18px 18px 20px; display: flex; flex-direction: column; flex: 1 1 auto; }
.skf-program-teaser__content h3 { margin: 0 0 8px; font-family: var(--skf-font-head, Georgia, serif); font-size: 20px; color: var(--skf-green-deep, #0a3d2e); }
.skf-program-teaser__content p { margin: 0 0 16px; font-size: 14.5px; line-height: 1.65; color: var(--skf-ink, #1f2a24); flex: 1 1 auto; }
.skf-program-teaser__btn { align-self: center; }
.skf-program-teasers-more { margin-top: 26px !important; }
@media (max-width: 900px) {
  .skf-program-grid { grid-template-columns: 1fr; }
}
@media (max-width: 1200px) and (min-width: 901px) {
  .skf-program-grid { grid-template-columns: repeat(3, 1fr); gap: 16px; }
}

/* Our Mission — Our Approach program cards:
   name header -> image -> short description -> button footer. */
.skf-program-cards { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; margin-top: 24px; }
.skf-program-cards__card { display: flex; flex-direction: column; background: var(--skf-white, #fff); border: 1px solid var(--skf-border, #dfe8e1); border-radius: 18px; overflow: hidden; box-shadow: 0 18px 40px -18px rgba(10, 61, 46, .28); transition: transform .25s ease, box-shadow .25s ease; }
.skf-program-cards__card:hover { transform: translateY(-4px); box-shadow: 0 26px 50px -20px rgba(10, 61, 46, .34); }
.skf-program-cards__head { margin: 0; padding: 16px 20px; font-family: var(--skf-font-head, Georgia, serif); font-size: 20px; line-height: 1.25; color: var(--skf-forest, #0a3d2e); }
.skf-program-cards__img { display: block; width: 100%; height: 170px; object-fit: cover; }
.skf-program-cards__body { flex: 1 1 auto; padding: 16px 20px 4px; }
.skf-program-cards__desc { margin: 0; font-size: 15px; line-height: 1.65; color: var(--skf-ink-soft, #4a5a50); }
.skf-program-cards__foot { padding: 14px 20px 20px; }
.skf-program-cards__foot .btn { width: 100%; justify-content: center; }
/* Each program card carries one of the logo's three colours (green / saffron / blue). */
.skf-program-cards__card--green { background: #eef9f2; border-color: #7fce9e; }
.skf-program-cards__card--green .skf-program-cards__head { color: #0a7a45; }
.skf-program-cards__card--saffron { background: #fff4ec; border-color: #ffb27a; }
.skf-program-cards__card--saffron .skf-program-cards__head { color: #c84f00; }
.skf-program-cards__card--blue { background: #eaf3fc; border-color: #9ec9ef; }
.skf-program-cards__card--blue .skf-program-cards__head { color: #2b6cb0; }
/* Card button matches the card's colour. */
.skf-program-cards__card--green .btn { background: #0a7a45; border-color: #0a7a45; color: #fff; }
.skf-program-cards__card--green .btn:hover,
.skf-program-cards__card--green .btn:focus { background: #075c34; border-color: #075c34; color: #fff; }
.skf-program-cards__card--saffron .btn { background: #c84f00; border-color: #c84f00; color: #fff; }
.skf-program-cards__card--saffron .btn:hover,
.skf-program-cards__card--saffron .btn:focus { background: #a84200; border-color: #a84200; color: #fff; }
.skf-program-cards__card--blue .btn { background: #2b6cb0; border-color: #2b6cb0; color: #fff; }
.skf-program-cards__card--blue .btn:hover,
.skf-program-cards__card--blue .btn:focus { background: #1f5590; border-color: #1f5590; color: #fff; }
@media (max-width: 900px) {
  .skf-program-cards { grid-template-columns: 1fr; }
}

/* Header refinements: +10px menubar height, bigger brand title that spans the
   tagline, and 20px spacing between the logo and the wordmark. */
.site-header { padding-top: 20px; }
.site-branding { gap: 20px; }
.site-branding__text { max-width: none; }
.site-title { font-size: 24px; letter-spacing: -0.01em; white-space: nowrap; }
.site-header .site-description { max-width: none; white-space: nowrap; }
@media (max-width: 1280px) {
  .site-title { font-size: 26px; }
  .site-description { display: block; }
  .site-branding { gap: 18px; }
  .custom-logo-link img { height: 44px; }
}
@media (max-width: 1150px) {
  .site-title { font-size: 24px; }
  .site-branding { gap: 16px; }
}

/* Reduce the header tagline font by 1px (8px -> 7px desktop, 9px -> 8px mobile) */
.site-header .site-description { font-size: 9px; }
@media (max-width: 640px) {
  .site-header .site-description { font-size: 9px; }
}

/* Increase the header logo size by ~10% (44px -> 48px) */
.custom-logo-link img { height: 48px; }

/* Vertically centre the logo with the wordmark and bump it up another ~10% (48->53px) */
.custom-logo-link { display: flex; align-items: center; }
.custom-logo-link img { height: 53px; vertical-align: middle; }

/* Centre the logo against the title text */
.site-branding { align-items: center; }
.site-branding__text { align-self: center; display: flex; flex-direction: column; justify-content: center; }

/* Top-align the logo with the title text */
.site-branding { align-items: flex-start; }
.site-branding__text { align-self: flex-start; justify-content: flex-start; }

/* Nudge the logo up 10px within the header row */
.custom-logo-link img { margin-top: -10px; }

/* Logo size +10% (53px -> 58px) */
.custom-logo-link img { height: 58px; }

/* Our Board page: larger, centred circular member avatars with a 3D shadow */
.page-id-11944 .skf-row.is-layout-2 > .skf-column:first-child {
  display: flex;
  align-items: center;
  justify-content: center;
}
.page-id-11944 .skf-row.is-layout-2 > .skf-column:first-child img {
  width: 300px;
  height: 300px;
  max-width: 100%;
  object-fit: cover;
  object-position: center top;
  border-radius: 50%;
  border: 4px solid rgba(255, 255, 255, .95);
  box-shadow:
    0 1px 2px rgba(6, 43, 33, .14),
    0 6px 12px rgba(6, 43, 33, .18),
    0 16px 30px rgba(6, 43, 33, .26),
    0 28px 54px rgba(6, 43, 33, .30),
    inset 0 -2px 4px rgba(6, 43, 33, .10);
}
@media (max-width: 640px) {
  .page-id-11944 .skf-row.is-layout-2 > .skf-column:first-child img {
    width: 230px;
    height: 230px;
  }
}

/* Homepage Programs: "Social Change" foundation box below the three programs */
.programs__social-change {
  margin-top: 28px;
  padding: clamp(28px, 4vw, 44px) clamp(24px, 4vw, 48px);
  background: linear-gradient(135deg, var(--skf-green-deep, #0a3d2e) 0%, var(--skf-green-deep-2, #062b21) 100%);
  border: 1px solid rgba(246, 201, 69, .35);
  border-radius: 18px;
  color: #fff;
  box-shadow:
    0 1px 2px rgba(6, 43, 33, .12),
    0 12px 26px rgba(6, 43, 33, .18),
    0 30px 60px rgba(6, 43, 33, .24);
  text-align: center;
}
.programs__social-change-eyebrow {
  margin: 0 0 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--skf-gold, #f6c945);
}
.programs__social-change-title {
  margin: 0 0 12px;
  font-family: var(--skf-font-head, Georgia, serif);
  font-size: clamp(26px, 3.4vw, 38px);
  color: #fff;
}
.programs__social-change-text {
  margin: 0 auto;
  max-width: 900px;
  font-size: clamp(16px, 1.6vw, 18px);
  line-height: 1.7;
  color: rgba(255, 255, 255, .92);
}

/* Homepage stats: small sourced caption under the bar */
.impact__note {
  margin: 14px 0 0;
  text-align: center;
  font-size: 13px;
  color: var(--skf-ink-soft, #4a5a50);
}
.impact__note a { font-weight: 600; color: var(--skf-cta-green, #007a44); text-decoration: none; }
.impact__note a:hover { text-decoration: underline; }

/* Get Involved support cards: never strand a 4th card.
   Desktop wide = 4 across; tablet = 2x2; small = 1. */
.skf-support-cards { grid-template-columns: repeat(2, minmax(0, 1fr)); }
@media (min-width: 1000px) {
  .skf-support-cards:has(> a:nth-child(4)) { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}
@media (min-width: 641px) and (max-width: 999px) {
  .skf-support-cards:has(> a:nth-child(4)) { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
.skf-program-oneliner {
  margin: 4px 0 14px;
  font-style: italic;
  color: var(--skf-ink-soft, #4a5a50);
}

/* About Us wayfinding grid: centre a short last row (5 cards in a 3-col grid) */
.page-id-11813 .skf-child-pages .skf-row.is-layout-3 { justify-content: center; }
.page-id-11813 .skf-child-pages .skf-row.is-layout-3 > .skf-column { max-width: 380px; }

/* About Us wayfinding: secondary pill buttons (smaller/lighter than the
   primary orange CTAs — these are wayfinding, not primary asks). */
.skf-wayfinding-links { margin: 0; display: flex; flex-wrap: wrap; align-items: center; gap: 12px 16px; }
.skf-wayfinding-links a {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 9px 18px; border-radius: 999px;
  border: 2px solid var(--skf-cta-green, #007a44);
  background: #fff; color: var(--skf-cta-green, #007a44);
  font-size: 14px; font-weight: 600; line-height: 1.2; text-decoration: none;
  transition: all var(--skf-transition);
}
.skf-wayfinding-links a:hover,
.skf-wayfinding-links a:focus {
  background: var(--skf-cta-green, #007a44); color: #fff; transform: translateY(-2px);
}
@media (max-width: 600px) {
  .skf-wayfinding-links { flex-direction: column; align-items: stretch; gap: 10px; }
}

/* About Us governance: small board photo strip above the CTA. */
.skf-board-strip { list-style: none; margin: 22px 0 0; padding: 0; display: flex; flex-wrap: wrap; justify-content: center; gap: 20px 34px; }
.skf-board-strip li { display: flex; align-items: center; gap: 14px; }
.skf-board-strip img {
  width: 64px; height: 64px; border-radius: 50%; object-fit: cover;
  border: 2px solid #fff; box-shadow: 0 4px 12px rgba(10, 61, 46, .15); flex: 0 0 auto;
}
.skf-board-strip__text { display: block; line-height: 1.25; }
.skf-board-strip__name { display: block; font-weight: 700; font-size: 15px; color: var(--skf-green-deep, #0a3d2e); }
.skf-board-strip__role { display: block; margin-top: 2px; font-size: 12px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--skf-ink-soft, #4a5a50); }
@media (max-width: 600px) {
  .skf-board-strip { flex-direction: column; align-items: center; gap: 14px; }
  .skf-board-strip li { justify-content: center; }
}

/* Contact Us page: restore a wide two-column grid (the later "team photo"
   auto-fill grid was overriding it and cramming the form into 4 thin cells). */
.skf-contact-grid:has(.skf-contact-form){ grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 28px; align-items: stretch; }
.skf-contact-grid:has(.skf-contact-form) .skf-contact-card{ align-items: flex-start; text-align: left; height: auto; }
@media (max-width: 782px) {
  .skf-contact-grid:has(.skf-contact-form){ grid-template-columns: 1fr; }
}

/* Mobile: center the office (USA/India) card content inside its box */
@media (max-width: 782px) {
  .skf-contact-grid:has(.skf-contact-form) .skf-contact-card{ align-items: center; text-align: center; }
  .skf-contact-grid:has(.skf-contact-form) .skf-contact-card address,
  .skf-contact-grid:has(.skf-contact-form) .skf-contact-card p{ margin-left: auto; margin-right: auto; }
}

/* Contact Us: keep the 2-column layout (form | offices). Inside column 2 each
   office is its own section with the country as a themed header bar, followed
   by a full-width map and the address details. Body backgrounds use a lighter
   shade of the theme colour (green for USA, saffron for India). */
.skf-contact-grid:has(.skf-contact-form) { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 28px; align-items: stretch; }
.skf-contact-grid:has(.skf-contact-form) > * { min-width: 0; }
.skf-contact-grid:has(.skf-contact-form) > .skf-contact-form { max-width: none; width: 100%; margin: 0; }
.skf-contact-grid:has(.skf-contact-form) .skf-contact-cards { gap: 24px; }
.skf-contact-grid:has(.skf-contact-form) .skf-contact-card {
  display: block; text-align: left; padding: 0; height: auto; overflow: hidden;
  border: 1px solid var(--skf-border, #dfe8e1); border-radius: 18px;
  box-shadow: 0 12px 30px rgba(10, 61, 46, .10);
}
.skf-contact-grid:has(.skf-contact-form) .skf-contact-card__header {
  margin: 0; padding: 14px 22px; font-size: 20px; line-height: 1.2; color: #fff; text-align: center;
}
.skf-contact-grid:has(.skf-contact-form) .skf-contact-card--usa { background: #eef9f2; border-color: #7fce9e; }
.skf-contact-grid:has(.skf-contact-form) .skf-contact-card--india { background: #fff4ec; border-color: #ffb27a; }
.skf-contact-grid:has(.skf-contact-form) .skf-contact-card--usa .skf-contact-card__header { background: #0a7a45; }
.skf-contact-grid:has(.skf-contact-form) .skf-contact-card--india .skf-contact-card__header { background: #c84f00; }
.skf-contact-grid:has(.skf-contact-form) .skf-contact-card__map { width: 100%; }
.skf-contact-grid:has(.skf-contact-form) .skf-contact-card__map iframe {
  display: block; width: 100%; height: 240px; border: 0; border-radius: 0;
}
.skf-contact-grid:has(.skf-contact-form) .skf-contact-card__info { padding: 18px 22px 22px; text-align: center; }
.skf-contact-grid:has(.skf-contact-form) .skf-contact-card__phone { font-weight: 400; }
.skf-contact-grid:has(.skf-contact-form) .skf-contact-card address,
.skf-contact-grid:has(.skf-contact-form) .skf-contact-card p { margin-left: 0; margin-right: 0; }
@media (max-width: 782px) {
  .skf-contact-grid:has(.skf-contact-form) { grid-template-columns: 1fr; }
}

/* ==========================================================================
   SUPPORT CARDS (individual cards + rotating photo carousel)
   ========================================================================== */
.skf-support-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 34px;
}
.skf-support-card {
  display: flex; flex-direction: column;
  background: var(--skf-white, #fff);
  border: 1px solid var(--skf-border, #dfe8e1);
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(10, 61, 46, .10);
  overflow: hidden;
}
.skf-support-card__media {
  position: relative;
  aspect-ratio: 1 / 1;
  background: #eef7f1;
  overflow: hidden;
}
.skf-support-card__media img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  margin: 0;
  object-fit: cover;
  opacity: 0;
  transition: opacity .8s ease;
}
.skf-support-card__media img.is-active { opacity: 1; }
.skf-support-card__body { padding: 18px 20px 22px; }
.skf-support-card__title {
  margin: 0 0 8px;
  font-size: 19px;
  line-height: 1.25;
  color: var(--skf-forest, #0a3d2e);
}
.skf-support-card__body p {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--skf-ink-soft, #4a5a50);
}
@media (max-width: 960px) {
  .skf-support-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 560px) {
  .skf-support-grid { grid-template-columns: 1fr; gap: 18px; }
}
@media (prefers-reduced-motion: reduce) {
  .skf-support-card__media img { transition: none; }
}

/* ==========================================================================
   STAY CONNECTED — social channel cards (scoped to page 11839 so they never
   collide with the Social Media page's separate .skf-social-card component)
   ========================================================================== */
.page-id-11839 .skf-social-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 30px;
}
.page-id-11839 .skf-social-card {
  display: flex;
  flex-direction: column;
  background: var(--skf-white, #fff);
  border: 1px solid var(--skf-border, #dfe8e1);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(10, 61, 46, .10);
  transition: transform .18s ease, box-shadow .18s ease;
}
.page-id-11839 .skf-social-card:hover { transform: translateY(-4px); box-shadow: 0 24px 50px rgba(10, 61, 46, .16); }

/* Card header band — platform name */
.page-id-11839 .skf-social-card__head {
  background: var(--brand, var(--skf-forest, #0a3d2e));
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: .05em;
  text-transform: uppercase;
  text-align: center;
  padding: 15px 18px;
}

/* Card body — logo (row 1) then text (row 2) */
.page-id-11839 .skf-social-card__body {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  padding: 28px 24px 22px;
}
.page-id-11839 .skf-social-card__logo {
  width: 140px; height: 140px;
  display: flex; align-items: center; justify-content: center;
  background: var(--skf-cream, #f4f7f2);
  border-radius: 26px;
  margin-bottom: 22px;
}
.page-id-11839 .skf-social-card__logo img { width: 92px; height: 92px; object-fit: contain; display: block; }
.page-id-11839 .skf-social-card__desc { margin: 0; font-size: 14.5px; line-height: 1.6; color: var(--skf-ink-soft, #4a5a50); width: 100%; }

/* Card footer band — centred follow button */
.page-id-11839 .skf-social-card__foot {
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
  background: var(--skf-cream, #f4f7f2);
  border-top: 1px solid var(--skf-border, #dfe8e1);
}
.page-id-11839 .skf-social-card__link {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 12px 24px;
  border-radius: 999px;
  background: var(--brand, var(--skf-green-dark, #007a44));
  color: #fff;
  font-weight: 600; font-size: 14.5px; line-height: 1;
  text-decoration: none;
  box-shadow: 0 6px 16px rgba(10, 61, 46, .18);
  transition: transform .16s ease, box-shadow .16s ease, filter .16s ease;
}
.page-id-11839 .skf-social-card__link:hover,
.page-id-11839 .skf-social-card__link:focus {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(10, 61, 46, .26);
  filter: brightness(1.06);
  color: #fff;
  text-decoration: none;
}
.page-id-11839 .skf-social-card:nth-child(1) { --brand: #e62117; }
.page-id-11839 .skf-social-card:nth-child(2) { --brand: #1877f2; }
.page-id-11839 .skf-social-card:nth-child(3) { --brand: #d6336c; }
.page-id-11839 .skf-social-card:nth-child(4) { --brand: #111111; }
.page-id-11839 .skf-social-card:nth-child(5) { --brand: #0a66c2; }
@media (max-width: 960px) { .page-id-11839 .skf-social-cards { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 560px) { .page-id-11839 .skf-social-cards { grid-template-columns: 1fr; gap: 18px; } }

/* ==========================================================================
   OUR IMPACT — success story rows with rotating media on the right
   ========================================================================== */
.skf-impact-story {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 34px;
  align-items: center;
}
.skf-impact-story__text .skf-section-eyebrow { margin-top: 0; }
.skf-impact-story__text h2 { margin-top: 6px; }
.skf-impact-media {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: 18px;
  overflow: hidden;
  background: #eef7f1;
  box-shadow: 0 22px 44px rgba(10, 61, 46, .18);
}
.skf-impact-media img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity .9s ease;
}
.skf-impact-media img.is-active { opacity: 1; }
@media (max-width: 860px) {
  .skf-impact-story { grid-template-columns: 1fr; gap: 22px; }
}
@media (prefers-reduced-motion: reduce) {
  .skf-impact-media img { transition: none; }
}

/* ==========================================================================
   Header brand — subtle 3D lift for the logo, site name and tagline
   ========================================================================== */
.site-header .custom-logo-link { transform: translateY(-3px); }
.site-header .custom-logo-link img {
  filter: drop-shadow(0 2px 3px rgba(10, 61, 46, .32));
}
.site-header .site-title,
.site-header .site-title a {
  text-shadow: 0 1px 1px rgba(10, 61, 46, .28);
}
.site-header .site-description {
  text-shadow: 0 1px 1px rgba(10, 61, 46, .24);
}

/* Mobile header brand: keep logo + wordmark + tagline inside the viewport
   (a later "header refinements" block forces 24px nowrap, which overflowed). */
@media (max-width: 640px) {
  .site-header .site-branding { flex: 1 1 0; min-width: 0; gap: 10px; }
  .site-header .custom-logo-link { transform: translateY(9px); }
  .site-header .site-branding__text { min-width: 0; max-width: 100%; text-align: center; }
  .site-header .site-title { font-size: 19.8px; white-space: normal; letter-spacing: 0; line-height: 1.15; }
  .site-header .site-title a { white-space: normal; }
  .site-header .site-description { white-space: normal; max-width: 100%; font-size: 8px; }
  .site-header .custom-logo-link img { height: 34px; }
}

/* Donate Now / Volunteer Now buttons — soft 3D shadow + slight upward nudge */
.header-cta .btn,
.skf-footer-quote-cta__actions .btn {
  position: relative;
  top: -3px;
  box-shadow: 0 6px 14px rgba(10, 61, 46, .28), 0 2px 3px rgba(10, 61, 46, .20);
  transition: transform .16s ease, box-shadow .16s ease, background .22s ease;
}
.header-cta .btn:hover,
.header-cta .btn:focus,
.skf-footer-quote-cta__actions .btn:hover,
.skf-footer-quote-cta__actions .btn:focus {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(10, 61, 46, .34), 0 3px 6px rgba(10, 61, 46, .24);
}

/* Menus — subtle 3D text effect + slight upward nudge (desktop row only;
   below 1025px the nav is an absolutely-positioned dropdown, so leave it) */
@media (min-width: 1025px) {
  .main-nav {
    position: relative;
    top: -3px;
  }
}
.main-nav a {
  text-shadow: 0 1px 1px rgba(10, 61, 46, .22);
}
.main-nav a:hover,
.main-nav a:focus {
  text-shadow: 0 1px 1px rgba(10, 61, 46, .32);
}
.main-nav .sub-menu a {
  text-shadow: 0 1px 1px rgba(10, 61, 46, .18);
}
.footer-widget a {
  text-shadow: 0 1px 1px rgba(0, 0, 0, .45);
}
.footer-widget a:hover,
.footer-widget a:focus {
  text-shadow: 0 1px 2px rgba(0, 0, 0, .5);
}

/* ==========================================================================
   SUPPORTER TESTIMONIAL TEASER (home) — vertical cards, 3 per row
   ========================================================================== */
.skf-supporters-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  align-items: stretch;
}
.skf-supporter-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin: 0;
  padding: 30px 26px 28px;
  background: var(--skf-white, #fff);
  border: 1px solid var(--skf-border, #dfe8e1);
  border-top: 4px solid var(--skf-cta-green, #007a44);
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(10, 61, 46, .10);
}
.skf-supporter-card__photo {
  width: 108px; height: 108px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--skf-border, #dfe8e1);
  margin-bottom: 16px;
}
.skf-supporter-card__who { display: block; margin-bottom: 14px; }
.skf-supporter-card__name { display: block; font-family: var(--skf-font-head, Georgia, serif); font-size: 20px; font-weight: 600; color: var(--skf-green-deep, #0a3d2e); }
.skf-supporter-card__role { display: block; margin-top: 3px; font-size: 13px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--skf-cta-green, #007a44); }
.skf-supporter-card__quote {
  margin: 0;
  color: var(--skf-ink-soft, #4a5a50);
  font-family: var(--skf-font-head, Georgia, serif);
  font-size: 16.5px;
  font-style: italic;
  line-height: 1.55;
}
.skf-supporter-card__mark {
  font-family: var(--skf-font-head, Georgia, serif);
  font-size: 1.3em; line-height: 1;
  color: var(--skf-cta-green, #007a44);
  vertical-align: -.06em; margin: 0 .1em;
}
.skf-testimonial__more { text-align: center; }
.skf-blog__more { text-align: center; margin-top: 30px; }
@media (max-width: 960px) {
  .skf-supporters-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 640px) {
  .skf-supporters-grid { grid-template-columns: 1fr; gap: 18px; }
  .skf-supporter-card { padding: 26px 22px 24px; }
}

/* Our Board page: center images within their columns/sections */
.page-id-11944 main figure.wp-block-image,
.page-id-11944 main .skf-column img,
.page-id-11944 main .wp-block-image img{ display:block; margin-left:auto; margin-right:auto; }
.page-id-11944 main .skf-column{ text-align:center; }
.page-id-11944 main .skf-column .skf-text-block{ text-align:center; }

/* Get Involved: responsibility tags as small buttons */
.skf-gi-buttons{ display:flex; flex-wrap:wrap; gap:8px; margin-top:10px; }
.skf-gi-btn{ font-size:12px; padding:6px 12px; color:var(--skf-cta-green,#007a44); background:#fff; border-color:var(--skf-cta-green,#007a44); }
.skf-gi-btn:hover, .skf-gi-btn:focus{ background:var(--skf-cta-green,#007a44); border-color:var(--skf-cta-green,#007a44); color:#fff; }

/* Homepage "Social Change" box — saffron treatment */
.programs__social-change{
  background: linear-gradient(135deg, #fff7ee 0%, #fff4ec 100%);
  border: 2px solid #ffb27a;
  color: var(--skf-ink, #1f2a24);
  box-shadow: 0 1px 2px rgba(200,79,0,.08), 0 12px 26px rgba(200,79,0,.12), 0 26px 50px rgba(200,79,0,.14);
}
.programs__social-change-eyebrow{ color: var(--skf-cta-orange, #c84f00); }
.programs__social-change-title{ color: var(--skf-green-deep, #0a3d2e); }
.programs__social-change-text{ color: var(--skf-ink-soft, #4a5a50); }

/* Our Mission: centre the photos in their column. The tall ~200-word text
   column was forcing a heavy centre-crop of the landscape photos; cap the
   image height and centre it so the subject stays in frame.
   (The 3D logo uses .skf-about-logo and is exempt.) */
.page-id-21613 .skf-section:has(.skf-section-eyebrow) .skf-row.is-layout-2 > .skf-column:first-child .wp-block-image:not(.skf-about-logo) { display: flex; align-items: center; justify-content: center; position: absolute; inset: 0; margin: 0; }
.page-id-21613 .skf-section:has(.skf-section-eyebrow) .skf-row.is-layout-2 > .skf-column:first-child .wp-block-image:not(.skf-about-logo) img { height: auto; max-height: 440px; width: 100%; object-fit: cover; object-position: center; }
@media (max-width: 781px) {
  .page-id-21613 .skf-section:has(.skf-section-eyebrow) .skf-row.is-layout-2 > .skf-column:first-child .wp-block-image:not(.skf-about-logo) img { max-height: 300px; }
}

/* Blog listing: 20px spacing before the footer banner / footer */
.blog main{ margin-bottom:20px; }
.blog .skf-footer-quote-cta{ margin-top:20px; margin-bottom:20px; }
.blog .skf-footer-quote-cta + .skf-site-faq,
.blog .skf-footer-quote-cta + .skf-pre-footer{ margin-top:20px; }

/* Blog listing: 20px below the last card before the section/footer band */
.blog .post-grid{ margin-bottom:20px; }
.blog .skf-section__inner{ padding-bottom:20px; }

/* Blog listing: 20px between the intro section and the cards */
.blog .post-grid{ margin-top:20px; }

/* Blog posts: every content image (featured banner + each in-section image)
   gets 20px of breathing room on every side so it never touches the text,
   and all of them render at one uniform size (full width, 16:9 crop). */
.single .post-thumbnail { margin: 20px 0; }
.single .entry-content .wp-block-image { margin: 20px 0; }
.single .entry-content .wp-block-image img,
.single .post-thumbnail img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center;
  border-radius: var(--skf-radius);
}

/* Blog posts: each section (wrapped by main.js into .skf-post-section) sits
   in a box of its own, matching the rounded look of the quote-banner bands. */
.single .entry-content > .skf-post-section {
  display: flow-root;
  background: var(--skf-white);
  border: 1px solid var(--skf-border);
  border-radius: var(--skf-radius-lg);
  box-shadow: 0 1px 2px rgba(10, 61, 46, .05), 0 10px 24px rgba(10, 61, 46, .06);
  padding: clamp(22px, 3vw, 34px);
  margin: 0 0 20px;
}
.single .entry-content > .skf-post-section > :first-child { margin-top: 0; }
.single .entry-content > .skf-post-section > :last-child { margin-bottom: 0; }
@media (max-width: 640px) {
  .single .entry-content > .skf-post-section { padding: 18px; margin-bottom: 16px; }
}

/* Blog posts: use the full site container width (1200px) instead of the
   narrow 820px reading column, so every blog matches the rest of the site. */
.single .site-main--narrow { max-width: var(--skf-container); }

/* Blog posts: an image floated to the right of the text (.skf-float-right),
   framed as a 3D photo with a soft lifted shadow, 20px clear on all sides. */
.single .entry-content .wp-block-image.skf-float-right {
  float: right;
  width: 40%;
  max-width: 440px;
  margin: 20px;
  perspective: 1200px;
}
.single .entry-content .wp-block-image.skf-float-right img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: auto;
  object-fit: fill;
  border: 6px solid #fff;
  border-radius: 16px;
  background: #fff;
  box-shadow:
    0 1px 2px rgba(10, 61, 46, .18),
    0 12px 24px rgba(10, 61, 46, .22),
    0 30px 60px rgba(10, 61, 46, .30);
  transform: perspective(1200px) rotateY(-7deg) rotateX(4deg);
  transition: transform .35s ease, box-shadow .35s ease;
}
.single .entry-content .wp-block-image.skf-float-right img:hover {
  transform: perspective(1200px) rotateY(0deg) rotateX(0deg);
  box-shadow:
    0 1px 2px rgba(10, 61, 46, .18),
    0 16px 30px rgba(10, 61, 46, .24),
    0 40px 80px rgba(10, 61, 46, .34);
}
@media (max-width: 640px) {
  .single .entry-content .wp-block-image.skf-float-right {
    float: none;
    width: 100%;
    max-width: 100%;
    margin: 20px 0;
  }
  .single .entry-content .wp-block-image.skf-float-right img { transform: none; }
}
