/* ============ HEADER (shared services-header pattern) ============ */
.services-header {
  background: var(--surface);
  padding: 128px 20px 28px;
  text-align: center;
}

@media (min-width: 768px) {
  .services-header { padding: 168px 24px 32px; }
}

.services-header h1 {
  font-size: clamp(28px, 5.5vw, 42px);
  font-weight: 900;
  color: var(--heading);
  letter-spacing: -0.03em;
  margin-bottom: 14px;
}
.services-header p {
  font-size: 16px;
  color: var(--muted);
  max-width: 560px;
  margin: 0 auto;
}

/* ============ TAB TOGGLE (shared services-tabs pattern) ============ */
.services-tabs-wrap {
  background: var(--surface);
  padding: 0 20px 40px;
  text-align: center;
}

@media (min-width: 480px) {
  .services-tabs-wrap { padding: 0 24px 56px; }
}

.services-tabs {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  background: var(--ivory);
  padding: 6px;
  border-radius: 100px;
  border: 1px solid var(--border);
  max-width: 100%;
}

.services-tab {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: transparent;
  border: none;
  color: var(--muted);
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 700;
  padding: 11px 16px;
  min-height: 44px;
  border-radius: 100px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
}

@media (min-width: 480px) {
  .services-tab { font-size: 14px; padding: 11px 22px; }
}

.services-tab:hover { color: var(--heading); }
.services-tab.active {
  background: var(--crimson);
  color: var(--white);
  box-shadow: 0 8px 18px rgba(170,14,65,0.28);
}

.kc-tab-badge {
  background: var(--navy);
  color: var(--ivory);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: 100px;
  white-space: nowrap;
}
.services-tab.active .kc-tab-badge {
  background: var(--ivory);
  color: var(--crimson);
}

@media (min-width: 480px) {
  .kc-tab-badge { font-size: 10px; padding: 4px 10px; }
}

/* Bigger tabs for Knowledge Center only (BhuNews / BhuEdu) */
#kcTabs { padding: 8px; gap: 10px; }
#kcTabs .services-tab {
  font-size: 15px;
  padding: 13px 22px;
  min-height: 48px;
}
@media (min-width: 480px) {
  #kcTabs .services-tab { font-size: 17px; padding: 16px 34px; gap: 10px; }
}

/* ============ CONTENT WRAP ============ */
.services-grid-wrap { background: var(--surface); padding: 0 20px 72px; }

@media (min-width: 480px) {
  .services-grid-wrap { padding: 0 24px 100px; }
}

.kc-placeholder-wrap {
  max-width: 640px;
  margin: 0 auto;
}
.kc-placeholder-wrap.hidden { display: none; }
#kcNewsGrid.kc-placeholder-wrap,
#kcEduGrid.kc-placeholder-wrap {
  max-width: none;
}

/* ---- BhuNews filter bar ---- */
.kc-news-filterbar {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.kc-loc-pill {
  background: var(--ivory);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 700;
  color: var(--heading);
}
.kc-loc-change {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 8px 16px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  cursor: pointer;
  font-family: 'Inter', sans-serif;
}
.kc-loc-change:hover { border-color: var(--crimson); color: var(--crimson); }
.kc-loc-note {
  font-size: 13px;
  font-style: italic;
  color: var(--muted);
}

/* ---- BhuNews card grid ---- */
.kc-news-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 641px) {
  .kc-news-grid { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 901px) {
  .kc-news-grid { grid-template-columns: repeat(3, 1fr); }
}
.kc-news-card {
  display: block;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform 0.15s, box-shadow 0.15s;
}
.kc-news-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(10,0,64,0.12);
}
.kc-news-img {
  height: 160px;
  background-size: cover;
  background-position: center;
  position: relative;
  padding: 12px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.kc-news-date {
  background: var(--surface);
  border-radius: 100px;
  padding: 5px 12px;
  font-size: 11px;
  font-weight: 800;
  color: var(--heading);
}
.kc-news-loc {
  background: rgba(10,0,64,0.75);
  color: var(--white);
  border-radius: 100px;
  padding: 5px 12px;
  font-size: 11px;
  font-weight: 700;
}
.kc-news-body { padding: 18px 18px 16px; }
.kc-news-title {
  font-size: 16px;
  font-weight: 800;
  color: var(--heading);
  line-height: 1.35;
  margin-bottom: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.kc-news-excerpt {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.kc-news-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--border);
  padding-top: 12px;
}
.kc-news-time { font-size: 12px; color: var(--muted); }
.kc-news-readmore { font-size: 13px; font-weight: 700; color: var(--crimson); }

/* ============ BhuEdu ============ */
.edu-hero { text-align: center; max-width: 720px; margin: 0 auto 32px; }
.edu-hero-title {
  font-size: clamp(28px, 5vw, 40px);
  font-weight: 900;
  color: var(--heading);
  letter-spacing: -0.02em;
}
.edu-hero-title span { color: var(--crimson); }
.edu-hero-tag {
  font-size: 15px;
  font-weight: 700;
  color: var(--crimson);
  margin: 8px 0 18px;
}
.edu-hero-sub { font-size: 15px; color: var(--muted); line-height: 1.7; }

.edu-why-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-top: 4px solid var(--crimson);
  border-radius: 20px;
  padding: 32px 20px;
  text-align: center;
  max-width: 960px;
  margin: 0 auto 48px;
}
@media (min-width: 480px) {
  .edu-why-card { padding: 44px 32px; }
}
.edu-why-title { font-size: 22px; font-weight: 900; color: var(--heading); margin-bottom: 12px; }
@media (min-width: 480px) {
  .edu-why-title { font-size: 26px; }
}
.edu-why-title span { color: var(--crimson); }
.edu-why-sub { font-size: 14px; color: var(--muted); line-height: 1.7; max-width: 620px; margin: 0 auto 32px; }
.edu-why-grid { display: grid; grid-template-columns: 1fr; gap: 16px; margin-bottom: 32px; }
@media (min-width: 721px) {
  .edu-why-grid { grid-template-columns: repeat(3, 1fr); gap: 20px; }
}
.edu-why-item {
  background: var(--ivory);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px 16px;
}
.edu-why-icon { font-size: 28px; margin-bottom: 12px; }
.edu-why-label { font-size: 15px; font-weight: 800; color: var(--heading); }
.edu-why-mission { font-size: 15px; color: var(--text); }
.edu-why-mission strong { color: var(--crimson); }

.edu-section-title { text-align: center; font-size: 22px; font-weight: 900; color: var(--heading); margin: 8px 0 8px; }
@media (min-width: 480px) {
  .edu-section-title { font-size: 26px; }
}
.edu-section-title span { color: var(--crimson); }
.edu-watch-sub { text-align: center; font-size: 14px; color: var(--muted); max-width: 620px; margin: 0 auto 32px; line-height: 1.7; }

.edu-resources-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 56px;
}
@media (min-width: 480px) {
  .edu-resources-grid { gap: 20px; }
}
@media (min-width: 901px) {
  .edu-resources-grid { grid-template-columns: repeat(4, 1fr); }
}
.edu-resource-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 22px 14px;
  text-align: center;
  text-decoration: none;
  transition: transform 0.15s, box-shadow 0.15s;
}
@media (min-width: 480px) {
  .edu-resource-card { padding: 28px 18px; }
}
.edu-resource-card:hover {
  transform: translateY(-3px);
  border-color: var(--crimson);
  box-shadow: 0 12px 24px rgba(170,14,65,0.14);
}
.edu-resource-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  background-size: cover;
  background-position: center;
  margin: 0 auto 16px;
}
.edu-resource-title { font-size: 14px; font-weight: 800; color: var(--heading); margin-bottom: 4px; }
.edu-resource-sub { font-size: 11.5px; color: var(--muted); }
@media (min-width: 480px) {
  .edu-resource-title { font-size: 15px; }
  .edu-resource-sub { font-size: 12px; }
}

.edu-yt-card {
  background: var(--ivory);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 22px 18px;
  margin-bottom: 56px;
}
@media (min-width: 480px) {
  .edu-yt-card { padding: 32px; }
}
.edu-yt-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 24px; flex-wrap: wrap; margin-bottom: 28px; }
.edu-yt-title { font-size: 19px; font-weight: 900; color: var(--heading); margin-bottom: 8px; }
@media (min-width: 480px) {
  .edu-yt-title { font-size: 20px; }
}
.edu-yt-title span { color: var(--crimson); }
.edu-yt-sub { font-size: 13px; color: var(--muted); max-width: 560px; line-height: 1.6; }
.edu-yt-btn {
  background: var(--crimson);
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  padding: 12px 22px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  border-radius: 100px;
  text-decoration: none;
  white-space: nowrap;
}
.edu-yt-btn:hover { background: var(--crimson-dark); }

.edu-yt-grid { display: grid; grid-template-columns: 1fr; gap: 18px; }
@media (min-width: 501px) {
  .edu-yt-grid { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 901px) {
  .edu-yt-grid { grid-template-columns: repeat(4, 1fr); }
}
.edu-yt-item { display: block; text-decoration: none; color: inherit; background: var(--surface); border-radius: 14px; overflow: hidden; border: 1px solid var(--border); }
.edu-yt-thumb { height: 190px; background-size: cover; background-position: center; position: relative; }
.edu-yt-short { position: absolute; top: 10px; right: 10px; background: rgba(0,0,0,0.7); color: var(--white); font-size: 10px; font-weight: 800; padding: 3px 8px; border-radius: 4px; }
.edu-yt-info { padding: 14px; }
.edu-yt-item-title { font-size: 13px; font-weight: 700; color: var(--heading); line-height: 1.4; margin-bottom: 10px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.edu-yt-foot { display: flex; justify-content: space-between; font-size: 11px; color: var(--muted); }
.edu-yt-foot span:first-child { color: var(--crimson); font-weight: 700; }

.edu-cta-card {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  border-radius: 20px;
  padding: 36px 20px;
  text-align: center;
}
@media (min-width: 480px) {
  .edu-cta-card { padding: 48px 32px; }
}
.edu-cta-title { font-size: clamp(22px, 4vw, 28px); font-weight: 900; color: var(--white); margin-bottom: 12px; }
.edu-cta-title span { color: var(--crimson-light); }
.edu-cta-sub { font-size: 14px; color: rgba(255,255,255,0.75); max-width: 480px; margin: 0 auto 28px; line-height: 1.6; }
.edu-cta-btn {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  background: var(--crimson);
  color: var(--white);
  font-size: 15px;
  font-weight: 800;
  padding: 14px 28px;
  border-radius: 100px;
  text-decoration: none;
}
.edu-cta-btn:hover { background: var(--crimson-dark); }

/* ============ RICH MULTI-COLUMN FOOTER (overrides main.css footer) ============ */
footer { text-align: left; padding: 0; }

.footer-rich { padding: 48px 20px 24px; }

@media (min-width: 560px) {
  .footer-rich { padding: 56px 32px 28px; }
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  max-width: 1160px;
  margin: 0 auto;
}
@media (min-width: 560px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 900px) {
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1.3fr 1.2fr; }
}

.footer-brand-logo { height: 26px; width: auto; display: block; margin-bottom: 16px; opacity: 0.95; }

.footer-brand-desc {
  font-size: 13px;
  line-height: 1.7;
  color: rgba(255,255,255,0.55);
  margin-bottom: 16px;
  max-width: 260px;
}

.footer-trust-line {
  font-size: 12px;
  font-weight: 600;
  color: #86efac;
  margin-bottom: 18px;
}

.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--white);
  font-size: 11px;
  font-weight: 800;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s;
}
.footer-social a:hover { background: var(--crimson); border-color: var(--crimson); }

.footer-col-title {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 4px; }
.footer-col a {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: color 0.2s;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
}
.footer-col a:hover { color: var(--white); }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
}
.footer-contact-icon {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: rgba(170,14,65,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 12px;
}
.footer-contact-text {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  line-height: 1.5;
}

.footer-bottom {
  max-width: 1160px;
  margin: 36px auto 0;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
  font-size: 11.5px;
  color: rgba(255,255,255,0.4);
}

@media (max-width: 559px) {
  .footer-bottom { flex-direction: column; }
}

/* ============ MOBILE — mechanical value matches to bhucheq-mobile-mockup.html's
   Knowledge Center frame (hero + final CTA only; tabs/why-it-matters/
   resources/watch-and-learn are pending separate design decisions).
   Scoped to max-width:640px only, desktop untouched. ============ */
@media (max-width: 640px) {
  /* Top padding is 76px measured .topbar-wrap clearance (re-measured on
     this page, same fixed component as About/BhuMap) + the mockup's own
     26px breathing room. Left/right/bottom match the mockup literally. */
  .services-header { padding: 102px 20px 8px; text-align: left; }
  .services-header h1 { font-size: 26px; }

  .edu-cta-title { font-size: 17px; font-weight: 700; }
  .edu-cta-title span { color: #ff8fae; }
  .edu-cta-sub { font-size: 12.5px; }
  .edu-cta-btn {
    display: block;
    width: 100%;
    min-height: auto;
    padding: 15px;
    border-radius: 14px;
    background: var(--white);
    color: var(--navy);
    box-shadow: none;
  }
  .edu-cta-btn:hover { background: var(--white); }
}

/* ============ BHUEDU "STILL BEING BUILT" NOTICE ============
   Matches services.html's established .verify-modal-overlay/.verify-modal-box
   pattern exactly (same values, duplicated here since knowledge-center.css
   doesn't share a file with services.html): desktop is a centered card
   with a fade+slide-up-12px entrance; mobile switches to a bottom sheet
   (rounded top corners only, slides up from the bottom). Shown once per
   browser session — see knowledge-center.js for the sessionStorage gate,
   open/close logic, and outside-click dismiss. */
.kc-notice-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10,0,64,0.55);
  backdrop-filter: blur(3px);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.kc-notice-overlay.open { display: flex; }

.kc-notice-box {
  background: var(--surface);
  border-radius: 20px;
  width: 100%;
  max-width: 400px;
  position: relative;
  box-shadow: 0 30px 80px rgba(10,0,64,0.4);
  animation: kcNoticeIn 0.2s ease;
}
@keyframes kcNoticeIn {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Hidden at desktop, same reasoning as .verify-modal-drag-handle: a
   display:none element can't receive pointer events, so no width check
   is needed anywhere else. Purely a visual affordance here — this popup
   dismisses via the X button or outside-click, not an actual drag
   gesture (unlike the wizard/verify sheets, which is a lot of extra
   pointer-tracking code this single-notice popup doesn't need). */
.kc-notice-drag-handle { display: none; }

.kc-notice-close {
  position: absolute;
  top: 16px; right: 16px;
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--ivory);
  border: 1px solid var(--border);
  color: var(--heading);
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
}
.kc-notice-close:hover { background: var(--crimson); color: var(--white); border-color: var(--crimson); }

.kc-notice-inner { padding: 32px 28px 28px; }
.kc-notice-eyebrow {
  display: inline-flex;
  align-items: center;
  background: var(--navy);
  color: var(--ivory);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
  margin-bottom: 14px;
}
.kc-notice-title { font-size: 20px; font-weight: 800; color: var(--heading); letter-spacing: -0.01em; margin: 0 0 8px; }
.kc-notice-sub { font-size: 14px; color: var(--muted); line-height: 1.6; margin: 0 0 22px; }
.kc-notice-btn {
  width: 100%;
  min-height: 44px;
  background: var(--crimson);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 14.5px;
  font-weight: 700;
  padding: 13px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}
.kc-notice-btn:hover { background: var(--crimson-dark); }

@media (max-width: 640px) {
  .kc-notice-overlay {
    padding: 0;
    align-items: flex-end;
    background: rgba(10,0,64,0.45);
    backdrop-filter: none;
  }
  .kc-notice-box {
    max-width: 100%;
    border-radius: 26px 26px 0 0;
    animation: none;
    transform: translateY(100%);
    transition: transform 0.3s cubic-bezier(0.4,0,0.2,1);
    box-shadow: 0 -10px 30px rgba(10,0,64,0.2);
  }
  /* .sheet-in (not .open) drives the slide-in transform — same reasoning
     as services.html's openSheet(): .open flips display:none -> flex,
     then a forced reflow, then .sheet-in a tick later so the transition
     has a real "off-screen" frame to animate from instead of snapping. */
  .kc-notice-overlay.sheet-in .kc-notice-box { transform: translateY(0); }
  .kc-notice-drag-handle {
    display: block;
    width: 100%;
    height: 24px;
    position: relative;
  }
  .kc-notice-drag-handle::before {
    content: '';
    position: absolute;
    top: 10px; left: 50%;
    transform: translateX(-50%);
    width: 36px; height: 4px;
    border-radius: 999px;
    background: var(--border);
  }
  .kc-notice-inner { padding: 8px 24px 28px; }
}

/* ============ MOBILE — revert to literal mockup match for tabs,
   "Why It Matters", Learning Resources, and Watch & Learn (previously kept
   as live's richer/restyled versions; that decision is reversed here).
   Scoped to max-width:640px only, desktop untouched. ============ */

/* Hidden everywhere except inside the mobile block below — see the
   .edu-yt-btn comment at its HTML call site for why this is a duplicate
   element rather than a moved one. */
.edu-yt-btn-mobile { display: none; }

@media (max-width: 640px) {
  /* ---- TABS — mockup's two full-width tiles, badge stacked below the
     label, not the pill-capsule toggle. ---- */
  #kcTabs {
    display: flex;
    width: 100%;
    max-width: none;
    background: none;
    border: none;
    border-radius: 0;
    padding: 4px 0 16px;
    gap: 8px;
  }
  #kcTabs .services-tab {
    flex: 1;
    display: block;
    min-height: auto;
    background: var(--surface);
    border: 1.5px solid rgba(10,0,64,0.08);
    border-radius: 14px;
    padding: 10px 8px;
    text-align: center;
    box-shadow: none;
  }
  #kcTabs .services-tab.active {
    background: var(--navy);
    border-color: var(--navy);
    box-shadow: none;
  }
  #kcTabs .kc-tab-label-text {
    display: block;
    font-size: 12.5px;
    font-weight: 700;
    color: var(--navy);
  }
  #kcTabs .services-tab.active .kc-tab-label-text { color: var(--ivory); }
  #kcTabs .kc-tab-badge {
    display: block;
    background: none;
    color: var(--muted);
    font-size: 9px;
    font-weight: 700;
    text-transform: none;
    letter-spacing: normal;
    padding: 0;
    border-radius: 0;
    margin-top: 3px;
  }
  #kcTabs .services-tab.active .kc-tab-badge { color: rgba(245,243,239,0.6); }

  /* ---- WHY IT MATTERS — plain white card, no accent border, left-aligned,
     divider-separated rows (icon inline) instead of individual mini-cards.
     .edu-why-mission (kept, per instructions) has no text-align of its own
     so it inherits the card's new left-align automatically. ---- */
  .edu-why-card {
    text-align: left;
    border-top: none;
    padding: 20px;
  }
  .edu-why-title { font-size: 16px; font-weight: 800; }
  .edu-why-sub { font-size: 13px; line-height: 1.6; max-width: none; margin: 0 0 6px; text-align: left; }
  .edu-why-grid { display: block; margin-bottom: 0; }
  .edu-why-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: none;
    border: none;
    border-bottom: 1px solid rgba(10,0,64,0.08);
    border-radius: 0;
    padding: 10px 0;
  }
  .edu-why-item:last-child { border-bottom: none; }
  .edu-why-icon { font-size: 18px; margin-bottom: 0; }
  .edu-why-label { font-size: 13px; font-weight: 600; color: var(--navy); text-align: left; }

  /* ---- LEARNING RESOURCES — full-bleed banner thumbnail (not a small
     centered icon), shadow instead of border. Mockup's .resource-tile
     literally carries `box-shadow: 0 8px 22px rgba(10,0,64,.06)` (checked
     directly in the mockup file) — flagging since that's a shadow, not
     "no shadow"; implementing the mockup's actual value here. Tile copy
     kept as live's more complete version, per instructions. ---- */
  .edu-resource-card {
    border: none;
    box-shadow: 0 6px 18px rgba(10,0,64,0.06);
    padding: 0;
    text-align: left;
    overflow: hidden;
  }
  .edu-resource-card:hover { border-color: transparent; }
  .edu-resource-icon {
    width: auto;
    height: 70px;
    border-radius: 0;
    margin: 0;
  }
  .edu-resource-body { padding: 10px 12px 12px; }
  .edu-resource-title { font-size: 12.5px; margin-bottom: 0; }
  .edu-resource-sub { font-size: 10.5px; margin-top: 2px; }

  /* ---- WATCH & LEARN — navy card, 2-column grid (2x2 for live's 4 real
     videos, vs. the mockup's 2 in one row — extending the grid rather than
     dropping videos, per instructions), button moved to the bottom
     (duplicate element, see .edu-yt-btn-mobile above), smaller thumbs,
     crimson/top-left short-tag, #ff8fae "YouTube" accent, no per-video
     footer. ---- */
  .edu-yt-card { background: var(--navy); border: none; }
  .edu-yt-head { margin-bottom: 14px; }
  .edu-yt-head .edu-yt-btn { display: none; }
  .edu-yt-title { font-size: 15px; font-weight: 800; color: var(--ivory); margin-bottom: 6px; }
  .edu-yt-title span { color: #ff8fae; }
  .edu-yt-sub { font-size: 12px; color: rgba(245,243,239,0.65); line-height: 1.5; max-width: none; }
  .edu-yt-grid { grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 14px; }
  .edu-yt-item { background: none; border: none; border-radius: 0; }
  .edu-yt-thumb { height: 60px; border-radius: 10px; margin-bottom: 6px; }
  .edu-yt-short {
    top: 6px; right: auto; left: 6px;
    background: var(--crimson);
    font-size: 8.5px;
    padding: 2px 6px;
    border-radius: 4px;
  }
  .edu-yt-info { padding: 0; }
  .edu-yt-item-title {
    font-size: 10.5px;
    font-weight: 600;
    color: var(--ivory);
    line-height: 1.35;
    margin-bottom: 0;
  }
  .edu-yt-foot { display: none; }
  .edu-yt-btn-mobile {
    display: block;
    width: 100%;
    text-align: center;
    background: var(--white);
    color: var(--navy);
    padding: 15px;
    border-radius: 14px;
    font-size: 15px;
    font-weight: 700;
  }
}
