/* ==========================================================================
   OmegAmino replica — SITE CHROME
   marquee · header · nav · account panel · cart drawer · off-canvas · age gate
   · page-header patterns A/B · footer · sub-footer
   All values measured from the harvest. See the per-block comments.
   ========================================================================== */

/* --------------------------------------------------------------------------
   0. MARQUEE ANNOUNCEMENT BAR   (measured: 42px, #1e73be, 1px solid #333,
      16px bold #fff, hover #dbdbdb, direction left, scrolldelay 80,
      pauses on hover)
   -------------------------------------------------------------------------- */
.oma-marquee {
  position: relative;
  z-index: 60;
  box-sizing: border-box;
  height: var(--oma-marquee-h);
  overflow: hidden;
  background: var(--oma-announce);
  border: 1px solid var(--oma-announce-border);
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  letter-spacing: normal;
}
.oma-marquee .main-runtext { height: 100%; overflow: hidden; }
.oma-marquee__track {
  display: flex;
  width: max-content;
  height: 100%;
  animation: oma-marquee 46s linear infinite;
}
.oma-marquee:hover .oma-marquee__track { animation-play-state: paused; }
.oma-marquee .holder { display: flex; align-items: center; height: 100%; }
.oma-marquee .textpro-container {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 100%;
  padding: 0 22px;
  white-space: nowrap;
}
.oma-marquee .textpro-container:hover,
.oma-marquee a:hover { color: var(--oma-announce-hover); }
.oma-marquee a { color: #fff; text-decoration: underline; }
.oma-marquee .oma-i { width: 15px; height: 15px; flex: 0 0 auto; }
@keyframes oma-marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .oma-marquee__track { animation: none; } }

/* --------------------------------------------------------------------------
   1. HEADER   (measured: 122px tall; section padding 25px 0;
      variant A = transparent + position:absolute + top 42px (below marquee);
      variant B = solid #1C6BBA in flow, single products only;
      wrapper padding 0 20px !important at <=767 — the shared .oma-wrap gutter
      already handles that)
   -------------------------------------------------------------------------- */
.oma-header { position: relative; z-index: 50; height: var(--oma-header-h); }
.oma-header__inner {
  display: flex;
  align-items: center;
  height: 100%;
  padding-top: 25px;
  padding-bottom: 25px;
}

.oma-header--absolute {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: transparent;
}
.has-marquee .oma-header--absolute { top: var(--oma-marquee-h); }
.oma-header--solid { background: var(--oma-blue); }

/* sticky reveal — source header carries `show-on-scroll` */
.oma-header.is-stuck {
  position: fixed;
  top: 0;
  background: var(--oma-blue);
  box-shadow: 0 1px 0 rgba(255,255,255,.08);
  animation: oma-slide-down .25s ease-out;
}
@keyframes oma-slide-down { from { transform: translateY(-100%); } to { transform: translateY(0); } }

/* logo — .mcb-item-cbb3rla{width:224px} / 180 <=959 / 160 <=767 */
.oma-logo { display: flex; align-items: center; flex: 0 0 auto; width: 224px; }
.oma-logo img { display: block; width: 100%; height: auto; }

/* nav sits right-aligned in the middle rail (flex-grow:1, justify flex-end) */
.oma-nav { flex: 1 1 auto; display: flex; justify-content: flex-end; }
.main-nav1 { display: flex; align-items: center; gap: 10px; margin: 0; }
.main-nav1 > li { position: relative; }
.main-nav1 > li > a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 18px;   /* measured: "Contact" pill 104px wide @1440 */
  border: 1px solid var(--oma-white-40);
  border-radius: var(--oma-r-9);
  color: var(--oma-white-50);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: normal;
}
.main-nav1 > li:hover > a,
.main-nav1 > li.current-menu-item > a,
.main-nav1 > li.current-menu-ancestor > a { color: #fff; border-color: #fff; }

/* Measured on the reference tile: the chevron is only PAINTED on `More`.
   BeTheme emits a .menu-sub span on every item but hides the glyph when the
   item has no submenu, so we keep the markup and hide it the same way. */
.main-nav1 .menu-sub { display: none; }
.main-nav1 li.group > a .menu-sub { display: inline-flex; }
.main-nav1 .menu-sub .oma-i { width: 12px; height: 12px; }
.main-nav1 li.group > a .menu-sub { transition: transform .3s; }
.main-nav1 li.group:hover > a .menu-sub { transform: rotate(180deg); }

/* submenu panel — width 140, bg #F6F6F6, 1px rgba(0,0,0,.2), radius 12;
   links padding 15, bg #F0F0F0, rgba(0,0,0,.5) 18px, hover #000 on #fff */
.main-nav1 ul.sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 40;
  min-width: 140px;
  width: max-content;
  max-width: 260px;
  margin-top: 8px;
  padding: 0;
  border: 1px solid var(--oma-line-20);
  border-radius: var(--oma-r-12);
  background: var(--oma-tint-f6f6f6);
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: .2s;
}
.main-nav1 li.group:hover > ul.sub-menu,
.main-nav1 li.group:focus-within > ul.sub-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.main-nav1 ul.sub-menu > li > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 15px;
  background: var(--oma-tint-f0f0f0);
  color: rgba(0,0,0,.5);
  font-size: 18px;
}
.main-nav1 ul.sub-menu > li > a:hover { background: #fff; color: #000; }
.main-nav1 ul.sub-menu .oma-i { width: 13px; height: 13px; }

/* header icon tiles — 50x50 (45 <=959), radius 8, 1px rgba(255,255,255,.4),
   inner glyph 25px (20 <=959); hover border #fff */
.oma-header__icons { display: flex; align-items: center; gap: 10px; flex: 0 0 auto; padding-left: 45px; }
.oma-hicon { display: inline-flex; border: 0; background: none; padding: 0; cursor: pointer; }
.oma-hicon .icon-wrapper {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border: 1px solid var(--oma-white-40);
  border-radius: var(--oma-r-8);
  color: #fff;
  transition: .2s;
}
.oma-hicon .icon-wrapper img { width: 25px; height: 25px; object-fit: contain; }
.oma-hicon .icon-wrapper .oma-i { width: 25px; height: 25px; }
.oma-hicon:hover .icon-wrapper { border-color: #fff; }
.oma-burger:hover .icon-wrapper { background: var(--oma-cyan); border-color: var(--oma-cyan); color: #000; }

/* cart count badge — measured: top:-9px right:-11px, bg #333333, white text
   (sampled from _shots/mobile-390/home.png and desktop-1440/home.png) */
.oma-cart-count {
  position: absolute;
  top: -9px;
  right: -11px;
  min-width: 20px;
  height: 20px;
  padding: 0 5px;
  border-radius: 100px;
  background: #333333;
  color: #fff;
  font-size: 12px;
  line-height: 20px;
  font-weight: 600;
  text-align: center;
}

/* burger only <=1100 (source: .mcb-item-fucd5xqq display:none, block <=1100) */
.oma-burger { display: none; }
@media (max-width: 1100px) {
  .oma-nav { display: none; }          /* source: .mcb-wrap-si0r7x97{display:none} */
  .oma-burger { display: inline-flex; }
  .oma-header__icons { padding-left: 0; margin-left: auto; }
}
@media (max-width: 959px) {
  .oma-logo { width: 180px; }
  .oma-hicon .icon-wrapper { width: 45px; height: 45px; }
  .oma-hicon .icon-wrapper img, .oma-hicon .icon-wrapper .oma-i { width: 20px; height: 20px; }
}
@media (max-width: 767px) { .oma-logo { width: 160px; } }

/* --------------------------------------------------------------------------
   2. ACCOUNT PANEL  (source .mfn-header-login.is-side — radius 15,
      1px solid rgba(0,0,0,.2), heading 25px/100%)
   -------------------------------------------------------------------------- */
.oma-hicon-wrap { position: relative; }
.oma-account-panel {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  z-index: 45;
  width: 300px;
  padding: 24px;
  border: 1px solid var(--oma-line-20);
  border-radius: var(--oma-r-15);
  background: #fff;
  color: #000;
  box-shadow: var(--oma-shadow-popup);
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: .2s;
}
.oma-account-panel.is-open { opacity: 1; visibility: visible; transform: translateY(0); }
.oma-account-panel h4 { font-size: 25px; line-height: 100%; margin-bottom: 18px; }
.oma-account-panel .woocommerce-MyAccount-navigation li { margin-bottom: 10px; }
.oma-account-panel .woocommerce-MyAccount-navigation a { font-size: 16px; color: var(--oma-text-60); }
.oma-account-panel .woocommerce-MyAccount-navigation a:hover { color: #000; }
.oma-panel__close { position: absolute; top: 14px; right: 16px; border: 0; background: none; cursor: pointer; font-size: 16px; line-height: 1; }

/* --------------------------------------------------------------------------
   3. CART DRAWER  (metrics straight out of BeTheme woocommerce.min.css)
   -------------------------------------------------------------------------- */
.mfn-cart-holder {
  position: fixed;
  top: 0;
  right: -420px;
  display: flex;
  flex-direction: column;
  width: 420px;
  max-width: 100%;
  height: 100%;
  background: #fff;
  z-index: 100000;
  transition: .3s;
  box-sizing: border-box;
}
.mfn-cart-holder.is-open { right: 0; }
.mfn-cart-holder .mfn-ch-header,
.mfn-cart-holder .mfn-ch-content,
.mfn-cart-holder .mfn-ch-footer { padding: 20px; }
.mfn-cart-holder .mfn-ch-header { position: relative; text-align: center; border-bottom: 1px solid var(--oma-line); }
.mfn-cart-holder .mfn-ch-header h3 { display: flex; justify-content: center; align-items: center; gap: 7px; margin: 0; font-size: 25px; line-height: 30px; }
.mfn-cart-holder .mfn-ch-header h3 .oma-i { width: 30px; height: 30px; }
.mfn-cart-holder .mfn-close-icon { position: absolute; top: 50%; left: 20px; transform: translateY(-50%); border: 0; background: none; cursor: pointer; }
.oma-ch-body { display: flex; flex-direction: column; flex: 1 1 auto; min-height: 0; }
.mfn-cart-holder .mfn-ch-content-wrapper { position: relative; flex: 1 1 auto; min-height: 0; overflow: hidden; }
.mfn-cart-holder .mfn-ch-content { height: 100%; overflow: auto; }
.mfn-ch-product { display: flex; flex-wrap: wrap; align-items: center; background: rgba(0,0,0,.01); border-radius: 5px; margin-bottom: 20px; padding: 15px; }
.mfn-ch-product:last-child { margin-bottom: 0; }
.mfn-chp-image { flex-shrink: 0; margin-right: 15px; }
.mfn-chp-image a { display: block; line-height: 0; }
.mfn-chp-image img { width: 100px; height: auto; }
.mfn-chp-info { flex: 1; padding-right: 15px; display: flex; flex-direction: column; border-right: 1px solid var(--oma-line); min-height: 100px; justify-content: center; }
.mfn-chp-name { font-size: 16px; line-height: 1.3em; margin: 0 0 5px; }
.mfn-chp-info p.price { margin-bottom: 5px; font-size: 14px; line-height: 22px; }
.mfn-chp-price { flex-shrink: 0; margin-left: 15px; }
.mfn-chp-price .woocommerce-Price-amount { font-weight: 700; }
.mfn-chp-footer { display: flex; align-items: center; width: calc(100% + 30px); margin: 15px -15px -15px; background: rgba(0,0,0,.01); border-top: 1px solid rgba(0,0,0,.04); }
.mfn-chpf-col { width: 50%; text-align: center; padding: 7px 15px; }
.mfn-chpf-right { text-align: right; }
.mfn-cart-holder .mfn-ch-footer { margin-top: auto; background: var(--oma-tint-f8f8f8); }
.mfn-ch-footer-totals { margin-bottom: 30px; }
.mfn-chft-row { display: flex; justify-content: space-between; align-items: center; }
.mfn-chft-total { border-top: 1px solid var(--oma-line); padding-top: 10px; margin-top: 10px; }
.mfn-chft-total strong { font-size: 22px; }
.mfn-ch-footer-buttons { display: flex; flex-direction: column; gap: 5px; text-align: center; }
/* wp-custom-css: footer buttons padding 12px, background #262626 */
.oma-ch-btn { display: block; padding: 12px; border-radius: var(--oma-r-9); background: var(--oma-262626); color: #fff; }
.oma-ch-btn:hover { background: #000; color: #fff; }
.oma-ch-empty { text-align: center; color: var(--oma-text-60); }

/* shared dimming overlay for drawer / side-menu */
.oma-overlay { position: fixed; inset: 0; z-index: 99990; background: rgba(0,0,0,.4); opacity: 0; transition: .3s; }
.oma-overlay.is-open { opacity: 1; }

/* --------------------------------------------------------------------------
   4. MOBILE OFF-CANVAS  (source #mob-menu — 400px, slides from the LEFT,
      padding 57px 0 0, inner padding 0 40px)
   -------------------------------------------------------------------------- */
.oma-sidemenu {
  position: fixed;
  top: 0;
  left: -400px;
  z-index: 100001;
  width: 400px;
  max-width: 90%;
  height: 100%;
  padding: 57px 0 0;
  background: #fff;
  overflow-y: auto;
  transition: .3s;
}
.oma-sidemenu.is-open { left: 0; }
.oma-sidemenu__inner { padding: 0 40px 40px; }
.oma-sidemenu__close { position: absolute; top: 18px; right: 20px; border: 0; background: none; font-size: 18px; cursor: pointer; }
.oma-sidemenu__nav { margin-bottom: 28px; }
.oma-sidemenu__nav li { margin-bottom: 4px; }
.oma-sidemenu__nav a { display: block; padding: 9px 0; font-size: 20px; font-weight: 500; color: #000; }
.oma-sidemenu__nav a:hover { color: var(--oma-blue); }
.oma-sidemenu__disclaimer { margin-bottom: 24px; font-size: 14px; line-height: 20px; color: var(--oma-text-60); white-space: normal; }
.oma-sidemenu__email { margin-top: 20px; font-size: 16px; }
.oma-sidemenu__email a { color: var(--oma-grey-64); }
.oma-sidemenu__email a:hover { color: var(--oma-blue); }

/* --------------------------------------------------------------------------
   5. AGE GATE  (source #confirm-popup inside #mfn-popup-template-532)
   -------------------------------------------------------------------------- */
.oma-age-gate { position: fixed; inset: 0; z-index: 100010; display: flex; align-items: center; justify-content: center; padding: 20px; background: rgba(0,0,0,.55); }
.oma-age-gate[hidden] { display: none; }
.oma-age-gate__card {
  position: relative;
  width: 100%;
  max-width: 640px;
  padding: 40px;
  border-radius: var(--oma-r-15);
  background: #fff;
  text-align: center;
  box-shadow: var(--oma-shadow-popup);
}
.oma-age-gate__x { position: absolute; top: 14px; right: 18px; border: 0; background: none; font-size: 18px; cursor: pointer; }
.oma-age-gate__logos { display: flex; align-items: center; justify-content: center; gap: 30px; margin-bottom: 26px; }
.oma-age-gate__21 { width: 120px; height: auto; }
.oma-age-gate__brand { width: 200px; height: auto; }
.oma-age-gate p { font-size: 20px; line-height: 28px; white-space: normal; }
.oma-age-gate__actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; margin-top: 28px; }
.oma-age-gate__back { background: var(--oma-tint-ededed); }
.oma-age-gate__back:hover { background: #e2e2e2; }

/* --------------------------------------------------------------------------
   6. PAGE-HEADER PATTERN A — photo hero
      730 base / 680 @1440 / 600 <=959 / 450 <=767, bottom-aligned
   -------------------------------------------------------------------------- */
.oma-pagehero {
  position: relative;
  display: flex;
  align-items: flex-end;
  height: 730px;
  background-image: var(--oma-pagehero-img);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}
/* Text-block position, re-measured off the source tiles at all three widths
   (white-glyph row bands in _shots/<device>/shop.png and faq.png, which agree):

     desktop-1440   H1 glyphs 422-515   sub L1 570-582   sub L2 597-606(+desc 610)
     tablet-820     H1 glyphs 853-989   sub L1 1059-1085  sub L2 1107-1141   (2x px)
     mobile-390     H1 glyphs 587-692   sub L1  766-789   sub L2  810-840    (2x px)

   Against that: our sub-line was 40px low at DESKTOP ONLY (tablet/mobile sub
   bands already landed on the source row-for-row), and the H1 was low at every
   width because the H1->sub gap was too small. So the bottom padding is a
   desktop-only correction (70 -> 110) and the gap steps down responsively. */
.oma-pagehero__inner { width: 100%; padding-bottom: 110px; }
.oma-pagehero__title { color: #fff; margin-bottom: 55px; }
.oma-pagehero__sub { max-width: 720px; color: #fff; }
@media (max-width: 1440px) { .oma-pagehero { height: 680px; } }
@media (max-width: 959px)  {
  .oma-pagehero { height: 600px; background-attachment: scroll; }
  .oma-pagehero__inner { padding-bottom: 70px; }
  .oma-pagehero__title { margin-bottom: 35px; }
}
@media (max-width: 767px)  {
  .oma-pagehero { height: 450px; background-attachment: scroll; }
  .oma-pagehero__sub { font-size: 16px; line-height: 22px; }
}

/* --------------------------------------------------------------------------
   7. PAGE-HEADER PATTERN B — solid blue #Subheader
      height 263, bg #1C6BBA, padding-top 140, H1 50/60/500 white,
      breadcrumbs rgba(255,255,255,.6)
   -------------------------------------------------------------------------- */
.oma-subheader { min-height: 263px; padding-top: 140px; padding-bottom: 30px; background: var(--oma-blue); }
/* CENTRED, not left. Every source page carrying pattern B also carries the body
   class `subheader-both-center` (verified in source-cdp/dom on my-account, cart,
   checkout, login and coa-post), which applies:
     .subheader-both-center #Subheader .title       { width:100%; text-align:center }
     .subheader-both-center #Subheader .breadcrumbs { width:100%; text-align:center }
   The crumb list is a flexbox here, so it needs justify-content as well as
   text-align. Band height (263) and the H1 scale are unchanged. */
.oma-subheader__inner { text-align: center; }
.oma-subheader__title {
  font-size: var(--oma-h1-sub);
  line-height: var(--oma-h1-sub-lh);
  font-weight: var(--oma-h1-sub-fw);
  color: #fff;
  margin-bottom: 8px;
}
.oma-subheader__crumbs { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 6px; }
.oma-subheader__crumbs li { display: inline-flex; align-items: center; gap: 6px; color: rgba(255,255,255,.6); font-size: 16px; }
.oma-subheader__crumbs a { color: rgba(255,255,255,.6); }
.oma-subheader__crumbs a:hover { color: #fff; }
.oma-crumb-sep .oma-i { width: 11px; height: 11px; }
@media (max-width: 767px) { .oma-subheader { padding-top: 120px; min-height: 220px; } }

/* --------------------------------------------------------------------------
   8. FOOTER  (section 7 — padding 110px 0 0 (90 <=767),
      1px top rule rgba(0,0,0,.3), justify-content space-between,
      four columns 2/5 · 1/6 · 1/6 · 1/6)
   -------------------------------------------------------------------------- */
.oma-footer { padding-top: 110px; border-top: 1px solid var(--oma-line-30); }
/* BeTheme --mfn-column-gap-bottom:40px on the last column row */
.oma-footer__grid { display: flex; flex-wrap: wrap; justify-content: space-between; padding-bottom: 40px; }
.oma-footer__col--brand    { flex: 0 0 40%;    max-width: 40%; }
.oma-footer__col--menu,
.oma-footer__col--quick,
.oma-footer__col--shipping { flex: 0 0 16.6667%; max-width: 16.6667%; }
.oma-footer__col--shipping { text-align: right; }

.oma-footer__logo { display: block; width: 280px; max-width: 100%; margin-bottom: 60px; }
/* source column is three-fourth of the 2/5 wrap */
.oma-footer__blurb { max-width: 75%; font-size: 18px; line-height: 26px; color: var(--oma-text-70); white-space: normal; }

.oma-newsletter { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; margin-top: 24px; max-width: 80%; }
.oma-newsletter__email { flex: 1 1 200px; min-width: 0; }
.oma-newsletter__submit { padding: 14px 23px; }
.oma-newsletter__submit:hover { background: var(--oma-262626); }
/* Honeypot for the newsletter POST. Declared HERE and not borrowed from
   oma-pages.css: the footer is global, so it must not depend on another
   phase's stylesheet still being enqueued. Off-screen, zero layout cost —
   the measured footer height is unchanged. */
.oma-hp { position: absolute !important; left: -9999px; top: auto; width: 1px; height: 1px; overflow: hidden; }
/* Result message. Only ever rendered when ?oma_nl=… is present, so it adds
   nothing to the footer on a normal page load or a reference capture. */
.oma-newsletter__msg { margin-top: 12px; max-width: 80%; font-size: 16px; line-height: 24px; }
.oma-newsletter__msg--ok  { color: var(--oma-blue); }
.oma-newsletter__msg--err { color: #a00; }

.oma-footer__head { margin-bottom: 14px; font-size: 21px; font-weight: 500; color: #000; }
.oma-footer__list li { margin-bottom: 14px; }
.oma-footer__list a { font-size: 18px; line-height: 14px; font-weight: 400; color: var(--oma-text-60); }
.oma-footer__list a:hover,
.oma-footer__list .current-menu-item > a { color: #000; }

.oma-footer__hours { font-size: 18px; line-height: 31px; color: var(--oma-text-60); white-space: normal; }
.oma-footer__addr  { margin-top: 27px; font-size: 18px; line-height: 31px; color: #000; white-space: normal; }
.oma-footer__contact { font-size: 18px; line-height: 31px; white-space: normal; }
.oma-footer__contact a { color: var(--oma-grey-64); }
.oma-footer__contact a:hover { color: var(--oma-blue); }

/* sub-footer — padding 23px 0 20px, 1px top rule rgba(0,0,0,.16) */
.oma-subfooter { padding: 23px 0 20px; border-top: 1px solid var(--oma-line-16); }
.oma-subfooter__grid { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; }
.oma-subfooter__copy { flex: 0 1 60%; color: var(--oma-text-60); }
.oma-subfooter__list { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 28px; flex: 0 1 40%; }
.oma-subfooter__list a { font-size: 18px; color: var(--oma-text-60); }
.oma-subfooter__list a:hover { color: #000; }

@media (max-width: 959px) {
  .oma-footer__col--brand    { flex: 0 0 50%; max-width: 50%; }
  .oma-footer__col--menu     { flex: 0 0 33.3333%; max-width: 33.3333%; }
  .oma-footer__col--quick    { flex: 0 0 50%; max-width: 50%; margin-top: 32px; }
  .oma-footer__col--shipping { flex: 0 0 33.3333%; max-width: 33.3333%; margin-top: 32px; text-align: left; }
  .oma-subfooter__grid { flex-direction: column; }
  .oma-subfooter__copy { flex: 0 0 auto; text-align: center; order: 2; }
  .oma-subfooter__list { flex: 0 0 auto; justify-content: center; order: 1; margin-bottom: 15px; }
}
@media (max-width: 767px) {
  .oma-footer { padding-top: 90px; }
  .oma-footer__col--brand,
  .oma-footer__col--menu,
  .oma-footer__col--quick,
  .oma-footer__col--shipping { flex: 0 0 100%; max-width: 100%; margin-top: 32px; }
  .oma-footer__col--brand { margin-top: 0; }
  .oma-footer__logo { margin-bottom: 30px; }
  .oma-footer__blurb { font-size: 16px; line-height: 24px; }
  .oma-footer__head { margin-bottom: 8px; }
  .oma-footer__list a { font-size: 16px; line-height: 13px; }
  .oma-footer__hours, .oma-footer__addr, .oma-footer__contact { font-size: 16px; line-height: 28px; }
  .oma-newsletter { max-width: 100%; }
  .oma-subfooter__copy, .oma-subfooter__list a { font-size: 16px; }
}

/* --------------------------------------------------------------------------
   9. GENERIC PAGE / ARCHIVE PROSE
   -------------------------------------------------------------------------- */
.oma-pagebody, .oma-single, .oma-archive, .oma-woo { padding: 80px 0; }
.oma-prose p { margin-bottom: 20px; white-space: normal; }
.oma-prose h2 { font-size: var(--oma-h4); line-height: var(--oma-h4-lh); margin-bottom: 20px; }
.oma-prose h3 { font-size: var(--oma-h5); line-height: var(--oma-h5-lh); margin-bottom: 16px; }
.oma-prose ul, .oma-prose ol { margin: 0 0 20px 20px; }
.oma-prose ul li { list-style: disc; margin-bottom: 8px; }
.oma-prose ol li { list-style: decimal; margin-bottom: 8px; }
.oma-single__meta { margin-bottom: 20px; color: var(--oma-text-60); font-size: 16px; }
.oma-single__meta span + span::before { content: "·"; margin: 0 8px; }
.oma-comments-closed { margin-top: 40px; color: var(--oma-text-60); }
.oma-archive__grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 30px; }
.oma-archive__thumb img { border-radius: var(--oma-r-20); }
.oma-archive__title { font-size: var(--oma-card-title); line-height: 1.2; margin: 16px 0 8px; }
.oma-archive__meta { color: var(--oma-text-60); font-size: 15px; }
