/*
Theme Name: Kadence Child - Boxajoy
Theme URI: https://boxajoycares.com
Description: Boxajoy Inc. child theme for Kadence
Author: Boxajoy Inc.
Author URI: https://boxajoycares.com
Template: kadence
Version: 1.0.0
Text Domain: kadence-child-boxajoy
*/

/* =========================================
   TEXT SELECTION COLORS
   ========================================= */
::selection {
  background: rgba(0, 140, 142, 0.22);
  color: #0A2342;
}
::-moz-selection {
  background: rgba(0, 140, 142, 0.22);
  color: #0A2342;
}

/* =========================================
   BOXAJOY BRAND VARIABLES
   ========================================= */
:root {
  --bj-navy:       #0A2342;
  --bj-teal:       #008C8E;
  --bj-teal-bright:#00B5B8;
  --bj-teal-dark:  #006D6F;
  --bj-white:      #FFFFFF;
  --bj-light:      #F4F7FA;
  --bj-surface:    #f8fbfc;
  --bj-gray:       #6B7A8D;
  --bj-text:       #1A2B40;
  --bj-muted:      #6b7280;
  --bj-border:     #e5eef2;
  --bj-radius:     18px;
  --bj-shadow:     0 8px 28px rgba(10,35,66,0.07);
  --bj-max:        1140px;
}

/* =========================================
   HERO SECTION
   ========================================= */
.bj-hero {
  background-color: var(--bj-navy);
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 40px;
  position: relative;
  overflow: hidden;
}

.bj-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 50% 0%, rgba(0,140,142,0.18) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 80% 80%, rgba(0,140,142,0.08) 0%, transparent 60%);
  pointer-events: none;
}

.bj-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 820px;
  margin: 0 auto;
}

.bj-hero__eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bj-teal);
  background: rgba(0,140,142,0.12);
  border: 1px solid rgba(0,140,142,0.35);
  border-radius: 100px;
  padding: 6px 18px;
  margin-bottom: 28px;
}

.bj-hero__h1 {
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  font-weight: 800;
  line-height: 1.12;
  color: var(--bj-white);
  margin: 0 0 24px;
  letter-spacing: -0.02em;
}
/* Inner pages (all static pages except the front page) get a
   more proportionate hero H1. Homepage uses the larger clamp above. */
.page:not(.home) .bj-hero__h1 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
}
@media (max-width: 1024px) {
  .page:not(.home) .bj-hero__h1 {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
  }
}
@media (max-width: 768px) {
  .page:not(.home) .bj-hero__h1 {
    font-size: 1.6rem;
    line-height: 1.25;
  }
}

.bj-hero__sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  line-height: 1.7;
  color: rgba(255,255,255,0.75);
  max-width: 620px;
  margin: 0 auto 42px;
}

.bj-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

/* Primary CTA — Teal */
.bj-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--bj-teal);
  color: var(--bj-white) !important;
  font-size: 1rem;
  font-weight: 700;
  padding: 16px 34px;
  border-radius: 8px;
  text-decoration: none !important;
  border: 2px solid var(--bj-teal);
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 4px 18px rgba(0,140,142,0.35);
}
.bj-btn-primary:hover {
  background: var(--bj-teal-dark);
  border-color: var(--bj-teal-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0,140,142,0.45);
}

/* Secondary CTA — Outline White */
.bj-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--bj-white) !important;
  font-size: 1rem;
  font-weight: 600;
  padding: 16px 34px;
  border-radius: 8px;
  text-decoration: none !important;
  border: 2px solid rgba(255,255,255,0.55);
  transition: border-color 0.2s, background 0.2s, transform 0.15s;
}
.bj-btn-outline:hover {
  border-color: var(--bj-white);
  background: rgba(255,255,255,0.07);
  transform: translateY(-2px);
}

/* =========================================
   IMPACT COUNTER STRIP
   ========================================= */
.bj-impact {
  background: var(--bj-navy);
  padding: 0;
}

.bj-impact__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.bj-impact__item {
  text-align: center;
  padding: 44px 20px;
  border-right: 1px solid rgba(255,255,255,0.1);
  transition: background 0.2s;
}
.bj-impact__item:last-child {
  border-right: none;
}
.bj-impact__item:hover {
  background: rgba(255,255,255,0.04);
}

.bj-impact__number {
  display: block;
  font-size: clamp(2.2rem, 3.5vw, 3rem);
  font-weight: 800;
  color: var(--bj-teal);
  line-height: 1;
  margin-bottom: 10px;
}

.bj-impact__label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* =========================================
   MISSION SECTION
   ========================================= */
.bj-mission {
  background: var(--bj-white);
  padding: 90px 40px;
}

.bj-mission__inner {
  max-width: 1100px;
  margin: 0 auto;
}

.bj-mission__header {
  text-align: center;
  margin-bottom: 64px;
}

.bj-mission__eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--bj-teal);
  margin-bottom: 18px;
}

.bj-mission__h2 {
  font-size: clamp(1.75rem, 3.2vw, 2.6rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--bj-navy);
  margin: 0;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  letter-spacing: -0.02em;
}

.bj-mission__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.bj-card {
  background: var(--bj-light);
  border-radius: 16px;
  padding: 40px 32px;
  border: 1px solid #E4EAF1;
  transition: transform 0.2s, box-shadow 0.2s;
}
.bj-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(10,35,66,0.1);
}

.bj-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(0,140,142,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.bj-card__icon svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: var(--bj-teal);
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.bj-card__title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--bj-navy);
  margin: 0 0 12px;
  line-height: 1.3;
}

.bj-card__text {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--bj-gray);
  margin: 0;
}

/* =========================================
   VETERAN CTA BANNER
   ========================================= */
.bj-cta {
  background: var(--bj-teal);
  padding: 80px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.bj-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 80% at 10% 50%, rgba(255,255,255,0.07) 0%, transparent 60%),
    radial-gradient(ellipse 40% 60% at 90% 20%, rgba(0,0,0,0.08) 0%, transparent 60%);
  pointer-events: none;
}

.bj-cta__inner {
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin: 0 auto;
}

.bj-cta__label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: 16px;
}

.bj-cta__h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--bj-white);
  margin: 0 0 14px;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.bj-cta__sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.8);
  margin: 0 0 36px;
  line-height: 1.6;
}

.bj-btn-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--bj-white);
  color: var(--bj-teal) !important;
  font-size: 1rem;
  font-weight: 700;
  padding: 16px 36px;
  border-radius: 8px;
  text-decoration: none !important;
  border: 2px solid var(--bj-white);
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 4px 18px rgba(0,0,0,0.15);
}
.bj-btn-white:hover {
  background: var(--bj-navy);
  border-color: var(--bj-navy);
  color: var(--bj-white) !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.2);
}

/* =========================================
   TRUST STRIP (Donate page)
   ========================================= */
.bj-trust {
  background: var(--bj-navy);
  padding: 0;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.bj-trust__inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.bj-trust__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 28px 20px;
  text-align: center;
  min-width: 140px;
}

.bj-trust__label {
  font-size: 1rem;
  font-weight: 700;
  color: var(--bj-white);
  line-height: 1.2;
}
.bj-trust__sub {
  font-size: 0.78rem;
  font-weight: 500;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.04em;
}

/* =========================================
   ZEFFY EMBED SECTION (Donate page)
   ========================================= */
.bj-zeffy {
  background: var(--bj-light);
  padding: 80px 40px;
}

.bj-zeffy__inner {
  max-width: 860px;
  margin: 0 auto;
}

.bj-zeffy__header {
  text-align: center;
  margin-bottom: 40px;
}

.bj-zeffy__eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--bj-teal);
  margin-bottom: 16px;
}

.bj-zeffy__h2 {
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  font-weight: 800;
  color: var(--bj-navy);
  margin: 0 0 12px;
  letter-spacing: -0.02em;
}

.bj-zeffy__sub {
  font-size: 1rem;
  color: var(--bj-gray);
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto;
}

.bj-zeffy__embed {
  background: var(--bj-white);
  border-radius: 16px;
  border: 1px solid #E4EAF1;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(10,35,66,0.07);
}

.bj-zeffy__embed iframe {
  display: block;
  width: 100%;
  border: none;
  min-height: 600px;
}

/* Zeffy button wrapper */
.bj-zeffy__btn-wrap {
  padding: 56px 32px;
  text-align: center;
}

.bj-btn-zeffy {
  font-size: 1.15rem;
  padding: 20px 52px;
  cursor: pointer;
}

/* Placeholder shown before real iframe is added */
.bj-zeffy__placeholder {
  padding: 64px 32px;
  text-align: center;
}

.bj-zeffy__placeholder-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: rgba(0,140,142,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}
.bj-zeffy__placeholder-icon svg {
  width: 32px;
  height: 32px;
  fill: none;
  stroke: var(--bj-teal);
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.bj-zeffy__placeholder-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--bj-navy);
  margin: 0 0 10px;
}

.bj-zeffy__placeholder-text {
  font-size: 0.92rem;
  color: var(--bj-gray);
  line-height: 1.6;
  max-width: 420px;
  margin: 0 auto;
}

.bj-zeffy__note {
  margin-top: 20px;
  text-align: center;
  font-size: 0.82rem;
  color: var(--bj-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.bj-zeffy__note svg {
  flex-shrink: 0;
  width: 14px;
  height: 14px;
  stroke: var(--bj-teal);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* =========================================
   CRISIS STRIP
   ========================================= */
.bj-crisis {
  background: #C0392B !important;
  color: #fff !important;
  padding: 12px 24px !important;
  width: 100% !important;
  display: block !important;
  box-sizing: border-box;
}

.bj-crisis__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 6px 20px;
  text-align: center;
}

.bj-crisis__badge {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: rgba(255,255,255,0.2);
  color: #fff;
  padding: 3px 10px;
  border-radius: 4px;
  white-space: nowrap;
}

.bj-crisis__text {
  font-size: 0.95rem;
  font-weight: 600;
  color: #fff !important;
}

.bj-crisis__sep {
  color: rgba(255,255,255,0.4);
}

.bj-crisis__link {
  color: #fff !important;
  text-decoration: underline;
  text-underline-offset: 2px;
  font-weight: 600;
  white-space: nowrap;
  transition: opacity 0.15s;
}
.bj-crisis__link:hover {
  opacity: 0.85;
}

/* =========================================
   VETERANS HERO MODIFIER
   ========================================= */
.bj-hero--veterans .bj-hero__eyebrow {
  color: rgba(255,255,255,0.85);
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.25);
}

/* =========================================
   SERVICES SECTION
   ========================================= */
.bj-services {
  background: var(--bj-light);
  padding: 90px 40px;
}

.bj-services__inner {
  max-width: 1100px;
  margin: 0 auto;
}

.bj-services__header {
  text-align: center;
  margin-bottom: 56px;
}

.bj-services__eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--bj-teal);
  margin-bottom: 18px;
}

.bj-services__h2 {
  font-size: clamp(1.75rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--bj-navy);
  margin: 0;
  letter-spacing: -0.02em;
}

.bj-services__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* =========================================
   APPLY / CONTACT FORM SECTION
   ========================================= */
.bj-apply {
  background: var(--bj-white);
  padding: 90px 40px;
}

.bj-apply__inner {
  max-width: 700px;
  margin: 0 auto;
}

.bj-apply__header {
  text-align: center;
  margin-bottom: 48px;
}

.bj-apply__eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--bj-teal);
  margin-bottom: 18px;
}

.bj-apply__h2 {
  font-size: clamp(1.75rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--bj-navy);
  margin: 0 0 14px;
  letter-spacing: -0.02em;
}

.bj-apply__sub {
  font-size: 1rem;
  color: var(--bj-gray);
  line-height: 1.7;
  margin: 0;
}

.bj-form__success {
  background: rgba(0,140,142,0.08);
  border: 1px solid rgba(0,140,142,0.3);
  border-radius: 12px;
  padding: 22px 28px;
  color: var(--bj-teal-dark);
  font-weight: 600;
  text-align: center;
  margin-bottom: 32px;
}

.bj-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.bj-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.bj-form__field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.bj-form__label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--bj-navy);
}

.bj-form__required {
  color: #B91C1C;
  margin-left: 2px;
}

.bj-form__input,
.bj-form__select,
.bj-form__textarea {
  padding: 12px 16px;
  border: 1.5px solid #D0D9E4;
  border-radius: 8px;
  font-size: 1rem;
  color: var(--bj-text);
  background: var(--bj-white);
  transition: border-color 0.15s, box-shadow 0.15s;
  font-family: inherit;
  width: 100%;
  box-sizing: border-box;
}

.bj-form__input:focus,
.bj-form__select:focus,
.bj-form__textarea:focus {
  outline: none;
  border-color: var(--bj-teal);
  box-shadow: 0 0 0 3px rgba(0,140,142,0.12);
}

.bj-form__textarea {
  resize: vertical;
  min-height: 140px;
}

.bj-form__note {
  font-size: 0.8rem;
  color: var(--bj-gray);
  line-height: 1.6;
  margin: 0;
}

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 860px) {
  .bj-mission__cards {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin: 0 auto;
  }
  .bj-services__cards {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin: 0 auto;
  }
}

@media (max-width: 680px) {
  .bj-impact__inner {
    grid-template-columns: repeat(2, 1fr);
  }
  .bj-impact__item:nth-child(2) {
    border-right: none;
  }
  .bj-impact__item:nth-child(3) {
    border-right: 1px solid rgba(255,255,255,0.1);
  }
  .bj-impact__item {
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }
  .bj-impact__item:nth-child(3),
  .bj-impact__item:nth-child(4) {
    border-bottom: none;
  }
  .bj-mission {
    padding: 60px 24px;
  }
  .bj-mission__header {
    margin-bottom: 40px;
  }
  .bj-cta {
    padding: 60px 24px;
  }
  .bj-services {
    padding: 60px 24px;
  }
  .bj-apply {
    padding: 60px 24px;
  }
  .bj-form__row {
    grid-template-columns: 1fr;
  }
  .bj-crisis__sep {
    display: none;
  }
  .bj-trust__inner {
    gap: 24px;
  }
  .bj-trust__item {
    padding: 16px 12px;
    min-width: 100px;
  }
  .bj-zeffy {
    padding: 60px 24px;
  }
}

@media (max-width: 420px) {
  .bj-impact__inner {
    grid-template-columns: 1fr;
  }
  .bj-impact__item {
    border-right: none !important;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }
  .bj-impact__item:last-child {
    border-bottom: none;
  }
}

/* =========================================
   FOOTER CREDITS
   ========================================= */
.bj-footer-legal {
  background: #f0f0f0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 8px 16px;
  padding: 12px 40px;
  font-size: 12px;
  color: #555;
  text-align: center;
}
.bj-footer-legal .bj-sep {
  color: #aaa;
}
.bj-footer-legal a {
  color: #007a7c;
  text-decoration: none;
}
.bj-footer-legal a:hover {
  color: #0A2342;
}

/* =========================================
   GLOBAL CONTENT SECTION UTILITY
   ========================================= */
.bj-content-section {
  max-width: 900px;
  margin: 0 auto;
  padding: 60px 40px;
}
@media (max-width: 768px) {
  .bj-content-section {
    padding: 40px 20px;
  }
}

/* =========================================
   CONTACT PAGE
   ========================================= */
.bj-hero--short {
  min-height: 40vh;
}
.bj-contact {
  background: var(--bj-light);
  padding: 80px 40px;
}
.bj-contact__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 64px;
  align-items: start;
}
.bj-contact__h2 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--bj-navy);
  margin: 0 0 28px;
}
.bj-contact__detail {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.bj-contact__detail-label {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--bj-gray);
  white-space: nowrap;
}
.bj-contact__detail-value {
  font-size: 0.95rem;
  color: var(--bj-text);
  text-decoration: none;
  word-break: break-all;
}
a.bj-contact__detail-value:hover {
  color: var(--bj-teal);
}
@media (max-width: 860px) {
  .bj-contact__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .bj-hero--short {
    min-height: 30vh;
  }
}

/* =========================================
   PRIVACY POLICY PAGE
   ========================================= */
.bj-privacy {
  background: var(--bj-white);
  padding: 80px 40px;
}
.bj-privacy__inner {
  max-width: 780px;
  margin: 0 auto;
}
.bj-privacy__block {
  margin-bottom: 44px;
}
.bj-privacy__block h2 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--bj-navy);
  margin: 0 0 12px;
}
.bj-privacy__block p,
.bj-privacy__block li {
  font-size: 1rem;
  color: var(--bj-text);
  line-height: 1.7;
}
.bj-privacy__block ul {
  padding-left: 1.4em;
  margin: 8px 0;
}
.bj-privacy__block a {
  color: var(--bj-teal);
}

/* =========================================
   ABOUT PAGE — STORY
   ========================================= */
.bj-story {
  background: var(--bj-white);
  padding: 80px 40px;
}
.bj-story__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 64px;
  align-items: start;
}
.bj-story__eyebrow {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--bj-teal);
  margin-bottom: 12px;
}
.bj-story__h2 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--bj-navy);
  line-height: 1.25;
  margin: 0 0 24px;
}
.bj-story__text p {
  color: var(--bj-text);
  line-height: 1.7;
  margin-bottom: 16px;
}
.bj-story__visual {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.bj-story__badge {
  background: var(--bj-navy);
  border-radius: 16px;
  padding: 28px 24px;
  text-align: center;
}
.bj-story__badge-number {
  display: block;
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--bj-teal);
  line-height: 1;
  margin-bottom: 6px;
}
.bj-story__badge-label {
  display: block;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.75);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ABOUT PAGE — TEAM */
.bj-team {
  background: var(--bj-light);
  padding: 80px 40px;
}
.bj-team__inner {
  max-width: 900px;
  margin: 0 auto;
}
.bj-team__header {
  text-align: center;
  margin-bottom: 48px;
}
.bj-team__eyebrow {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--bj-teal);
  margin-bottom: 8px;
}
.bj-team__h2 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--bj-navy);
  margin: 0;
}
.bj-team__cards {
  display: flex;
  justify-content: center;
}
.bj-team__card {
  background: var(--bj-white);
  border-radius: 16px;
  padding: 40px;
  max-width: 480px;
  text-align: center;
  box-shadow: 0 4px 24px rgba(10,35,66,0.07);
}
.bj-team__photo {
  margin: 0 auto 24px;
  width: 120px;
  height: 120px;
}
.bj-team__photo-placeholder {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 3px solid var(--bj-teal);
  background: rgba(0,140,142,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
}
.bj-team__name {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--bj-navy);
  margin: 0 0 4px;
}
.bj-team__role {
  display: block;
  font-size: 0.85rem;
  color: var(--bj-teal);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 16px;
}
.bj-team__bio {
  font-size: 0.95rem;
  color: var(--bj-text);
  line-height: 1.7;
  margin: 0;
}

/* ABOUT PAGE — VALUES */
.bj-values {
  background: var(--bj-white);
  padding: 80px 40px;
}
.bj-values__inner {
  max-width: 1100px;
  margin: 0 auto;
}
.bj-values__header {
  text-align: center;
  margin-bottom: 48px;
}
.bj-values__eyebrow {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--bj-teal);
  margin-bottom: 8px;
}
.bj-values__h2 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--bj-navy);
  margin: 0;
}
.bj-values__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* =========================================
   PROGRAMS PAGE
   ========================================= */
.bj-program {
  background: var(--bj-white);
  padding: 80px 40px;
}
.bj-program--alt {
  background: var(--bj-light);
}
.bj-program__inner {
  max-width: 760px;
  margin: 0 auto;
}
.bj-program__eyebrow {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--bj-teal);
  margin-bottom: 8px;
}
.bj-program__h2 {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--bj-navy);
  margin: 0 0 16px;
}
.bj-program__lead {
  font-size: 1.1rem;
  font-style: italic;
  color: var(--bj-gray);
  margin-bottom: 16px;
  line-height: 1.6;
}
.bj-program__content p {
  color: var(--bj-text);
  line-height: 1.7;
  margin-bottom: 14px;
}
.bj-btn-teal {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--bj-teal);
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 12px 28px;
  border-radius: 8px;
  text-decoration: none;
  margin-top: 8px;
  transition: background 0.2s;
}
.bj-btn-teal:hover {
  background: var(--bj-teal-dark);
  color: #fff;
}

@media (max-width: 860px) {
  .bj-story__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .bj-values__cards {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }
}

/* =========================================
   DESKTOP PADDING OVERRIDES (min-width: 769px)
   Forces left/right padding on all content sections in case
   Kadence parent theme nullifies them.
   ========================================= */
@media (min-width: 769px) {
  .bj-hero,
  .bj-services,
  .bj-apply,
  .bj-contact,
  .bj-program,
  .bj-story,
  .bj-team,
  .bj-values,
  .bj-mission,
  .bj-cta,
  .bj-trust,
  .bj-zeffy,
  .bj-privacy,
  .bj-form-section,
  .bj-contact-section,
  .bj-veterans-section,
  .bj-veterans-support-section,
  .bj-subscribe-strip {
    padding-left: 40px !important;
    padding-right: 40px !important;
  }
}

/* =========================================
   GLOBAL UTILITY CLASSES
   ========================================= */
.bj-icon-row {
  display: flex;
  align-items: center;
  gap: 10px;
}
.bj-trust-strip {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}
.bj-trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
}

/* =========================================
   CUSTOM LOGO
   ========================================= */
.custom-logo-link,
.site-branding {
  background: transparent !important;
  padding: 0 !important;
}
.custom-logo-link img {
  max-height: 65px;
  width: auto;
  display: block;
}
/* Site title displayed next to logo — all caps, navy, bold */
/* Kadence renders: <p class="site-title">Boxajoy</p> (no inner <a>) */
/* Must use !important to override Kadence's inline font-size:26px   */
.site-title-wrap {
  display: inline-flex !important;
  align-items: center !important;
}
.site-branding .site-title,
p.site-title,
div.site-title {
  display: inline-block !important;
  visibility: visible !important;
  opacity: 1 !important;
  font-size: 0.9rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.10em !important;
  text-transform: uppercase !important;
  color: var(--bj-navy) !important;
  margin: 0 0 0 10px !important;
  padding: 0 !important;
  line-height: 1.2 !important;
  white-space: nowrap !important;
  width: auto !important;
  overflow: visible !important;
}
/* Keep all other non-Kadence site-title aliases hidden */
.kadence-site-title,
.kadence-site-title a,
h1.site-title,
#site-title,
.header-site-title,
.wp-site-title,
.site-branding__title,
span.site-title {
  display: none !important;
  visibility: hidden !important;
  width: 0 !important;
  overflow: hidden !important;
  font-size: 0 !important;
  opacity: 0 !important;
}

/* =========================================
   RESET KADENCE ENTRY-CONTENT CONSTRAINTS
   Forces our custom page templates to be full-width
   containers so .bj-page-content can self-center.
   Body class is .page (not .page-template-page-*) for
   slug-matched templates without Template Name header.
   ========================================= */
.page .entry-content {
  max-width: 100% !important;
  width: 100% !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  float: none !important;
}

/* =========================================
   GLOBAL CONTENT ALIGNMENT
   ========================================= */
.bj-page-content {
  max-width: var(--bj-max) !important;
  width: 100% !important;
  margin: 0 auto !important;
  padding: 0 40px !important;
  box-sizing: border-box !important;
  float: none !important;
  position: relative !important;
}

@media (max-width: 768px) {
  .bj-page-content {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
}

/* Narrow text wrapper for intro paragraphs inside wide sections */
.bj-text-narrow {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

/* =========================================
   REDESIGN WIDGET STYLES
   ========================================= */

/* Accent card — programs / features */
.bj-card-accent {
  background: #f8f9fa;
  border-left: 5px solid #008C8E;
  border-radius: 0 12px 12px 0;
  padding: 40px 48px;
  margin-bottom: 24px;
}

/* Stat box — navy bg, teal numbers */
.bj-stat-box {
  background: #0A2342;
  border-radius: 12px;
  padding: 40px 32px;
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.bj-stat-item {
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding-bottom: 20px;
}
.bj-stat-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.bj-stat-number {
  font-size: 48px;
  font-weight: 800;
  color: #00B5B8;
  display: block;
  line-height: 1;
  margin-bottom: 6px;
}
.bj-stat-label {
  font-size: 13px;
  color: rgba(255,255,255,0.75);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  display: block;
}

/* Two-column layout */
.bj-two-col {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 48px;
  align-items: start;
}
@media (max-width: 768px) {
  .bj-two-col { grid-template-columns: 1fr; }
}

/* Values grid */
.bj-values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 32px 0;
}
@media (max-width: 768px) {
  .bj-values-grid { grid-template-columns: 1fr; }
}

/* Who-it-serves strip */
.bj-who-strip {
  background: rgba(0,140,142,0.08);
  border-radius: 8px;
  padding: 12px 16px;
  margin: 16px 0 20px;
  font-size: 0.9rem;
  line-height: 1.6;
  color: #444;
}
.bj-who-strip strong { color: #0A2342; }

/* Program card header row */
.bj-prog-header {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 20px;
}
.bj-prog-icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: rgba(0,140,142,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Learn more link */
.bj-link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #008C8E;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  margin-top: 12px;
}
.bj-link-arrow:hover { color: #005F60; }

/* Form box — light teal bg with left border */
.bj-form-box {
  background: #E6F8F8;
  border-left: 4px solid #0A2342;
  border-radius: 0 12px 12px 0;
  padding: 40px 48px;
  box-shadow: 0 4px 20px rgba(10,35,66,0.07);
}

/* Initials avatar */
.bj-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: #008C8E;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}
.bj-avatar__initials {
  font-size: 32px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
}

/* =========================================
   RESPONSIVE GRID SYSTEM
   ========================================= */

/* Base: all grids start as single column */
.bj-grid-2,
.bj-grid-3,
.bj-grid-4 {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr;
}

/* Tablet: 2-up */
@media (min-width: 640px) {
  .bj-grid-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .bj-grid-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Desktop: full width */
@media (min-width: 960px) {
  .bj-grid-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .bj-grid-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

/* =========================================
   UNIVERSAL CARD
   ========================================= */
.bj-ucard {
  background: #fff;
  border: 1px solid var(--bj-border);
  border-radius: var(--bj-radius);
  padding: 28px;
  box-shadow: var(--bj-shadow);
}

/* =========================================
   IMPACT STAT CARD (Donate / About)
   ========================================= */
.bj-impact-card {
  background: #fff;
  border: 1px solid var(--bj-border);
  border-radius: var(--bj-radius);
  padding: 28px 24px;
  box-shadow: var(--bj-shadow);
  text-align: center;
}
.bj-impact-card__amount {
  display: block;
  font-size: clamp(1.75rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--bj-navy);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 8px;
}
.bj-impact-card__desc {
  font-size: 0.9rem;
  color: var(--bj-muted);
  line-height: 1.5;
  margin: 0;
  max-width: none;
}
.bj-impact-card--teal .bj-impact-card__amount {
  color: var(--bj-teal);
}

/* =========================================
   DONATE PANEL (why-give + embed side)
   ========================================= */
.bj-why-give {
  background: var(--bj-navy);
  border-radius: var(--bj-radius);
  padding: 36px 32px;
  color: #fff;
}
.bj-why-give h2 {
  color: #fff;
  margin-bottom: 12px;
  font-size: clamp(1.3rem, 2.5vw, 1.75rem);
}
.bj-why-give p {
  color: rgba(255,255,255,0.8);
  max-width: none;
}
.bj-why-give ul {
  list-style: none;
  margin: 20px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.bj-why-give li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.85);
  font-size: 0.95rem;
}
.bj-why-give li::before {
  content: '';
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(0,181,184,0.25);
  border: 1.5px solid var(--bj-teal-bright);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2300B5B8' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

.bj-donate-embed-box {
  background: var(--bj-surface);
  border: 1px solid var(--bj-border);
  border-radius: var(--bj-radius);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  text-align: center;
}
.bj-donate-embed-box h3 {
  color: var(--bj-navy);
  margin: 0;
  font-size: 1.25rem;
}
.bj-donate-embed-box p {
  color: var(--bj-muted);
  font-size: 0.9rem;
  margin: 0;
  max-width: none;
}

/* =========================================
   CONTACT CARD COLUMNS
   ========================================= */
.bj-contact-card {
  background: #fff;
  border: 1px solid var(--bj-border);
  border-radius: var(--bj-radius);
  padding: 36px 32px;
  box-shadow: var(--bj-shadow);
}
.bj-contact-card h2 {
  color: var(--bj-navy);
  margin-bottom: 24px;
  font-size: 1.35rem;
}

/* =========================================
   BLOG CARD GRID
   ========================================= */
.bj-blog-intro {
  text-align: center;
  padding: 48px 0 32px;
}
.bj-blog-intro h1 {
  color: var(--bj-navy);
  margin-bottom: 12px;
}
.bj-blog-intro p {
  color: var(--bj-muted);
  font-size: 1.05rem;
  margin: 0 auto;
}
.bj-blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  padding-bottom: 60px;
}
@media (min-width: 640px) {
  .bj-blog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 960px) {
  .bj-blog-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
.bj-blog-card {
  background: #fff;
  border: 1px solid var(--bj-border);
  border-radius: var(--bj-radius);
  overflow: hidden;
  box-shadow: var(--bj-shadow);
  display: flex;
  flex-direction: column;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.bj-blog-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(10,35,66,0.12);
}
.bj-blog-card__thumb {
  aspect-ratio: 16 / 9;
  background: linear-gradient(135deg, rgba(0,140,142,0.15), rgba(10,35,66,0.12));
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.bj-blog-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.bj-blog-card__thumb-placeholder {
  font-size: 2.5rem;
  opacity: 0.35;
}
.bj-blog-card__body {
  padding: 20px 22px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.bj-blog-card__cat {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--bj-teal);
  margin-bottom: 8px;
}
.bj-blog-card__title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--bj-navy);
  line-height: 1.35;
  margin: 0 0 10px;
}
.bj-blog-card__excerpt {
  font-size: 0.88rem;
  color: var(--bj-muted);
  line-height: 1.55;
  flex: 1;
  margin: 0 0 16px;
}
.bj-blog-card__meta {
  font-size: 0.8rem;
  color: var(--bj-gray);
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--bj-border);
  padding-top: 12px;
  margin-top: auto;
}
.bj-blog-card a {
  text-decoration: none;
  color: inherit;
}

/* Blog page — Kadence/WordPress default archive styling overrides */
.blog .wp-block-post,
.blog .type-post,
.blog-list .type-post,
.archive .type-post {
  background: #fff;
  border: 1px solid var(--bj-border);
  border-radius: var(--bj-radius);
  overflow: hidden;
  box-shadow: var(--bj-shadow);
  margin-bottom: 0;
}
.blog .wp-block-post-featured-image img,
.blog .entry-thumbnail img,
.blog .post-thumbnail img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
  border-radius: 0;
}

/* =========================================
   STICKY HEADER ENHANCEMENT
   ========================================= */
.site-header {
  position: sticky !important;
  top: 0 !important;
  z-index: 1000 !important;
  background: rgba(255,255,255,0.97) !important;
  backdrop-filter: blur(10px) !important;
  -webkit-backdrop-filter: blur(10px) !important;
  border-bottom: 1px solid var(--bj-border) !important;
  box-shadow: 0 1px 12px rgba(10,35,66,0.06) !important;
}

/* =========================================
   SECTION SPACING CONSISTENCY
   ========================================= */
.bj-section {
  padding-top: 44px;
  padding-bottom: 44px;
}
.bj-section--sm {
  padding-top: 32px;
  padding-bottom: 32px;
}
/* Tablet */
@media (min-width: 769px) and (max-width: 1024px) {
  .bj-section {
    padding-top: 64px;
    padding-bottom: 64px;
  }
  .bj-section--sm {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
/* Desktop */
@media (min-width: 1025px) {
  .bj-section {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  .bj-section--sm {
    padding-top: 48px;
    padding-bottom: 48px;
  }
}
/* Section heading to body text gap */
.bj-section h2 {
  margin-bottom: 14px;
}
.bj-section .bj-subtitle,
.bj-section .bj-section-subtitle {
  margin-bottom: 40px;
}
/* Card grid gaps sitewide */
.bj-section .wp-block-columns {
  gap: 24px;
}

/* =========================================
   HORIZONTAL STAT STRIP (About / Home)
   ========================================= */
.bj-stat-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  background: var(--bj-navy);
  border-radius: var(--bj-radius);
  overflow: hidden;
  margin: 48px 0;
}
.bj-stat-strip__item {
  text-align: center;
  padding: 36px 24px;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.bj-stat-strip__item:last-child {
  border-right: none;
}
.bj-stat-strip__num {
  display: block;
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  color: var(--bj-teal-bright);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 8px;
}
.bj-stat-strip__label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}
@media (max-width: 640px) {
  .bj-stat-strip {
    grid-template-columns: 1fr;
  }
  .bj-stat-strip__item {
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  .bj-stat-strip__item:last-child {
    border-bottom: none;
  }
}

/* =========================================
   SECTION HEADER UTILITY
   ========================================= */
.bj-section-header {
  max-width: 760px;
  margin: 0 auto 36px;
  text-align: center;
}

/* Standalone eyebrow (works outside hero) */
.bj-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: #008C8E;
  margin-bottom: 10px;
}

/* Page title utility */
.bj-title {
  margin: 0 0 14px;
  color: #0A2342;
  line-height: 1.1;
  font-size: clamp(1.75rem, 3.5vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}

/* Subtitle / subhead */
.bj-subtitle {
  margin: 0 auto;
  max-width: 66ch;
  color: #6B7A8D;
  font-size: 1.05rem;
  line-height: 1.6;
}

/* =========================================
   SPLIT LAYOUT (2-col, content + panel)
   ========================================= */
.bj-split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: start;
}
@media (min-width: 768px) {
  .bj-split {
    grid-template-columns: 1.1fr 0.9fr;
  }
}

/* =========================================
   PANEL (white card surface)
   ========================================= */
.bj-panel {
  background: #fff;
  border: 1px solid #e5eef2;
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 8px 28px rgba(10,35,66,0.07);
}
.bj-panel h2,
.bj-panel h3 {
  color: #0A2342;
  margin-top: 0;
}
.bj-panel ul {
  list-style: none;
  margin: 16px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.bj-panel li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #444;
  font-size: 0.95rem;
  line-height: 1.5;
}
.bj-panel li::before {
  content: '';
  flex-shrink: 0;
  margin-top: 3px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(0,140,142,0.12);
  border: 1.5px solid #008C8E;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='%23008C8E' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

/* =========================================
   ICON WRAP (for card icons)
   ========================================= */
.bj-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,140,142,0.1);
  margin-bottom: 16px;
  flex-shrink: 0;
}

/* =========================================
   FORM PANEL (styled form container)
   ========================================= */
.bj-form-panel {
  background: #fff;
  border: 1px solid #e5eef2;
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 8px 28px rgba(10,35,66,0.07);
}
.bj-form-panel h3 {
  color: #0A2342;
  margin-top: 0;
  margin-bottom: 20px;
  font-size: 1.2rem;
}

/* =========================================
   ACCORDION
   ========================================= */
.bj-accordion {
  display: grid;
  gap: 12px;
  max-width: 800px;
  margin: 0 auto;
}
.bj-accordion-item {
  background: #fff;
  border: 1px solid #e5eef2;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(10,35,66,0.04);
}
.bj-accordion-trigger {
  width: 100%;
  text-align: left;
  background: #fff;
  color: #0A2342;
  border: none;
  padding: 18px 20px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  line-height: 1.4;
}
.bj-accordion-trigger::after {
  content: '';
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%23008C8E' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  transition: transform 0.2s ease;
}
.bj-accordion-item.is-open .bj-accordion-trigger::after {
  transform: rotate(180deg);
}
.bj-accordion-trigger:hover,
.bj-accordion-trigger:focus {
  background: #f8fbfc;
  color: #0A2342 !important;
  outline: none;
}
.bj-accordion-panel {
  display: none;
  padding: 0 20px 18px;
  color: #6B7A8D;
  line-height: 1.65;
  font-size: 0.95rem;
}
.bj-accordion-item.is-open .bj-accordion-panel {
  display: block;
}

/* =========================================
   CTA BAND
   ========================================= */
.bj-cta-band {
  background: linear-gradient(135deg, rgba(0,140,142,0.06), rgba(10,35,66,0.05));
  border: 1px solid #e5eef2;
  border-radius: 24px;
  padding: 40px;
  text-align: center;
  margin: 40px 0;
}
.bj-cta-band h2 {
  color: #0A2342;
  margin: 0 0 12px;
}
.bj-cta-band p {
  color: #6B7A8D;
  margin: 0 auto 20px;
  max-width: 60ch;
}

/* =========================================
   BUTTON ALIASES (new naming convention)
   ========================================= */
.bj-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 11px 22px;
  border-radius: 999px;
  border: none;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: opacity 0.15s ease, transform 0.15s ease;
}
.bj-button:hover {
  opacity: 0.88;
  transform: translateY(-1px);
}
.bj-button-primary {
  background: #008C8E;
  color: #fff;
}
.bj-button-secondary {
  background: #fff;
  color: #0A2342;
  border: 1px solid #e5eef2;
  box-shadow: 0 2px 6px rgba(10,35,66,0.06);
}

/* =========================================
   BLOG CARD — WordPress block overrides
   ========================================= */
.wp-block-post-template {
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 24px !important;
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
}
.wp-block-post {
  background: #fff !important;
  border: 1px solid #e5eef2 !important;
  border-radius: 20px !important;
  overflow: hidden !important;
  box-shadow: 0 8px 28px rgba(10,35,66,0.07) !important;
  padding: 0 !important;
  margin: 0 !important;
}
.wp-block-post-featured-image img {
  width: 100% !important;
  aspect-ratio: 16 / 9 !important;
  object-fit: cover !important;
  display: block !important;
  border-radius: 0 !important;
}
.wp-block-post-title,
.wp-block-post-excerpt,
.wp-block-post-date,
.wp-block-read-more {
  padding-inline: 22px !important;
}
.wp-block-post-title { padding-top: 20px !important; }
.wp-block-read-more  { padding-bottom: 22px !important; display: block !important; }
.wp-block-post-title a { color: #0A2342 !important; text-decoration: none !important; }
@media (min-width: 640px) {
  .wp-block-post-template { grid-template-columns: repeat(2, minmax(0,1fr)) !important; }
}
@media (min-width: 960px) {
  .wp-block-post-template { grid-template-columns: repeat(3, minmax(0,1fr)) !important; }
}


/* =========================================
   GALLERY SLIDESHOW
   ========================================= */
.bj-gallery {
  background: var(--bj-white);
  padding: 84px 24px 100px;
}

.bj-gallery__inner {
  max-width: var(--bj-max);
  margin: 0 auto;
}

.bj-gallery__header {
  text-align: center;
  margin-bottom: 52px;
}

.bj-gallery__eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bj-teal);
  margin-bottom: 14px;
}

.bj-gallery__title {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--bj-navy);
  margin: 0 0 16px;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.bj-gallery__subtitle {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--bj-muted);
  max-width: 560px;
  margin: 0 auto;
}

/* Slider wrapper */
.bj-slider {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 14px 52px rgba(10,35,66,0.10);
  background: var(--bj-light);
  aspect-ratio: 16 / 7;
  max-height: 520px;
}

/* Slide track — stacked */
.bj-slider__track {
  position: relative;
  width: 100%;
  height: 100%;
}

/* Individual slides: fade in/out */
.bj-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.65s ease;
  pointer-events: none;
}
.bj-slide.is-active {
  opacity: 1;
  pointer-events: auto;
}

.bj-slide__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Placeholder (no images uploaded yet) */
.bj-slide__placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  background: linear-gradient(135deg, var(--bj-light) 0%, #ddf0f0 100%);
  color: var(--bj-muted);
  font-size: 0.88rem;
  text-align: center;
  padding: 24px;
}
.bj-slide__placeholder svg {
  opacity: 0.28;
  color: var(--bj-teal);
  flex-shrink: 0;
}
.bj-slide__placeholder strong {
  color: var(--bj-navy);
  font-weight: 600;
}

/* Prev / Next arrows */
.bj-slider__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 46px;
  height: 46px;
  background: rgba(255,255,255,0.90);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bj-navy);
  box-shadow: 0 3px 16px rgba(10,35,66,0.16);
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  outline: none;
}
.bj-slider__arrow:hover {
  background: var(--bj-white);
  box-shadow: 0 6px 24px rgba(10,35,66,0.22);
  transform: translateY(-50%) scale(1.08);
}
.bj-slider__arrow:focus-visible {
  box-shadow: 0 0 0 3px var(--bj-teal), 0 3px 16px rgba(10,35,66,0.16);
}
.bj-slider__arrow--prev { left: 18px; }
.bj-slider__arrow--next { right: 18px; }

/* Navigation dots */
.bj-slider__dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 9px;
  z-index: 10;
}
.bj-slider__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.45);
  cursor: pointer;
  transition: background 0.25s, transform 0.25s;
  padding: 0;
  outline: none;
}
.bj-slider__dot.is-active {
  background: var(--bj-white);
  transform: scale(1.35);
}
.bj-slider__dot:hover {
  background: rgba(255,255,255,0.80);
}
.bj-slider__dot:focus-visible {
  box-shadow: 0 0 0 2px var(--bj-teal);
}

/* Responsive */
@media (max-width: 768px) {
  .bj-gallery {
    padding: 64px 16px 80px;
  }
  .bj-gallery__header {
    margin-bottom: 36px;
  }
  .bj-slider {
    aspect-ratio: 4 / 3;
    max-height: none;
    border-radius: 16px;
  }
  .bj-slider__arrow {
    width: 38px;
    height: 38px;
  }
  .bj-slider__arrow--prev { left: 12px; }
  .bj-slider__arrow--next { right: 12px; }
}

@media (max-width: 480px) {
  .bj-gallery {
    padding: 52px 12px 64px;
  }
  .bj-slider {
    aspect-ratio: 3 / 2;
    border-radius: 12px;
  }
  .bj-slider__arrow {
    width: 34px;
    height: 34px;
  }
}


/* =========================================
   FOUNDER AVATAR — PHOTO OR INITIALS
   ========================================= */

/* Base circle — used for both initials and photo */
.bj-avatar {
  width: 110px;
  height: 110px;
  min-width: 110px;
  border-radius: 50%;
  background: rgba(0,140,142,0.12);
  border: 3px solid var(--bj-teal);
  box-shadow: 0 8px 28px rgba(10,35,66,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
}

/* When showing a real photo, remove the teal background */
.bj-avatar--photo {
  background: var(--bj-light);
}

/* Photo fills the circle cleanly */
.bj-avatar--photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

/* Initials text — override the hardcoded #fff from earlier */
.bj-avatar__initials {
  font-size: 2rem;
  font-weight: 800;
  color: var(--bj-white);
  letter-spacing: -0.02em;
  line-height: 1;
}

/* =========================================
   BLOG ARCHIVE — KADENCE FEATURED IMAGE
   Kadence outputs: .post-thumbnail > .post-thumbnail-inner > img
   ========================================= */

/* Constrain the outer thumbnail link/div */
.blog .post-thumbnail,
.archive .post-thumbnail {
  display: block;
  overflow: hidden;
  border-radius: 0;
}

/* Force 16:9 aspect ratio via the inner wrapper */
.blog .post-thumbnail-inner,
.archive .post-thumbnail-inner {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  display: block;
}

/* The actual image — fills the container, cropped center */
.blog .post-thumbnail-inner img,
.archive .post-thumbnail-inner img,
.blog .post-thumbnail img,
.archive .post-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  border-radius: 0;
  transition: transform 0.35s ease;
}

/* Subtle zoom on card hover */
.blog .type-post:hover .post-thumbnail img,
.archive .type-post:hover .post-thumbnail img {
  transform: scale(1.04);
}

/* Style Kadence's blog archive cards to match Boxajoy */
.blog .type-post,
.archive .type-post {
  background: var(--bj-white);
  border: 1px solid var(--bj-border);
  border-radius: var(--bj-radius);
  overflow: hidden;
  box-shadow: var(--bj-shadow);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
  margin-bottom: 0;
}

.blog .type-post:hover,
.archive .type-post:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 44px rgba(10,35,66,0.13);
}

/* Entry title color */
.blog .entry-title a,
.archive .entry-title a {
  color: var(--bj-navy) !important;
  text-decoration: none;
}
.blog .entry-title a:hover,
.archive .entry-title a:hover {
  color: var(--bj-teal) !important;
}

/* Entry meta / excerpt */
.blog .entry-meta,
.archive .entry-meta {
  color: var(--bj-muted);
  font-size: 0.85rem;
}

/* Padding for Kadence's inner entry content (below thumbnail) */
.blog .entry-content-wrap,
.archive .entry-content-wrap {
  padding: 20px 24px 24px;
}

/* "Read more" link */
.blog .more-link,
.archive .more-link {
  color: var(--bj-teal) !important;
  font-weight: 600;
  text-decoration: none;
  font-size: 0.9rem;
}
.blog .more-link:hover,
.archive .more-link:hover {
  color: var(--bj-teal-dark) !important;
}

/* =========================================
   BLOG CARD — also style wp-block variants
   (for any query-loop-based layouts)
   ========================================= */
.wp-block-post-featured-image {
  overflow: hidden;
}
.wp-block-post-featured-image a {
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}
.wp-block-post-featured-image img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center !important;
  display: block !important;
  border-radius: 0 !important;
  transition: transform 0.35s ease;
}
.wp-block-post:hover .wp-block-post-featured-image img {
  transform: scale(1.04);
}

/* =========================================
   TALLY FORM SECTIONS — outer page sections
   ========================================= */
.bj-form-section {
  background: var(--bj-light);
  padding: 80px 40px;
}
.bj-form-section--veterans {
  background: #fff;
  border-top: 4px solid var(--bj-teal);
}

/* v5 named section variants */
.bj-contact-section {
  background: #EEF2F6;
  padding: 80px 40px;
}
/* v9 alias used in WP block editor */
.bj-veterans-section,
.bj-veterans-support-section {
  background: var(--bj-white);
  border-top: 4px solid var(--bj-teal);
  padding: 80px 40px;
}

/* =========================================
   TALLY SECTION — inner centered layout
   ========================================= */
.bj-tally-section {
  text-align: center;
}

/* Centered heading + subtitle above the form card */
.bj-section-intro {
  max-width: 760px;
  margin: 0 auto 32px;
}
.bj-section-intro h2 {
  font-size: clamp(1.5rem, 2.8vw, 2rem);
  font-weight: 700;
  color: var(--bj-navy);
  margin: 0 0 12px;
  line-height: 1.2;
  text-align: center;
}
.bj-form-section--veterans .bj-section-intro h2 {
  color: var(--bj-teal-dark);
}
.bj-section-intro p {
  font-size: 1rem;
  color: var(--bj-muted);
  margin: 0;
  line-height: 1.65;
  text-align: center;
}
.bj-section-intro p strong {
  color: #C0392B;
}

/* =========================================
   TALLY WRAP CARD
   ========================================= */
.bj-tally-wrap {
  max-width: 720px;
  margin: 0 auto;
  background: var(--bj-white);
  border: 1px solid var(--bj-border);
  border-radius: 24px;
  box-shadow: 0 10px 30px rgba(10, 35, 66, 0.08);
  padding: 32px;
  box-sizing: border-box;
  text-align: left;
}
.bj-tally-wrap.veterans {
  max-width: 760px;
}
.bj-tally-wrap.donate-inquiry {
  max-width: 700px;
}
.bj-tally-wrap.footer-signup {
  max-width: 620px;
  padding: 20px 24px;
  border-radius: 20px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: none;
  text-align: left;
}
/* Iframe fills wrapper cleanly */
.bj-tally-wrap iframe[data-tally-src],
.bj-tally-wrap iframe[src*="tally.so"] {
  display: block;
  width: 100%;
  min-height: 400px;
  border: none;
}
.bj-tally-wrap.footer-signup iframe[data-tally-src],
.bj-tally-wrap.footer-signup iframe[src*="tally.so"] {
  min-height: 120px;
}

/* =========================================
   ABOUT PAGE — FEATURE CARDS ("A Box Built to Help")
   Styled to match .bj-why-give on Donate page:
   navy background, white text, teal SVG circle bullets
   ========================================= */
.bj-feature-section {
  background: #ffffff;
  padding: 80px 40px;
}
/* Section intro spacing */
.bj-feature-section > .wp-block-group__inner-container > .bj-eyebrow,
.bj-feature-section > .wp-block-group__inner-container > .wp-block-heading,
.bj-feature-section > .wp-block-group__inner-container > .bj-subtitle {
  text-align: center;
}
/* 3-column grid — override WP Columns block defaults */
.bj-three-col.wp-block-columns {
  gap: 24px !important;
  align-items: stretch !important;
  flex-wrap: nowrap !important;
  margin-top: 44px !important;
}
.bj-three-col.wp-block-columns > .wp-block-column {
  flex-basis: 0 !important;
  flex-grow: 1 !important;
  min-width: 0;
}
/* Cards — navy dark, matches .bj-why-give */
.bj-feature-card {
  background: var(--bj-navy);
  border-radius: var(--bj-radius);
  padding: 32px;
  box-sizing: border-box;
  height: 100%;
  display: flex;
  flex-direction: column;
  color: #fff;
}
.bj-feature-card h3 {
  color: #ffffff;
  font-size: 1.05rem;
  font-weight: 700;
  margin: 0 0 16px;
  line-height: 1.3;
}
/* Bullet list — matches .bj-why-give ul / li style */
.bj-feature-card ul,
.bj-feature-card .wp-block-list {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.bj-feature-card ul li,
.bj-feature-card .wp-block-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.93rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.5;
  list-style: none !important;
  padding-left: 0;
  margin-bottom: 0;
}
/* SVG circle checkmark — exact same as .bj-why-give li::before */
.bj-feature-card ul li::before,
.bj-feature-card .wp-block-list li::before {
  content: '';
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(0, 181, 184, 0.25);
  border: 1.5px solid var(--bj-teal-bright);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2300B5B8' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}
@media (max-width: 768px) {
  .bj-three-col.wp-block-columns {
    flex-direction: column !important;
    margin-top: 32px !important;
  }
  .bj-feature-card {
    padding: 24px;
    border-radius: 16px;
  }
  .bj-feature-section {
    padding: 48px 20px;
  }
}

/* =========================================
   FOOTER SUBSCRIBE STRIP
   ========================================= */
.bj-subscribe-strip {
  background: var(--bj-navy);
  padding: 64px 40px;
}
/* v5 inner container */
.bj-footer-signup {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}
.bj-footer-signup-label {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--bj-white);
  margin: 0 0 10px;
  line-height: 1.3;
}
.bj-footer-signup-sub {
  font-size: 0.95rem;
  color: #ffffff;
  margin: 0 0 24px;
  line-height: 1.6;
}
.bj-footer-signup .bj-form-widget iframe,
.bj-footer-signup .bj-form-widget .tally-embed {
  width: 100% !important;
  border: none !important;
  min-height: auto !important;
}

/* =========================================
   2-COLUMN FORM GRID (Contact + Veterans v4)
   ========================================= */
.bj-form-grid,
.wp-block-columns.bj-form-grid {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 40px !important;
  max-width: var(--bj-max);
  margin: 0 auto;
  align-items: start;
  flex-wrap: unset !important;
}
/* Reset WP column block children so our grid controls sizing */
.wp-block-columns.bj-form-grid > .wp-block-column {
  flex-basis: unset !important;
  width: unset !important;
  min-width: 0;
}

/* Info card — left column */
.bj-info-card {
  background: var(--bj-white);
  border: 1px solid var(--bj-border);
  border-radius: var(--bj-radius);
  box-shadow: var(--bj-shadow);
  padding: 36px 32px;
  box-sizing: border-box;
  min-width: 0;
}
.bj-info-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--bj-navy);
  margin: 0 0 20px;
  line-height: 1.25;
}
.bj-form-section--veterans .bj-info-card h3 {
  color: var(--bj-teal-dark);
}
.bj-info-card p {
  font-size: 0.95rem;
  color: var(--bj-muted);
  line-height: 1.65;
  margin: 0 0 14px;
}
.bj-info-card p:last-child {
  margin-bottom: 0;
}
.bj-info-card strong {
  color: var(--bj-navy);
  font-weight: 600;
}
.bj-info-card a {
  color: var(--bj-teal);
  text-decoration: none;
}
.bj-info-card a:hover {
  text-decoration: underline;
}
.bj-info-card .bj-info-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 18px;
}
.bj-info-card .bj-info-item:last-child {
  margin-bottom: 0;
}
.bj-info-card .bj-info-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  background: var(--bj-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  line-height: 1;
}
.bj-info-card .bj-info-text {
  flex: 1;
}
.bj-info-card .bj-info-label {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--bj-teal);
  margin-bottom: 3px;
}
.bj-info-card .bj-info-value {
  display: block;
  font-size: 0.92rem;
  color: var(--bj-text);
}

/* Crisis callout inside info card (veterans) */
.bj-crisis-callout {
  background: #fff5f5;
  border-left: 4px solid #C0392B;
  border-radius: 10px;
  padding: 14px 16px;
  margin: 20px 0 0;
}
.bj-crisis-callout p {
  font-size: 0.88rem;
  color: #7a1c1c;
  margin: 0;
  line-height: 1.5;
}
.bj-crisis-callout strong {
  color: #C0392B;
}

/* Form card — right column */
.bj-form-card {
  background: var(--bj-white);
  border: 1px solid var(--bj-border);
  border-radius: var(--bj-radius);
  box-shadow: var(--bj-shadow);
  padding: 36px 32px;
  box-sizing: border-box;
  min-width: 0;
  overflow: hidden;
}
.bj-form-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--bj-navy);
  margin: 0 0 20px;
  line-height: 1.25;
}
.bj-form-section--veterans .bj-form-card h3 {
  color: var(--bj-teal-dark);
}

/* Widget frame — strips Tally's own card chrome */
.bj-form-widget {
  margin: 6px 0 0;
  width: 100%;
}
.bj-form-widget iframe,
.bj-form-widget .tally-embed,
.bj-form-widget .tally-block {
  display: block !important;
  width: 100% !important;
  min-height: auto !important;
  border: none !important;
  margin: 0 !important;
}

/* Input / select / textarea inside form cards */
.bj-form-card input,
.bj-form-card select,
.bj-form-card textarea {
  border-radius: 14px;
  border: 1px solid var(--bj-border);
  width: 100%;
  padding: 12px 16px;
  font-size: 15px;
  background: var(--bj-white);
  color: var(--bj-text);
  box-sizing: border-box;
}
.bj-form-card input:focus,
.bj-form-card select:focus,
.bj-form-card textarea:focus {
  border-color: var(--bj-teal);
  outline: none;
  box-shadow: 0 0 0 3px rgba(0, 140, 142, 0.15);
}

/* =========================================
   RESPONSIVE — FORM SECTIONS
   ========================================= */

/* Tablet: tighten gap but keep 2 columns */
@media (max-width: 1023px) and (min-width: 769px) {
  .bj-form-grid {
    gap: 20px;
  }
  .bj-contact-section,
  .bj-veterans-section,
  .bj-veterans-support-section {
    padding: 64px 32px;
  }
}

/* Mobile: single column */
@media (max-width: 768px) {
  .bj-form-grid,
  .wp-block-columns.bj-form-grid {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }
  .bj-tally-wrap,
  .bj-tally-wrap.veterans,
  .bj-tally-wrap.donate-inquiry {
    max-width: 100%;
    padding: 20px;
    border-radius: 20px;
  }
  .bj-tally-section {
    padding: 0;
  }
  .bj-info-card,
  .bj-form-card {
    padding: 24px 20px;
  }
}
@media (max-width: 600px) {
  .bj-form-section,
  .bj-contact-section,
  .bj-veterans-section,
  .bj-veterans-support-section {
    padding: 56px 20px;
  }
  .bj-section-intro h2 {
    font-size: 1.4rem;
  }
  .bj-subscribe-strip {
    padding: 48px 20px;
  }
  .bj-footer-signup-label {
    font-size: 1.25rem;
  }
  .bj-tally-wrap.footer-signup,
  .bj-footer-signup .bj-tally-wrap {
    max-width: 100%;
    padding: 16px;
  }
}
