/* ── WellNewMe Blog Redesign — wnm- prefixed ── */
*, *::before, *::after { box-sizing: border-box; }

:root {
  --wnm-ink:       #0f1117;
  --wnm-ink-mid:   #3a3d45;
  --wnm-ink-light: #72757f;
  --wnm-rule:      #e2e4e8;
  --wnm-paper:     #fafaf8;
  --wnm-white:     #ffffff;
  --wnm-teal:      #007a6e;
  --wnm-teal-pale: #e6f4f2;
  --wnm-amber:     #c8640a;
  --wnm-nav-bg:    #111318;
  --wnm-serif:     'Playfair Display', Georgia, serif;
  --wnm-baskerville: 'Libre Baskerville', Georgia, serif;
  --wnm-sans:      'DM Sans', system-ui, sans-serif;
  --wnm-max:       1200px;
}

/* ── BODY RESET ── */
body {
  background: var(--wnm-paper);
  color: var(--wnm-ink);
  font-family: var(--wnm-sans);
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── TOPBAR ── */
.wnm-topbar {
  background: var(--wnm-nav-bg);
  color: rgba(255,255,255,0.55);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
  padding: 8px 0;
  font-family: var(--wnm-sans);
}
.wnm-topbar-inner {
  max-width: var(--wnm-max);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.wnm-topbar a { color: rgba(255,255,255,0.55); text-decoration: none; }
.wnm-topbar a:hover { color: var(--wnm-teal); }
.wnm-topbar-right { display: flex; gap: 20px; }

/* ── NAV ── */
.wnm-nav {
  background: var(--wnm-nav-bg);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  position: sticky;
  top: 0;
  z-index: 200;
}
.wnm-nav-inner {
  max-width: var(--wnm-max);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  height: 68px;
  gap: 40px;
}
.wnm-logo {
  display: flex;
  flex-direction: column;
  gap: 1px;
  flex-shrink: 0;
  text-decoration: none;
}
.wnm-logo-name {
  font-family: var(--wnm-serif);
  font-weight: 800;
  font-size: 22px;
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 1;
}
.wnm-logo-sub {
  font-family: var(--wnm-sans);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--wnm-teal);
}
.wnm-nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
  margin: 0 0 0 auto;
  padding: 0;
  align-items: center;
}
.wnm-nav-links a {
  color: rgba(255,255,255,0.6);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.03em;
  text-decoration: none;
  transition: color 0.2s;
}
.wnm-nav-links a:hover,
.wnm-nav-links a.active { color: #fff; }
.wnm-nav-links .wnm-nav-cta {
  background: var(--wnm-teal);
  color: #fff !important;
  padding: 8px 18px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: background 0.2s;
}
.wnm-nav-links .wnm-nav-cta:hover { background: #009b8c; }
.wnm-nav-search {
  display: flex;
  align-items: center;
}
.wnm-nav-search form { display: flex; gap: 0; }
.wnm-nav-search input {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 4px 0 0 4px;
  padding: 6px 12px;
  color: #fff;
  font-size: 12px;
  width: 160px;
  font-family: var(--wnm-sans);
}
.wnm-nav-search input::placeholder { color: rgba(255,255,255,0.3); }
.wnm-nav-search input:focus { outline: none; border-color: var(--wnm-teal); }
.wnm-nav-search button {
  background: var(--wnm-teal);
  border: none;
  border-radius: 0 4px 4px 0;
  color: #fff;
  padding: 6px 12px;
  cursor: pointer;
  font-size: 12px;
  font-weight: 700;
  font-family: var(--wnm-sans);
  letter-spacing: 0.04em;
  transition: background 0.2s;
}
.wnm-nav-search button:hover { background: #009b8c; }

/* Hide old blog-header and blog-nav when redesign is active */
.wnm-active .blog-header { display: none !important; }

/* ── PAGE HEADER ── */
.wnm-page-header {
  border-bottom: 3px solid var(--wnm-ink);
  background: var(--wnm-white);
  padding: 16px 0 0;
}
.wnm-page-header-inner {
  max-width: var(--wnm-max);
  margin: 0 auto;
  padding: 0 24px;
}
.wnm-section-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--wnm-teal);
  margin-bottom: 4px;
  font-family: var(--wnm-sans);
}
.wnm-page-header-desc {
  font-family: var(--wnm-serif);
  font-size: 13px;
  font-weight: 700;
  color: var(--wnm-ink-mid);
  font-style: italic;
  margin-bottom: 16px;
  letter-spacing: 0;
}
.wnm-topic-bar {
  display: flex;
  gap: 4px;
  overflow-x: auto;
  scrollbar-width: none;
}
.wnm-topic-bar::-webkit-scrollbar { display: none; }
.wnm-topic-pill {
  display: inline-block;
  padding: 8px 16px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--wnm-ink-mid);
  border-bottom: 3px solid transparent;
  white-space: nowrap;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.15s;
  font-family: var(--wnm-sans);
}
.wnm-topic-pill:hover { color: var(--wnm-ink); border-bottom-color: var(--wnm-rule); }
.wnm-topic-pill.active { color: var(--wnm-teal); border-bottom-color: var(--wnm-teal); }

/* ── LAYOUT ── */
.wnm-layout {
  max-width: var(--wnm-max);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 0 48px;
  align-items: start;
}

/* ── HERO ── */
.wnm-hero-section {
  padding: 48px 0 32px;
  border-bottom: 1px solid var(--wnm-rule);
  animation: wnmFadeUp 0.5s ease both;
}
.wnm-hero-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.wnm-hero-image {
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, #0f2a27 0%, #1a4a44 40%, #0d3330 100%);
  border-radius: 2px;
  overflow: hidden;
  position: relative;
}
.wnm-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.wnm-hero-image-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  background: linear-gradient(to top, rgba(0,0,0,0.5) 0%, transparent 60%);
}
.wnm-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--wnm-teal);
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 2px;
  margin-bottom: 10px;
  width: fit-content;
  font-family: var(--wnm-sans);
}
.wnm-hero-cat {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--wnm-teal);
  margin-bottom: 12px;
  font-family: var(--wnm-sans);
}
.wnm-hero-title {
  font-family: var(--wnm-serif);
  font-size: 34px;
  font-weight: 800;
  line-height: 1.18;
  color: var(--wnm-ink);
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.wnm-hero-title a { color: inherit; text-decoration: none; }
.wnm-hero-title a:hover { color: var(--wnm-teal); }
.wnm-hero-excerpt {
  font-family: var(--wnm-baskerville);
  font-size: 15px;
  line-height: 1.65;
  color: var(--wnm-ink-mid);
  margin-bottom: 20px;
}
.wnm-hero-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 12px;
  color: var(--wnm-ink-light);
  font-weight: 500;
  font-family: var(--wnm-sans);
}
.wnm-dot { width: 3px; height: 3px; background: var(--wnm-rule); border-radius: 50%; display: inline-block; }
.wnm-read-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--wnm-teal);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-bottom: 2px solid var(--wnm-teal);
  padding-bottom: 1px;
  text-decoration: none;
  transition: gap 0.2s;
  font-family: var(--wnm-sans);
  margin-top: 20px;
}
.wnm-read-more:hover { gap: 10px; color: var(--wnm-teal); }
.wnm-read-more::after { content: '→'; }

/* ── SECONDARY 3-CARD GRID ── */
.wnm-secondary-section {
  padding: 32px 0;
  border-bottom: 1px solid var(--wnm-rule);
  animation: wnmFadeUp 0.5s 0.1s ease both;
}
.wnm-secondary-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.wnm-sec-card-image {
  aspect-ratio: 16/9;
  border-radius: 2px;
  margin-bottom: 14px;
  overflow: hidden;
  position: relative;
  background: linear-gradient(135deg, #0d2535, #1a4060);
}
.wnm-sec-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.wnm-card-label {
  position: absolute;
  bottom: 12px;
  left: 12px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  font-family: var(--wnm-sans);
}
.wnm-sec-card-cat {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--wnm-teal);
  margin-bottom: 8px;
  font-family: var(--wnm-sans);
}
.wnm-sec-card-title {
  font-family: var(--wnm-serif);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--wnm-ink);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.wnm-sec-card-title a { color: inherit; text-decoration: none; }
.wnm-sec-card-title a:hover { color: var(--wnm-teal); }
.wnm-sec-card-excerpt {
  font-size: 13px;
  line-height: 1.6;
  color: var(--wnm-ink-mid);
  margin-bottom: 12px;
}
.wnm-sec-meta {
  font-size: 11px;
  color: var(--wnm-ink-light);
  display: flex;
  gap: 10px;
  align-items: center;
  font-weight: 500;
  font-family: var(--wnm-sans);
}

/* ── LIST SECTION ── */
.wnm-list-section { padding: 32px 0 48px; }
.wnm-list-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 20px;
  border-bottom: 2px solid var(--wnm-ink);
  padding-bottom: 10px;
}
.wnm-list-title {
  font-family: var(--wnm-serif);
  font-size: 20px;
  font-weight: 800;
  color: var(--wnm-ink);
  letter-spacing: -0.02em;
}
.wnm-see-all {
  font-size: 11px;
  font-weight: 600;
  color: var(--wnm-teal);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  font-family: var(--wnm-sans);
}
.wnm-post-list { display: flex; flex-direction: column; }
.wnm-post-row {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--wnm-rule);
  align-items: start;
}
.wnm-post-row:last-child { border-bottom: none; }
.wnm-post-num {
  font-family: var(--wnm-serif);
  font-size: 36px;
  font-weight: 800;
  color: var(--wnm-rule);
  line-height: 1;
  padding-top: 4px;
  letter-spacing: -0.03em;
}
.wnm-post-row-cat {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--wnm-amber);
  margin-bottom: 5px;
  font-family: var(--wnm-sans);
}
.wnm-post-row-title {
  font-family: var(--wnm-serif);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.35;
  color: var(--wnm-ink);
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}
.wnm-post-row-title a { color: inherit; text-decoration: none; }
.wnm-post-row-title a:hover { color: var(--wnm-teal); }
.wnm-post-row-excerpt {
  font-size: 13px;
  color: var(--wnm-ink-mid);
  line-height: 1.5;
  margin-bottom: 8px;
}
.wnm-post-row-meta {
  font-size: 11px;
  color: var(--wnm-ink-light);
  display: flex;
  gap: 10px;
  font-weight: 500;
  font-family: var(--wnm-sans);
}

/* ── SIDEBAR ── */
.wnm-sidebar {
  padding-top: 48px;
  position: sticky;
  top: 88px;
}
.wnm-sidebar-block { margin-bottom: 36px; }
.wnm-sidebar-label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--wnm-ink-light);
  border-bottom: 2px solid var(--wnm-ink);
  padding-bottom: 8px;
  margin-bottom: 16px;
  font-family: var(--wnm-sans);
}
.wnm-sidebar-search { display: flex; border: 1px solid var(--wnm-rule); border-radius: 3px; overflow: hidden; }
.wnm-sidebar-search input {
  flex: 1;
  border: none;
  padding: 10px 14px;
  font-size: 13px;
  font-family: var(--wnm-sans);
  background: var(--wnm-white);
  color: var(--wnm-ink);
}
.wnm-sidebar-search input:focus { outline: none; }
.wnm-sidebar-search button {
  background: var(--wnm-ink);
  color: #fff;
  border: none;
  padding: 0 14px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  font-family: var(--wnm-sans);
  transition: background 0.2s;
}
.wnm-sidebar-search button:hover { background: var(--wnm-teal); }

.wnm-cat-list { list-style: none; padding: 0; margin: 0; }
.wnm-cat-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 9px 0;
  border-bottom: 1px solid var(--wnm-rule);
  font-size: 13px;
  color: var(--wnm-ink-mid);
  font-family: var(--wnm-sans);
}
.wnm-cat-list li a { color: inherit; text-decoration: none; width: 100%; display: flex; justify-content: space-between; align-items: center; }
.wnm-cat-list li a:hover { color: var(--wnm-teal); }
.wnm-cat-list li:last-child { border-bottom: none; }
.wnm-cat-count {
  font-size: 11px;
  font-weight: 600;
  color: var(--wnm-ink-light);
  background: var(--wnm-paper);
  padding: 2px 8px;
  border-radius: 10px;
}
.wnm-popular-list { list-style: none; padding: 0; margin: 0; }
.wnm-popular-item {
  display: flex;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--wnm-rule);
}
.wnm-popular-item:last-child { border-bottom: none; }
.wnm-popular-item a { text-decoration: none; color: inherit; display: flex; gap: 12px; width: 100%; }
.wnm-popular-num {
  font-family: var(--wnm-serif);
  font-size: 22px;
  font-weight: 800;
  color: var(--wnm-rule);
  flex-shrink: 0;
  line-height: 1.1;
}
.wnm-popular-title {
  font-size: 13px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--wnm-ink);
  margin-bottom: 3px;
  font-family: var(--wnm-sans);
}
.wnm-popular-item a:hover .wnm-popular-title { color: var(--wnm-teal); }
.wnm-popular-date { font-size: 11px; color: var(--wnm-ink-light); font-family: var(--wnm-sans); }

.wnm-archive-list { list-style: none; padding: 0; margin: 0; }
.wnm-archive-list li {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid var(--wnm-rule);
  font-size: 13px;
  color: var(--wnm-ink-mid);
  font-family: var(--wnm-sans);
}
.wnm-archive-list li a { color: inherit; text-decoration: none; display: flex; justify-content: space-between; width: 100%; }
.wnm-archive-list li a:hover { color: var(--wnm-teal); }
.wnm-archive-list li:last-child { border-bottom: none; }

.wnm-tag-cloud { display: flex; flex-wrap: wrap; gap: 6px; }
.wnm-tag {
  font-size: 11px;
  font-weight: 500;
  padding: 5px 10px;
  border: 1px solid var(--wnm-rule);
  border-radius: 2px;
  color: var(--wnm-ink-mid);
  text-decoration: none;
  transition: all 0.15s;
  font-family: var(--wnm-sans);
  display: inline-block;
}
.wnm-tag:hover { background: var(--wnm-ink); color: #fff; border-color: var(--wnm-ink); }

/* Newsletter */
.wnm-newsletter {
  background: var(--wnm-nav-bg);
  padding: 24px;
  border-radius: 4px;
}
.wnm-newsletter .wnm-sidebar-label { color: rgba(255,255,255,0.4); border-bottom-color: rgba(255,255,255,0.15); }
.wnm-newsletter p { font-size: 13px; color: rgba(255,255,255,0.6); margin-bottom: 14px; line-height: 1.5; font-family: var(--wnm-sans); }
.wnm-newsletter em { font-family: var(--wnm-baskerville); font-style: italic; color: rgba(255,255,255,0.8); }
.wnm-newsletter-input {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 3px;
  background: rgba(255,255,255,0.07);
  color: #fff;
  font-size: 13px;
  font-family: var(--wnm-sans);
  margin-bottom: 8px;
}
.wnm-newsletter-input::placeholder { color: rgba(255,255,255,0.3); }
.wnm-newsletter-input:focus { outline: none; border-color: var(--wnm-teal); }
.wnm-newsletter-btn {
  width: 100%;
  padding: 11px;
  background: var(--wnm-teal);
  color: #fff;
  border: none;
  border-radius: 3px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  font-family: var(--wnm-sans);
  transition: background 0.2s;
}
.wnm-newsletter-btn:hover { background: #009b8c; }

/* ── FOOTER ── */
.wnm-footer {
  background: var(--wnm-nav-bg);
  border-top: 3px solid var(--wnm-teal);
  margin-top: 0;
}
.wnm-footer-inner {
  max-width: var(--wnm-max);
  margin: 0 auto;
  padding: 48px 24px 24px;
}
.wnm-footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 24px;
}
.wnm-footer-brand-name {
  font-family: var(--wnm-serif);
  font-weight: 800;
  font-size: 20px;
  color: #fff;
  letter-spacing: -0.02em;
}
.wnm-footer-brand-sub {
  font-family: var(--wnm-sans);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--wnm-teal);
  margin-top: 3px;
  display: block;
}
.wnm-footer-brand p {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  line-height: 1.6;
  margin-top: 12px;
  max-width: 240px;
  font-family: var(--wnm-sans);
}
.wnm-footer-col h4 {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 14px;
  font-family: var(--wnm-sans);
}
.wnm-footer-col ul { list-style: none; padding: 0; margin: 0; }
.wnm-footer-col ul li { margin-bottom: 8px; }
.wnm-footer-col ul li a {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: color 0.2s;
  font-family: var(--wnm-sans);
}
.wnm-footer-col ul li a:hover { color: var(--wnm-teal); }
.wnm-footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  color: rgba(255,255,255,0.25);
  font-family: var(--wnm-sans);
}
.wnm-social-row { display: flex; gap: 10px; }
.wnm-social-btn {
  width: 30px;
  height: 30px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  transition: all 0.2s;
}
.wnm-social-btn:hover { border-color: var(--wnm-teal); color: var(--wnm-teal); }

/* ── SINGLE POST STYLES ── */
.wnm-post-layout {
  max-width: var(--wnm-max);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 0 48px;
  align-items: start;
}
.wnm-post-main { padding-top: 40px; }
.wnm-post-header { margin-bottom: 32px; }
.wnm-post-cat-bar {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--wnm-teal);
  margin-bottom: 14px;
  font-family: var(--wnm-sans);
}
.wnm-post-title-single {
  font-family: var(--wnm-serif);
  font-size: 38px;
  font-weight: 800;
  line-height: 1.18;
  color: var(--wnm-ink);
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.wnm-post-meta-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  color: var(--wnm-ink-light);
  font-weight: 500;
  font-family: var(--wnm-sans);
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.wnm-post-body {
  font-family: var(--wnm-baskerville);
  font-size: 17px;
  line-height: 1.75;
  color: var(--wnm-ink);
}
.wnm-post-body h2, .wnm-post-body h3, .wnm-post-body h4 {
  font-family: var(--wnm-serif);
  color: var(--wnm-ink);
  margin: 32px 0 16px;
}
.wnm-post-body p { margin-bottom: 20px; }
.wnm-post-body a { color: var(--wnm-teal); }
.wnm-post-body img { max-width: 100%; border-radius: 2px; margin: 24px 0; }
.wnm-post-body blockquote {
  border-left: 3px solid var(--wnm-teal);
  padding-left: 20px;
  margin: 24px 0;
  color: var(--wnm-ink-mid);
  font-style: italic;
}

/* ── ANIMATIONS ── */
@keyframes wnmFadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── MARKET BADGE ── */
.wnm-mkt {
  display: inline-block;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 2px 6px;
  border-radius: 2px;
  text-transform: uppercase;
  font-family: var(--wnm-sans);
}
.wnm-mkt-uk { background: #e8f0fe; color: #1a56db; }
.wnm-mkt-ng { background: #fef3e2; color: #b45309; }
.wnm-mkt-both { background: var(--wnm-teal-pale); color: var(--wnm-teal); }

/* ── CARD COLOR THEMES ── */
.wnm-clr-risk    { background: linear-gradient(135deg, #0d2535, #1a4060); }
.wnm-clr-cfo     { background: linear-gradient(135deg, #1a1a0d, #3d3a10); }
.wnm-clr-hr      { background: linear-gradient(135deg, #1a0d1a, #3d1040); }
.wnm-clr-broker  { background: linear-gradient(135deg, #0d1a1a, #0f3535); }
.wnm-clr-insurer { background: linear-gradient(135deg, #1a0d0d, #401515); }
.wnm-clr-default { background: linear-gradient(135deg, #0f2a27 0%, #1a4a44 40%, #0d3330 100%); }

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  .wnm-layout, .wnm-post-layout { grid-template-columns: 1fr; }
  .wnm-sidebar { position: static; padding-top: 32px; }
  .wnm-hero-card { grid-template-columns: 1fr; }
  .wnm-secondary-grid { grid-template-columns: 1fr 1fr; }
  .wnm-footer-top { grid-template-columns: 1fr 1fr; }
  .wnm-nav-search { display: none; }
  .wnm-nav-links { gap: 16px; }
  .wnm-nav-links .wnm-nav-cta { display: none; }
}
@media (max-width: 640px) {
  .wnm-secondary-grid { grid-template-columns: 1fr; }
  .wnm-hero-title { font-size: 26px; }
  .wnm-footer-top { grid-template-columns: 1fr; gap: 24px; }
  .wnm-nav-links { display: none; }
  .wnm-footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .wnm-post-title-single { font-size: 28px; }
}

/* ── HIDE OLD ELEMENTS IN REDESIGN CONTEXT ── */
.wnm-active .blog-header,
.wnm-active .blog-footer,
.wnm-active .blog-body > .row > .blog-sidebar { display: none !important; }
