
:root{
  /* LIGHT */
  --paper:#f7f2e9;
  --paper-2:#fffaf2;
  --ink:#1f2328;
  --ink-2:#3b414a;
  --muted:#6a6f78;

  --accent:#8b4a2b;          /* warm leather */
  --accent-2:#2c6f66;        /* teal stamp */
  --accent-hover:#6d3921;

  --border:#d9cfbf;
  --border-2:#cbbda7;

  --radius:14px;
  --radius-sm:12px;

  --maxw:1120px;

  --shadow: 0 10px 30px rgba(0,0,0,0.08);
  --shadow-2: 0 6px 18px rgba(0,0,0,0.08);

  --font-serif:"Fraunces", serif;
  --font-sans:"Space Grotesk", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  --font-mono:"IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
}

:root[data-theme="dark"]{
  --paper:#101214;
  --paper-2:#15181c;
  --ink:#f3f4f6;
  --ink-2:#d7dbe2;
  --muted:#a5afbf;

  --border:#2a2f37;
  --border-2:#3a424e;

  --accent:#d38b58;
  --accent-2:#53b7aa;
  --accent-hover:#f0a06a;

  --shadow: 0 14px 36px rgba(0,0,0,0.35);
  --shadow-2: 0 10px 26px rgba(0,0,0,0.30);
}

/* Base */
*{box-sizing:border-box;}
html,body{height:100%;}
body.v14-body{
  margin:0;
  color:var(--ink);
  background:radial-gradient(1200px 700px at 20% 0%, rgba(139,74,43,0.08), transparent 55%),
             radial-gradient(1000px 700px at 90% 10%, rgba(44,111,102,0.07), transparent 55%),
             var(--paper);
  font-family:var(--font-sans);
  line-height:1.5;

  /* ✅ FIX: no repeat background */
  background-repeat:no-repeat;
  background-size:cover;
}
a{color:inherit;text-decoration:none;}
img{max-width:100%;display:block;}

.v14-main{
  max-width:var(--maxw);
  margin:0 auto;
  padding:14px 14px 60px;
}

/* progress bar (article only) */
.v14-progress{
  position:fixed;
  top:0;
  left:0;
  right:0;
  height:3px;
  z-index:90;
  background:transparent;
}
.v14-progress__bar{
  height:100%;
  width:100%;
  transform-origin:left center;
  transform:scaleX(0);
  background:linear-gradient(90deg, var(--accent), var(--accent-2));
}

/* Header */
.v14-header{
  position:sticky;
  top:0;
  z-index:80;
  background:linear-gradient(180deg, var(--paper-2), rgba(255,255,255,0));
  backdrop-filter:saturate(1.2) blur(8px);
  border-bottom:1px solid rgba(0,0,0,0.04);
}
:root[data-theme="dark"] .v14-header{
  background:linear-gradient(180deg, rgba(21,24,28,0.92), rgba(21,24,28,0.65));
  border-bottom:1px solid rgba(255,255,255,0.06);
}

.v14-header__top{
  max-width:var(--maxw);
  margin:0 auto;
  padding:12px 14px 10px;
  display:flex;
  align-items:center;
  gap:12px;
}

.v14-burger{
  width:42px;height:42px;
  border-radius:12px;
  border:1px solid var(--border);
  background:var(--paper-2);
  box-shadow:var(--shadow-2);
  display:none;
  align-items:center;
  justify-content:center;
  cursor:pointer;
}
.v14-burger span{
  display:block;
  width:18px;
  height:2px;
  background:var(--ink);
  border-radius:999px;
  margin:2px 0;
  opacity:.9;
}
:root[data-theme="dark"] .v14-burger{ background:var(--paper-2); }

.v14-logo{
  display:flex;
  align-items:center;
  gap:10px;
  min-width:240px;
}
.v14-logo img{
  width:50px;height:50px;
  border-radius:12px;

}
.v14-logo__text{display:flex;flex-direction:column;line-height:1.1;}
.v14-logo__name{
  font-family:var(--font-serif);
  font-weight:700;
  font-size:22px;
  letter-spacing:.2px;
}
.v14-logo__tagline{
  font-family:var(--font-mono);
  font-size:11px;
  color:var(--muted);
  margin-top:2px;
}

.v14-tools{
  margin-left:auto;
  display:flex;
  align-items:center;
  gap:10px;
}

.v14-theme{
  width:42px;height:42px;
  border-radius:12px;
  border:1px solid var(--border);
  background:var(--paper-2);
  box-shadow:var(--shadow-2);
  cursor:pointer;
  display:inline-grid;
  place-items:center;
}
.v14-ico{
  width:18px;height:18px;
  fill:none;
  stroke:currentColor;
  stroke-width:2.2;
  stroke-linecap:round;
  stroke-linejoin:round;
}

/* ✅ FIX: theme icon shows MOON in dark, SUN in light */
.v14-ico-moon{ display:none; }
:root[data-theme="dark"] .v14-ico-sun{ display:none; }
:root[data-theme="dark"] .v14-ico-moon{ display:block; stroke:var(--ink-2)}
:root:not([data-theme="dark"]) .v14-ico-sun{ display:block; }
:root:not([data-theme="dark"]) .v14-ico-moon{ display:none; }

.v14-search{
  display:flex;
  align-items:center;
  border:1px solid var(--border);
  background:var(--paper-2);
  border-radius:14px;
  overflow:hidden;
  box-shadow:var(--shadow-2);
}
.v14-search input{
  border:none;
  outline:none;
  background:transparent;
  padding:10px 12px;
  width:320px;
  font-family:var(--font-mono);
  font-size:12px;
  color:var(--ink);
}
.v14-search button{
  border:none;
  width:46px;height:40px;
  background:linear-gradient(135deg, var(--accent), var(--accent-hover));
  color:#fff;
  cursor:pointer;
  display:inline-grid;
  place-items:center;
}

/* Row 2: categories */
.v14-header__cats{
  max-width:var(--maxw);
  margin:0 auto;
  padding:0 14px 10px;
    position:relative;
}
.v14-cats{
  display:flex;
  align-items:center;
  gap:10px;

  padding:10px 12px;
  border:1px solid var(--border);
  background:var(--paper-2);
  border-radius:16px;
  box-shadow:var(--shadow-2);

  /* ✅ custom overflow */
  overflow-x:auto;
  overflow-y:hidden;
  -webkit-overflow-scrolling:touch;
  scroll-behavior:smooth;

  /* ✅ hide scrollbar */
}
.v14-catlink{
  font-family:var(--font-mono);
  font-size:12px;
  letter-spacing:.4px;
  text-transform:uppercase;
  color:var(--ink-2);
  padding:8px 10px;
  border-radius:999px;
  border:1px solid transparent;
  white-space:nowrap;
}
.v14-catlink:hover{
  border-color:rgba(0,0,0,0.08);
  background:rgba(139,74,43,0.08);
}
.v14-cats{
  overflow-x:auto;
  overflow-y:hidden;
  -webkit-overflow-scrolling:touch;
}

/* ✅ horizontal scrollbar = HEIGHT */
.v14-cats::-webkit-scrollbar{
  height:4px;               /* ✅ smaller */
}

/* ✅ invisible track (no border) */
.v14-cats::-webkit-scrollbar-track{
  background:transparent;
}

/* ✅ thin brown thumb */
.v14-cats::-webkit-scrollbar-thumb{
  background:var(--accent-hover); /* brown */
  border-radius:999px;

}

/* hover */
.v14-cats::-webkit-scrollbar-thumb:hover{
  background:var(--accent);
}
.v14-cats::-webkit-scrollbar{ height:2px; }

.v14-cats{
  display:flex;
  align-items:center;
  gap:10px;

  border:1px solid var(--border);
  background:var(--paper-2);
  border-radius:16px;
  box-shadow:var(--shadow-2);

  overflow-x:auto;
  overflow-y:hidden;
  -webkit-overflow-scrolling:touch;

  /* ✅ padding so scrollbar doesn't touch edges */
  padding:10px 12px 14px;         /* bottom extra space */
  scroll-padding-left:10px;
  scroll-padding-right:10px;
}
.v14-cats{
  display:flex;
  align-items:center;
  gap:10px;

  border:1px solid var(--border);
  background:var(--paper-2);
  border-radius:16px;
  box-shadow:var(--shadow-2);

  overflow-x:auto;
  overflow-y:hidden;
  -webkit-overflow-scrolling:touch;

  /* ✅ padding so scrollbar doesn't touch edges */
  padding:10px 12px 14px;         /* bottom extra space */
  scroll-padding-left:10px;
  scroll-padding-right:10px;
}
.v14-cats{
  display:flex;
  align-items:center;
  gap:10px;

  border:1px solid var(--border);
  background:var(--paper-2);
  border-radius:16px;
  box-shadow:var(--shadow-2);

  overflow-x:auto;
  overflow-y:hidden;
  -webkit-overflow-scrolling:touch;

  /* ✅ padding so scrollbar doesn't touch edges */
  padding:10px 12px 14px;         /* bottom extra space */
  scroll-padding-left:10px;
  scroll-padding-right:10px;
}
.v14-cats::-webkit-scrollbar-track{
  background:transparent;
  margin:0 10px;   /* ✅ this is the key */
}

:root[data-theme="dark"] .v14-catlink:hover{
  border-color:rgba(255,255,255,0.08);
  background:rgba(211,139,88,0.12);
}


/* More dropdown */
.v14-more{position:relative;}
.v14-more__summary{list-style:none;cursor:pointer;}
.v14-more__summary::-webkit-details-marker{display:none;}
.v14-more__panel{
  position:absolute;
  right:0;
  top:calc(100% + 10px);
  min-width:220px;
  background:var(--paper-2);
  border:1px solid var(--border);
  border-radius:14px;
  box-shadow:var(--shadow);
  padding:10px;
  display:grid;
  gap:6px;
  z-index:99;
}
.v14-more__panel a{
  font-family:var(--font-mono);
  font-size:12px;
  color:var(--ink-2);
  padding:8px 10px;
  border-radius:12px;
  border:1px solid transparent;
}
.v14-more__panel a:hover{
  background:rgba(44,111,102,0.10);
  border-color:rgba(0,0,0,0.06);
}

/* Ticker */
.v14-ticker{
  border-top:1px solid rgba(0,0,0,0.05);
  border-bottom:1px solid rgba(0,0,0,0.05);
  background:linear-gradient(90deg, rgba(44,111,102,0.18), rgba(139,74,43,0.16));
  overflow:hidden;
}
:root[data-theme="dark"] .v14-ticker{
  border-top:1px solid rgba(255,255,255,0.06);
  border-bottom:1px solid rgba(255,255,255,0.06);
}
.v14-ticker__track{
  max-width:var(--maxw);
  margin:0 auto;
  padding:8px 14px;
  display:flex;
  gap:16px;
  white-space:nowrap;
  animation:ticker 36s linear infinite;
  font-family:var(--font-mono);
  font-size:12px;
  color:var(--ink);
}
.v14-dot{opacity:.6;}
@keyframes ticker{0%{transform:translateX(0);}100%{transform:translateX(-50%);}}

/* Breadcrumb */
.v14-breadcrumb{
  max-width:var(--maxw);
  margin:14px auto 8px;
  padding:0 14px;
  display:flex;
  flex-wrap:wrap;
  gap:6px;
  align-items:center;
  font-family:var(--font-mono);
  font-size:12px;
  color:var(--muted);
}
.v14-breadcrumb__sep{opacity:.7;}
.v14-breadcrumb__item.is-current{color:var(--accent);}

/* Buttons */
.v14-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding:9px 12px;
  border-radius:12px;
  border:1px solid transparent;
  background:linear-gradient(135deg, var(--accent), var(--accent-hover));
  color:#fff;
  font-family:var(--font-mono);
  font-size:12px;
  cursor:pointer;
  box-shadow:var(--shadow-2);
}
.v14-btn:hover{filter:brightness(1.02);}
.v14-btn--ghost{
  background:transparent;
  color:var(--ink);
  border-color:var(--border);
  box-shadow:none;
}
.v14-btn--ghost:hover{background:rgba(0,0,0,0.04);}
:root[data-theme="dark"] .v14-btn--ghost:hover{background:rgba(255,255,255,0.06);}
.v14-btn--ghost.is-disabled{opacity:.55;pointer-events:none;}

/* Chips */
.v14-chips{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  padding:10px 2px 16px;
  justify-content:flex-start;
}
.v14-chips--tight{padding-top:6px;}
.v14-chips--center{justify-content:center;}
.v14-chip{
  font-family:var(--font-mono);
  font-size:12px;
  letter-spacing:.3px;
  text-transform:uppercase;
  padding:8px 10px;
  border-radius:999px;
  background:var(--paper-2);
  border:1px solid var(--border);
  color:var(--ink-2);
}
.v14-chip:hover{background:rgba(44,111,102,0.10);}
.v14-chip.is-active{
  background:rgba(139,74,43,0.14);
  border-color:rgba(139,74,43,0.35);
  color:var(--ink);
}

/* Hero */
.v14-hero{
  border:1px solid var(--border);
  background:var(--paper-2);
  border-radius:var(--radius);
  overflow:hidden;
  box-shadow:var(--shadow);
}
.v14-hero img{
  width:100%;
  height:340px;
  object-fit:cover;
  filter:saturate(0.95) contrast(1.03);
}
.v14-hero__overlay{
  padding:14px 14px 16px;
  border-top:1px solid var(--border);
}
.v14-hero__overlay h1{
  font-family:var(--font-serif);
  margin:6px 0 6px;
  font-size:22px;
  line-height:1.2;
}
.v14-hero__overlay p{
  margin:0;
  color:var(--muted);
  font-size:13px;
}
.v14-tag{
  display:inline-flex;
  align-items:center;
  gap:6px;
  font-family:var(--font-mono);
  font-size:11px;
  text-transform:uppercase;
  letter-spacing:.4px;
  padding:6px 10px;
  border-radius:999px;
  background:rgba(44,111,102,0.12);
  border:1px solid rgba(44,111,102,0.25);
  color:var(--ink);
}

/* Cards grid */
.v14-cardgrid{
  display:grid;
  grid-template-columns:repeat(3, minmax(0,1fr));
  gap:14px;
  margin-top:12px;
}
.v14-card{
  border:1px solid var(--border);
  background:var(--paper-2);
  border-radius:var(--radius);
  overflow:hidden;
  box-shadow:var(--shadow-2);
  transition:transform .2s ease, box-shadow .2s ease;
}
.v14-card:hover{
  transform:translateY(-3px);
  box-shadow:var(--shadow);
}
.v14-card__img img{
  width:100%;
  height:150px;
  object-fit:cover;
}
.v14-card__body{padding:12px;}
.v14-card__cat{
  font-family:var(--font-mono);
  font-size:11px;
  letter-spacing:.4px;
  text-transform:uppercase;
  color:var(--accent-2);
}
.v14-card__title{
  display:block;
  margin:6px 0 6px;
  font-family:var(--font-serif);
  font-weight:700;
  font-size:16px;
  line-height:1.25;
}
.v14-card__excerpt{
  margin:0 0 10px;
  color:var(--muted);
  font-size:13px;
}

/* Category head */
.v14-category-head{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:10px;
  margin:6px 0 4px;
}
.v14-category-head h1{
  margin:0;
  font-family:var(--font-serif);
  font-size:22px;
}
.v14-sub{
  font-family:var(--font-mono);
  font-size:12px;
  color:var(--muted);
}

/* List rows */
.v14-list{display:flex;flex-direction:column;gap:14px;margin-top:6px;}
.v14-row{
  display:flex;
  gap:12px;
  padding:12px;
  border-radius:var(--radius);
  border:1px solid var(--border);
  background:var(--paper-2);
  box-shadow:var(--shadow-2);
}
.v14-row__thumb img{
  width:220px;
  height:140px;
  border-radius:14px;
  object-fit:cover;
  border:1px solid var(--border);
}
.v14-row__body{flex:1;min-width:0;}
.v14-row__title{
  font-family:var(--font-serif);
  font-size:18px;
  font-weight:700;
  display:block;
  margin:0 0 6px;
  line-height:1.2;
}
.v14-row__excerpt{margin:0 0 10px;color:var(--muted);font-size:13px;}
.v14-row__meta{
  font-family:var(--font-mono);
  font-size:12px;
  color:var(--muted);
  display:flex;
  align-items:center;
  gap:8px;
  margin-bottom:10px;
}

/* Pager */
.v14-pager{
  margin:22px 0 10px;
  display:flex;
  justify-content:center;
  align-items:center;
  flex-wrap:wrap;
  gap:10px 12px;
  font-family:var(--font-mono);
}
.v14-pills{display:flex;gap:8px;align-items:center;}
.v14-pill{
  width:34px;height:34px;
  display:inline-grid;
  place-items:center;
  border-radius:999px;
  border:1px solid var(--border);
  background:var(--paper-2);
  color:var(--ink);
  font-size:12px;
}
.v14-pill:hover{background:rgba(44,111,102,0.10);}
.v14-pill.is-active{
  background:rgba(139,74,43,0.16);
  border-color:rgba(139,74,43,0.35);
}

/* Article */
.v14-article{
  max-width:820px;
  margin:0 auto;
  border:1px solid var(--border);
  background:var(--paper-2);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  padding:14px;
}
.v14-article__head{text-align:center;padding:6px 6px 10px;}
.v14-article__head h1{
  font-family:var(--font-serif);
  font-size:24px;
  line-height:1.15;
  margin:8px 0 8px;
}
.v14-article__meta{
  display:flex;
  justify-content:center;
  gap:10px;
  flex-wrap:wrap;
  font-family:var(--font-mono);
  font-size:12px;
  color:var(--muted);
}
.v14-articlehero img{
  width:100%;
  height:220px;
  border-radius:var(--radius);
  object-fit:cover;
  border:1px solid var(--border);
  filter:saturate(.95) contrast(1.04);
}

.v14-prose{
  margin-top:12px;
  font-family:var(--font-sans);
  font-size:14px;
  color:var(--ink);
  line-height:1.75;
}
.v14-prose h2, .v14-prose h3{
  font-family:var(--font-serif);
  margin:12px 0 6px;
  line-height:1.2;
}
.v14-prose h2{font-size:18px;color:var(--accent);}
.v14-prose h3{font-size:16px;color:var(--accent-2);}
.v14-prose p{margin:0 0 10px;}
.v14-prose ul, .v14-prose ol{margin:0 0 10px 18px;}
.v14-prose img{border-radius:12px;border:1px solid var(--border);}

/* Static pages */
.v14-static{max-width:var(--maxw);margin:18px auto;}
.v14-prosebox{
  max-width:860px;
  margin:0 auto;
  border:1px solid var(--border);
  background:var(--paper-2);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  padding:14px;
}

/* Footer */
.v14-footer{
  padding:22px 14px;
  border-top:1px solid rgba(0,0,0,0.05);
  text-align:center;
  font-family:var(--font-mono);
  color:var(--muted);
  font-size:12px;
}
:root[data-theme="dark"] .v14-footer{
  border-top:1px solid rgba(255,255,255,0.06);
}
.v14-footer__links{
  display:flex;
  justify-content:center;
  gap:14px;
  flex-wrap:wrap;
  margin-bottom:10px;
}

/* Back to top */
.v14-top{
  position:fixed;
  right:16px;
  bottom:18px;
  width:44px;height:44px;
  border-radius:14px;
  border:1px solid var(--border);
  background:var(--paper-2);
  box-shadow:var(--shadow);
  display:grid;
  place-items:center;
  cursor:pointer;
  opacity:0;
  transform:translateY(8px);
  pointer-events:none;
  transition:.2s;
  z-index:85;
}
.v14-top.is-show{
  opacity:1;
  transform:translateY(0);
  pointer-events:auto;
}

/* Drawer */
.v14-noscroll{overflow:hidden;}
.v14-drawer{
  position:fixed;
  inset:0;
  z-index:200;
  pointer-events:none; /* ✅ important: prevents overlay blocking when closed */
}
.v14-drawer.is-open{pointer-events:auto;}
.v14-drawer__backdrop{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,0.40);
  opacity:0;
  transition:.2s;
}
.v14-drawer.is-open .v14-drawer__backdrop{opacity:1;}

.v14-drawer__panel{
  position:absolute;
  top:0; right:0;
  width:min(360px, 92vw);
  height:100%;
  background:var(--paper-2);
  border-left:1px solid var(--border);
  box-shadow:var(--shadow);
  transform:translateX(102%);
  transition:.22s ease;
  padding:14px;
  display:flex;
  flex-direction:column;
  gap:12px;
}
.v14-drawer.is-open .v14-drawer__panel{transform:translateX(0);}

.v14-drawer__top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
}
.v14-drawer__brand{
  font-family:var(--font-serif);
  font-weight:700;
  font-size:18px;
}
.v14-drawer__close{
  width:40px;height:40px;
  border-radius:12px;
  border:1px solid var(--border);
  background:transparent;
  cursor:pointer;
  font-size:18px;
}

.v14-drawer__search{
  display:flex;
  gap:8px;
}
.v14-drawer__search input{
  flex:1;
  border:1px solid var(--border);
  border-radius:12px;
  padding:10px 12px;
  font-family:var(--font-mono);
  font-size:12px;
  background:transparent;
  color:var(--ink);
}
.v14-drawer__search button{
  border:none;
  border-radius:12px;
  padding:10px 12px;
  background:linear-gradient(135deg, var(--accent), var(--accent-hover));
  color:#fff;
  font-family:var(--font-mono);
  font-size:12px;
  cursor:pointer;
}

.v14-drawer__links{
  overflow:auto;
  padding-right:4px;
  display:flex;
  flex-direction:column;
  gap:6px;
}
.v14-drawer__links a{
  font-family:var(--font-mono);
  font-size:12px;
  padding:10px 10px;
  border-radius:12px;
  border:1px solid transparent;
  color:var(--ink-2);
  background:transparent;
}
.v14-drawer__links a:hover{
  background:rgba(44,111,102,0.10);
  border-color:rgba(0,0,0,0.06);
}
.v14-drawer__links hr{
  border:none;
  border-top:1px solid var(--border);
  margin:8px 0;
}

/* Search page */
.v14-searchpage{
  max-width:var(--maxw);
  margin:24px auto 60px;
  padding:0 14px;
  display:grid;
  gap:14px;
  justify-items:center;
}
.v14-searchbrand{
  font-family:var(--font-serif);
  font-size:26px;
  font-weight:700;
  color:var(--ink);
}
.v14-searchbox{
  width:100%;
  max-width:820px;
  display:flex;
  gap:10px;
  border:1px solid var(--border);
  background:var(--paper-2);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  padding:12px;
}
.v14-searchbox input{
  flex:1;
  border:1px solid var(--border);
  background:transparent;
  border-radius:14px;
  padding:12px 12px;
  font-family:var(--font-mono);
  font-size:13px;
  color:var(--ink);
  outline:none;
}
.v14-searchfoot{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  justify-content:center;
  font-family:var(--font-mono);
  font-size:12px;
  color:var(--muted);
}

/* MGID wrappers (kept from your V5 needs) */
.wrapper-top-article-container .mgid-top-widget{min-height:300px;}
.wrapper-article-thumbnails-container{
  margin-left:20.5%;
  margin-right:20.5%;
  margin-top:15px;
  min-height:1px;
}
@media (max-width:1024px){
  .wrapper-article-thumbnails-container{margin-left:auto;margin-right:auto;}
}

/* Article hero swap (kept) */
#wrapper-articlepage__hero-desktop{display:block;}
#wrapper-articlepage__hero-mobile{display:none;}
@media (max-width:768px){
  #wrapper-articlepage__hero-desktop{display:none;}
  #wrapper-articlepage__hero-mobile{display:block;margin-top:12px;}
}

/* Responsive */
@media (max-width:1100px){
  .v14-cardgrid{grid-template-columns:repeat(2, minmax(0,1fr));}
  .v14-search input{width:260px;}
}

@media (max-width:900px){
  .v14-burger{    display: flex;
    flex-direction: column;}
  .v14-search{display:none;} /* top search moves to drawer on mobile */
  .v14-tools{gap:8px;}
  .v14-logo{min-width:0;}
}

@media (max-width:720px){
  .v14-cardgrid{grid-template-columns:1fr;}
  .v14-hero img{height:240px;}
  .v14-row{flex-direction:column;}
  .v14-row__thumb img{width:100%;height:190px;}
  .v14-category-head{flex-direction:column;align-items:flex-start;}
  .v14-article{padding:12px;border-radius:16px;}
  .v14-articlehero img{height:190px;}
}

@media (max-width:480px){
  .v14-logo__name{font-size:20px;}
  .v14-cats{padding:8px;}
  .v14-catlink{padding:7px 9px;font-size:11px;}
  .v14-hero__overlay h1{font-size:20px;}
}
