/* ============================================================
   NFMSS STUDENT ATHLETE SAFETY PAGE - v1.0
   Scoped under .nfsafe. ASCII-only.
   ============================================================ */
.nfsafe {
  --blue: #0e3a66;
  --blue-deep: #06182f;
  --red: #c8102e;
  --red-dark: #9e0c24;
  --red-bright: #e81c34;
  --gold: #b8942f;
  --off: #f6f7f9;
  --border: #e4e7eb;
  --ink: #1c2430;
  font-family: 'Barlow', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--ink);
  line-height: 1.6;
  font-size: 17px;
  background: #ffffff;
  margin: 0;
}
.nfsafe *, .nfsafe *::before, .nfsafe *::after { box-sizing: border-box; }
.nfsafe img { max-width: 100%; height: auto; display: block; }
.nfsafe h1, .nfsafe h2, .nfsafe h3, .nfsafe h4 { margin: 0; line-height: 1.1; font-family: 'Barlow Condensed', sans-serif; font-weight: 800; text-transform: uppercase; }
.nfsafe p { margin: 0 0 1em; }
.nfsafe ul { margin: 0 0 1em; padding-left: 22px; }
.nfsafe li { margin-bottom: 6px; }
.nfsafe a { color: var(--blue); }
.nfsafe a:focus-visible, .nfsafe button:focus-visible { outline: 3px solid var(--red); outline-offset: 3px; }
.nfsafe .wrap { max-width: 1100px; margin: 0 auto; padding: 0 20px; }
.nfsafe strong { color: var(--red); }

/* ---- Eyebrow / section labels ---- */
.nfsafe .eyebrow {
  display: inline-block;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--red);
  border-bottom: 2px solid var(--red);
  padding-bottom: 6px;
  margin-bottom: 16px;
}

/* ---- HERO ---- */
.nfsafe .safe-hero {
  background: var(--blue-deep);
  color: #fff;
  padding: 48px 0 40px;
  text-align: center;
}
.nfsafe .safe-hero .shield {
  width: 96px;
  height: 96px;
  margin: 0 auto 20px;
  object-fit: contain;
}
.nfsafe .safe-hero .eyebrow { color: var(--red-bright); border-color: var(--red-bright); }
.nfsafe .safe-hero h1 {
  font-size: clamp(38px, 6vw, 58px);
  color: #fff;
  margin-bottom: 6px;
}
.nfsafe .safe-hero .tagline {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: clamp(18px, 2.4vw, 24px);
  text-transform: uppercase;
  letter-spacing: .04em;
  color: rgba(255,255,255,.85);
  margin: 0 0 26px;
}
.nfsafe .safe-hero .intro { max-width: 74ch; margin: 0 auto 8px; color: rgba(255,255,255,.92); text-align: left; }
.nfsafe .safe-hero .intro strong { color: var(--red-bright); }
.nfsafe .safe-hero .stack-line { text-align: left; max-width: 74ch; margin: 0 auto; color: rgba(255,255,255,.85); }

/* ---- QUICK ACCESS BUTTON BAR ---- */
.nfsafe .quick-bar { background: var(--off); border-bottom: 1px solid var(--border); padding: 22px 0; }
.nfsafe .quick-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
@media (max-width: 767px) { .nfsafe .quick-grid { grid-template-columns: 1fr 1fr; } }
.nfsafe .quick-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  text-align: center;
  text-decoration: none;
  background: var(--blue);
  color: #fff;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .03em;
  font-size: 16px;
  padding: 20px 10px;
  border: 2px solid var(--blue);
  transition: transform .15s ease, background .15s ease;
}
.nfsafe .quick-btn:hover { transform: translateY(-2px); background: var(--blue-deep); }
.nfsafe .quick-btn.is-red { background: var(--red); border-color: var(--red); }
.nfsafe .quick-btn.is-red:hover { background: var(--red-dark); }
.nfsafe .quick-btn small { display: block; font-family: 'Barlow', sans-serif; font-weight: 500; text-transform: none; letter-spacing: 0; font-size: 12px; color: rgba(255,255,255,.8); }

/* ---- 911 EMERGENCY BANNER ---- */
.nfsafe .call-911 {
  background: var(--red);
  color: #fff;
  text-align: center;
  padding: 16px 20px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: clamp(18px, 2.6vw, 24px);
  letter-spacing: .04em;
  text-transform: uppercase;
}
.nfsafe .call-911 span { color: #ffe9ad; }

/* ---- GENERIC SECTION ---- */
.nfsafe .sec { padding: 56px 0; border-bottom: 1px solid var(--border); }
.nfsafe .sec.tint { background: var(--off); }
.nfsafe .sec h2 { font-size: clamp(28px, 4vw, 38px); color: var(--blue); margin-bottom: 18px; }
.nfsafe .sec h2 em { font-style: normal; color: var(--red); }
.nfsafe .sec .lede { max-width: 78ch; }
.nfsafe .center { text-align: center; }
.nfsafe .center .lede { margin-left: auto; margin-right: auto; }

/* ---- JUMP CHIPS ---- */
.nfsafe .jump-chips { display: flex; flex-wrap: wrap; gap: 10px; margin: 22px 0 0; }
.nfsafe .jump-chip {
  display: inline-block;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .03em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--blue);
  background: #fff;
  border: 2px solid var(--blue);
  padding: 8px 16px;
}
.nfsafe .jump-chip:hover { background: var(--blue); color: #fff; }

/* ---- FRAMEWORK CARDS ---- */
.nfsafe .framework-list { display: grid; gap: 22px; margin-top: 30px; }
.nfsafe .fw-card {
  scroll-margin-top: 20px;
  background: #fff;
  border: 1px solid var(--border);
  border-left: 5px solid var(--blue);
  padding: 26px 28px;
}
.nfsafe .fw-card.accent { border-left-color: var(--red); }
.nfsafe .fw-num {
  display: inline-block;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: .1em;
  color: var(--red);
  margin-bottom: 6px;
}
.nfsafe .fw-card h3 { font-size: 24px; color: var(--blue); margin-bottom: 10px; text-transform: none; }
.nfsafe .fw-card .callout {
  display: inline-block;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: .02em;
  color: var(--blue-deep);
  background: #ffe9ad;
  padding: 6px 12px;
  margin: 6px 0 12px;
}
.nfsafe .fw-card .cite {
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px dashed var(--border);
  font-size: 14px;
  color: #52606d;
}
.nfsafe .fw-card .cite a { font-weight: 600; }

/* ---- ROLE CARDS ---- */
.nfsafe .role-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 30px; }
@media (max-width: 900px) { .nfsafe .role-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .nfsafe .role-grid { grid-template-columns: 1fr; } }
.nfsafe .role-card { background: var(--blue-deep); color: #fff; padding: 24px 22px; border-top: 3px solid var(--red-bright); }
.nfsafe .role-card h3 { font-size: 20px; color: #fff; margin-bottom: 12px; }
.nfsafe .role-card ul { padding-left: 18px; font-size: 15px; color: rgba(255,255,255,.85); }
.nfsafe .role-card .role-line { font-size: 15px; color: rgba(255,255,255,.9); margin-bottom: 10px; }
.nfsafe .role-card strong { color: var(--red-bright); }

/* ---- RESPONSIBILITY STRIP ---- */
.nfsafe .resp-strip { display: grid; grid-template-columns: repeat(6, 1fr); gap: 10px; margin-top: 26px; }
@media (max-width: 900px) { .nfsafe .resp-strip { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 560px) { .nfsafe .resp-strip { grid-template-columns: 1fr 1fr; } }
.nfsafe .resp-item { background: #fff; border: 1px solid var(--border); border-top: 3px solid var(--blue); padding: 16px 12px; text-align: center; font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 15px; text-transform: uppercase; color: var(--blue); }

/* ---- CHECKLIST ---- */
.nfsafe .checklist { display: grid; gap: 10px; margin-top: 24px; max-width: 780px; }
.nfsafe .check-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: #fff;
  border: 1px solid var(--border);
  padding: 14px 18px;
}
.nfsafe .check-item .box { flex: none; width: 20px; height: 20px; border: 2px solid var(--blue); margin-top: 2px; }
.nfsafe .check-item p { margin: 0; font-weight: 600; color: var(--ink); }

/* ---- CLOSING BANNER ---- */
.nfsafe .closing { background: var(--blue-deep); color: #fff; padding: 60px 0; text-align: center; }
.nfsafe .closing p { max-width: 70ch; margin-left: auto; margin-right: auto; color: rgba(255,255,255,.88); }
.nfsafe .closing .bigline { font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: clamp(22px, 3vw, 30px); text-transform: uppercase; color: var(--red-bright); margin: 18px 0; }
.nfsafe .tagline-bar { background: var(--red); color: #fff; text-align: center; padding: 30px 20px; }
.nfsafe .tagline-bar h2 { color: #fff; font-size: clamp(24px, 4vw, 36px); margin-bottom: 6px; }
.nfsafe .tagline-bar p { color: #ffe9ad; font-family: 'Barlow Condensed', sans-serif; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; margin: 0; }

/* ---- RESOURCES FOOTER ---- */
.nfsafe .resources-bar { background: var(--off); padding: 34px 0; text-align: center; }
.nfsafe .resources-bar h4 { color: var(--blue); font-size: 16px; letter-spacing: .06em; margin-bottom: 16px; }
.nfsafe .res-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px 18px; }
.nfsafe .res-links a {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: .02em;
  text-decoration: none;
  color: var(--blue);
  border-bottom: 2px solid transparent;
}
.nfsafe .res-links a:hover { border-color: var(--red); color: var(--red); }

/* ---- EDITOR NOTE BOX (remove before publishing) ---- */
.nfsafe .editor-note {
  background: #fff8e6;
  border: 1px dashed var(--gold);
  padding: 14px 18px;
  font-size: 14px;
  color: #6b5a1e;
  margin-top: 14px;
}

/* ---- TELL EVERYONE CAMPAIGN TEASER ---- */
.nfsafe .tell-teaser { padding: 56px 0; background: #ffffff; border-bottom: 1px solid var(--border); }
.nfsafe .tell-grid { display: grid; gap: 36px; align-items: center; }
.nfsafe .tell-copy h2 { font-size: clamp(30px, 4.4vw, 42px); color: var(--blue); margin: 8px 0 16px; text-transform: none; }
.nfsafe .tell-copy p { color: var(--ink); }
.nfsafe .tell-campaign {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: clamp(22px, 3vw, 30px);
  text-transform: uppercase;
  letter-spacing: .01em;
  color: var(--red);
  margin: 20px 0 8px !important;
}
.nfsafe .tell-flyer img {
  width: 100%;
  max-width: 420px;
  justify-self: center;
  border: 1px solid var(--border);
  box-shadow: 10px 10px 0 var(--blue);
}
@media (min-width: 768px) {
  .nfsafe .tell-grid { grid-template-columns: 1.15fr .85fr; gap: 56px; }
}
