/* =============================================================
   SEO PRACTICE LAB — CORE STYLESHEET
   -------------------------------------------------------------
   PERFORMANCE NOTE:
   This project intentionally avoids web fonts (Google Fonts, etc).
   System font stacks load with zero network requests, which keeps
   the site fast by default and gives us a real, honest baseline
   to measure Core Web Vitals against later in this project.
   A monospace stack is used for technical elements (URLs, status
   codes, meta labels) to visually separate "system output" from
   editorial copy — this doubles as the site's visual signature.
   ============================================================= */

/* -------------------------------------------------------------
   1. DESIGN TOKENS
   ------------------------------------------------------------- */
:root {
  --primary: #0B1F3A;
  --primary-light: #14315a;
  --secondary: #FF6A00;
  --accent: #FF8A1E;
  --text: #1F2937;
  --text-muted: #5B6472;
  --border: #E5E7EB;
  --light: #F4F6F8;
  --white: #FFFFFF;

  --success: #1B7F4C;
  --warning: #B7791F;
  --danger: #C0392B;

  --font-body: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-mono: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, "Liberation Mono", monospace;

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 14px;

  --shadow-sm: 0 1px 2px rgba(11, 31, 58, 0.06);
  --shadow-md: 0 6px 20px rgba(11, 31, 58, 0.08);
  --shadow-lg: 0 20px 45px rgba(11, 31, 58, 0.14);

  --max-width: 1180px;
  --header-height: 72px;
}

/* -------------------------------------------------------------
   2. RESET
   ------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
button { font: inherit; cursor: pointer; }
h1, h2, h3, h4 { line-height: 1.2; margin: 0 0 0.6em; letter-spacing: -0.01em; color: var(--primary); }
p { margin: 0 0 1.1em; }

/* Visible focus states everywhere — accessibility foundation */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 3px solid var(--secondary);
  outline-offset: 2px;
  border-radius: var(--radius-sm);
}

.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;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--primary);
  color: var(--white);
  padding: 12px 18px;
  z-index: 1000;
  border-radius: 0 0 var(--radius-sm) 0;
}
.skip-link:focus {
  left: 0;
}

/* -------------------------------------------------------------
   3. TYPOGRAPHY SCALE
   ------------------------------------------------------------- */
h1 { font-size: clamp(2rem, 1.6rem + 1.8vw, 3.2rem); font-weight: 800; }
h2 { font-size: clamp(1.5rem, 1.3rem + 0.9vw, 2.1rem); font-weight: 800; }
h3 { font-size: clamp(1.15rem, 1.05rem + 0.4vw, 1.4rem); font-weight: 700; }
h4 { font-size: 1.05rem; font-weight: 700; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: 0.9em;
}
.eyebrow::before {
  content: "";
  width: 18px;
  height: 2px;
  background: var(--secondary);
  display: inline-block;
}

.lede { font-size: 1.1rem; color: var(--text-muted); }

/* Monospace "system output" chip — used for URLs, status codes, meta keys */
.chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  padding: 0.28em 0.65em;
  border-radius: var(--radius-sm);
  background: var(--light);
  border: 1px solid var(--border);
  color: var(--text);
}
.chip--ok { color: var(--success); border-color: #cfe8da; background: #f1faf4; }
.chip--warn { color: var(--warning); border-color: #f0e0bf; background: #fdf7ea; }
.chip--dark { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.16); color: var(--white); }

code, pre {
  font-family: var(--font-mono);
  font-size: 0.9em;
}
code {
  background: var(--light);
  border: 1px solid var(--border);
  padding: 0.1em 0.4em;
  border-radius: var(--radius-sm);
}
pre {
  background: var(--primary);
  color: #E7ECF5;
  padding: 1.1em 1.3em;
  border-radius: var(--radius-md);
  overflow-x: auto;
  line-height: 1.55;
}
pre code { background: none; border: none; padding: 0; color: inherit; }

/* -------------------------------------------------------------
   4. LAYOUT
   ------------------------------------------------------------- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 72px 0; }
.section--tight { padding: 48px 0; }
.section--muted { background: var(--light); }
.section-head { max-width: 640px; margin: 0 0 40px; }
.section-head p { color: var(--text-muted); }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  padding: 0.85em 1.5em;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 0.98rem;
  border: 2px solid transparent;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--secondary); color: var(--white); box-shadow: var(--shadow-md); }
.btn-primary:hover { background: var(--accent); }
.btn-secondary { background: transparent; color: var(--primary); border-color: var(--primary); }
.btn-secondary:hover { background: var(--primary); color: var(--white); }
.btn-ghost { background: var(--white); color: var(--primary); border-color: var(--border); }
.btn-ghost:hover { border-color: var(--primary); }
.btn-block { width: 100%; justify-content: center; }

/* -------------------------------------------------------------
   5. HEADER / NAVIGATION
   ------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 500;
  background: var(--primary);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.6em;
  color: var(--white);
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: -0.01em;
}
.logo-mark {
  font-family: var(--font-mono);
  background: var(--secondary);
  color: var(--white);
  width: 34px;
  height: 34px;
  border-radius: var(--radius-sm);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 700;
}

.nav-primary { display: flex; }
.nav-primary ul { display: flex; align-items: center; gap: 4px; }
.nav-primary a {
  color: rgba(255,255,255,0.82);
  font-size: 0.94rem;
  font-weight: 600;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  transition: color 0.15s ease, background 0.15s ease;
  display: inline-block;
}
.nav-primary a:hover { color: var(--white); background: rgba(255,255,255,0.08); }
.nav-primary a[aria-current="page"] {
  color: var(--white);
  position: relative;
}
.nav-primary a[aria-current="page"]::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 4px;
  height: 2px;
  background: var(--secondary);
  border-radius: 2px;
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: var(--radius-sm);
  padding: 8px 10px;
  color: var(--white);
}
.nav-toggle-icon,
.nav-toggle-icon::before,
.nav-toggle-icon::after {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--white);
  position: relative;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.nav-toggle-icon::before { content: ""; position: absolute; top: -6px; }
.nav-toggle-icon::after { content: ""; position: absolute; top: 6px; }
.nav-toggle[aria-expanded="true"] .nav-toggle-icon { background: transparent; }
.nav-toggle[aria-expanded="true"] .nav-toggle-icon::before { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle-icon::after { transform: translateY(-6px) rotate(-45deg); }

/* -------------------------------------------------------------
   6. HERO + CSS-ONLY "SEO INSPECTOR" ILLUSTRATION
   ------------------------------------------------------------- */
.hero {
  background: linear-gradient(180deg, var(--primary) 0%, var(--primary-light) 100%);
  color: var(--white);
  padding: 88px 0 100px;
}
.hero .container {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}
.hero h1 { color: var(--white); margin-bottom: 0.5em; }
.hero .lede { color: rgba(255,255,255,0.78); max-width: 46ch; }
.hero-ctas { display: flex; gap: 14px; margin-top: 32px; flex-wrap: wrap; }
.hero .btn-secondary { color: var(--white); border-color: rgba(255,255,255,0.4); }
.hero .btn-secondary:hover { background: rgba(255,255,255,0.1); color: var(--white); }

.inspector {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  color: var(--text);
}
.inspector-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--light);
  padding: 10px 14px;
  border-bottom: 1px solid var(--border);
}
.inspector-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--border); }
.inspector-url {
  margin-left: 8px;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--text-muted);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 4px 12px;
  flex: 1;
}
.inspector-body { padding: 22px; }
.inspector-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 9px 0;
  border-bottom: 1px dashed var(--border);
  font-size: 0.86rem;
}
.inspector-row:last-child { border-bottom: none; }
.inspector-label { font-family: var(--font-mono); color: var(--text-muted); }
.inspector-value { font-weight: 600; }

.gauges { display: flex; gap: 18px; margin-top: 20px; padding-top: 18px; border-top: 1px solid var(--border); }
.gauge { text-align: center; flex: 1; }
.gauge-ring {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  margin: 0 auto 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--white);
  background: conic-gradient(var(--gauge-color, var(--secondary)) calc(var(--gauge-value, 90) * 1%), var(--border) 0);
}
.gauge-ring::after {
  content: "";
  position: absolute;
}
.gauge-ring span {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--white);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
}
.gauge-ring { position: relative; }
.gauge small { display: block; font-size: 0.72rem; color: var(--text-muted); font-family: var(--font-mono); }

/* -------------------------------------------------------------
   7. CARD GRIDS
   ------------------------------------------------------------- */
.grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(3, 1fr);
}
.grid--2 { grid-template-columns: repeat(2, 1fr); }

.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 26px;
  transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: transparent; }
.card-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: var(--light);
  color: var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-weight: 700;
  margin-bottom: 16px;
}
.card p { color: var(--text-muted); flex: 1; }
.card-link { font-weight: 700; color: var(--secondary); display: inline-flex; align-items: center; gap: 6px; margin-top: 8px; }
.card-link:hover { color: var(--accent); }

/* -------------------------------------------------------------
   8. LEARNING PATH
   ------------------------------------------------------------- */
.path-list { display: flex; flex-direction: column; border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; }
.path-item {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 18px 22px;
  border-bottom: 1px solid var(--border);
  background: var(--white);
}
.path-item:last-child { border-bottom: none; }
.path-item:nth-child(even) { background: var(--light); }
.path-num { font-family: var(--font-mono); font-weight: 800; color: var(--secondary); font-size: 1.1rem; }
.path-item h4 { margin: 0 0 2px; }
.path-item p { margin: 0; color: var(--text-muted); font-size: 0.92rem; }

/* -------------------------------------------------------------
   9. TWO-COLUMN LAYOUT WITH SIDEBAR
   ------------------------------------------------------------- */
.layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 48px;
  align-items: start;
}

.sidebar { display: flex; flex-direction: column; gap: 22px; position: sticky; top: calc(var(--header-height) + 24px); }
.widget {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px;
}
.widget h4 {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  margin-bottom: 14px;
}
.widget-search { display: flex; gap: 8px; }
.widget-search input {
  flex: 1;
  padding: 10px 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font: inherit;
}
.widget-search button {
  background: var(--primary);
  color: var(--white);
  border: none;
  border-radius: var(--radius-sm);
  padding: 0 14px;
  font-weight: 700;
}
.widget ul { display: flex; flex-direction: column; gap: 10px; }
.widget li a {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  font-size: 0.92rem;
  color: var(--text);
  padding: 4px 0;
}
.widget li a:hover { color: var(--secondary); }
.widget li a span.count {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-muted);
}
.widget-post { display: flex; flex-direction: column; gap: 2px; padding: 6px 0; border-bottom: 1px dashed var(--border); }
.widget-post:last-child { border-bottom: none; }
.widget-post a { font-weight: 600; font-size: 0.9rem; }
.widget-post time { font-family: var(--font-mono); font-size: 0.72rem; color: var(--text-muted); }

.widget-path li { display: flex; align-items: baseline; gap: 10px; }
.widget-path .path-num { font-size: 0.8rem; }

.widget-newsletter { background: var(--primary); color: var(--white); border: none; }
.widget-newsletter h4 { color: rgba(255,255,255,0.7); }
.widget-newsletter p { color: rgba(255,255,255,0.78); font-size: 0.9rem; }

/* -------------------------------------------------------------
   10. BLOG LISTING + PAGINATION
   ------------------------------------------------------------- */
.post-list { display: flex; flex-direction: column; gap: 22px; }
.post-card {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 22px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  transition: box-shadow 0.15s ease, transform 0.15s ease;
}
.post-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.post-thumb {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  min-height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  text-align: center;
  padding: 12px;
}
.post-body { padding: 22px 22px 22px 0; display: flex; flex-direction: column; }
.post-meta { display: flex; gap: 14px; flex-wrap: wrap; font-family: var(--font-mono); font-size: 0.75rem; color: var(--text-muted); margin-bottom: 10px; }
.post-body h3 { margin-bottom: 8px; }
.post-body h3 a:hover { color: var(--secondary); }
.post-excerpt { color: var(--text-muted); flex: 1; }
.post-card .card-link { align-self: flex-start; }

.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 40px;
}
.pagination a, .pagination span {
  min-width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0 12px;
}
.pagination a:hover { border-color: var(--secondary); color: var(--secondary); }
.pagination [aria-current="page"] { background: var(--primary); color: var(--white); border-color: var(--primary); }
.pagination .is-disabled { color: var(--border); border-color: var(--border); cursor: not-allowed; }

/* -------------------------------------------------------------
   11. BREADCRUMBS
   ------------------------------------------------------------- */
.breadcrumbs {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}
.breadcrumbs a { color: var(--text-muted); }
.breadcrumbs a:hover { color: var(--secondary); }
.breadcrumbs .sep { margin: 0 8px; color: var(--border); }
.breadcrumbs [aria-current="page"] { color: var(--text); font-weight: 600; }

/* -------------------------------------------------------------
   12. SINGLE ARTICLE
   ------------------------------------------------------------- */
.article-header { max-width: 760px; }
.article-meta { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; font-family: var(--font-mono); font-size: 0.8rem; color: var(--text-muted); margin: 14px 0 24px; }
.article-featured {
  height: 260px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 60%, var(--secondary) 140%);
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  font-family: var(--font-mono);
  font-size: 0.8rem;
}
.toc {
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  margin: 28px 0;
  max-width: 760px;
}
.toc h2 { font-size: 1rem; font-family: var(--font-mono); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 12px; }
.toc ol { list-style: decimal; padding-left: 1.2em; display: flex; flex-direction: column; gap: 6px; }
.toc a { color: var(--primary); font-weight: 600; }
.toc a:hover { color: var(--secondary); }

.article-body { max-width: 760px; }
.article-body h2 { margin-top: 2em; }
.article-body h3 { margin-top: 1.6em; }
.article-body ul, .article-body ol { padding-left: 1.4em; margin-bottom: 1.1em; }
.article-body li { margin-bottom: 0.4em; }

.callout {
  border-left: 4px solid var(--secondary);
  background: var(--light);
  padding: 16px 20px;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  margin: 1.6em 0;
}
.callout strong { display: block; margin-bottom: 4px; font-family: var(--font-mono); font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.05em; color: var(--secondary); }

.author-box {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 22px;
  margin: 40px 0;
  max-width: 760px;
}
.author-avatar {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; flex-shrink: 0;
}
.author-box h4 { margin-bottom: 4px; }
.author-box p { margin: 0; color: var(--text-muted); font-size: 0.92rem; }

.related { max-width: 760px; margin-top: 40px; }

/* -------------------------------------------------------------
   13. CATEGORY GRID
   ------------------------------------------------------------- */
.cat-card { text-align: left; }
.cat-count { font-family: var(--font-mono); font-size: 0.75rem; color: var(--text-muted); }

/* -------------------------------------------------------------
   14. CONTACT FORM
   ------------------------------------------------------------- */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; max-width: 640px; }
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field.full { grid-column: 1 / -1; }
.form-field label { font-weight: 600; font-size: 0.9rem; }
.form-field input,
.form-field textarea {
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font: inherit;
  color: var(--text);
}
.form-field input:focus,
.form-field textarea:focus { border-color: var(--secondary); }
.required { color: var(--secondary); }

.contact-info { display: flex; flex-direction: column; gap: 18px; }
.contact-info .card { padding: 20px; }

/* -------------------------------------------------------------
   15. FOOTER
   ------------------------------------------------------------- */
.site-footer { background: var(--primary); color: rgba(255,255,255,0.75); }
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr repeat(3, 1fr);
  gap: 40px;
  padding: 64px 0 32px;
}
.footer-brand p { color: rgba(255,255,255,0.6); max-width: 34ch; }
.footer-col h4 {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.5);
  margin-bottom: 16px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  flex-wrap: wrap;
  gap: 12px;
}

/* -------------------------------------------------------------
   16. PAGE HERO (non-home pages)
   ------------------------------------------------------------- */
.page-hero {
  background: var(--primary);
  color: var(--white);
  padding: 52px 0 60px;
}
.page-hero h1 { color: var(--white); margin-bottom: 10px; }
.page-hero .lede { color: rgba(255,255,255,0.75); max-width: 60ch; }
.page-hero .breadcrumbs { color: rgba(255,255,255,0.55); }
.page-hero .breadcrumbs a { color: rgba(255,255,255,0.72); }
.page-hero .breadcrumbs [aria-current="page"] { color: var(--white); }

/* -------------------------------------------------------------
   17. WORDPRESS COMPARISON NOTE
   ------------------------------------------------------------- */
.wp-note {
  border: 1px dashed var(--border);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  background: var(--white);
  margin: 1.6em 0;
  display: flex;
  gap: 12px;
}
.wp-note .wp-tag {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--white);
  background: #21759b;
  padding: 3px 8px;
  border-radius: var(--radius-sm);
  height: fit-content;
  white-space: nowrap;
}
.wp-note p { margin: 0; font-size: 0.92rem; color: var(--text-muted); }

/* -------------------------------------------------------------
   18. NOT-YET / PLACEHOLDER NOTICE (used on /blog/page/2/)
   ------------------------------------------------------------- */
.notice-panel {
  border: 2px dashed var(--border);
  border-radius: var(--radius-lg);
  padding: 48px;
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}
.notice-panel h1 { margin-bottom: 12px; }
.notice-panel p { color: var(--text-muted); }
