/* ==========================================================================
   Saint Bernadette Catholic School — site styles
   Hand-coded replacement for the WYSIWYG export.
   Palette:  navy #003362 · deep #113453 / #0D253C · green #199221
             gold #FFDE59 · accent #FFC057
   Type:     Raleway (body) · MedievalSharp (page titles) · Dancing Script (script)
   ========================================================================== */

/* ---- Reset / base -------------------------------------------------------- */
*,
*::before,
*::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: "Raleway", Arial, sans-serif;
  font-size: 19px;
  line-height: 1.55;
  color: #0D253C;
  background-color: #ffffff;
}

img { max-width: 100%; height: auto; border: 0; display: block; }

a { color: #003362; text-decoration: underline; }
a:hover { color: #199221; }

h1, h2, h3 { margin: 0; text-wrap: balance; }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: #003362;
  color: #fff;
  padding: 10px 16px;
  z-index: 9999;
}
.skip-link:focus { left: 8px; top: 8px; }

/* ---- Header / navigation ------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: #003362;
  overflow: visible;
}

.site-header__inner {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 6px 12px;
}

.brand { flex: 0 0 auto; line-height: 0; }
.brand img {
  width: 156px;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  margin-bottom: -74px; /* logo hangs below the bar, matching the original */
  position: relative;
  z-index: 2;
}

/* Menu toggle (shown on small screens) */
.nav-toggle {
  margin-left: auto;
  display: none;
  align-items: center;
  gap: 10px;
  background: transparent;
  border: 0;
  color: #fff;
  font-family: "Raleway", sans-serif;
  font-size: 19px;
  cursor: pointer;
  padding: 10px;
}
.nav-toggle__bars { display: inline-block; width: 24px; }
.nav-toggle__bars span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 1px;
}
.nav-toggle__bars span + span { margin-top: 5px; }

/* Nav */
.main-nav { margin-left: auto; }
.main-nav__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.main-nav__item { position: relative; }

.main-nav__link {
  display: block;
  padding: 14px 12px;
  color: #fff;
  font-size: 19px;
  text-decoration: none;
  white-space: nowrap;
  background: transparent;
  border: 0;
  font-family: "Raleway", sans-serif;
  cursor: pointer;
}
.main-nav__link:hover,
.main-nav__link:focus { background: #fff; color: #003362; }

.main-nav__link .caret {
  display: inline-block;
  margin-left: 6px;
  border: 4px solid transparent;
  border-top-color: currentColor;
  border-bottom: 0;
  vertical-align: middle;
}

/* Dropdowns */
.dropdown {
  list-style: none;
  margin: 0;
  padding: 6px 0;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 240px;
  background: #003362;
  border: 1px solid rgba(229, 229, 229, 0.2);
  border-radius: 4px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
  display: none;
  z-index: 1001;
}
.dropdown a {
  display: block;
  padding: 7px 16px;
  color: #fff;
  text-decoration: none;
  white-space: nowrap;
  font-size: 18px;
}
.dropdown a:hover,
.dropdown a:focus { background: #fff; color: #003362; }

/* Desktop: reveal on hover; JS also toggles .is-open for touch/keyboard */
@media (min-width: 1100px) {
  .main-nav__item.has-dropdown:hover > .dropdown,
  .main-nav__item.is-open > .dropdown { display: block; }

  /* Keep the right-most menus from spilling off the edge of the screen */
  .main-nav__item:nth-last-child(-n+2) > .dropdown { left: auto; right: 0; }
}

/* Mobile menu */
@media (max-width: 1099px) {
  .site-header__inner { flex-wrap: wrap; }
  .brand img { margin-bottom: 0; width: 96px; }
  .nav-toggle { display: inline-flex; }

  .main-nav {
    flex-basis: 100%;
    margin-left: 0;
    display: none;
  }
  .main-nav.is-open { display: block; }
  .main-nav__list { flex-direction: column; align-items: stretch; }
  .main-nav__link { padding: 12px 8px; }

  .dropdown {
    position: static;
    display: none;
    box-shadow: none;
    border: 0;
    border-radius: 0;
    background: #06294a;
    padding: 0;
  }
  .main-nav__item.is-open > .dropdown { display: block; }
  .dropdown a { padding-left: 28px; white-space: normal; }
}

/* ---- Page title band (interior pages) ----------------------------------- */
.page-title {
  position: relative;
  background: #113453 url("../images/top-weekly-news.jpg") center 60% / cover no-repeat;
  min-height: 520px;
  display: flex;
  align-items: flex-end;
}
.page-title::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 51, 98, 0) 45%, rgba(0, 51, 98, 0.75));
}
.page-title__inner {
  position: relative;
  max-width: 1300px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px 28px;
}
.page-title h1 {
  font-family: "MedievalSharp", "Raleway", serif;
  font-weight: 700;
  font-size: 44px;
  color: #fff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.45);
}

/* ---- Content ------------------------------------------------------------- */
.content {
  max-width: 820px;
  margin: 0 auto;
  padding: 36px 24px 52px;
  font-size: 17px;
  line-height: 1.6;
}
.content > *:first-child { margin-top: 0; }
.content p { margin: 0 0 12px; color: #1a2430; }

/* First paragraph reads as a lead-in */
.content > p:first-of-type { font-size: 20px; color: #0D253C; }

.content h2 {
  font-family: "Raleway", sans-serif;
  font-size: 25px;
  font-weight: 700;
  letter-spacing: 0.2px;
  margin: 40px 0 14px;
  padding-bottom: 8px;
  color: #003362;
  border-bottom: 2px solid #e3e6ea;
}
.content h3 {
  font-family: "Raleway", sans-serif;
  font-size: 20px;
  font-weight: 700;
  margin: 28px 0 10px;
  color: #0D253C;
}

/* A paragraph that is only a bold phrase becomes a clean card-style step header */
.content > p:has(> strong:only-child):not(.signature) {
  font-family: "Raleway", sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #003362;
  margin: 22px 0 12px;
  padding: 14px 18px;
  background: #f5f7f9;
  border-left: 5px solid #199221;
  border-radius: 0 8px 8px 0;
}
.content > p:has(> strong:only-child) strong { font-weight: 700; }

.content ul, .content ol { margin: 0 0 20px; padding-left: 22px; }
.content li { margin: 0 0 10px; padding-left: 4px; }
.content ul li::marker { color: #199221; }
.content ol li::marker { color: #003362; font-weight: 700; }

.content a { color: #003362; text-decoration: underline; text-underline-offset: 2px; }
.content a:hover { color: #199221; }

/* A text link sitting on its own line (not an image, email, or phone link) renders as a button */
.content > a:not(:has(img)):not([href^="mailto:"]):not([href^="tel:"]) {
  display: inline-block;
  margin: 4px 0 22px;
  padding: 13px 26px;
  background: #003362;
  color: #fff;
  font-weight: 700;
  border-radius: 4px;
  text-decoration: none;
}
.content > a:not(:has(img)):not([href^="mailto:"]):not([href^="tel:"]):hover { background: #0a4a86; color: #fff; }

/* Photo gallery grid */
.content .gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 12px;
  margin: 24px 0;
}
.content .gallery a { display: block; margin: 0; padding: 0; background: none; border-radius: 8px; overflow: hidden; cursor: zoom-in; }
.content .gallery a:hover { background: none; }
.content .gallery img { margin: 0; width: 100%; height: 180px; object-fit: cover; border-radius: 8px; display: block; transition: transform .3s ease; }
.content .gallery a:hover img { transform: scale(1.06); }

/* SCRIP / video thumbnails */
.content .scrip-hero { max-width: 440px; margin: 0 auto 10px; }
.content .video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 16px;
  margin: 18px 0 30px;
}
.content .video-grid a { display: block; margin: 0; padding: 0; background: none; border-radius: 8px; overflow: hidden; }
.content .video-grid a:hover { background: none; }
.content .video-grid img { margin: 0; width: 100%; height: auto; border-radius: 8px; display: block; transition: transform .3s ease; }
.content .video-grid a:hover img { transform: scale(1.04); }

/* Lightbox */
.lightbox { position: fixed; inset: 0; background: rgba(0,0,0,.92); display: none; align-items: center; justify-content: center; z-index: 2000; }
.lightbox.is-open { display: flex; }
.lightbox__img { max-width: 90vw; max-height: 85vh; border-radius: 6px; box-shadow: 0 12px 44px rgba(0,0,0,.5); }
.lightbox__close { position: absolute; top: 16px; right: 24px; background: none; border: 0; color: #fff; font-size: 42px; line-height: 1; cursor: pointer; }
.lightbox__nav { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(255,255,255,.14); border: 0; color: #fff; font-size: 26px; padding: 14px 18px; border-radius: 6px; cursor: pointer; }
.lightbox__prev { left: 18px; }
.lightbox__next { right: 18px; }
.lightbox__nav:hover, .lightbox__close:hover { color: #FFDE59; }
@media (max-width: 600px) { .lightbox__nav { padding: 10px 12px; font-size: 20px; } }

.content img { margin: 20px auto; border-radius: 8px; }
.content--rewards img { max-width: 200px; margin: 24px 0 8px; }
.content--rewards p:has(> strong:only-child) { margin-top: 0; }
.content hr { border: 0; border-top: 1px solid #e3e6ea; margin: 28px 0; }
.content .addr { font-style: normal; line-height: 1.45; margin: 0 0 18px; color: #1a2430; }
.content .signature { margin: 18px 0 0; }
.content .signature strong { font-size: 19px; color: #0D253C; }

/* Staff directory */
.content--wide { max-width: 1200px; }
.staff-intro { text-align: center; font-size: 19px; color: #0D253C; margin-bottom: 28px; }
.staff-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}
@media (max-width: 1000px) { .staff-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (max-width: 720px)  { .staff-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 460px)  { .staff-grid { grid-template-columns: 1fr; } }
.staff-card {
  background: #fff;
  border: 1px solid #e3e6ea;
  border-radius: 10px;
  overflow: hidden;
  text-align: center;
  transition: box-shadow .2s ease, transform .2s ease;
}
.staff-card:hover { box-shadow: 0 8px 22px rgba(0,51,98,.12); transform: translateY(-2px); }
.staff-card img { width: 100%; aspect-ratio: 239 / 320; object-fit: cover; display: block; margin: 0; }
.staff-card__name { font-family: "Raleway", sans-serif; font-size: 16px; font-weight: 700; color: #003362; margin: 12px 10px 2px; }
.staff-card__role { font-size: 14px; color: #56606c; margin: 0 10px 10px; }
.staff-card__email { display: block; font-size: 12.5px; padding: 0 8px 14px; word-break: break-word; overflow-wrap: anywhere; }

/* Buttons */
.btn {
  display: inline-block;
  font-family: "Raleway", sans-serif;
  font-weight: 700;
  font-size: 19px;
  line-height: 1.2;
  text-decoration: none;
  text-align: center;
  padding: 14px 22px;
  border-radius: 4px;
  border: 1px solid #192938;
  background: #fff;
  color: #000;
  cursor: pointer;
}
.btn:hover { background: #f0f0f0; color: #000; }

.btn--pill {
  border-radius: 100px;
  background: #FFDE59;
  border-color: #FFDE59;
  color: #000;
  font-family: "Roboto", "Raleway", sans-serif;
  padding: 15px 40px;
}
.btn--pill:hover { background: #003362; border-color: #003362; color: #fff; }

/* ---- Home: mission ------------------------------------------------------- */
.mission {
  text-align: center;
  max-width: 1100px;
  margin: 0 auto;
  padding: 32px 20px 10px;
}
.mission__eyebrow {
  font-family: "Dancing Script", cursive;
  font-size: 43px;
  color: #000;
}
.mission p {
  font-size: 19px;
  color: #000;
  margin: 8px auto 0;
  max-width: 900px;
}

/* ---- Home: hero image --------------------------------------------------- */
.hero img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* ---- Home: Instagram feed ----------------------------------------------- */
.ig-feed {
  width: 100%;
  margin: 0;
  padding: 0;
}

/* ---- Home: welcome video ------------------------------------------------ */
.video {
  max-width: 900px;
  margin: 0 auto;
  padding: 32px 20px;
}
.video__frame {
  position: relative;
  aspect-ratio: 16 / 9;
  width: 100%;
}
.video__frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 6px;
}

/* ---- Home: events / news ------------------------------------------------- */
.events {
  position: relative;
  background: #113453 url("https://www.stbernadetteschool.com/images/event-bk.jpg") center bottom / cover no-repeat;
  color: #fff;
}
.events__overlay { position: absolute; inset: 0; background: #000; opacity: 0.8; }
.events__inner {
  position: relative;
  max-width: 1600px;
  margin: 0 auto;
  padding: 40px 20px;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 32px;
}
.events__news h2 {
  font-family: "MedievalSharp", serif;
  font-size: 37px;
  color: #fff;
  margin-bottom: 14px;
}
.events__news { text-align: center; font-size: 20px; line-height: 1.5; }
.events__news a { color: #fff; font-weight: 700; text-decoration: none; }
.events__news a:hover { text-decoration: underline; color: #fff; }
.events__divider {
  border: 0;
  border-top: 2px dotted #FFC057;
  width: 210px;
  margin: 16px auto;
}
.events__welcome h2,
.events__welcome .script {
  font-family: "Dancing Script", cursive;
  font-size: 44px;
  color: #fff;
  display: block;
  margin-bottom: 12px;
}
.events__welcome p { font-size: 17px; margin: 0 0 18px; }
.events__welcome a { color: #fff; }
@media (max-width: 900px) {
  .events__inner { grid-template-columns: 1fr; }
}

/* ---- Home: about --------------------------------------------------------- */
.about {
  padding: 40px 20px;
}
.about__inner {
  max-width: 840px;
  margin: 0 auto;
}
.about h2 {
  font-family: "Raleway", sans-serif;
  font-weight: 700;
  font-size: 30px;
  margin-bottom: 16px;
  color: #0D253C;
}
.about p { font-size: 18px; line-height: 1.6; margin: 0 0 18px; color: #1a1a1a; }
.about__lead { font-size: 20px; color: #000; }
.about .btn { margin-top: 8px; }

.stats {
  list-style: none;
  margin: 24px 0 28px;
  padding: 22px 12px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  text-align: center;
  border-top: 1px solid #e3e6ea;
  border-bottom: 1px solid #e3e6ea;
}
.stats li { display: flex; flex-direction: column; gap: 4px; }
.stats__num {
  font-family: "Raleway", sans-serif;
  font-weight: 800;
  font-size: 32px;
  color: #003362;
  line-height: 1;
}
.stats__label { font-size: 14px; color: #5a6470; letter-spacing: 0.3px; }

.about__notes {
  margin: 8px 0 26px;
  padding: 20px 24px;
  background: #f5f7f9;
  border-left: 4px solid #003362;
  border-radius: 0 6px 6px 0;
}
.about__notes p { font-size: 15px; color: #56606c; line-height: 1.6; margin: 0 0 12px; }
.about__notes p:last-child { margin-bottom: 0; }

@media (max-width: 640px) {
  .stats { grid-template-columns: repeat(2, 1fr); }
}

/* ---- Home: students ------------------------------------------------------ */
.students-band { background: #113453; padding: 18px 0; text-align: center; }
.students-band h2 {
  font-family: "Raleway", sans-serif;
  color: #fff;
  font-size: 43px;
  font-weight: 800;
}
.students {
  max-width: 1200px;
  margin: 0 auto;
  padding: 28px 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: center;
}
.students__media img { margin: 0; border-radius: 8px; width: 100%; height: auto; }
.students__text { text-align: left; }
.students h3 {
  font-family: "Raleway", sans-serif;
  font-weight: 700;
  font-size: 26px;
  margin: 0 0 12px;
  color: #0D253C;
}
.students h3 + p { margin-bottom: 16px; }
.students p { font-size: 18px; color: #000; margin: 0 0 16px; }
@media (max-width: 820px) {
  .students { grid-template-columns: 1fr; gap: 20px; text-align: center; }
  .students__text { text-align: center; }
  .students__media img { max-width: 560px; margin: 0 auto; }
}

/* ---- Home: enroll -------------------------------------------------------- */
.enroll {
  background: #0D253C;
  text-align: center;
  padding: 36px 20px;
}
.enroll__intro {
  color: #fff;
  font-size: 29px;
  display: block;
  margin-bottom: 22px;
}

/* ---- Footer -------------------------------------------------------------- */
.site-footer {
  background: #003362;
  color: #fff;
  border-top: 2px solid #199221;
}
.site-footer a { color: #fff; }
.footer-grid {
  max-width: 1300px;
  margin: 0 auto;
  padding: 28px 16px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
  align-items: start;
}
.footer-col h2 {
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 14px;
  letter-spacing: 0.5px;
}
.footer-col address { font-style: normal; line-height: 1.5; font-size: 19px; }
.footer-col a.plain { text-decoration: none; }
.footer-col a.plain:hover { text-decoration: underline; }
.portal-btn {
  display: inline-block;
  margin-top: 16px;
  padding: 9px 20px;
  border: 2px solid #fff;
  border-radius: 6px;
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  transition: background .15s ease, color .15s ease;
}
.portal-btn:hover { background: #fff; color: #003362; }

.footer-links { display: flex; flex-direction: column; gap: 4px; font-size: 19px; }
.footer-links a { text-decoration: none; }
.footer-links a:hover { text-decoration: underline; }

.footer-social { display: flex; gap: 8px; margin-top: 14px; }
.footer-social a {
  width: 55px;
  height: 55px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #E5E5E5;
  font-size: 48px;
  text-decoration: none;
}
.footer-social a:hover { color: #199221; }

.footer-map {
  width: 100%;
  min-height: 220px;
  height: 100%;
}
.footer-map iframe { width: 100%; height: 100%; min-height: 220px; border: 0; }

.footer-legal { border-top: 1px solid rgba(255, 255, 255, 0.12); }
.footer-legal__inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 16px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
  align-items: center;
  font-size: 16px;
}
.footer-legal a { text-decoration: none; }
.footer-legal a:hover { text-decoration: underline; }
.footer-legal__col--left { font-size: 13px; line-height: 1.8; }
.footer-legal__col--center { text-align: center; line-height: 1.5; }
.footer-legal__col--right { text-align: center; }

@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr; text-align: center; }
  .footer-social { justify-content: center; }
  .footer-legal__inner { grid-template-columns: 1fr; text-align: center; }
  .footer-legal__col--center { text-align: center; }
}


/* Lunch menu */
.lunch-note { text-align:center; color:#56606c; font-size:15px; font-style:italic; margin:-8px 0 22px; }
.lunch-pricing { background:#eef3f8; border:1px solid #d0dae4; border-radius:10px; padding:16px 22px; margin:0 0 24px; }
.lunch-pricing h2 { font-size:16px; letter-spacing:.08em; text-transform:uppercase; color:#003362; margin:0 0 10px; border:0; padding:0; }
.lunch-pricing table { border-collapse:collapse; }
.lunch-pricing td { padding:3px 26px 3px 0; font-size:16px; color:#1a2430; }
.lunch-pricing td:last-child { font-weight:700; padding-right:0; }
.lunch-layout { display:grid; grid-template-columns:1fr 260px; gap:24px; align-items:start; }
@media (max-width:860px){ .lunch-layout { grid-template-columns:1fr; } }
.menu-table { width:100%; border-collapse:collapse; font-size:14px; }
.menu-table th, .menu-table td { border:1px solid #cdd8e2; padding:10px 8px; text-align:center; vertical-align:middle; }
.menu-table thead th { background:#003362; color:#fff; font-size:12.5px; letter-spacing:.03em; text-transform:uppercase; }
.menu-table td.wk { font-weight:800; font-size:24px; color:#003362; width:46px; }
.menu-table tr.wk1 td { background:#e6edf7; } .menu-table tr.wk1 td.wk { background:#d6e2f2; }
.menu-table tr.wk2 td { background:#e9f1e2; } .menu-table tr.wk2 td.wk { background:#dcebcf; }
.menu-table tr.wk3 td { background:#fdf7d6; } .menu-table tr.wk3 td.wk { background:#f7edb8; }
.menu-table tr.wk4 td { background:#fce6d4; } .menu-table tr.wk4 td.wk { background:#f9d7bb; }
.menu-table td.meal { color:#c2c8cf; font-size:20px; font-weight:700; }
.lunch-side { background:#eef3f8; border:1px solid #d0dae4; border-radius:10px; padding:18px 20px; }
.lunch-side h3 { color:#003362; font-size:15px; letter-spacing:.06em; text-transform:uppercase; margin:0 0 8px; }
.lunch-side h3 + p { margin-top:0; }
.lunch-side p { font-size:15px; margin:0 0 16px; color:#1a2430; }
.lunch-side em { color:#56606c; font-size:14px; }
.lunch-legend { display:flex; flex-wrap:wrap; gap:18px; margin:26px 0 10px; font-size:14px; color:#3d5166; }
.lunch-legend span { display:inline-flex; align-items:center; gap:8px; }
.lunch-legend i { width:16px; height:16px; border-radius:3px; display:inline-block; border:1px solid #cdd8e2; }
.lunch-notes { font-size:14px; color:#56606c; line-height:1.6; }

.sr-only { position:absolute; width:1px; height:1px; padding:0; margin:-1px; overflow:hidden; clip:rect(0,0,0,0); white-space:nowrap; border:0; }


/* Lunch menu — mobile: stack the grid into per-week cards */
@media (max-width: 640px) {
  .menu-table thead { position:absolute; width:1px; height:1px; overflow:hidden; clip:rect(0,0,0,0); }
  .menu-table, .menu-table tbody, .menu-table tr, .menu-table td { display:block; width:100%; }
  .menu-table tr { border:1px solid #cdd8e2; border-radius:10px; overflow:hidden; margin-bottom:16px; }
  .menu-table td { border:0; border-bottom:1px solid #d7dfe8; text-align:left; display:flex; justify-content:space-between; gap:12px; padding:10px 14px; }
  .menu-table td:last-child { border-bottom:0; }
  .menu-table td.wk { font-size:16px; font-weight:800; letter-spacing:.04em; text-transform:uppercase; color:#fff; background:#003362 !important; width:100%; justify-content:flex-start; }
  .menu-table td.wk::before { content:"Week "; }
  .menu-table td.meal { font-size:16px; font-weight:600; color:#1a2430; }
  .menu-table td.meal::before { content:attr(data-day); font-weight:700; color:#56606c; }
}


/* FAQ */
.faq { margin-top: 40px; }
.faq__item { padding: 16px 0; border-bottom: 1px solid #e3e6ea; }
.faq__item:last-child { border-bottom: 0; }
.faq__item h3 { font-size: 19px; font-weight: 700; color: #003362; margin: 0 0 6px; }
.faq__item p { margin: 0; }
