/* ═══════════════════════════════════════════════
   BLOG FOOTER — "Stay Informed" band + 6-col grid
   ═══════════════════════════════════════════════ */

/* ── STAY INFORMED BAND ─────────────────────── */
.stay-informed-band {
  background: linear-gradient(135deg, var(--green-dark, #0E3D26) 0%, var(--green, #1F5E3F) 100%);
  padding: 26px 40px;
  font-family: 'Lato', 'Helvetica Neue', Helvetica, Arial, sans-serif;
}
.stay-informed-inner {
  max-width: 1320px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  flex-wrap: wrap;
}
.stay-informed-lead {
  display: flex;
  align-items: center;
  gap: 18px;
  flex: 1 1 420px;
  min-width: 0;
}
.stay-informed-icon {
  width: 56px;
  height: 56px;
  border-radius: 8px;
  background: var(--gold, #E8B93B);
  color: var(--green-dark, #0E3D26);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.stay-informed-icon svg { width: 28px; height: 28px; }
.stay-informed-copy h3 {
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  margin: 0 0 4px;
  letter-spacing: -0.01em;
}
.stay-informed-copy p {
  margin: 0;
  font-size: 14.5px;
  color: rgba(255,255,255,.72);
  line-height: 1.5;
}
.stay-informed-form {
  display: flex;
  align-items: stretch;
  gap: 10px;
  flex: 0 1 480px;
  min-width: 0;
}
.stay-informed-band .stay-informed-form input,
.stay-informed-band .stay-informed-form input[type="email"] {
  flex: 1;
  min-width: 0;
  height: 48px;
  padding: 0 18px;
  background: rgba(255,255,255,.06) !important;
  border: 1px solid rgba(255,255,255,.22) !important;
  border-radius: 6px;
  color: #fff !important;
  font-size: 14px;
  font-family: inherit;
  outline: none;
  transition: border-color .22s cubic-bezier(.4,0,.2,1), background .22s cubic-bezier(.4,0,.2,1);
  box-sizing: border-box;
  -webkit-appearance: none;
  appearance: none;
  box-shadow: none;
}
.stay-informed-band .stay-informed-form input::placeholder { color: rgba(255,255,255,.5) !important; }
.stay-informed-band .stay-informed-form input:focus {
  border-color: #E8B93B !important;
  background: rgba(255,255,255,.1) !important;
  outline: none !important;
  box-shadow: none !important;
}
.stay-informed-band .stay-informed-form button,
.stay-informed-band .stay-informed-form button[type="submit"] {
  height: 48px;
  padding: 0 26px;
  background: #E8B93B;
  background-color: #E8B93B;
  color: #0E3D26;
  border: 0;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: none;
  cursor: pointer;
  transition: background .22s cubic-bezier(.4,0,.2,1), transform .22s cubic-bezier(.4,0,.2,1);
  white-space: nowrap;
  font-family: inherit;
  -webkit-appearance: none;
  appearance: none;
  box-shadow: none;
}
.stay-informed-band .stay-informed-form button:hover,
.stay-informed-band .stay-informed-form button[type="submit"]:hover {
  background: #f0c84b;
  background-color: #f0c84b;
  transform: translateY(-1px);
}

/* ── PROGRAM CTA — compact variant of stay-informed band ── */
.stay-informed-band.program-cta { padding: 18px 40px; }
.stay-informed-band.program-cta .stay-informed-copy h3 {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.3;
  margin: 0;
}
.program-cta-eyebrow {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold, #E8B93B);
  margin-bottom: 6px;
}
.program-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 22px;
  height: 44px;
  background: #E8B93B;
  color: #0E3D26;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
  transition: background .2s, transform .2s;
  flex-shrink: 0;
}
.program-cta-btn:hover { background: #f0c84b; transform: translateY(-1px); }
.program-cta-btn svg { width: 14px; height: 14px; transition: transform .2s; }
.program-cta-btn:hover svg { transform: translateX(3px); }

/* CTA inner grid aligned with footer columns */
.stay-informed-band.program-cta .stay-informed-inner {
  display: grid;
  grid-template-columns: 140px repeat(5, minmax(0, 1fr));
  gap: 32px;
  align-items: center;
  justify-content: stretch;
}
.program-cta-content {
  grid-column: 2 / span 4;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

/* ── SITE FOOTER ────────────────────────────── */
.site-footer-blog {
  background: #fff;
  padding: 56px 40px 28px;
  font-family: 'Lato', 'Helvetica Neue', Helvetica, Arial, sans-serif;
}
.site-footer-blog-inner {
  max-width: 1320px;
  margin: 0 auto;
}

/* 6-column grid */
.blog-footer-grid {
  display: grid;
  grid-template-columns: 140px repeat(5, minmax(0, 1fr));
  gap: 32px;
  padding-bottom: 36px;
}

/* Col 1: Logo */
.blog-footer-brand {
  display: flex;
  align-items: flex-start;
}
.blog-footer-brand-logo {
  display: inline-block;
  line-height: 0;
}
.blog-footer-brand-logo img {
  max-width: 140px;
  height: auto;
  display: block;
}

/* Social icons row */
.blog-footer-social {
  display: flex;
  gap: 6px;
}
.blog-footer-social a {
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #6b7280;
  border: 1px solid transparent;
  border-radius: 4px;
  transition: color .22s cubic-bezier(.4,0,.2,1), background .22s cubic-bezier(.4,0,.2,1);
}
.blog-footer-social a:hover {
  color: var(--green, #1F5E3F);
  background: var(--green-wash, #F3F7F4);
}
.blog-footer-social svg { width: 18px; height: 18px; }

/* Link columns */
.blog-footer-col h4,
.blog-footer-col .bf-col-title {
  font-size: 15px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 14px 0;
  letter-spacing: .01em;
}
.blog-footer-col summary.bf-col-title { margin-bottom: 0; }
.blog-footer-col h4:not(:first-child),
.blog-footer-col .bf-col-title:not(:first-child) {
  margin-top: 22px;
}
.blog-footer-col .bf-col-title--standalone,
.blog-footer-col .bf-col-title--standalone:not(:first-child) {
  margin-top: 0;
  margin-bottom: 0;
}
.blog-footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.blog-footer-col li { margin: 0; }
.blog-footer-col a {
  display: block;
  padding: 3px 0;
  color: #4a4a4a;
  text-decoration: none;
  font-size: 14px;
  line-height: 22px;
  transition: color .22s cubic-bezier(.4,0,.2,1);
}
.blog-footer-col a:hover { color: var(--green, #1F5E3F); }

/* Accordion sections (details/summary) */
.bf-section {
  display: block;
}
.bf-section + .bf-section,
.bf-section + .bf-col-title--standalone,
.bf-col-title--standalone + .bf-col-title--standalone {
  margin-top: 22px;
}
.bf-section summary {
  list-style: none;
  cursor: default;
}
.bf-section summary::-webkit-details-marker { display: none; }
.bf-section summary::marker { display: none; }
.bf-section summary:focus {
  outline: none !important;
  box-shadow: none !important;
}

/* Desktop: always show contents, summary not clickable */
@media (min-width: 521px) {
  .bf-section > *:not(summary) { display: block !important; }
  .bf-section summary { pointer-events: none; }
}

/* ── SUBFOOTER ──────────────────────────────── */
.blog-footer-bottom {
  border-top: 1px solid var(--border, #E3E6EB);
  padding-top: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 13px;
  color: #4a4a4a;
}
.blog-footer-bottom-legal {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.blog-footer-bottom-legal a {
  color: #4a4a4a;
  text-decoration: none;
  transition: color .22s cubic-bezier(.4,0,.2,1);
}
.blog-footer-bottom-legal a:hover { color: var(--green, #1F5E3F); }
.blog-footer-bottom-sep {
  color: var(--border, #E3E6EB);
  user-select: none;
}

/* ── RESPONSIVE ─────────────────────────────── */
@media (max-width: 1180px) {
  .blog-footer-grid {
    grid-template-columns: 120px repeat(5, minmax(0, 1fr));
    gap: 24px;
  }
  .stay-informed-band.program-cta .stay-informed-inner {
    grid-template-columns: 120px repeat(5, minmax(0, 1fr));
    gap: 24px;
  }
}
@media (max-width: 1024px) {
  .site-footer-blog { padding: 48px 28px 24px; }
  .blog-footer-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
  }
  .blog-footer-brand {
    grid-column: 1 / -1;
    flex-direction: row;
    align-items: center;
  }
  .stay-informed-band { padding: 24px 28px; }
  .stay-informed-band.program-cta { padding: 16px 28px; }
  .stay-informed-band.program-cta .stay-informed-inner {
    display: flex;
    gap: 22px;
  }
  .program-cta-content { width: 100%; }
}
@media (max-width: 800px) {
  .stay-informed-inner { gap: 22px; }
  .stay-informed-lead { flex: 1 1 100%; }
  .stay-informed-form { flex: 1 1 100%; }
}
@media (max-width: 720px) {
  .blog-footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }
}
@media (max-width: 520px) {
  .site-footer-blog { padding: 40px 22px 22px; }
  .blog-footer-grid { grid-template-columns: 1fr; gap: 0; }
  .blog-footer-brand {
    flex-direction: row;
    padding-bottom: 28px;
    margin-bottom: 8px;
  }
  .blog-footer-col {
    display: block;
    border-top: 1px solid var(--border, #E3E6EB);
    width: 100%;
  }
  /* Reset desktop spacing */
  .bf-section + .bf-section,
  .bf-section + .bf-col-title--standalone,
  .bf-col-title--standalone + .bf-col-title--standalone { margin-top: 0; }
  .bf-section { border-top: 1px solid var(--border, #E3E6EB); }
  .bf-section:first-child { border-top: 0; }
  .bf-section summary {
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 2px;
    margin-bottom: 0;
    font-size: 15px;
    line-height: 1.2;
    -webkit-tap-highlight-color: transparent;
  }
  .bf-section summary::after {
    content: '';
    width: 14px;
    height: 14px;
    flex-shrink: 0;
    background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'/></svg>") no-repeat center / contain;
    transition: transform .25s ease;
  }
  .bf-section[open] summary::after { transform: rotate(180deg); }
  .bf-section ul { padding: 0 0 14px; }
  .bf-section ul a { padding: 6px 0; }
  .bf-col-title--standalone {
    border-top: 1px solid var(--border, #E3E6EB);
    padding: 16px 2px;
    margin: 0;
    font-size: 15px;
    line-height: 1.2;
  }
  .bf-col-title--standalone a { padding: 0; }
  .stay-informed-band { padding: 22px 20px; }
  .stay-informed-band.program-cta { padding: 18px 20px; }
  .stay-informed-band.program-cta .stay-informed-copy h3 { font-size: 20px; font-weight: 600; line-height: 1.3; }
  .stay-informed-inner { width: 100%; }
  .stay-informed-lead { flex-direction: column; align-items: flex-start; gap: 12px; width: 100%; }
  .stay-informed-icon { width: 48px; height: 48px; }
  .stay-informed-copy h3 { font-size: 19px; }
  .stay-informed-copy p { font-size: 14px; }
  .stay-informed-form {
    flex-direction: column;
    gap: 10px;
    width: 100%;
    max-width: 100%;
  }
  .stay-informed-band .stay-informed-form input,
  .stay-informed-band .stay-informed-form button {
    display: block;
    width: 100%;
    max-width: 100%;
    height: 52px;
    min-height: 52px;
    line-height: 52px;
    margin: 0;
    box-sizing: border-box;
    padding: 0 18px;
    -webkit-appearance: none;
            appearance: none;
    font-family: inherit;
    flex-shrink: 0;
  }
  .stay-informed-form input { line-height: normal; }
  .blog-footer-bottom {
    flex-direction: column-reverse;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 14px;
    margin-top: 8px;
  }
  .blog-footer-bottom-legal { justify-content: center; }
}
