:root{
  --bg: #fbfbf8;
  --paper: #ffffff;
  --ink: #121316;
  --muted: rgba(18,19,22,.66);
  --border: rgba(18,19,22,.10);

  --accent: #b11f2b;
  --accent2: #0f3b53;

  --shadow: 0 14px 45px rgba(18,19,22,.10);
  --shadow2: 0 10px 28px rgba(18,19,22,.10);

  --radius: 18px;
  --radius2: 26px;

  --shell: 1200px;

  --serif: ui-serif, Georgia, "Times New Roman", Times, serif;
  --sans: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
}

*{ box-sizing: border-box; }
html,body{ height: 100%; }
body{
  margin:0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  line-height: 1.45;
}

/* links */
a{ color: inherit; text-decoration: none; }
a:hover{ text-decoration: none; }

img{
  max-width: 100%;
  display:block;
}

.v11-shell{
  width: min(var(--shell), calc(100% - 44px));
  margin: 0 auto;
}

.v11-main{ padding: 18px 0 34px; }

/* ───────────────────────── Header ───────────────────────── */
.v11-header{
  position: sticky;
  top:0;
  z-index: 80;
  background: rgba(251,251,248,.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(18,19,22,.07);
}

.v11-top{
  padding: 14px 0;
}
.v11-top__inner{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 12px;
}

.v11-btn{
  border: 1px solid rgba(18,19,22,.12);
  background: var(--paper);
  border-radius: 999px;
  padding: 10px 14px;
  font-size: 14px;
  cursor:pointer;
  box-shadow: 0 8px 18px rgba(18,19,22,.06);
}
.v11-btn--icon{
  width: 44px;
  height: 44px;
  padding: 0;
  display:grid;
  place-items:center;
}
.v11-btn--ghost{
  background: rgba(18,19,22,.03);
  border-color: rgba(18,19,22,.10);
  box-shadow: none;
}

.v11-burger{
  width: 18px;
  display:grid;
  gap: 4px;
}
.v11-burger span{
  height:2px;
  background: rgba(18,19,22,.78);
  border-radius: 999px;
  display:block;
}

.v11-brand{
  display:flex;
  flex-direction: column;
  align-items:center;
  gap: 2px;
  padding: 0 10px;
}
.v11-brand__small{
  font-size: 12px;
  letter-spacing: .24em;
  opacity: .65;
}
.v11-brand__name{
  font-family: var(--serif);
  font-weight: 800;
  letter-spacing: .02em;
  font-size: clamp(18px, 2.6vw, 30px);
  line-height: 1;
}

/* Desktop nav */
.v11-nav{
  border-top: 1px solid rgba(18,19,22,.06);
}
.v11-nav__inner{
  display:flex;
  gap: 18px;
  overflow:auto;
  padding: 10px 0;
  scrollbar-width: none;
}
.v11-nav__inner::-webkit-scrollbar{ display:none; }

.v11-nav__a{
  font-size: 14px;
  color: rgba(18,19,22,.72);
  padding: 8px 10px;
  border-radius: 999px;
  white-space: nowrap;
  transition: background .15s ease, color .15s ease;
}
.v11-nav__a:hover{
  background: rgba(18,19,22,.05);
  color: rgba(18,19,22,.92);
}
.v11-nav__a.is-active{
  background: rgba(177,31,43,.10);
  color: rgba(18,19,22,.92);
  border: 1px solid rgba(177,31,43,.18);
}

/* ───────────────────────── Drawer (LEFT) ───────────────────────── */
.v11-drawer{
  position: fixed;
  inset: 0;
  z-index: 120;
  pointer-events:none;
}
body.is-menu-open .v11-drawer{ pointer-events:auto; }

.v11-drawer__scrim{
  position:absolute;
  inset: 0;
  border:0;
  background: rgba(0,0,0,.44);
  backdrop-filter: blur(3px);
  opacity: 0;
  transition: opacity .18s ease;
}
body.is-menu-open .v11-drawer__scrim{ opacity: 1; }

.v11-drawer__panel{
  position:absolute;
  top: 0;
  left: 0;                  /* ✅ LEFT */
  height: 100%;
  width: min(420px, 92vw);
  background: linear-gradient(180deg, #ffffff 0%, #fbfbf8 100%);
  border-right: 1px solid rgba(18,19,22,.10);
  box-shadow: var(--shadow);
  transform: translateX(-106%); /* hidden to the left */
  transition: transform .20s ease;
  padding: 16px 16px 14px;
  overflow:auto;
}
body.is-menu-open .v11-drawer__panel{
  transform: translateX(0);
}

.v11-drawer__head{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 10px;
  padding: 6px 2px 10px;
  border-bottom: 1px solid rgba(18,19,22,.08);
}
.v11-drawer__title{
  font-family: var(--serif);
  font-weight: 800;
  font-size: 18px;
  letter-spacing: .02em;
}
.v11-drawer__x{
  box-shadow:none;
  border-color: rgba(18,19,22,.10);
  background: rgba(18,19,22,.03);
}

.v11-drawer__search{
  display:grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  padding: 14px 2px 12px;
}
.v11-in{
  width: 100%;
  border-radius: 14px;
  border: 1px solid rgba(18,19,22,.12);
  background: var(--paper);
  padding: 12px 12px;
  font-size: 14px;
  outline: none;
}
.v11-in:focus{
  border-color: rgba(177,31,43,.38);
  box-shadow: 0 0 0 3px rgba(177,31,43,.14);
}
.v11-go{
  border:0;
  border-radius: 14px;
  padding: 12px 14px;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  cursor:pointer;
}

.v11-drawer__block{ padding: 12px 2px; }
.v11-drawer__k{
  font-size: 12px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(18,19,22,.56);
  margin-bottom: 10px;
}
.v11-drawer__list{
  display:flex;
  flex-direction: column;
  gap: 8px;
}
.v11-drawer__a{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 10px;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid rgba(18,19,22,.10);
  background: rgba(255,255,255,.8);
  transition: transform .12s ease, box-shadow .12s ease, border-color .12s ease;
}
.v11-drawer__a:hover{
  transform: translateX(2px);
  border-color: rgba(177,31,43,.22);
  box-shadow: 0 10px 20px rgba(18,19,22,.06);
}
.v11-drawer__chev{
  color: rgba(18,19,22,.40);
  font-size: 18px;
  line-height: 1;
}

.v11-drawer__foot{
  margin-top: 10px;
  padding: 14px 2px 6px;
  border-top: 1px solid rgba(18,19,22,.08);
}
.v11-drawer__link{
  display:inline-block;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(18,19,22,.05);
  border: 1px solid rgba(18,19,22,.10);
  font-size: 14px;
}
.v11-drawer__muted{
  margin-top: 10px;
  color: rgba(18,19,22,.56);
  font-size: 13px;
}

/* ───────────────────────── Common meta ───────────────────────── */
.v11-meta{
  display:flex;
  align-items:center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 12px;
  color: rgba(255,255,255,.78);
}
.v11-k{
  letter-spacing: .20em;
  font-weight: 800;
  font-size: 11px;
}
.v11-dot{ opacity: .75; }
.v11-t, .v11-x{ opacity: .92; }

/* ───────────────────────── Feature (smaller images) ───────────────────────── */
.v11-feature{
  position: relative;
  border-radius: var(--radius2);
  overflow: hidden;
  box-shadow: var(--shadow);
  margin-top: 14px;
  margin-bottom: 22px;
  background: #0b2a3a;
}
.v11-feature__bg{
  position:absolute;
  inset:0;
  background: radial-gradient(900px 420px at 12% 30%, rgba(177,31,43,.42), transparent 60%),
              radial-gradient(900px 420px at 88% 70%, rgba(18,19,22,.36), transparent 62%),
              linear-gradient(135deg, rgba(8,36,50,1) 0%, rgba(9,41,57,1) 55%, rgba(6,24,34,1) 100%);
  opacity: .92;
}
.v11-feature__inner{
  position:relative;
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 18px;
  align-items: center;
  padding: clamp(18px, 3.2vw, 34px);
}
.v11-feature__copy{ color: #fff; }
.v11-eyebrow{
  font-size: 12px;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: rgba(255,255,255,.72);
  margin-bottom: 8px;
}
.v11-feature__t{
  font-family: var(--serif);
  font-weight: 900;
  line-height: 1.04;
  margin: 10px 0 10px;
  font-size: clamp(30px, 4.1vw, 36px);
}
.v11-feature__d{
  color: rgba(255,255,255,.80);
  font-size: 16px;
  max-width: 62ch;
  margin: 0 0 18px;
}
.v11-actions{
  display:flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}
.v11-cta{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 12px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.20);
  color: #fff;
  font-weight: 800;
}
.v11-cta:hover{ background: rgba(255,255,255,.16); }
.v11-ghost{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 12px 16px;
  border-radius: 999px;
  background: rgba(0,0,0,.12);
  border: 1px solid rgba(255,255,255,.16);
  color: rgba(255,255,255,.9);
  font-weight: 700;
}
.v11-ghost:hover{ background: rgba(0,0,0,.18); }

/* ✅ smaller, cleaner media card */
.v11-feature__media{
  display:flex;
  justify-content: flex-end;
}
.v11-mediaCard{
  width: min(420px, 100%);
  aspect-ratio: 4 / 5;
  border-radius: 22px;
  overflow:hidden;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: 0 18px 40px rgba(0,0,0,.18);
}
.v11-mediaCard img{
  width:100%;
  height:100%;
  object-fit: cover;
}

/* ───────────────────────── Home layout ───────────────────────── */
.v11-homeGrid{
  display:grid;
  grid-template-columns: 1fr 360px;
  gap: 18px;
  align-items: start;
}
.v11-sideCard{
  background: rgba(255,255,255,.82);
  border: 1px solid rgba(18,19,22,.08);
  border-radius: var(--radius);
  box-shadow: var(--shadow2);
  padding: 14px;
}
.v11-sideCard__k{
  font-size: 12px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(18,19,22,.58);
  margin-bottom: 10px;
}
.v11-rail{
  display:flex;
  flex-direction: column;
  gap: 10px;
}
.v11-rail__item{
  padding: 10px 10px;
  border-radius: 14px;
  border: 1px solid rgba(18,19,22,.08);
  background: rgba(255,255,255,.8);
}
.v11-rail__t{
  font-family: var(--serif);
  font-weight: 800;
  line-height: 1.14;
  margin-bottom: 6px;
}
.v11-rail__m{
  font-size: 12px;
  color: rgba(18,19,22,.62);
  display:flex;
  align-items:center;
  gap: 8px;
  flex-wrap: wrap;
}
.v11-rail__k{ font-weight: 700; }

.v11-secHead{
  margin: 14px 0 12px;
}
.v11-secHead--tight{ margin-top: 18px; }
.v11-secHead__k{
  font-size: 12px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(18,19,22,.60);
}
.v11-secHead__t{
  font-family: var(--serif);
  font-weight: 900;
  font-size: 24px;
  margin-top: 6px;
}

.v11-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.v11-card{
  background: rgba(255,255,255,.86);
  border: 1px solid rgba(18,19,22,.08);
  border-radius: var(--radius);
  overflow:hidden;
  box-shadow: 0 12px 26px rgba(18,19,22,.07);
  transition: transform .14s ease, box-shadow .14s ease, border-color .14s ease;
}
.v11-card:hover{
  transform: translateY(-2px);
  border-color: rgba(177,31,43,.18);
  box-shadow: 0 18px 40px rgba(18,19,22,.10);
}
.v11-card__media{
  /* ✅ smaller */
  height: 160px;
  background: rgba(18,19,22,.06);
}
.v11-card__media img{
  width:100%;
  height:100%;
  object-fit: cover;
}
.v11-card__body{
  padding: 12px 12px 14px;
}
.v11-card__body .v11-meta{
  color: rgba(18,19,22,.62);
}
.v11-card__body .v11-k{ color: rgba(177,31,43,.82); }
.v11-card__t{
  font-family: var(--serif);
  font-weight: 900;
  line-height: 1.12;
  font-size: 18px;
  margin-top: 8px;
}
.v11-card__d{
  margin-top: 8px;
  color: rgba(18,19,22,.64);
  font-size: 13px;
}

.v11-rows{
  display:flex;
  flex-direction: column;
  gap: 12px;
}
.v11-row{
  display:grid;
  grid-template-columns: 180px 1fr;
  gap: 12px;
  background: rgba(255,255,255,.84);
  border: 1px solid rgba(18,19,22,.08);
  border-radius: var(--radius);
  overflow:hidden;
  box-shadow: 0 10px 22px rgba(18,19,22,.06);
}
.v11-row__media{
  height: 124px; /* ✅ smaller */
  background: rgba(18,19,22,.06);
}
.v11-row__media img{
  width:100%;
  height:100%;
  object-fit: cover;
}
.v11-row__body{
  padding: 12px 12px 12px 0;
}
.v11-row__body .v11-meta{
  color: rgba(18,19,22,.60);
}
.v11-row__body .v11-k{ color: rgba(18,19,22,.72); }
.v11-row__t{
  font-family: var(--serif);
  font-weight: 900;
  line-height: 1.15;
  font-size: 18px;
  margin-top: 8px;
}
.v11-row__d{
  margin-top: 8px;
  font-size: 13px;
  color: rgba(18,19,22,.62);
}

/* Category page */
.v11-catHead{
  padding: 18px 0 4px;
}
.v11-catHead__k{
  font-size: 12px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(18,19,22,.60);
}
.v11-catHead__t{
  font-family: var(--serif);
  font-weight: 900;
  font-size: 44px;
  margin: 8px 0 8px;
}
.v11-catHead__p{
  max-width: 72ch;
  color: rgba(18,19,22,.64);
  margin: 0;
}

.v11-catTop{
  display:grid;
  grid-template-columns: 1fr 360px;
  gap: 18px;
  align-items:start;
  margin-top: 10px;
}
.v11-catList{ margin-top: 14px; }

/* Article page */
.v11-articleGrid{
  display:grid;
  grid-template-columns: 1fr 360px;
  gap: 18px;
  align-items:start;
}
.v11-article{
  background: rgba(255,255,255,.86);
  border: 1px solid rgba(18,19,22,.08);
  border-radius: var(--radius2);
  box-shadow: var(--shadow2);
  overflow:hidden;
}
.v11-article__head{
  padding: 22px 22px 12px;
  background: linear-gradient(180deg, rgba(177,31,43,.06), transparent 65%);
}
.v11-article__head .v11-meta{
  color: rgba(18,19,22,.62);
}
.v11-article__head .v11-k{ color: rgba(177,31,43,.86); }

.v11-article__t{
  font-family: var(--serif);
  font-weight: 950;
  line-height: 1.06;
  font-size: clamp(30px, 3.3vw, 52px);
  margin: 10px 0 10px;
}
.v11-article__sub{
  color: rgba(18,19,22,.60);
  font-size: 13px;
}

.v11-figure{
  padding: 0 22px;
}
.v11-figure img{
  width:100%;
  height: auto;
  max-height: 420px;   /* ✅ smaller hero image */
  object-fit: cover;
  border-radius: 18px;
  border: 1px solid rgba(18,19,22,.08);
}

.v11-prose{
  padding: 18px 22px 22px;
  color: rgba(18,19,22,.84);
  font-size: 16px;
}
.v11-prose p{ margin: 0 0 14px; }
.v11-prose h2, .v11-prose h3{
  font-family: var(--serif);
  margin: 18px 0 10px;
  line-height: 1.15;
}
.v11-prose ul, .v11-prose ol{ margin: 0 0 14px 20px; }
.v11-prose li{ margin: 6px 0; }

.v11-divider{
  height: 1px;
  background: rgba(18,19,22,.10);
  margin: 0 22px;
}

.v11-related{
  padding: 10px 22px 22px;
}
.v11-grid--related{
  grid-template-columns: repeat(2, 1fr);
}

/* Pagination */
.v11-pager{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 12px;
  margin: 18px 0 8px;
}
.v11-pbtn{
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(18,19,22,.10);
  background: rgba(255,255,255,.85);
  font-weight: 700;
}
.v11-pbtn.is-disabled{
  opacity: .45;
  cursor: not-allowed;
}
.v11-pills{
  display:flex;
  gap: 6px;
  flex-wrap: wrap;
  justify-content:center;
}
.v11-pill{
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(18,19,22,.10);
  background: rgba(255,255,255,.80);
  font-weight: 700;
  font-size: 13px;
}
.v11-pill.is-active{
  border-color: rgba(177,31,43,.22);
  background: rgba(177,31,43,.10);
}

/* Search page (new look) */
.v11-searchHero{
  border-radius: var(--radius2);
  border: 1px solid rgba(18,19,22,.08);
  box-shadow: var(--shadow2);
  padding: 22px;
  background:
    radial-gradient(700px 300px at 0% 0%, rgba(177,31,43,.18), transparent 65%),
    radial-gradient(700px 300px at 100% 0%, rgba(15,59,83,.14), transparent 60%),
    rgba(255,255,255,.82);
}
.v11-searchHero__k{
  font-size: 12px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(18,19,22,.60);
}
.v11-searchHero__t{
  font-family: var(--serif);
  font-weight: 950;
  font-size: 46px;
  line-height: 1.05;
  margin: 10px 0 8px;
}
.v11-searchHero__p{
  color: rgba(18,19,22,.64);
  margin: 0 0 16px;
}

.v11-searchBar{
  display:grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  align-items:center;
}
.v11-searchBar__in{
  border-radius: 16px;
  border: 1px solid rgba(18,19,22,.14);
  background: rgba(255,255,255,.92);
  padding: 14px 14px;
  font-size: 15px;
  outline:none;
}
.v11-searchBar__in:focus{
  border-color: rgba(15,59,83,.35);
  box-shadow: 0 0 0 3px rgba(15,59,83,.14);
}
.v11-searchBar__btn{
  border: 0;
  border-radius: 16px;
  padding: 14px 16px;
  background: var(--accent2);
  color:#fff;
  font-weight: 800;
  cursor:pointer;
}

.v11-searchChips{
  display:flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}
.v11-chip2{
  border-radius: 999px;
  border: 1px solid rgba(18,19,22,.10);
  padding: 10px 12px;
  background: rgba(255,255,255,.86);
  cursor:pointer;
  font-size: 13px;
}
.v11-chip2:hover{
  border-color: rgba(15,59,83,.22);
  box-shadow: 0 10px 18px rgba(18,19,22,.05);
}

.v11-searchGrid{
  display:grid;
  grid-template-columns: 1fr 360px;
  gap: 18px;
  margin-top: 16px;
}
.v11-searchResults{
  background: rgba(255,255,255,.82);
  border: 1px solid rgba(18,19,22,.08);
  border-radius: var(--radius);
  box-shadow: var(--shadow2);
  padding: 14px;
}
.v11-results{
  display:flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 10px;
}
.v11-r{
  display:grid;
  grid-template-columns: 110px 1fr; /* ✅ smaller thumb */
  gap: 12px;
  border: 1px solid rgba(18,19,22,.08);
  background: rgba(255,255,255,.86);
  border-radius: 16px;
  overflow:hidden;
  box-shadow: 0 10px 18px rgba(18,19,22,.05);
}
.v11-r__media{
  height: 88px;
  background: rgba(18,19,22,.06);
}
.v11-r__media img{
  width:100%;
  height:100%;
  object-fit: cover;
}
.v11-r__body{
  padding: 10px 12px 10px 0;
}
.v11-r__meta{
  font-size: 12px;
  color: rgba(18,19,22,.62);
  display:flex;
  align-items:center;
  gap: 8px;
  flex-wrap: wrap;
}
.v11-r__cat{
  font-weight: 800;
  color: rgba(15,59,83,.82);
}
.v11-r__t{
  font-family: var(--serif);
  font-weight: 900;
  margin-top: 6px;
  line-height: 1.16;
}

.v11-empty{
  padding: 14px 10px;
  color: rgba(18,19,22,.66);
}

.v11-cats{
  display:flex;
  flex-wrap: wrap;
  gap: 10px;
}
.v11-catPill{
  border-radius: 999px;
  border: 1px solid rgba(18,19,22,.10);
  padding: 10px 12px;
  background: rgba(255,255,255,.86);
  font-size: 13px;
}
.v11-catPill:hover{
  border-color: rgba(177,31,43,.22);
}
.v11-back{
  display:inline-block;
  margin-top: 12px;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(18,19,22,.10);
  background: rgba(18,19,22,.04);
  font-weight: 700;
}

/* Static pages */
.v11-static{
  background: rgba(255,255,255,.84);
  border: 1px solid rgba(18,19,22,.08);
  border-radius: var(--radius2);
  box-shadow: var(--shadow2);
  padding: 22px;
}
.v11-static__k{
  font-size: 12px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(18,19,22,.60);
}
.v11-static__t{
  font-family: var(--serif);
  font-weight: 950;
  font-size: 46px;
  margin: 10px 0 8px;
}

/* Footer */
.v11-footer{
  margin-top: 26px;
  padding: 18px 0 26px;
  border-top: 1px solid rgba(18,19,22,.08);
}
.v11-footer__inner{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}
.v11-footer__links{
  display:flex;
  gap: 14px;
  flex-wrap: wrap;
  color: rgba(18,19,22,.64);
  font-size: 14px;
}
.v11-footer__copy{
  color: rgba(18,19,22,.58);
  font-size: 13px;
}

/* Placeholders */
.v11-ph{
  width:100%;
  height:100%;
  background: linear-gradient(90deg, rgba(18,19,22,.06), rgba(18,19,22,.03), rgba(18,19,22,.06));
}

/* ───────────────────────── Responsive ───────────────────────── */
@media (max-width: 1080px){
  .v11-homeGrid,
  .v11-catTop,
  .v11-articleGrid,
  .v11-searchGrid{
    grid-template-columns: 1fr;
  }
  .v11-side{ order: 2; }
  .v11-feature__inner{
    grid-template-columns: 1fr;
  }
  .v11-feature__media{
    justify-content: flex-start;
  }
  .v11-mediaCard{
    width: min(520px, 100%);
    aspect-ratio: 16 / 10;
  }
  .v11-grid{ grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 720px){
  .v11-shell{ width: min(var(--shell), calc(100% - 26px)); }
  .v11-nav{ display:none; } /* drawer only on mobile */
  .v11-feature{ border-radius: 22px; }
  .v11-card__media{ height: 150px; }
  .v11-grid{ grid-template-columns: 1fr; }
  .v11-row{ grid-template-columns: 1fr; }
  .v11-row__media{ height: 160px; }
  .v11-row__body{ padding: 12px; }
  .v11-searchHero__t{ font-size: 38px; }
  .v11-catHead__t{ font-size: 36px; }
  .v11-article__head{ padding: 18px 16px 10px; }
  .v11-figure{ padding: 0 16px;margin: 12px; }
  .v11-prose{ padding: 16px; }
}

.v11-drawer__panel { z-index: 2; }
.v11-drawer__scrim { z-index: 1; }
.v11-drawer{ z-index: 9999; }
.v11-brand--stack{
display: flex;
    flex-direction: row;
    align-items: center;
    gap: 6px;
    line-height: 1;
}

.v11-brand__small{
  font-size:12px;
  letter-spacing:.18em;
  opacity:.85;
}

.v11-brand__logo{
  height:34px;     /* adjust */
  width:auto;
  display:block;
  object-fit:contain;
}