:root {
  --blue: #208de5;
  --blue-deep: #005799;
  --ink: #222;
  --ink-soft: #444;
  --muted: #666;
  --gold: #999;
  --rule: #e5e5e5;
  --rule-soft: #f0f0f0;
  --page-bg: #f5f5f5;
  --card-bg: #fff;
  --footer-bg: #141414;
  --menu-bg: #1a1a1a;
  --menu-hover: #2a2a2a;

  --font-body: "Rubik", "Noto Sans Devanagari", sans-serif;
  --font-display: "Poppins", "Noto Sans Devanagari", sans-serif;

  --container: 1170px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { font-size: 15px; }

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--ink);
  background: var(--page-bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a { color: var(--blue); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--blue-deep); }

img { max-width: 100%; height: auto; display: block; }

.skip-link { position: absolute; left: -9999px; top: auto; }
.skip-link:focus { left: 10px; top: 10px; background: #fff; padding: 8px 12px; z-index: 100000; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 15px;
}

/* ---- Header + ribbon ---- */
.site-header {
  background-color: #fff;
  background-position: top center;
  background-repeat: no-repeat;
  background-size: 100% auto;
  padding: 110px 0 24px;
  text-align: center;
  position: relative;
}

.site-header-inner {
  position: relative;
  z-index: 2;
}

.site-branding { padding: 0 15px; }

.site-title {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.3;
  text-transform: uppercase;
  margin: 0 0 6px;
  color: #020202;
  letter-spacing: 0.5px;
  word-wrap: break-word;
}
.site-title a, .site-title a:visited { color: #020202; }
.site-title a:hover { color: var(--blue); }

.site-description {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: #4d4d4d;
  text-transform: uppercase;
  margin: 0 0 18px;
  letter-spacing: 0.3px;
}

.header-rule {
  border: 0;
  border-top: 1px solid #d9d9d9;
  max-width: var(--container);
  width: calc(100% - 30px);
  margin: 0 auto;
}

/* ============================================================
   Navigation — responsive:
   - ≥980px: inline horizontal bar, visible by default, hamburger hidden
   - <980px: hamburger button, dark slide-in overlay panel
   ============================================================ */
.main-navigation {
  padding: 14px 0 10px;
  text-align: center;
  background: #fff;
}

.toggle-menu-control {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  border: 1px solid var(--rule);
  padding: 12px 28px;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  text-transform: uppercase;
  color: #141414;
  cursor: pointer;
  letter-spacing: 1.5px;
  border-radius: 2px;
  transition: all .2s ease;
}
.toggle-menu-control::before {
  content: "";
  width: 16px; height: 12px;
  background:
    linear-gradient(to bottom, currentColor 2px, transparent 2px, transparent 5px,
    currentColor 5px, currentColor 7px, transparent 7px, transparent 10px,
    currentColor 10px, currentColor 12px);
}
.toggle-menu-control:hover { color: var(--blue); border-color: var(--blue); }

.menu-close {
  position: absolute;
  top: 10px; right: 12px;
  width: 32px; height: 32px;
  background: transparent;
  color: #fff;
  border: 0;
  font-size: 1.5rem;
  cursor: pointer;
  line-height: 1;
}

.menu-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
  z-index: 9998;
}
.menu-backdrop.is-open { opacity: 1; pointer-events: auto; }

.site-header-menu { list-style: none; margin: 0; padding: 0; }

/* Mobile: slide-in dark overlay */
@media (max-width: 979px) {
  .site-header-menu-panel {
    position: fixed;
    top: 0; left: 0; bottom: 0;
    width: 280px;
    background: var(--menu-bg);
    transform: translateX(-100%);
    transition: transform .3s ease;
    z-index: 9999;
    padding: 48px 0 32px;
    overflow-y: auto;
  }
  .site-header-menu-panel.is-open { transform: translateX(0); }
  .site-header-menu li { position: relative; }
  .site-header-menu a {
    display: block;
    padding: 12px 20px;
    color: #e5e5e5;
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 1px solid rgba(255,255,255,0.07);
  }
  .site-header-menu a:hover,
  .site-header-menu li.is-current > a {
    background: var(--menu-hover);
    color: #fff;
    padding-left: 24px;
  }
  .site-header-menu .children {
    list-style: none;
    background: rgba(0,0,0,0.3);
    margin: 0; padding: 0;
  }
  .site-header-menu .children a {
    padding-left: 36px;
    font-size: 0.88rem;
    text-transform: none;
    letter-spacing: 0.3px;
    color: #c5c5c5;
  }
  .site-header-menu .dropdown-toggle {
    position: absolute; right: 0; top: 0;
    width: 44px; height: 44px;
    background: transparent; border: 0;
    color: #aaa; cursor: pointer; font-size: 0.9rem;
  }
  .site-header-menu .dropdown-toggle::after { content: "▾"; }
  .site-header-menu li.is-open > .dropdown-toggle::after { content: "▴"; }
  .site-header-menu li:not(.is-open) > .children { display: none; }
}

/* Desktop: inline horizontal nav bar, hamburger hidden, overlay neutralized */
@media (min-width: 980px) {
  .toggle-menu-control, .menu-close { display: none; }
  .menu-backdrop { display: none; }
  .site-header-menu-panel {
    position: static;
    background: transparent;
    transform: none !important;
    width: 100%;
    padding: 0;
    overflow: visible;
  }
  .site-header-menu {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2px 28px;
  }
  .site-header-menu > li {
    position: relative;
  }
  .site-header-menu a {
    display: inline-block;
    padding: 10px 0;
    color: #141414;
    font-family: var(--font-display);
    font-size: 0.92rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.4;
  }
  .site-header-menu a:hover,
  .site-header-menu li.is-current > a {
    color: var(--blue);
  }
  .site-header-menu .dropdown-toggle {
    background: transparent; border: 0;
    color: #666;
    padding: 0 0 0 4px;
    cursor: pointer;
    font-size: 0.75rem;
    vertical-align: middle;
  }
  .site-header-menu .dropdown-toggle::after { content: "▾"; }
  .site-header-menu > li.has-children:hover .children,
  .site-header-menu > li.has-children:focus-within .children {
    display: block;
  }
  .site-header-menu .children {
    display: none;
    position: absolute;
    top: 100%; left: 50%;
    transform: translateX(-50%);
    background: #fff;
    border: 1px solid var(--rule);
    border-radius: 2px;
    padding: 8px 0;
    min-width: 220px;
    list-style: none;
    box-shadow: 0 6px 16px rgba(0,0,0,0.1);
    z-index: 200;
    margin: 0;
  }
  .site-header-menu .children li { border: 0; }
  .site-header-menu .children a {
    display: block;
    padding: 6px 18px;
    font-size: 0.88rem;
    font-weight: 500;
    text-transform: none;
    color: var(--ink-soft);
    white-space: nowrap;
    letter-spacing: 0.2px;
  }
  .site-header-menu .children a:hover { color: var(--blue); background: var(--rule-soft); }
}

/* ---- Main content area ---- */
.site-content {
  padding: 24px 0 48px;
}

.site-content-wrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 980px) {
  .site-content-wrap {
    grid-template-columns: minmax(0, 1fr) 300px;
    gap: 30px;
  }
}

.site-content-main { min-width: 0; }

.site-content-inside {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

/* ---- Sidebar ---- */
.sidebar-widget {
  background: var(--card-bg);
  border: 1px solid var(--rule);
  border-radius: 3px;
  padding: 20px 22px;
}
.sidebar-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--ink);
  margin: 0 0 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--rule);
}
.sidebar-menu, .sidebar-children {
  list-style: none;
  padding: 0; margin: 0;
}
.sidebar-menu > li { position: relative; border-bottom: 1px solid var(--rule-soft); }
.sidebar-menu > li:last-child { border-bottom: none; }
.sidebar-menu a {
  display: block;
  padding: 10px 0;
  color: var(--ink-soft);
  font-size: 0.95rem;
  font-family: var(--font-body);
  text-transform: none;
  letter-spacing: 0;
}
.sidebar-menu a:hover { color: var(--blue); }
.sidebar-menu li.is-current > a { color: var(--blue); font-weight: 600; }
.sidebar-toggle {
  position: absolute;
  top: 6px; right: 0;
  width: 24px; height: 24px;
  background: transparent;
  border: 0;
  color: var(--muted);
  font-size: 1.2rem;
  cursor: pointer;
  line-height: 1;
}
.sidebar-menu .sidebar-children { padding-left: 14px; border-left: 1px solid var(--rule); margin: 2px 0 8px; }
.sidebar-menu .sidebar-children a { padding: 6px 0; font-size: 0.9rem; color: var(--muted); }
.sidebar-menu li:not(.is-open) > .sidebar-children { display: none; }

/* ---- Post cards (homepage + section feeds) ---- */
.post-card {
  background: var(--card-bg);
  border: 1px solid var(--rule);
  border-radius: 3px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}
.post-card-media {
  background: var(--rule-soft);
  overflow: hidden;
  aspect-ratio: 4 / 3;
}
.post-card-media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .4s ease;
}
.post-card:hover .post-card-media img { transform: scale(1.04); }
.post-card-body {
  padding: 20px 24px 22px;
}
.post-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  align-items: center;
  font-size: 0.82rem;
  color: var(--blue);
  margin-bottom: 10px;
}
.post-meta a { color: var(--blue); }
.post-meta .meta-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.post-meta .meta-item::before {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
}
.post-meta .meta-date::before    { content: "📅"; }
.post-meta .meta-section::before { content: "📁"; }

.post-card-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 10px;
  color: #141414;
}
.post-card-title a, .post-card-title a:visited { color: #141414; }
.post-card-title a:hover { color: var(--blue); }

.post-card-excerpt {
  color: var(--ink-soft);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 16px;
}

.btn-read-more {
  display: inline-block;
  padding: 11px 28px;
  background: var(--ink);
  color: #fff !important;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: capitalize;
  letter-spacing: 0.5px;
  border-radius: 999px;
  transition: background .2s ease;
}
.btn-read-more:hover { background: var(--blue); color: #fff !important; }

/* Side-by-side layout on wider screens */
@media (min-width: 768px) {
  .post-card { grid-template-columns: 1fr 300px; }
  .post-card-media { aspect-ratio: auto; }
  .post-card-body { padding: 24px 28px; }
}
@media (min-width: 1024px) {
  .post-card { grid-template-columns: 1fr 360px; }
}

/* ---- Single article ---- */
.article {
  background: var(--card-bg);
  border: 1px solid var(--rule);
  border-radius: 3px;
  padding: 28px 32px 40px;
  max-width: var(--container);
  margin: 0 auto;
}
.article-header {
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--rule);
}
.article-title {
  font-family: var(--font-display);
  font-size: 1.85rem;
  font-weight: 700;
  line-height: 1.3;
  color: #141414;
  margin-bottom: 10px;
}

.article-body {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--ink-soft);
}
.article-body p { margin: 0 0 1.1em; }
.article-body h1, .article-body h2, .article-body h3, .article-body h4 {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--ink);
  margin: 1.4em 0 0.5em;
  line-height: 1.3;
}
.article-body h2 { font-size: 1.5rem; }
.article-body h3 { font-size: 1.25rem; }
.article-body h4 { font-size: 1.1rem; }
.article-body a { color: var(--blue); border-bottom: 1px solid transparent; }
.article-body a:hover { border-bottom-color: var(--blue); }
.article-body img {
  margin: 1.3em auto;
  max-width: 100%;
  height: auto;
}
.article-body figure { margin: 1.4em auto; text-align: center; }
.article-body figcaption {
  font-size: 0.9rem;
  color: var(--muted);
  font-style: italic;
  margin-top: 8px;
}
.article-body blockquote {
  border-left: 3px solid var(--blue);
  padding: 6px 18px;
  margin: 1.2em 0;
  color: var(--muted);
  font-style: italic;
}
.article-body ul, .article-body ol { margin: 0 0 1.1em 1.5em; }
.article-body li { margin-bottom: 0.4em; }

/* ---- WP Gutenberg gallery block (wp-block-gallery) -------------------- */
.article-body .wp-block-gallery {
  margin: 1.5em 0;
  padding: 0;
  display: block;
}
.article-body .wp-block-gallery .blocks-gallery-grid,
.article-body .wp-block-gallery > ul {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.article-body .wp-block-gallery .blocks-gallery-item,
.article-body .wp-block-gallery > ul > li {
  list-style: none;
  margin: 0;
  padding: 0;
  flex: 1 1 calc(33.333% - 8px);
  min-width: 0;
}
/* Column count modifiers */
.article-body .wp-block-gallery.columns-1 .blocks-gallery-item,
.article-body .wp-block-gallery.columns-1 > ul > li { flex-basis: 100%; }
.article-body .wp-block-gallery.columns-2 .blocks-gallery-item,
.article-body .wp-block-gallery.columns-2 > ul > li { flex-basis: calc(50% - 4px); }
.article-body .wp-block-gallery.columns-3 .blocks-gallery-item,
.article-body .wp-block-gallery.columns-3 > ul > li { flex-basis: calc(33.333% - 6px); }
.article-body .wp-block-gallery.columns-4 .blocks-gallery-item,
.article-body .wp-block-gallery.columns-4 > ul > li { flex-basis: calc(25% - 6px); }
.article-body .wp-block-gallery.columns-5 .blocks-gallery-item,
.article-body .wp-block-gallery.columns-5 > ul > li { flex-basis: calc(20% - 7px); }
.article-body .wp-block-gallery.columns-6 .blocks-gallery-item,
.article-body .wp-block-gallery.columns-6 > ul > li { flex-basis: calc(16.666% - 7px); }
.article-body .wp-block-gallery .blocks-gallery-item figure,
.article-body .wp-block-gallery > ul > li figure { margin: 0; }
.article-body .wp-block-gallery img { display: block; width: 100%; height: 100%; object-fit: cover; }
.article-body .wp-block-gallery.is-cropped .blocks-gallery-item img,
.article-body .wp-block-gallery.is-cropped > ul > li img {
  aspect-ratio: 1 / 1;
}

/* ---- WP classic [gallery] shortcode (.gallery.gallery-columns-N) ----- */
.article-body .gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 1.5em 0;
  padding: 0;
}
.article-body .gallery::after { content: none; }
.article-body .gallery-item {
  list-style: none;
  margin: 0 !important;
  padding: 0;
  text-align: center;
  flex: 1 1 calc(33.333% - 8px);
}
.article-body .gallery-columns-1 .gallery-item { flex-basis: 100%; }
.article-body .gallery-columns-2 .gallery-item { flex-basis: calc(50% - 4px); }
.article-body .gallery-columns-3 .gallery-item { flex-basis: calc(33.333% - 6px); }
.article-body .gallery-columns-4 .gallery-item { flex-basis: calc(25% - 6px); }
.article-body .gallery-columns-5 .gallery-item { flex-basis: calc(20% - 7px); }
.article-body .gallery-columns-6 .gallery-item { flex-basis: calc(16.666% - 7px); }
.article-body .gallery-columns-7 .gallery-item { flex-basis: calc(14.285% - 7px); }
.article-body .gallery-columns-8 .gallery-item { flex-basis: calc(12.5% - 7px); }
.article-body .gallery-icon { overflow: hidden; }
.article-body .gallery-icon img {
  width: 100%;
  height: auto;
  display: block;
  max-width: 100% !important;
}
.article-body .gallery-caption {
  font-size: 0.82rem;
  color: var(--muted);
  margin-top: 4px;
  font-style: italic;
}

/* ---- WP classic image captions (.wp-caption) ------------------------- */
.article-body .wp-caption {
  max-width: 100%;
  margin: 1.2em auto;
  padding: 0;
  text-align: center;
}
.article-body .wp-caption img { margin: 0 auto; display: block; }
.article-body .wp-caption-text,
.article-body .wp-caption-dd {
  font-size: 0.9rem;
  color: var(--muted);
  font-style: italic;
  margin-top: 6px;
  padding: 0 6px;
}
.article-body .wp-caption dl { margin: 0; }
.article-body .wp-caption dt { margin: 0; }

/* ---- Classic align helpers ------------------------------------------ */
.article-body .aligncenter { display: block; margin-left: auto; margin-right: auto; text-align: center; }
.article-body .alignleft   { float: left; margin: 0 1em 0.5em 0; }
.article-body .alignright  { float: right; margin: 0 0 0.5em 1em; }
.article-body .alignwide,
.article-body .alignfull   { margin-left: auto; margin-right: auto; }
.article-body figure.alignleft, .article-body figure.alignright { max-width: 50%; }

/* Force items in grid not to float (overrides aligncenter on li) */
.article-body .wp-block-gallery .blocks-gallery-item.aligncenter,
.article-body .gallery-item.aligncenter { float: none; }

/* Responsive: drop to 2 cols on tablet, 1 on phone */
@media (max-width: 820px) {
  .article-body .wp-block-gallery.columns-3 .blocks-gallery-item,
  .article-body .wp-block-gallery.columns-3 > ul > li,
  .article-body .wp-block-gallery.columns-4 .blocks-gallery-item,
  .article-body .wp-block-gallery.columns-4 > ul > li,
  .article-body .gallery-columns-3 .gallery-item,
  .article-body .gallery-columns-4 .gallery-item {
    flex-basis: calc(50% - 4px);
  }
}
@media (max-width: 520px) {
  .article-body .wp-block-gallery .blocks-gallery-item,
  .article-body .wp-block-gallery > ul > li,
  .article-body .gallery-item {
    flex-basis: 100% !important;
  }
}

/* ---- Section page header variant ---- */
.article-header-centered { text-align: center; padding-bottom: 0; border-bottom: 0; }
.article-header-centered .article-title { margin-bottom: 16px; }
.article-body ul, .article-body ol { margin: 0 0 1.2em 1.6em; }
.article-body ul { list-style: disc outside; }
.article-body ol { list-style: decimal outside; }
.article-body ul li, .article-body ol li { text-align: left; }

/* ---- Comments ---- */
.comments {
  max-width: var(--container);
  margin: 32px auto 0;
  background: var(--card-bg);
  border: 1px solid var(--rule);
  border-radius: 3px;
  padding: 24px 32px;
}
.comments-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.comments-count { color: var(--muted); font-weight: 400; margin-left: 6px; }
.comments-list { list-style: none; padding: 0; margin: 0; }
.comment {
  padding: 16px 0;
  border-bottom: 1px solid var(--rule-soft);
}
.comment:last-child { border-bottom: none; }
.comment-head { display: flex; gap: 10px; align-items: baseline; font-size: 0.85rem; color: var(--muted); margin-bottom: 6px; }
.comment-author { color: var(--blue); font-weight: 600; }
.comment-dot { color: var(--rule); }
.comment-body { color: var(--ink-soft); }
.comment-body p { margin: 0 0 0.6em; }
.comment-body p:last-child { margin: 0; }

/* ---- Footer ---- */
.site-footer {
  background: var(--footer-bg);
  color: #bbb;
  padding: 26px 0;
  text-align: center;
  font-size: 0.88rem;
}
.site-footer a { color: #ddd; }
.site-footer a:hover { color: var(--blue); }

/* ---- Responsive ---- */
@media (max-width: 767px) {
  html { font-size: 14.5px; }
  .site-header { padding: 80px 0 18px; }
  .site-title { font-size: 1.55rem; }
  .site-description { font-size: 0.85rem; }
  .article { padding: 20px 18px; }
  .comments { padding: 18px 20px; }
  .toggle-menu-control { padding: 11px 22px; font-size: 0.88rem; }
}

/* ---- Contact form (admin form module) ---- */
.contact-form-wrap { margin: 26px 0 8px; }
.contact-form {
  display: grid;
  gap: 14px;
  max-width: 620px;
  margin: 0 auto;
}
.cf-row { display: flex; flex-direction: column; gap: 6px; }
.cf-row label {
  font-weight: 600;
  font-size: 0.92rem;
  color: #333;
}
.cf-row label .req { color: #c00; }
.cf-row input[type="text"],
.cf-row input[type="email"],
.cf-row textarea {
  font: inherit;
  padding: 10px 12px;
  border: 1px solid #cfd3d7;
  border-radius: 4px;
  background: #fff;
  color: #222;
  width: 100%;
  box-sizing: border-box;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.cf-row input:focus,
.cf-row textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(32,141,229,0.18);
}
.cf-row textarea { min-height: 150px; resize: vertical; }
.cf-actions { text-align: left; margin-top: 4px; }
.cf-submit {
  background: var(--blue);
  color: #fff;
  border: 0;
  padding: 11px 26px;
  font: 600 0.95rem/1 'Rubik', system-ui, sans-serif;
  letter-spacing: 0.3px;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.15s, transform 0.06s;
}
.cf-submit:hover  { background: #1775c0; }
.cf-submit:active { transform: translateY(1px); }
.cf-submit:disabled,
.cf-submit.is-loading {
  opacity: 0.6;
  cursor: progress;
  transform: none;
}
.cf-submit.is-loading::after {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  margin-left: 8px;
  border: 2px solid rgba(255,255,255,0.45);
  border-top-color: #fff;
  border-radius: 50%;
  vertical-align: -1px;
  animation: cf-spin 0.7s linear infinite;
}
@keyframes cf-spin { to { transform: rotate(360deg); } }
.hp-field {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.cf-status {
  margin: 14px 0 0;
  padding: 0;
  font-size: 0.95rem;
  min-height: 1.5em;
}
.cf-status-ok  { color: #0b7a36; font-weight: 600; }
.cf-status-err { color: #c23616; font-weight: 600; }

/* ---- Comment form ---- */
.comments .comment-form {
  margin-top: 22px; padding-top: 22px;
  border-top: 1px solid #e4e7ea;
  display: grid; gap: 14px;
}
.comments .comment-form-title {
  font-size: 1.05rem; color: #333; margin: 0 0 4px;
}
.form-hint-inline { font-weight: 400; color: #888; font-size: 0.82em; }
.comment-cf-status { margin-top: 10px; }

/* ---- Image zoom affordance ---- */
.article-body a.img-zoom { display: inline-block; cursor: zoom-in; border: 0; }
.article-body a.img-zoom img { transition: opacity 0.15s; }
.article-body a.img-zoom:hover img { opacity: 0.85; }
