/*
Theme Name: Kadence Child - Christ's Hope
Theme URI: https://christshope.uk
Description: Child theme of Kadence with custom homepage for Christ's Hope UK.
Author: Matt Sims
Author URI: https://christshope.uk
Template: kadence
Version: 1.0.0
Text Domain: kadence-child
*/

/* =========================================================
   CHRIST'S HOPE CUSTOM HOMEPAGE STYLES
   ========================================================= */

:root {
  --ch-green: #0ba34d;
  --ch-green-dark: #196e33;
  --ch-gold: #fbc100;
  --ch-gold-hover: #d89a04;
  --ch-text: #64605f;
  --ch-text-dark: #020203;
  --ch-gray-light: #edf2f7;
  --ch-gray-lighter: #f7fafc;
  --ch-white: #ffffff;
}

/* Utility classes scoped to our custom sections */
.ch-section { padding: 96px 24px; position: relative; }
.ch-section-sm { padding: 64px 24px; }
.ch-container { max-width: 1290px; margin: 0 auto; }
.ch-container-narrow { max-width: 900px; margin: 0 auto; }
.ch-text-center { text-align: center; }
.ch-bg-white { background: #ffffff; }
.ch-bg-gray { background: var(--ch-gray-lighter); }
.ch-bg-hero {
  background: linear-gradient(135deg, rgb(242,255,245) 0%, rgb(127,201,148) 97%);
}

.ch-h1 {
  font-family: 'Inter', sans-serif !important;
  font-weight: 900 !important;
  font-size: clamp(32px, 5vw, 52px) !important;
  line-height: 1.15 !important;
  color: var(--ch-green) !important;
  margin: 0 0 24px 0 !important;
}
.ch-h2 {
  font-family: 'Inter', sans-serif !important;
  font-weight: 800 !important;
  font-size: clamp(24px, 3.5vw, 36px) !important;
  line-height: 1.2 !important;
  color: var(--ch-green) !important;
  margin: 0 0 16px 0 !important;
}
.ch-h3 {
  font-family: 'Inter', sans-serif !important;
  font-weight: 800 !important;
  font-size: 20px !important;
  color: var(--ch-green-dark) !important;
  margin: 0 0 8px 0 !important;
}
.ch-lead {
  font-family: 'Jost', sans-serif;
  font-size: 19px;
  line-height: 1.6;
  color: var(--ch-text);
  max-width: 640px;
  margin: 0 auto 32px;
}
.ch-p {
  font-family: 'Jost', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ch-text);
  margin: 0 0 12px 0;
}

/* Badge */
.ch-badge {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(11,163,77,0.12);
  color: var(--ch-green-dark);
  font-family: 'Jost', sans-serif;
  font-size: 15px;
  font-weight: 500;
  border-radius: 50px;
  margin-bottom: 24px;
}

/* Buttons */
.ch-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 18px 36px;
  border-radius: 50px;
  font-family: 'Jost', sans-serif;
  font-size: 17px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  line-height: 1;
}
.ch-btn-gold {
  background: var(--ch-gold);
  color: #fff !important;
}
.ch-btn-gold:hover {
  background: var(--ch-gold-hover);
  box-shadow: 0 15px 25px -7px rgba(0,0,0,0.15);
  transform: translateY(-2px);
}
.ch-btn-green {
  background: var(--ch-green);
  color: #fff !important;
}
.ch-btn-green:hover {
  background: var(--ch-green-dark);
  box-shadow: 0 15px 25px -7px rgba(0,0,0,0.15);
  transform: translateY(-2px);
}
.ch-btn-outline {
  background: transparent;
  border: 2px solid var(--ch-green);
  color: var(--ch-green) !important;
}
.ch-btn-outline:hover {
  background: var(--ch-green);
  color: #fff !important;
}
.ch-btn-row {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Cards */
.ch-card {
  background: #fff;
  border: 1px solid var(--ch-gray-light);
  border-radius: 30px;
  padding: 28px;
  box-shadow: 0 15px 15px -10px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}
.ch-card:hover {
  box-shadow: 0 0 60px 5px rgba(0,0,0,0.08);
  transform: translateY(-4px);
}

/* Counters grid */
.ch-counters-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
@media (min-width: 640px) {
  .ch-counters-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 1024px) {
  .ch-counters-grid { grid-template-columns: repeat(6, 1fr); }
}
.ch-counter {
  text-align: center;
  padding: 24px 16px;
}
.ch-counter-icon { font-size: 40px; margin-bottom: 12px; line-height: 1; }
.ch-counter-value {
  font-family: 'Inter', sans-serif;
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 900;
  color: var(--ch-green);
  margin-bottom: 4px;
  line-height: 1.1;
}
.ch-counter-label {
  font-family: 'Jost', sans-serif;
  font-size: 14px;
  color: var(--ch-text);
  font-weight: 500;
}
.ch-counter-rate {
  display: inline-block;
  font-size: 12px;
  padding: 3px 10px;
  border-radius: 50px;
  background: rgba(11,163,77,0.08);
  color: var(--ch-green);
  margin-top: 8px;
  font-family: 'Jost', sans-serif;
}

/* Map */
.ch-map-wrap {
  display: flex;
  gap: 24px;
  flex-direction: column;
}
@media (min-width: 1024px) {
  .ch-map-wrap { flex-direction: row; }
}
.ch-map {
  flex: 1;
  min-height: 550px;
  border-radius: 0;
  overflow: hidden;
  border: none;
  box-shadow: none;
  background: transparent !important;
}
.ch-map .leaflet-container,
.ch-map .leaflet-pane,
.ch-map .leaflet-tile-pane,
.ch-map .leaflet-overlay-pane,
.ch-map .leaflet-shadow-pane,
.ch-map .leaflet-map-pane {
  background: transparent !important;
  border-radius: 0 !important;
}
.ch-map .leaflet-container {
  outline: none !important;
}

/* ============ GIFT CATALOGUE ============ */

.ch-gift-filters {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 32px;
}
.ch-gift-filter {
  padding: 10px 20px;
  background: #fff;
  border: 2px solid var(--ch-gray-light);
  border-radius: 50px;
  font-family: 'Jost', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--ch-text);
  cursor: pointer;
  transition: all 0.2s ease;
}
.ch-gift-filter:hover {
  border-color: var(--ch-green);
  color: var(--ch-green);
}
.ch-gift-filter.active {
  background: var(--ch-green);
  border-color: var(--ch-green);
  color: #fff;
}

.ch-gift-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 560px) { .ch-gift-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .ch-gift-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1200px) { .ch-gift-grid { grid-template-columns: repeat(4, 1fr); } }

.ch-gift-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--ch-gray-light);
  border-radius: 30px;
  overflow: hidden;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}
.ch-gift-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -10px rgba(0,0,0,0.15);
  border-color: var(--ch-gold);
}
.ch-gift-card.featured {
  border-color: var(--ch-gold);
  box-shadow: 0 8px 20px -6px rgba(251, 193, 0, 0.2);
}

.ch-gift-ribbon {
  position: absolute;
  top: 16px;
  right: -28px;
  padding: 5px 36px;
  background: var(--ch-gold);
  color: var(--ch-green-dark);
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transform: rotate(35deg);
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
  z-index: 2;
}

.ch-gift-photo {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: linear-gradient(135deg, #f2fff5 0%, #c7e8d3 100%);
}
.ch-gift-photo img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.4s ease;
}
.ch-gift-card:hover .ch-gift-photo img { transform: scale(1.05); }

.ch-gift-icon-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 96px;
  line-height: 1;
}

.ch-gift-body {
  padding: 20px 22px 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.ch-gift-title {
  font-family: 'Inter', sans-serif !important;
  font-size: 19px !important;
  font-weight: 800 !important;
  color: var(--ch-green) !important;
  margin: 0 0 6px !important;
  line-height: 1.3 !important;
}
.ch-gift-tagline {
  font-family: 'Jost', sans-serif;
  font-size: 14px;
  color: var(--ch-text);
  line-height: 1.5;
  margin: 0 0 16px;
  flex: 1;
}
.ch-gift-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--ch-gray-light);
}
.ch-gift-price {
  font-family: 'Inter', sans-serif;
  font-size: 26px;
  font-weight: 900;
  color: var(--ch-green);
  line-height: 1;
}

/* ============ CAREPOINT DETAIL PAGE ============ */

.ch-breadcrumbs {
  font-family: 'Jost', sans-serif;
  font-size: 13px;
  color: var(--ch-text);
  margin-bottom: 24px;
}
.ch-breadcrumbs a {
  color: var(--ch-green);
  text-decoration: none;
}
.ch-breadcrumbs a:hover { color: var(--ch-gold-hover); }
.ch-breadcrumbs span {
  margin: 0 6px;
  color: #bbb;
}

.ch-cp-hero {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
}
@media (min-width: 840px) {
  .ch-cp-hero { grid-template-columns: 1.2fr 1fr; gap: 48px; }
}
.ch-cp-hero-text { }
.ch-cp-hero-image {
  border-radius: 30px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  box-shadow: 0 20px 40px -10px rgba(0,0,0,0.15);
}
.ch-cp-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ch-cp-chips {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 20px 0 28px;
}
.ch-cp-chip {
  padding: 10px 18px;
  background: rgba(255,255,255,0.7);
  border: 1px solid var(--ch-gray-light);
  border-radius: 50px;
  font-family: 'Jost', sans-serif;
  font-size: 14px;
  color: var(--ch-text);
}
.ch-cp-chip strong {
  font-family: 'Inter', sans-serif;
  color: var(--ch-green-dark);
  font-weight: 800;
}
.ch-cp-chip.urgent {
  background: #fff5f5;
  border-color: rgba(229,62,62,0.3);
  color: #c53030;
}
.ch-cp-chip.urgent strong { color: #c53030; }

/* Panel link on homepage map */
.ch-panel-link {
  display: inline-block;
  margin-top: 12px;
  font-family: 'Jost', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #fff;
  opacity: 0.9;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.ch-panel-link:hover { opacity: 1; color: var(--ch-gold); }

/* At-a-glance stats */
.ch-cp-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  max-width: 1000px;
  margin: 0 auto;
}
@media (min-width: 760px) { .ch-cp-stats { grid-template-columns: repeat(4, 1fr); } }
.ch-cp-stat {
  background: var(--ch-gray-lighter);
  border-radius: 24px;
  padding: 28px 20px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.ch-cp-stat:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 25px -10px rgba(0,0,0,0.1);
}
.ch-cp-stat span {
  font-size: 36px;
  display: block;
  margin-bottom: 10px;
  line-height: 1;
}
.ch-cp-stat-value {
  font-family: 'Inter', sans-serif;
  font-size: 28px;
  font-weight: 900;
  color: var(--ch-green);
  line-height: 1;
  margin-bottom: 6px;
}
.ch-cp-stat-label {
  font-family: 'Jost', sans-serif;
  font-size: 13px;
  color: var(--ch-text);
}

/* Mini map on CP detail */
.ch-cp-map {
  width: 100%;
  height: 360px;
  border-radius: 30px;
  overflow: hidden;
  border: 1px solid var(--ch-gray-light);
  background: var(--ch-gray-lighter);
  box-shadow: 0 15px 30px -10px rgba(0,0,0,0.08);
}

/* Children at this CarePoint */
.ch-cp-children {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 600px) { .ch-cp-children { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .ch-cp-children { grid-template-columns: repeat(3, 1fr); } }
.ch-cp-child {
  display: flex;
  gap: 16px;
  align-items: center;
  background: #fff;
  border: 1px solid var(--ch-gray-light);
  border-radius: 24px;
  padding: 16px;
  text-decoration: none;
  transition: all 0.2s ease;
}
.ch-cp-child:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 25px -10px rgba(0,0,0,0.1);
  border-color: var(--ch-green);
}
.ch-cp-child img,
.ch-cp-child-placeholder {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.ch-cp-child-placeholder {
  background: linear-gradient(135deg, #f2fff5 0%, #c7e8d3 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Inter', sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: rgba(11, 163, 77, 0.5);
}
.ch-cp-child-body strong {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 800;
  color: var(--ch-green);
  margin-bottom: 4px;
}
.ch-cp-child-body span {
  font-family: 'Jost', sans-serif;
  font-size: 13px;
  color: var(--ch-text);
}

/* ============ A DAY AT A CAREPOINT ============ */

.ch-day-wrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
}
@media (min-width: 840px) {
  .ch-day-wrap { grid-template-columns: 280px 1fr; gap: 48px; }
}

.ch-day-rail {
  position: relative;
}
.ch-day-rail-inner {
  position: sticky;
  top: 24px;
}
@media (min-width: 840px) {
  .ch-day-rail-inner { top: 32px; }
}
.ch-day-rail-header {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--ch-green-dark);
  margin-bottom: 12px;
  padding-left: 16px;
}
.ch-day-rail-items {
  display: flex;
  flex-direction: column;
  gap: 4px;
  border-left: 2px solid var(--ch-gray-light);
  padding: 8px 0;
}
.ch-day-rail-item {
  display: flex;
  align-items: baseline;
  gap: 12px;
  padding: 10px 16px 10px 18px;
  background: transparent;
  border: none;
  text-align: left;
  cursor: pointer;
  position: relative;
  font-family: 'Jost', sans-serif;
  transition: all 0.2s ease;
  margin-left: -2px;
  border-left: 2px solid transparent;
}
.ch-day-rail-item::before {
  content: '';
  position: absolute;
  left: -7px;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--ch-gray-light);
  transition: all 0.2s ease;
}
.ch-day-rail-item:hover {
  background: var(--ch-gray-lighter);
}
.ch-day-rail-item:hover::before {
  border-color: var(--ch-gold);
}
.ch-day-rail-item.active {
  border-left-color: var(--ch-green);
}
.ch-day-rail-item.active::before {
  background: var(--ch-green);
  border-color: var(--ch-green);
  box-shadow: 0 0 0 4px rgba(11, 163, 77, 0.15);
}
.ch-day-rail-item.active .ch-day-rail-time {
  color: var(--ch-green);
}
.ch-day-rail-item.active .ch-day-rail-title {
  color: var(--ch-green-dark);
  font-weight: 600;
}
.ch-day-rail-time {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #999;
  min-width: 45px;
  transition: color 0.2s ease;
}
.ch-day-rail-title {
  font-size: 14px;
  color: var(--ch-text);
  line-height: 1.3;
  transition: all 0.2s ease;
}

.ch-day-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.ch-day-card {
  background: #fff;
  border: 1px solid var(--ch-gray-light);
  border-radius: 30px;
  padding: 32px;
  box-shadow: 0 10px 20px -10px rgba(0,0,0,0.05);
  transition: all 0.4s ease;
  scroll-margin-top: 24px;
}

.ch-day-card-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}
.ch-day-card-icon {
  font-size: 44px;
  line-height: 1;
}
.ch-day-card-time {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 14px;
  color: #fff;
  background: var(--ch-green);
  padding: 6px 16px;
  border-radius: 50px;
  letter-spacing: 0.3px;
}

.ch-day-card-title {
  font-family: 'Inter', sans-serif !important;
  font-size: 24px !important;
  font-weight: 800 !important;
  color: var(--ch-green) !important;
  margin: 0 0 12px !important;
  line-height: 1.25 !important;
}
.ch-day-card-body {
  font-family: 'Jost', sans-serif;
  font-size: 17px;
  line-height: 1.7;
  color: var(--ch-text-dark);
  margin: 0;
}

/* Alternating background for visual rhythm */
.ch-day-card:nth-child(even) {
  background: linear-gradient(135deg, #fffef7 0%, #fff 100%);
  border-color: rgba(251, 193, 0, 0.3);
}

.ch-day-summary {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  max-width: 900px;
  margin: 0 auto;
}
@media (min-width: 600px) { .ch-day-summary { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .ch-day-summary { grid-template-columns: repeat(4, 1fr); } }
.ch-day-summary > div {
  background: #fff;
  border: 1px solid var(--ch-gray-light);
  border-radius: 24px;
  padding: 24px 20px;
  text-align: center;
  font-family: 'Jost', sans-serif;
  font-size: 14px;
  color: var(--ch-text);
  line-height: 1.4;
}
.ch-day-summary span {
  display: block;
  font-size: 36px;
  line-height: 1;
  margin-bottom: 12px;
}
.ch-day-summary strong {
  display: block;
  font-family: 'Inter', sans-serif;
  color: var(--ch-green);
  margin-bottom: 4px;
}

/* ============ TRANSPARENCY PAGE ============ */

.ch-slider-card {
  background: #fff;
  border: 1px solid var(--ch-gray-light);
  border-radius: 30px;
  padding: 40px 32px;
  box-shadow: 0 15px 30px -10px rgba(0,0,0,0.08);
  margin-bottom: 40px;
}

.ch-slider-value-wrap {
  text-align: center;
  margin-bottom: 28px;
}
.ch-slider-value {
  font-family: 'Inter', sans-serif;
  font-size: clamp(48px, 8vw, 72px);
  font-weight: 900;
  color: var(--ch-green);
  line-height: 1;
  margin-bottom: 8px;
  transition: color 0.2s ease;
}
.ch-slider-subvalue {
  font-family: 'Jost', sans-serif;
  font-size: 16px;
  color: var(--ch-text);
}

.ch-slider-track {
  margin: 24px 0;
  position: relative;
}
.ch-slider-track input[type="range"] {
  width: 100%;
  height: 8px;
  -webkit-appearance: none;
  appearance: none;
  background: linear-gradient(90deg, var(--ch-gold) 0%, var(--ch-green) 100%);
  border-radius: 50px;
  outline: none;
  cursor: pointer;
}
.ch-slider-track input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 28px;
  height: 28px;
  background: #fff;
  border: 4px solid var(--ch-green);
  border-radius: 50%;
  cursor: grab;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  transition: transform 0.15s ease;
}
.ch-slider-track input[type="range"]::-webkit-slider-thumb:hover { transform: scale(1.15); }
.ch-slider-track input[type="range"]::-webkit-slider-thumb:active { cursor: grabbing; transform: scale(1.05); }
.ch-slider-track input[type="range"]::-moz-range-thumb {
  width: 28px; height: 28px; background: #fff;
  border: 4px solid var(--ch-green); border-radius: 50%;
  cursor: grab;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.ch-slider-marks {
  display: flex;
  justify-content: space-between;
  margin-top: 14px;
  font-family: 'Jost', sans-serif;
  font-size: 13px;
  color: #999;
}
.ch-slider-marks span {
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 50px;
  transition: all 0.2s ease;
}
.ch-slider-marks span:hover { background: var(--ch-gray-lighter); color: var(--ch-green); }
.ch-slider-marks span.active {
  background: var(--ch-green);
  color: #fff;
  font-weight: 600;
}

.ch-giftaid-note {
  margin-top: 24px;
  padding: 14px 20px;
  background: #fffaed;
  border: 1px solid var(--ch-gold);
  border-radius: 16px;
  text-align: center;
  font-family: 'Jost', sans-serif;
  font-size: 15px;
  color: var(--ch-text-dark);
}

.ch-slider-results {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 600px) { .ch-slider-results { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .ch-slider-results { grid-template-columns: repeat(4, 1fr); } }
.ch-slider-item {
  background: linear-gradient(180deg, #fff 0%, var(--ch-gray-lighter) 100%);
  border: 1px solid var(--ch-gray-light);
  border-radius: 24px;
  padding: 28px 20px;
  text-align: center;
  transition: transform 0.3s ease;
}
.ch-slider-item:hover { transform: translateY(-4px); }
.ch-slider-icon { font-size: 36px; margin-bottom: 12px; line-height: 1; }
.ch-slider-big {
  font-family: 'Inter', sans-serif;
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 800;
  color: var(--ch-green);
  margin-bottom: 6px;
  line-height: 1.1;
}
.ch-slider-small {
  font-family: 'Jost', sans-serif;
  font-size: 13px;
  color: var(--ch-text);
  line-height: 1.4;
}

/* ---------- Spending breakdown ---------- */
.ch-spend-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
  max-width: 900px;
  margin: 0 auto;
}
@media (min-width: 760px) { .ch-spend-grid { grid-template-columns: 320px 1fr; } }
.ch-donut-wrap { display: flex; justify-content: center; }
.ch-donut { width: 100%; max-width: 300px; height: auto; }

.ch-spend-legend { display: flex; flex-direction: column; gap: 16px; }
.ch-spend-row { display: flex; flex-direction: column; gap: 6px; }
.ch-spend-bar {
  height: 10px;
  background: var(--ch-gray-light);
  border-radius: 50px;
  overflow: hidden;
}
.ch-spend-bar-fill {
  height: 100%;
  border-radius: 50px;
  transition: width 0.8s ease;
}
.ch-spend-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Jost', sans-serif;
  font-size: 15px;
  color: var(--ch-text-dark);
}
.ch-spend-label strong { font-family: 'Inter', sans-serif; font-weight: 700; color: var(--ch-green-dark); flex: 1; }
.ch-spend-dot { width: 12px; height: 12px; border-radius: 50%; flex-shrink: 0; }
.ch-spend-pct { font-family: 'Inter', sans-serif; font-weight: 700; color: var(--ch-green); }
.ch-spend-note {
  margin-top: 20px;
  padding: 16px 20px;
  background: var(--ch-gray-lighter);
  border-left: 4px solid var(--ch-green);
  border-radius: 8px;
  font-family: 'Jost', sans-serif;
  font-size: 15px;
  line-height: 1.6;
  color: var(--ch-text-dark);
}

/* ---------- Impact grid ---------- */
.ch-impact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  max-width: 1100px;
  margin: 0 auto;
}
@media (min-width: 768px) { .ch-impact-grid { grid-template-columns: repeat(3, 1fr); } }
.ch-impact-card {
  background: #fff;
  border: 1px solid var(--ch-gray-light);
  border-radius: 24px;
  padding: 28px 20px;
  text-align: center;
  box-shadow: 0 10px 20px -10px rgba(0,0,0,0.05);
}
.ch-impact-value {
  font-family: 'Inter', sans-serif;
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 900;
  color: var(--ch-green);
  line-height: 1.1;
  margin-bottom: 6px;
}
.ch-impact-label {
  font-family: 'Jost', sans-serif;
  font-size: 14px;
  color: var(--ch-text);
  line-height: 1.4;
}
.ch-impact-note {
  max-width: 720px;
  margin: 40px auto 0;
  text-align: center;
  font-family: 'Jost', sans-serif;
  font-size: 14px;
  color: #999;
  font-style: italic;
  line-height: 1.6;
}

/* ---------- Trust/accountability ---------- */
.ch-trust-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 600px) { .ch-trust-grid { grid-template-columns: repeat(2, 1fr); } }
.ch-trust-card {
  background: #fff;
  border: 1px solid var(--ch-gray-light);
  border-radius: 24px;
  padding: 28px 24px;
  text-align: center;
}
.ch-trust-card span { font-size: 40px; display: inline-block; margin-bottom: 10px; line-height: 1; }

/* ============ SPONSOR A CHILD PAGE ============ */

.ch-sponsor-filters {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: flex-end;
  padding: 20px 24px;
  background: #fff;
  border-radius: 30px;
  border: 1px solid var(--ch-gray-light);
  margin-bottom: 32px;
  box-shadow: 0 15px 15px -10px rgba(0,0,0,0.05);
}
.ch-filter-group {
  flex: 1;
  min-width: 140px;
}
.ch-filter-group label {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: var(--ch-green-dark);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
}
.ch-filter-group select {
  width: 100%;
  padding: 10px 14px;
  border-radius: 12px;
  border: 2px solid var(--ch-gray-light);
  font-family: 'Jost', sans-serif;
  font-size: 15px;
  background: #fff;
  outline: none;
  cursor: pointer;
}
.ch-filter-group select:focus { border-color: var(--ch-green); }
.ch-filter-clear {
  padding: 10px 18px;
  border-radius: 50px;
  background: transparent;
  border: none;
  color: var(--ch-green);
  font-family: 'Jost', sans-serif;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: underline;
  align-self: flex-end;
}
.ch-filter-clear:hover { color: var(--ch-green-dark); }
.ch-filter-count {
  margin-left: auto;
  align-self: flex-end;
  font-family: 'Jost', sans-serif;
  font-size: 13px;
  color: var(--ch-text);
  padding-bottom: 10px;
}

/* Children grid */
.ch-children-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 640px) { .ch-children-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px)  { .ch-children-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1200px) { .ch-children-grid { grid-template-columns: repeat(4, 1fr); } }

.ch-child-card {
  background: #fff;
  border: 1px solid var(--ch-gray-light);
  border-radius: 30px;
  overflow: hidden;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  cursor: pointer;
}
.ch-child-card:hover {
  box-shadow: 0 20px 40px -10px rgba(0,0,0,0.15);
  transform: translateY(-4px);
  border-color: var(--ch-green);
}

.ch-child-photo {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: linear-gradient(135deg, #f2fff5 0%, #c7e8d3 100%);
}
.ch-child-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.ch-child-card:hover .ch-child-photo img { transform: scale(1.04); }

.ch-child-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ch-child-placeholder span {
  font-family: 'Inter', sans-serif;
  font-size: 96px;
  font-weight: 800;
  color: rgba(11,163,77,0.35);
}

.ch-child-waiting {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 5px 12px;
  border-radius: 50px;
  background: rgba(229,62,62,0.95);
  color: #fff;
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.3px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.ch-child-body {
  padding: 20px 22px 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.ch-child-name {
  font-family: 'Inter', sans-serif !important;
  font-size: 22px !important;
  font-weight: 800 !important;
  color: var(--ch-green) !important;
  margin: 0 0 4px 0 !important;
}
.ch-child-age {
  font-family: 'Jost', sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: var(--ch-text);
}
.ch-child-loc {
  font-family: 'Jost', sans-serif;
  font-size: 13px;
  color: var(--ch-gold-hover);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 600;
  margin-bottom: 14px;
}
.ch-child-dream, .ch-child-fav {
  font-family: 'Jost', sans-serif;
  font-size: 14px;
  color: var(--ch-text-dark);
  margin-bottom: 6px;
  display: flex;
  gap: 8px;
  align-items: baseline;
}
.ch-child-quote {
  font-family: 'Jost', sans-serif;
  font-style: italic;
  color: var(--ch-text);
  font-size: 14px;
  line-height: 1.5;
  border-left: 3px solid var(--ch-gold);
  padding: 4px 0 4px 12px;
  margin: 14px 0 0 0;
}
.ch-child-cta {
  margin-top: auto;
  padding-top: 18px;
}
.ch-child-cta .ch-btn {
  width: 100%;
  padding: 14px 16px;
  font-size: 14px;
  display: block;
  line-height: 1.2;
}

/* ---------- Modal ---------- */
.ch-modal-child {
  max-width: 640px !important;
  border-radius: 30px;
}
.ch-child-modal-hero {
  display: flex;
  gap: 20px;
  padding: 32px 32px 20px;
  align-items: flex-start;
}
@media (max-width: 560px) {
  .ch-child-modal-hero { flex-direction: column; }
}
.ch-child-modal-photo {
  flex-shrink: 0;
  width: 160px;
  height: 160px;
  border-radius: 30px;
  overflow: hidden;
  background: linear-gradient(135deg, #f2fff5 0%, #c7e8d3 100%);
}
.ch-child-modal-photo img {
  width: 100%; height: 100%; object-fit: cover;
}
.ch-child-modal-photo .ch-child-placeholder span { font-size: 72px; }

.ch-child-modal-intro { flex: 1; }
.ch-child-modal-tag {
  margin-bottom: 8px;
}
.ch-child-waiting-inline {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 50px;
  background: #fff5f5;
  color: #c53030;
  font-family: 'Jost', sans-serif;
  font-size: 12px;
  font-weight: 600;
}
.ch-child-modal-name {
  font-family: 'Inter', sans-serif !important;
  font-size: 28px !important;
  font-weight: 900 !important;
  color: var(--ch-green) !important;
  margin: 0 !important;
}
.ch-child-modal-meta {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin: 10px 0 14px;
}
.ch-child-modal-meta span {
  padding: 3px 12px;
  background: var(--ch-gray-lighter);
  border-radius: 50px;
  font-family: 'Jost', sans-serif;
  font-size: 13px;
  color: var(--ch-text);
}
.ch-child-modal-line {
  font-family: 'Jost', sans-serif;
  font-size: 15px;
  color: var(--ch-text-dark);
  margin-bottom: 6px;
}

.ch-child-modal-story {
  padding: 0 32px 20px;
  border-bottom: 1px solid var(--ch-gray-light);
}
.ch-child-modal-story h3 {
  font-family: 'Inter', sans-serif !important;
  font-size: 16px !important;
  font-weight: 800 !important;
  color: var(--ch-green-dark) !important;
  margin: 0 0 10px !important;
}
.ch-child-modal-story p {
  font-family: 'Jost', sans-serif;
  font-size: 15px;
  line-height: 1.6;
  color: var(--ch-text);
  margin: 0 0 10px;
}

.ch-sponsor-form {
  padding: 24px 32px 32px;
}
.ch-sponsor-form h3 {
  font-family: 'Inter', sans-serif !important;
  font-size: 20px !important;
  font-weight: 800 !important;
  color: var(--ch-green) !important;
  margin: 0 0 6px !important;
}
.ch-sponsor-intro {
  font-family: 'Jost', sans-serif;
  font-size: 14px;
  color: var(--ch-text);
  margin: 0 0 20px;
}

.ch-form-row { display: grid; gap: 14px; margin-bottom: 16px; }
@media (min-width: 520px) { .ch-form-row { grid-template-columns: 1fr 1fr; } }
.ch-form-field label {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: var(--ch-green-dark);
  text-transform: uppercase;
  letter-spacing: 0.3px;
  margin-bottom: 4px;
}
.ch-form-field input {
  width: 100%;
  padding: 12px 14px;
  border: 2px solid var(--ch-gray-light);
  border-radius: 12px;
  font-family: 'Jost', sans-serif;
  font-size: 15px;
  outline: none;
  box-sizing: border-box;
}
.ch-form-field input:focus { border-color: var(--ch-green); }

.ch-giftaid-toggle {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 14px;
  border: 2px solid var(--ch-gray-light);
  border-radius: 12px;
  margin-bottom: 16px;
  cursor: pointer;
  font-family: 'Jost', sans-serif;
  font-size: 14px;
  color: var(--ch-text);
  line-height: 1.5;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.ch-giftaid-toggle:has(input:checked) {
  border-color: var(--ch-gold);
  background: #fffaed;
}
.ch-giftaid-toggle input { margin-top: 3px; accent-color: var(--ch-gold-hover); width: 18px; height: 18px; flex-shrink: 0; }
.ch-giftaid-toggle strong { color: var(--ch-green-dark); }
.ch-giftaid-toggle small { font-size: 11px; color: #888; line-height: 1.4; }

.ch-sponsor-total {
  background: var(--ch-gray-lighter);
  border-radius: 16px;
  padding: 14px 18px;
  margin-bottom: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'Jost', sans-serif;
  flex-wrap: wrap;
  gap: 6px;
}
.ch-sponsor-total strong {
  font-family: 'Inter', sans-serif;
  font-size: 24px;
  color: var(--ch-green);
  font-weight: 900;
}
.ch-ga-bonus {
  flex-basis: 100%;
  font-size: 13px;
  color: var(--ch-gold-hover);
  text-align: right;
}

.ch-sponsor-note {
  font-family: 'Jost', sans-serif;
  font-size: 12px;
  color: #aaa;
  text-align: center;
  margin: 10px 0 0 0;
}

/* ---------- What £40 covers ---------- */
.ch-covers-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 600px) { .ch-covers-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px) { .ch-covers-grid { grid-template-columns: repeat(3, 1fr); } }
.ch-cover {
  background: var(--ch-gray-lighter);
  padding: 20px 24px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: 'Jost', sans-serif;
  font-size: 16px;
  color: var(--ch-text-dark);
}
.ch-cover span {
  font-size: 32px;
  line-height: 1;
  flex-shrink: 0;
}
.ch-cover strong { color: var(--ch-green); }

/* ---------- FAQ accordion ---------- */
.ch-faqs { display: flex; flex-direction: column; gap: 12px; }
.ch-faq {
  background: #fff;
  border: 1px solid var(--ch-gray-light);
  border-radius: 16px;
  padding: 0;
  transition: all 0.2s ease;
}
.ch-faq[open] { box-shadow: 0 8px 20px -8px rgba(0,0,0,0.08); }
.ch-faq summary {
  padding: 18px 24px;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: var(--ch-green-dark);
  list-style: none;
  position: relative;
  padding-right: 48px;
}
.ch-faq summary::after {
  content: "+";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-family: 'Inter', sans-serif;
  font-size: 24px;
  color: var(--ch-gold-hover);
  font-weight: 400;
  transition: transform 0.2s ease;
}
.ch-faq[open] summary::after {
  transform: translateY(-50%) rotate(45deg);
}
.ch-faq p {
  padding: 0 24px 20px;
  margin: 0;
  font-family: 'Jost', sans-serif;
  font-size: 15px;
  line-height: 1.6;
  color: var(--ch-text);
}

/* ============ AWAITING SPONSORSHIP CTA ============ */
.ch-counter-cta {
  position: relative;
  display: block;
  text-decoration: none !important;
  color: inherit;
  overflow: visible;
  border: 2px solid #f59e0b;
  background: linear-gradient(180deg, #fffaed 0%, #fff 70%);
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 1;
}
.ch-counter-cta:hover {
  transform: translateY(-4px);
  border-color: #e53e3e;
  box-shadow: 0 18px 40px -8px rgba(229,62,62,0.3), 0 0 0 4px rgba(229,62,62,0.1);
}
.ch-counter-cta .ch-counter-value {
  color: #c53030 !important;
}
.ch-counter-action {
  display: inline-block;
  margin-top: 10px;
  padding: 4px 14px;
  border-radius: 50px;
  background: #e53e3e;
  color: #fff;
  font-family: 'Jost', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.3px;
  transition: background 0.2s ease;
}
.ch-counter-cta:hover .ch-counter-action {
  background: #c53030;
}

/* Pulsing outline */
.ch-counter-pulse {
  position: absolute;
  inset: -2px;
  border-radius: 30px;
  pointer-events: none;
  border: 2px solid rgba(229,62,62,0.6);
  animation: ch-pulse 2.2s ease-out infinite;
}
.ch-counter-pulse::after {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 30px;
  border: 2px solid rgba(229,62,62,0.4);
  animation: ch-pulse 2.2s ease-out infinite;
  animation-delay: 1.1s;
}
@keyframes ch-pulse {
  0%   { transform: scale(1);    opacity: 0.8; }
  70%  { transform: scale(1.08); opacity: 0;   }
  100% { transform: scale(1.08); opacity: 0;   }
}

/* Reduced-motion users get a subtle static glow */
@media (prefers-reduced-motion: reduce) {
  .ch-counter-pulse,
  .ch-counter-pulse::after { animation: none; opacity: 0.4; }
}

/* ============ MARKER CLUSTERS ============ */
.ch-cluster {
  background: transparent !important;
  border: none !important;
}
.ch-cluster-badge {
  width: 40px;
  height: 40px;
  background: #fbc100;
  border: 3px solid #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 14px;
  color: var(--ch-green-dark);
  box-shadow: 0 4px 14px rgba(0,0,0,0.25);
  transition: transform 0.2s ease;
}
.ch-cluster:hover .ch-cluster-badge {
  transform: scale(1.1);
  box-shadow: 0 6px 18px rgba(251,193,0,0.5);
}

/* Override default Leaflet.markercluster styles */
.marker-cluster-small,
.marker-cluster-medium,
.marker-cluster-large,
.marker-cluster-small div,
.marker-cluster-medium div,
.marker-cluster-large div {
  background: transparent !important;
  background-color: transparent !important;
  border: none !important;
}
.marker-cluster span { display: none !important; }

/* Zoom controls — match the site style */
.ch-map .leaflet-control-zoom {
  border: none !important;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08) !important;
  border-radius: 50px !important;
  overflow: hidden;
}
.ch-map .leaflet-control-zoom a {
  background: #fff !important;
  color: var(--ch-green-dark) !important;
  border: none !important;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  width: 36px !important;
  height: 36px !important;
  line-height: 36px !important;
}
.ch-map .leaflet-control-zoom a:hover {
  background: var(--ch-gray-lighter) !important;
  color: var(--ch-green) !important;
}

/* Country tooltip for hover on highlighted countries */
.ch-country-tooltip,
.ch-country-tooltip-hover {
  background: rgba(25, 110, 51, 0.95) !important;
  color: #fff !important;
  border: none !important;
  border-radius: 50px !important;
  padding: 6px 16px !important;
  font-family: 'Jost', sans-serif !important;
  font-size: 13px !important;
  font-weight: 500 !important;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2) !important;
  line-height: 1.4 !important;
}
.ch-country-tooltip::before,
.ch-country-tooltip-hover::before { display: none !important; }

/* Map stage wraps the map + back button */
.ch-map-stage {
  position: relative;
  flex: 1;
}

/* Back button overlay */
.ch-map-back {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 500;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 20px;
  background: #fff;
  border: none;
  border-radius: 50px;
  font-family: 'Jost', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--ch-green-dark);
  box-shadow: 0 4px 12px rgba(0,0,0,0.12);
  cursor: pointer;
  transition: all 0.2s ease;
}
.ch-map-back:hover {
  background: var(--ch-gray-lighter);
  color: var(--ch-green);
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.15);
}
.ch-map-back span { font-size: 18px; line-height: 1; }

.ch-map-panel {
  width: 100%;
  background: #fff;
  border: 1px solid var(--ch-gray-light);
  border-radius: 30px;
  overflow: hidden;
  display: none;
  position: relative;
  z-index: 500;
}
@media (min-width: 1024px) {
  .ch-map-panel { width: 400px; }
}
.ch-map-panel.open { display: block; }

.ch-panel-header {
  padding: 24px;
  color: #fff;
  background: linear-gradient(135deg, #196e33, #0ba34d);
  position: relative;
}
.ch-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 10;
  width: 40px;
  height: 40px;
  padding: 0;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  border: none;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, transform 0.2s ease;
  -webkit-tap-highlight-color: transparent;
  outline: none;
  line-height: 1;
}
.ch-close:hover { background: rgba(255,255,255,0.32); transform: scale(1.05); }
.ch-close:active { transform: scale(0.95); }
.ch-close span {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 26px;
  font-weight: 300;
  line-height: 1;
  margin-top: -2px;  /* optical centring for × glyph */
  pointer-events: none;
}
.ch-panel-country { font-size: 14px; opacity: 0.8; font-family: 'Jost', sans-serif; }
.ch-panel-name {
  font-family: 'Inter', sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  margin: 4px 0 12px 0;
}
.ch-panel-chips { display: flex; gap: 8px; flex-wrap: wrap; }
.ch-chip {
  background: rgba(255,255,255,0.2);
  padding: 4px 14px;
  border-radius: 50px;
  font-size: 13px;
  font-family: 'Jost', sans-serif;
}
.ch-panel-body { padding: 24px; font-family: 'Jost', sans-serif; font-size: 14px; line-height: 1.6; color: var(--ch-text); }
.ch-panel-section { padding: 0 24px 24px; }
.ch-panel-section h4 {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 800;
  color: var(--ch-green-dark);
  margin: 0 0 12px 0;
}
.ch-need-item {
  background: var(--ch-gray-lighter);
  border-radius: 12px;
  padding: 12px;
  margin-bottom: 10px;
  border-left: 4px solid var(--ch-gold);
}
.ch-need-item.urgent { border-left-color: #e53e3e; }
.ch-need-title { display: flex; justify-content: space-between; align-items: center; }
.ch-need-title strong { font-family: 'Jost', sans-serif; font-size: 14px; color: var(--ch-text-dark); font-weight: 600; }
.ch-need-tag { font-size: 11px; padding: 2px 10px; border-radius: 50px; background: #fff; color: var(--ch-gold-hover); }
.ch-need-tag.urgent { background: #fff5f5; color: #c53030; }
.ch-need-detail { font-size: 12px; color: var(--ch-text); margin-top: 4px; }
.ch-need-fund {
  display: block;
  width: 100%;
  margin-top: 8px;
  padding: 8px 16px;
  border-radius: 50px;
  background: var(--ch-gold);
  color: #fff;
  border: none;
  font-family: 'Jost', sans-serif;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
}
.ch-need-fund.outline {
  background: transparent;
  border: 1.5px solid var(--ch-green);
  color: var(--ch-green);
}

/* Needs board */
.ch-needs-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 768px) { .ch-needs-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .ch-needs-grid { grid-template-columns: repeat(3, 1fr); } }
.ch-need-card {
  padding: 24px;
  border-radius: 30px;
  background: #fff;
  border: 1px solid var(--ch-gray-light);
  border-left: 4px solid var(--ch-gold);
  box-shadow: 0 15px 15px -10px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}
.ch-need-card.urgent { border-left-color: #e53e3e; background: #fffafa; }
.ch-need-card:hover { box-shadow: 0 0 60px 5px rgba(0,0,0,0.08); transform: translateY(-4px); }
.ch-need-card h4 {
  font-family: 'Inter', sans-serif;
  font-size: 17px;
  font-weight: 800;
  color: var(--ch-text-dark);
  margin: 0 0 8px 0;
}
.ch-need-location {
  font-size: 13px;
  color: #aaa;
  font-family: 'Jost', sans-serif;
  margin-bottom: 12px;
}
.ch-progress {
  height: 8px;
  background: var(--ch-gray-light);
  border-radius: 4px;
  margin: 12px 0 6px;
  overflow: hidden;
}
.ch-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #fbc100, #d89a04);
  border-radius: 4px;
  transition: width 0.6s ease;
}
.ch-progress-fill.ok { background: linear-gradient(90deg, #0ba34d, #196e33); }
.ch-progress-info {
  font-size: 12px;
  color: var(--ch-text);
  font-family: 'Jost', sans-serif;
  margin-bottom: 12px;
  display: flex;
  justify-content: space-between;
}

/* Country cards */
.ch-country-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 32px;
}
@media (min-width: 768px) { .ch-country-grid { grid-template-columns: repeat(4, 1fr); } }
@media (min-width: 1024px) { .ch-country-grid { grid-template-columns: repeat(7, 1fr); } }
.ch-country-card {
  background: #fff;
  border: 1px solid var(--ch-gray-light);
  border-radius: 20px;
  padding: 16px;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 5px 15px -5px rgba(0,0,0,0.05);
}
.ch-country-card:hover { box-shadow: 0 15px 25px -7px rgba(0,0,0,0.1); transform: translateY(-2px); }
.ch-country-card strong {
  display: block;
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 14px;
  color: var(--ch-green);
}
.ch-country-card span {
  display: block;
  font-size: 12px;
  color: var(--ch-text);
  margin-top: 4px;
  font-family: 'Jost', sans-serif;
}

/* Stagger entry animation */
@keyframes ch-fade-up {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.ch-stagger > * { opacity: 0; animation: ch-fade-up 0.6s ease-out forwards; }
.ch-stagger > *:nth-child(1) { animation-delay: .1s; }
.ch-stagger > *:nth-child(2) { animation-delay: .2s; }
.ch-stagger > *:nth-child(3) { animation-delay: .3s; }
.ch-stagger > *:nth-child(4) { animation-delay: .4s; }
.ch-stagger > *:nth-child(5) { animation-delay: .5s; }
.ch-stagger > *:nth-child(6) { animation-delay: .6s; }

/* Quote section */
.ch-quote {
  font-family: 'Inter', sans-serif;
  font-size: clamp(18px, 2.5vw, 26px);
  font-weight: 600;
  font-style: italic;
  color: var(--ch-green-dark);
  line-height: 1.5;
  max-width: 720px;
  margin: 0 auto;
}
.ch-quote-cite {
  display: block;
  font-family: 'Jost', sans-serif;
  font-size: 16px;
  color: var(--ch-text);
  font-style: normal;
  margin-top: 16px;
}

/* Modal */
.ch-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 16px;
  z-index: 9999;
}
.ch-modal-backdrop.open { display: flex; }
.ch-modal {
  background: #fff;
  border-radius: 30px;
  max-width: 480px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  animation: ch-fade-up 0.3s ease-out;
}
.ch-modal-header {
  padding: 24px;
  background: linear-gradient(135deg, #196e33, #0ba34d);
  color: #fff;
  border-radius: 30px 30px 0 0;
  position: relative;
}
.ch-modal-header h3 {
  font-family: 'Inter', sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: #fff !important;
  margin: 4px 0 0 0;
}
.ch-modal-body { padding: 24px; font-family: 'Jost', sans-serif; }
.ch-modal-body input[type="number"], .ch-modal-body input[type="text"], .ch-modal-body input[type="email"] {
  width: 100%;
  padding: 12px 16px;
  border-radius: 16px;
  border: 2px solid var(--ch-gray-light);
  font-family: 'Jost', sans-serif;
  font-size: 15px;
  outline: none;
  margin-bottom: 10px;
  box-sizing: border-box;
}

/* Loading */
.ch-loading {
  text-align: center;
  padding: 120px 20px;
  color: #aaa;
  font-family: 'Jost', sans-serif;
}

/* ============ PILLARS (What Makes Us Different) ============ */
.ch-pillars {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 768px) { .ch-pillars { grid-template-columns: repeat(3, 1fr); } }
.ch-pillar {
  padding: 36px 28px;
  text-align: center;
  background: #fff;
  border: 1px solid var(--ch-gray-light);
  border-radius: 30px;
  transition: all 0.3s ease;
}
.ch-pillar:hover {
  box-shadow: 0 15px 30px -10px rgba(0,0,0,0.1);
  transform: translateY(-4px);
}
.ch-pillar-icon {
  font-size: 56px;
  line-height: 1;
  margin-bottom: 16px;
  display: inline-block;
}

/* ============ NEEDS BOARD HEADINGS ============ */
.ch-needs-heading {
  font-family: 'Inter', sans-serif;
  font-size: 20px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.ch-needs-heading-urgent { color: #c53030 !important; }
.ch-needs-heading-ongoing { color: var(--ch-gold-hover) !important; }
.ch-needs-dot {
  display: inline-block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  flex-shrink: 0;
}

/* ============ LATEST NEWS CARDS ============ */
.ch-news-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}
@media (min-width: 768px) { .ch-news-grid { grid-template-columns: repeat(3, 1fr); } }
.ch-news-card {
  background: #fff;
  border: 1px solid var(--ch-gray-light);
  border-radius: 30px;
  overflow: hidden;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}
.ch-news-card:hover {
  box-shadow: 0 15px 30px -10px rgba(0,0,0,0.12);
  transform: translateY(-4px);
}
.ch-news-image {
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--ch-gray-light);
}
.ch-news-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.ch-news-card:hover .ch-news-image img { transform: scale(1.05); }
.ch-news-body {
  padding: 24px 28px 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.ch-news-date {
  font-family: 'Jost', sans-serif;
  font-size: 13px;
  color: var(--ch-gold-hover);
  font-weight: 600;
  margin-bottom: 8px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.ch-news-title {
  font-family: 'Inter', sans-serif !important;
  font-size: 19px !important;
  font-weight: 800 !important;
  color: var(--ch-green) !important;
  line-height: 1.3 !important;
  margin: 0 0 10px 0 !important;
}
.ch-news-title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}
.ch-news-title a:hover { color: var(--ch-gold-hover) !important; }
.ch-news-excerpt {
  font-family: 'Jost', sans-serif;
  font-size: 15px;
  line-height: 1.6;
  color: var(--ch-text);
  margin: 0 0 16px 0;
  flex: 1;
}
.ch-news-readmore {
  font-family: 'Jost', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--ch-green) !important;
  text-decoration: none;
  align-self: flex-start;
}
.ch-news-readmore:hover { color: var(--ch-gold-hover) !important; }

/* ============ HOW YOU CAN HELP CARDS ============ */
.ch-help-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 640px) { .ch-help-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .ch-help-grid { grid-template-columns: repeat(4, 1fr); } }
.ch-help-card {
  display: block;
  padding: 32px 24px;
  background: #fff;
  border: 1px solid var(--ch-gray-light);
  border-radius: 30px;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s ease;
  color: inherit;
}
.ch-help-card:hover {
  box-shadow: 0 15px 30px -10px rgba(0,0,0,0.1);
  transform: translateY(-4px);
  border-color: var(--ch-green);
}
.ch-help-icon {
  font-size: 48px;
  margin-bottom: 12px;
  display: inline-block;
  line-height: 1;
}
.ch-help-cta {
  display: inline-block;
  margin-top: 8px;
  font-family: 'Jost', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--ch-green);
}
.ch-help-card:hover .ch-help-cta { color: var(--ch-gold-hover); }

/* ============ STORIES ============ */
.ch-stories-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 640px) { .ch-stories-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .ch-stories-grid { grid-template-columns: repeat(4, 1fr); } }
.ch-story-card {
  background: #fff;
  border: 1px solid var(--ch-gray-light);
  border-radius: 30px;
  padding: 32px 24px;
  transition: all 0.3s ease;
  position: relative;
}
.ch-story-card::before {
  content: "\201C";
  position: absolute;
  top: 12px;
  left: 20px;
  font-family: Georgia, serif;
  font-size: 64px;
  color: var(--ch-gold);
  line-height: 1;
  opacity: 0.3;
}
.ch-story-card:hover {
  box-shadow: 0 15px 30px -10px rgba(0,0,0,0.1);
  transform: translateY(-4px);
}
.ch-story-quote {
  font-family: 'Jost', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ch-text-dark);
  margin-bottom: 20px;
  font-style: italic;
  position: relative;
  z-index: 1;
}
.ch-story-attrib {
  font-family: 'Jost', sans-serif;
  font-size: 14px;
  color: var(--ch-text);
  border-top: 1px solid var(--ch-gray-light);
  padding-top: 16px;
}
.ch-story-attrib strong {
  color: var(--ch-green);
  font-family: 'Inter', sans-serif;
  font-weight: 800;
}

/* ============ PARTNERS ============ */
.ch-partners-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 32px;
  padding: 24px;
}
.ch-partner-placeholder {
  width: 140px;
  height: 60px;
  border: 2px dashed var(--ch-gray-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #aaa;
  font-family: 'Jost', sans-serif;
  font-size: 12px;
  background: #fff;
}

/* ============ NEWSLETTER ============ */
.ch-newsletter {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 560px;
  margin: 0 auto;
}
@media (min-width: 640px) {
  .ch-newsletter { flex-direction: row; }
  .ch-newsletter input { flex: 1; }
}
.ch-newsletter input {
  padding: 14px 20px;
  border-radius: 50px;
  border: 2px solid var(--ch-gray-light);
  font-family: 'Jost', sans-serif;
  font-size: 15px;
  outline: none;
  background: #fff;
}
.ch-newsletter input:focus {
  border-color: var(--ch-green);
}

/* Hide Kadence page title on the custom homepage only */
.page-template-page-home .entry-header,
.page-template-page-home .entry-hero,
.page-template-page-home .site-main > .entry-header,
.page-template-page-home h1.entry-title,
.page-template-page-home .page-title,
body.home .entry-header,
body.home .entry-hero,
body.home h1.entry-title {
  display: none !important;
}

/* Remove any wrapper padding the theme adds on the home page */
.page-template-page-home .site-main,
body.home .site-main {
  padding: 0 !important;
  max-width: none !important;
}
.page-template-page-home .content-container,
body.home .content-container {
  max-width: none !important;
  padding: 0 !important;
}

/* ===== CarePoint Supporter page ===== */
.page-template-page-carepoint-supporter .entry-header,
.page-template-page-carepoint-supporter .entry-hero,
.page-template-page-carepoint-supporter h1.entry-title,
.page-template-page-carepoint-supporter .page-title { display: none !important; }
.page-template-page-carepoint-supporter .site-main,
.page-template-page-carepoint-supporter .content-container { padding: 0 !important; max-width: none !important; }

.ch-cps-grid {
  display: grid;
  gap: 32px;
}
.ch-cps-country-title {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 800;
  color: var(--ch-green-dark);
  margin: 0 0 14px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.ch-cps-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 14px;
}
.ch-cps-card {
  background: #fff;
  border: 2px solid var(--ch-gray-light);
  border-radius: 18px;
  padding: 18px 20px;
  text-align: left;
  cursor: pointer;
  font-family: 'Jost', sans-serif;
  transition: all 0.2s ease;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.ch-cps-card:hover {
  border-color: var(--ch-gold-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}
.ch-cps-card-name {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 15px;
  color: var(--ch-green-dark);
  line-height: 1.3;
}
.ch-cps-card-stat {
  font-size: 13px;
  color: #777;
}

.ch-supporter-tiers {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 18px;
  max-width: 980px;
  margin: 0 auto;
}
.ch-supporter-tier {
  background: #fff;
  border: 2px solid var(--ch-gray-light);
  border-radius: 24px;
  padding: 28px 22px;
  text-align: center;
  transition: all 0.2s ease;
}
.ch-supporter-tier:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.08);
}
.ch-supporter-tier.featured {
  border-color: var(--ch-gold-hover);
  background: linear-gradient(135deg, #fffaf0 0%, #fff 100%);
  box-shadow: 0 8px 20px rgba(218,165,32,0.15);
}
.ch-supporter-amount {
  font-family: 'Inter', sans-serif;
  font-size: 38px;
  font-weight: 900;
  color: var(--ch-green);
  margin-bottom: 8px;
}
.ch-supporter-tier.featured .ch-supporter-amount {
  color: var(--ch-gold-hover);
}
.ch-supporter-what {
  font-family: 'Jost', sans-serif;
  font-size: 14px;
  color: #555;
  line-height: 1.5;
}

/* Modal-specific bits */
.ch-cps-h {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 800;
  color: var(--ch-green-dark);
  margin: 0 0 12px;
}
.ch-cps-toggle {
  display: flex;
  background: var(--ch-gray-lighter);
  border-radius: 14px;
  padding: 4px;
  margin-bottom: 18px;
  gap: 4px;
}
.ch-cps-freq {
  flex: 1;
  background: transparent;
  border: none;
  padding: 12px 16px;
  border-radius: 10px;
  cursor: pointer;
  font-family: 'Jost', sans-serif;
  font-weight: 600;
  font-size: 15px;
  color: #666;
  transition: all 0.2s ease;
}
.ch-cps-freq.active {
  background: #fff;
  color: var(--ch-green-dark);
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}
.ch-cps-amts {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
  margin-bottom: 12px;
}
.ch-cps-amt {
  background: #fff;
  border: 2px solid var(--ch-gray-light);
  border-radius: 12px;
  padding: 14px 8px;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: var(--ch-green-dark);
  transition: all 0.15s ease;
}
.ch-cps-amt:hover { border-color: var(--ch-gold-hover); }
.ch-cps-amt.active {
  background: var(--ch-gold-hover);
  border-color: var(--ch-gold-hover);
  color: #fff;
}
.ch-cps-custom {
  margin-bottom: 16px;
}
.ch-cps-input-wrap {
  display: flex;
  align-items: center;
  border: 2px solid var(--ch-gray-light);
  border-radius: 12px;
  padding: 0 14px;
  margin-top: 6px;
}
.ch-cps-input-wrap span {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  color: #999;
  font-size: 16px;
}
.ch-cps-input-wrap input {
  border: none;
  outline: none;
  padding: 12px 8px;
  font-family: 'Jost', sans-serif;
  font-size: 15px;
  width: 100%;
  background: transparent;
}
.ch-cps-ga {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 12px;
  border: 2px solid var(--ch-gray-light);
  border-radius: 12px;
  margin-bottom: 16px;
  cursor: pointer;
  font-family: Jost;
  font-size: 14px;
  line-height: 1.5;
}
.ch-cps-ga input {
  accent-color: var(--ch-gold-hover);
  margin-top: 3px;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}
.ch-cps-total {
  background: var(--ch-gray-lighter);
  padding: 14px 18px;
  border-radius: 16px;
  margin-bottom: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: Jost;
}
.ch-cps-total strong {
  font-family: Inter;
  font-size: 24px;
  color: var(--ch-green);
  font-weight: 900;
}

/* ===== Homepage: Children Waiting ===== */
.ch-waiting-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}
.ch-waiting-card {
  background: #fff;
  border: 2px solid var(--ch-gray-light);
  border-radius: 24px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: all 0.25s ease;
  display: flex;
  flex-direction: column;
}
.ch-waiting-card:hover {
  border-color: var(--ch-gold-hover);
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(0,0,0,0.1);
}
.ch-waiting-photo {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--ch-gray-lighter);
  position: relative;
}
.ch-waiting-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.ch-waiting-card:hover .ch-waiting-photo img {
  transform: scale(1.04);
}
.ch-waiting-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 72px;
  opacity: 0.4;
}
.ch-waiting-body {
  padding: 18px 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}
.ch-waiting-name {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 18px;
  color: var(--ch-green-dark);
}
.ch-waiting-meta {
  font-family: 'Jost', sans-serif;
  font-size: 13px;
  color: #888;
}
.ch-waiting-tagline {
  font-family: 'Jost', sans-serif;
  font-size: 14px;
  color: #555;
  line-height: 1.5;
  margin: 4px 0 0;
  flex: 1;
}
.ch-waiting-cta {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: var(--ch-gold-hover);
  margin-top: 10px;
}

/* ===== Homepage: Trust Bar ===== */
.ch-trust-bar {
  background: var(--ch-green-dark);
  color: #fff;
  padding: 32px 24px;
}
.ch-trust-items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}
.ch-trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
}
.ch-trust-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.ch-trust-text {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}
.ch-trust-text strong {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 14px;
}
.ch-trust-text span {
  font-family: 'Jost', sans-serif;
  font-size: 13px;
  opacity: 0.7;
}

/* ===== About page ===== */
.page-template-page-about .entry-header,
.page-template-page-about h1.entry-title,
.page-template-page-about .page-title,
.page-template-page-contact .entry-header,
.page-template-page-contact h1.entry-title,
.page-template-page-contact .page-title,
.page-template-page-get-involved .entry-header,
.page-template-page-get-involved h1.entry-title,
.page-template-page-get-involved .page-title { display: none !important; }
.page-template-page-about .site-main,
.page-template-page-about .content-container,
.page-template-page-contact .site-main,
.page-template-page-contact .content-container,
.page-template-page-get-involved .site-main,
.page-template-page-get-involved .content-container { padding: 0 !important; max-width: none !important; }

.ch-about-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 24px;
  max-width: 980px;
  margin: 0 auto;
}
.ch-about-stat {
  text-align: center;
  background: var(--ch-gray-lighter);
  border-radius: 24px;
  padding: 32px 20px;
}
.ch-about-stat-num {
  font-family: 'Inter', sans-serif;
  font-size: 44px;
  font-weight: 900;
  color: var(--ch-green);
  line-height: 1;
  margin-bottom: 8px;
}
.ch-about-stat-label {
  font-family: 'Jost', sans-serif;
  font-size: 15px;
  color: #555;
}

.ch-mv-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}
.ch-mv-card {
  background: #fff;
  border-radius: 24px;
  padding: 36px 30px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}
.ch-mv-icon {
  font-size: 44px;
  margin-bottom: 16px;
}

.ch-values-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  max-width: 900px;
  margin: 0 auto;
}
.ch-value-pill {
  background: #fff;
  border: 2px solid var(--ch-green);
  color: var(--ch-green-dark);
  padding: 10px 22px;
  border-radius: 999px;
  font-family: 'Jost', sans-serif;
  font-size: 15px;
  font-weight: 600;
}

.ch-legal-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
}
.ch-legal-card {
  background: var(--ch-gray-lighter);
  border-radius: 18px;
  padding: 20px;
  text-align: center;
}
.ch-legal-label {
  font-family: 'Jost', sans-serif;
  font-size: 13px;
  color: #777;
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.ch-legal-value {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  color: var(--ch-green-dark);
  font-size: 17px;
}

/* ===== Contact page ===== */
.ch-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 48px;
  max-width: 1100px;
  margin: 0 auto;
  align-items: start;
}
@media (max-width: 900px) {
  .ch-contact-grid { grid-template-columns: 1fr; }
}
.ch-contact-details {
  background: var(--ch-gray-lighter);
  border-radius: 24px;
  padding: 36px 30px;
}
.ch-contact-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 14px 0;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  font-family: 'Jost', sans-serif;
}
.ch-contact-item:last-of-type { border-bottom: none; }
.ch-contact-icon {
  font-size: 22px;
  width: 38px;
  flex-shrink: 0;
}
.ch-contact-label {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  color: var(--ch-green-dark);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 4px;
}
.ch-contact-item a {
  color: var(--ch-green);
  font-weight: 600;
  text-decoration: none;
}
.ch-contact-item a:hover { text-decoration: underline; }
.ch-contact-socials {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}
.ch-contact-socials a {
  width: 40px;
  height: 40px;
  background: var(--ch-green);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s ease;
}
.ch-contact-socials a:hover {
  background: var(--ch-gold-hover);
  transform: translateY(-2px);
}
.ch-contact-form-wrap {
  background: #fff;
  border: 2px solid var(--ch-gray-light);
  border-radius: 24px;
  padding: 36px 30px;
}
.ch-contact-form {
  display: grid;
  gap: 12px;
}
.ch-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.ch-contact-form input,
.ch-contact-form textarea {
  padding: 14px 18px;
  border-radius: 14px;
  border: 2px solid var(--ch-gray-light);
  font-family: 'Jost', sans-serif;
  font-size: 15px;
  outline: none;
  background: #fff;
  width: 100%;
  box-sizing: border-box;
  transition: border-color 0.2s ease;
}
.ch-contact-form input:focus,
.ch-contact-form textarea:focus {
  border-color: var(--ch-green);
}

/* ===== Get Involved page ===== */
.ch-ways-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}
.ch-way-card {
  background: #fff;
  border: 2px solid var(--ch-gray-light);
  border-radius: 24px;
  padding: 30px 28px;
  transition: all 0.25s ease;
  display: flex;
  flex-direction: column;
}
.ch-way-card:hover {
  border-color: var(--ch-gold-hover);
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.08);
}
.ch-way-icon {
  font-size: 38px;
  margin-bottom: 14px;
}
.ch-way-card h3 { margin-top: 0 !important; }
.ch-way-card p { flex: 1; }
.ch-way-cta {
  display: inline-block;
  margin-top: 16px;
  color: var(--ch-gold-hover);
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
}
.ch-way-cta:hover { color: var(--ch-green); }

/* ===== What We Do, Donate, FAQs templates (global chrome reset) ===== */
.page-template-page-what-we-do .entry-header,
.page-template-page-what-we-do h1.entry-title,
.page-template-page-what-we-do .page-title,
.page-template-page-donate .entry-header,
.page-template-page-donate h1.entry-title,
.page-template-page-donate .page-title,
.page-template-page-faqs .entry-header,
.page-template-page-faqs h1.entry-title,
.page-template-page-faqs .page-title { display: none !important; }
.page-template-page-what-we-do .site-main,
.page-template-page-what-we-do .content-container,
.page-template-page-donate .site-main,
.page-template-page-donate .content-container,
.page-template-page-faqs .site-main,
.page-template-page-faqs .content-container { padding: 0 !important; max-width: none !important; }

/* What We Do — five pillars */
.ch-pillars-5 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}
.ch-pillar5-card {
  background: #fff;
  border-radius: 24px;
  padding: 28px 22px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  transition: all 0.25s ease;
}
.ch-pillar5-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.08);
}
.ch-pillar5-icon {
  font-size: 44px;
  margin-bottom: 14px;
}

/* Countries grid */
.ch-countries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 16px;
  max-width: 1000px;
  margin: 0 auto;
}
.ch-country-card {
  background: var(--ch-gray-lighter);
  border-radius: 18px;
  padding: 22px 12px;
  text-align: center;
  transition: all 0.2s ease;
}
.ch-country-card:hover {
  background: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.06);
}
.ch-country-flag {
  font-size: 38px;
  margin-bottom: 6px;
}
.ch-country-name {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  color: var(--ch-green-dark);
  font-size: 15px;
}

/* Donate page — amounts + methods */
.ch-donate-amounts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 16px;
}
@media (min-width: 640px) { .ch-donate-amounts { grid-template-columns: repeat(6, 1fr); } }
.ch-donate-amt {
  background: #fff;
  border: 2px solid var(--ch-gray-light);
  border-radius: 14px;
  padding: 18px 10px;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 18px;
  color: var(--ch-green-dark);
  transition: all 0.15s ease;
}
.ch-donate-amt:hover { border-color: var(--ch-gold-hover); }
.ch-donate-amt.active {
  background: var(--ch-gold-hover);
  border-color: var(--ch-gold-hover);
  color: #fff;
}
.ch-donate-custom {
  margin-bottom: 18px;
}
.ch-donate-custom label {
  font-family: 'Jost', sans-serif;
  font-size: 14px;
  color: #666;
  display: block;
  margin-bottom: 8px;
}
.ch-donate-input {
  display: flex;
  align-items: center;
  background: #fff;
  border: 2px solid var(--ch-gray-light);
  border-radius: 14px;
  padding: 0 16px;
}
.ch-donate-input span {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  color: #999;
  font-size: 18px;
}
.ch-donate-input input {
  border: none;
  outline: none;
  padding: 14px 10px;
  font-family: 'Jost', sans-serif;
  font-size: 16px;
  width: 100%;
  background: transparent;
}
.ch-donate-ga {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 16px;
  background: #fff;
  border: 2px solid var(--ch-gray-light);
  border-radius: 14px;
  margin-bottom: 16px;
  cursor: pointer;
  font-family: Jost;
  font-size: 14px;
  line-height: 1.5;
}
.ch-donate-ga input {
  accent-color: var(--ch-gold-hover);
  margin-top: 3px;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}
.ch-donate-total {
  background: var(--ch-green-dark);
  color: #fff;
  padding: 18px 22px;
  border-radius: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: Jost;
  font-size: 16px;
}
.ch-donate-total strong {
  font-family: Inter;
  font-size: 28px;
  font-weight: 900;
  color: #fff;
}
.ch-donate-methods {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}
.ch-method-card {
  background: #fff;
  border: 2px solid var(--ch-gray-light);
  border-radius: 24px;
  padding: 28px 24px;
  transition: all 0.25s ease;
  display: flex;
  flex-direction: column;
}
.ch-method-card:hover {
  border-color: var(--ch-gold-hover);
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.08);
}
.ch-method-icon {
  font-size: 38px;
  margin-bottom: 12px;
}
.ch-method-card p { flex: 1; }

/* FAQs */
.ch-faq-group { margin-bottom: 40px; }
.ch-faq-cat {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 800;
  color: var(--ch-green);
  margin: 0 0 16px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--ch-gray-light);
}
.ch-faq {
  background: #fff;
  border: 2px solid var(--ch-gray-light);
  border-radius: 16px;
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color 0.2s ease;
}
.ch-faq[open] { border-color: var(--ch-green); }
.ch-faq summary {
  cursor: pointer;
  padding: 18px 22px;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: var(--ch-green-dark);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.ch-faq summary::-webkit-details-marker { display: none; }
.ch-faq summary::after {
  content: '+';
  font-size: 24px;
  font-weight: 400;
  color: var(--ch-green);
  transition: transform 0.2s ease;
  line-height: 1;
}
.ch-faq[open] summary::after {
  content: '−';
}
.ch-faq-a {
  padding: 0 22px 20px;
  font-family: 'Jost', sans-serif;
  font-size: 15px;
  line-height: 1.6;
  color: #444;
}
.ch-faq-a a {
  color: var(--ch-green);
  font-weight: 600;
  text-decoration: none;
}
.ch-faq-a a:hover { text-decoration: underline; }

/* ===== Latest News page ===== */
.page-template-page-latest-news .entry-header,
.page-template-page-latest-news h1.entry-title,
.page-template-page-latest-news .page-title { display: none !important; }
.page-template-page-latest-news .site-main,
.page-template-page-latest-news .content-container { padding: 0 !important; max-width: none !important; }

/* Filter pills */
.ch-news-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}
.ch-news-filter {
  background: var(--ch-gray-lighter);
  border: 2px solid transparent;
  border-radius: 999px;
  padding: 10px 22px;
  font-family: 'Jost', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #666;
  cursor: pointer;
  transition: all 0.2s ease;
}
.ch-news-filter:hover { color: var(--ch-green); }
.ch-news-filter.active {
  background: var(--ch-green);
  color: #fff;
  border-color: var(--ch-green);
}

/* Featured */
.ch-news-featured {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 0;
  background: #fff;
  border-radius: 30px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 12px 36px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}
.ch-news-featured:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 48px rgba(0,0,0,0.12);
}
@media (max-width: 860px) {
  .ch-news-featured { grid-template-columns: 1fr; }
}
.ch-news-featured-photo {
  min-height: 340px;
  background: var(--ch-gray-lighter);
  position: relative;
  overflow: hidden;
}
.ch-news-featured-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.ch-news-featured:hover .ch-news-featured-photo img {
  transform: scale(1.04);
}
.ch-news-featured-body {
  padding: 44px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Grid */
.ch-news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 28px;
}
.ch-news-card {
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.25s ease;
  border: 2px solid transparent;
  text-decoration: none;
  color: inherit;
}
.ch-news-card:hover {
  transform: translateY(-3px);
  border-color: var(--ch-gold-hover);
  box-shadow: 0 16px 36px rgba(0,0,0,0.08);
}
.ch-news-card:hover .ch-news-title { color: var(--ch-gold-hover); }
.ch-news-photo {
  aspect-ratio: 16 / 10;
  background: var(--ch-gray-lighter);
  position: relative;
  overflow: hidden;
}
.ch-news-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.ch-news-card:hover .ch-news-photo img {
  transform: scale(1.04);
}
.ch-news-photo-empty {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 60px;
  opacity: 0.35;
}
.ch-news-type {
  position: absolute;
  top: 14px;
  left: 14px;
  background: #fff;
  padding: 6px 14px;
  border-radius: 999px;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--ch-green-dark);
  box-shadow: 0 4px 12px rgba(0,0,0,0.12);
}
.ch-news-type-event   { color: #fff; background: var(--ch-green); }
.ch-news-type-appeal  { color: #fff; background: #c73b3b; }
.ch-news-type-update  { color: var(--ch-green-dark); }
.ch-news-type-story   { color: #fff; background: var(--ch-gold-hover); }

.ch-news-body {
  padding: 22px 24px 26px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.ch-news-meta {
  font-family: 'Jost', sans-serif;
  font-size: 13px;
  color: #888;
  margin-bottom: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.ch-news-title {
  font-family: 'Inter', sans-serif;
  font-size: 19px;
  font-weight: 800;
  line-height: 1.3;
  margin: 0 0 12px;
  color: var(--ch-green-dark);
}
.ch-news-title a {
  color: inherit;
  text-decoration: none;
}
.ch-news-title a:hover { color: var(--ch-gold-hover); }
.ch-news-excerpt {
  font-family: 'Jost', sans-serif;
  font-size: 15px;
  line-height: 1.55;
  color: #555;
  margin: 0 0 16px;
  flex: 1;
}
.ch-news-cta {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: var(--ch-gold-hover);
  text-decoration: none;
}
.ch-news-cta:hover { color: var(--ch-green); }

/* Inline CTA every 6 posts */
.ch-news-inline-cta {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, var(--ch-green) 0%, var(--ch-green-dark) 100%);
  border-radius: 24px;
  padding: 28px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

/* Pagination */
.ch-news-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 48px;
  flex-wrap: wrap;
}

/* Empty state */
.ch-news-empty {
  text-align: center;
  padding: 80px 20px;
  background: #fff;
  border-radius: 30px;
  border: 2px dashed var(--ch-gray-light);
}

/* Reset theme button defaults inside news controls + share modal */
.ch-news-share,
.ch-news-cp-chip,
.ch-news-filter,
.ch-share-close,
#ch-news-search-clear,
#ch-news-clear-country,
#ch-news-reset,
#ch-share-copy-btn {
  box-shadow: none;
  text-transform: none;
  letter-spacing: 0;
  min-height: 0;
  line-height: 1.2;
}

/* ===== Latest News — search, country chip, active filter, share ===== */
.ch-news-controls {
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 10px;
}
.ch-news-search {
  position: relative;
  display: flex;
  align-items: center;
  background: var(--ch-gray-lighter);
  border: 2px solid transparent;
  border-radius: 999px;
  padding: 0 16px;
  transition: all 0.2s ease;
  flex: 1;
  min-width: 220px;
  max-width: 360px;
}
.ch-news-search:focus-within {
  background: #fff;
  border-color: var(--ch-green);
}
.ch-news-search svg {
  color: #999;
  flex-shrink: 0;
}
.ch-news-search input {
  border: none;
  outline: none;
  background: transparent;
  font-family: 'Jost', sans-serif;
  font-size: 15px;
  padding: 12px 10px;
  width: 100%;
  color: var(--ch-green-dark);
}
.ch-news-search input::placeholder { color: #999; }
#ch-news-search-clear {
  background: none;
  border: none;
  cursor: pointer;
  color: #999;
  font-size: 22px;
  line-height: 1;
  padding: 0 4px;
}
#ch-news-search-clear:hover { color: var(--ch-green); }

.ch-news-active-filter {
  background: var(--ch-gold-hover);
  color: #fff;
  border-radius: 14px;
  padding: 12px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-family: 'Jost', sans-serif;
  font-size: 14px;
  margin-top: 10px;
}
#ch-news-clear-country {
  background: rgba(255,255,255,0.2);
  border: none;
  color: #fff;
  padding: 6px 14px;
  border-radius: 999px;
  font-family: inherit;
  font-size: 13px;
  cursor: pointer;
  font-weight: 600;
}
#ch-news-clear-country:hover { background: rgba(255,255,255,0.35); }

.ch-news-noresults {
  text-align: center;
  padding: 30px 20px;
  margin-top: 20px;
  background: var(--ch-gray-lighter);
  border-radius: 18px;
  font-family: 'Jost', sans-serif;
  color: #666;
}
#ch-news-reset {
  background: none;
  border: none;
  color: var(--ch-green);
  cursor: pointer;
  font-weight: 700;
  font-family: inherit;
  font-size: inherit;
  text-decoration: underline;
}

/* CarePoint chip inside meta line */
.ch-news-cp-chip {
  background: var(--ch-gray-lighter);
  border: none;
  color: #666;
  padding: 3px 10px;
  border-radius: 999px;
  font-family: 'Jost', sans-serif;
  font-size: 12.5px;
  cursor: pointer;
  transition: all 0.15s ease;
}
.ch-news-cp-chip:hover {
  background: var(--ch-green);
  color: #fff;
}

/* Share button on card */
.ch-news-share {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,0.9);
  border: none;
  cursor: pointer;
  color: var(--ch-green-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.12);
  transition: all 0.15s ease;
  opacity: 0;
  transform: translateY(-4px);
}
.ch-news-card:hover .ch-news-share,
.ch-news-share:focus { opacity: 1; transform: translateY(0); }
.ch-news-share:hover {
  background: var(--ch-gold-hover);
  color: #fff;
}
.ch-news-share svg {
  width: 16px !important;
  height: 16px !important;
  display: block;
  stroke: currentColor;
  max-width: none;
  flex-shrink: 0;
}

/* Share modal */
.ch-share-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 20px;
}
.ch-share-backdrop.open { display: flex; }
.ch-share-modal {
  background: #fff;
  border-radius: 24px;
  padding: 28px;
  max-width: 420px;
  width: 100%;
  box-shadow: 0 24px 48px rgba(0,0,0,0.2);
}
.ch-share-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 18px;
}
.ch-share-header strong {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: var(--ch-green-dark);
  line-height: 1.4;
  font-weight: 800;
}
.ch-share-close {
  background: var(--ch-gray-lighter);
  border: none;
  width: 32px;
  height: 32px;
  min-width: 32px;
  border-radius: 50%;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  color: #666;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}
.ch-share-close:hover { background: var(--ch-green); color: #fff; }
.ch-share-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 16px;
}
.ch-share-link {
  padding: 14px 16px;
  border-radius: 14px;
  text-decoration: none;
  text-align: center;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: #fff;
  transition: transform 0.15s ease;
}
.ch-share-link:hover { transform: translateY(-2px); }
.ch-share-fb { background: #1877f2; }
.ch-share-wa { background: #25d366; }
.ch-share-tw { background: #000; }
.ch-share-em { background: var(--ch-green); }
.ch-share-copy {
  display: flex;
  gap: 8px;
  background: var(--ch-gray-lighter);
  border-radius: 14px;
  padding: 8px;
  align-items: center;
}
#ch-share-url-input {
  border: none;
  background: transparent;
  font-family: 'Jost', sans-serif;
  font-size: 13px;
  padding: 8px 10px;
  width: 100%;
  color: #666;
  outline: none;
}
#ch-share-copy-btn {
  background: var(--ch-green);
  color: #fff;
  border: none;
  padding: 8px 16px;
  border-radius: 10px;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
  white-space: nowrap;
}
#ch-share-copy-btn:hover { background: var(--ch-gold-hover); }
