/*
Theme Name: SarkariChatra
Theme URI: https://sarkarichatra.com
Author: SarkariChatra
Author URI: https://sarkarichatra.com
Description: SarkariChatra – Sarkari Result, Admit Card, Latest Jobs & Answer Key
Version: 2.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: sarkarichatra
Tags: news, blog, government, jobs, results
*/

:root {
  --navy: #1a2547;
  --navy-dark: #111c3a;
  --yellow: #f5c518;
  --yellow-dark: #ddb111;
  --green: #2e7d32;
  --red: #c62828;
  --orange: #e65100;
  --white: #ffffff;
  --light-bg: #f4f6fb;
  --text: #1a2547;
  --muted: #6b7694;
  --border: #e5eaf5;
  --radius: 10px;
  --max-w: 1200px;
  --header-offset: 150px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Noto Sans', sans-serif;
  background: var(--light-bg);
  color: var(--text);
  font-size: 14px;
  line-height: 1.6;
  padding-top: var(--header-offset);
}
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
img { max-width: 100%; height: auto; }
.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 60%, #223b7f 100%);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.18);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.site-header.header-hidden { transform: translateY(calc(-100% - 10px)); }
.site-header.header-scrolled { box-shadow: 0 12px 30px rgba(0, 0, 0, 0.22); }

.header-top {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 14px 16px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 18px;
  align-items: center;
}
.social-btns { display: flex; gap: 8px; flex-wrap: wrap; }
.btn-wa, .btn-tg {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  padding: 8px 14px;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.btn-wa { background: #25D366; }
.btn-tg { background: #0088cc; }
.btn-wa:hover, .btn-tg:hover { transform: translateY(-2px); box-shadow: 0 6px 18px rgba(0, 0, 0, 0.22); }

.logo-block {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-width: 0;
}
.logo-custom img,
.custom-logo-link img { display: block; max-height: 60px; width: auto; }
.logo-circle, .logo-circle-sm {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--yellow);
  color: var(--navy-dark);
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  box-shadow: 0 0 0 4px rgba(245, 197, 24, 0.18);
}
.logo-name {
  display: flex;
  flex-direction: column;
  font-family: 'Poppins', sans-serif;
  min-width: 0;
}
.logo-name .s1 {
  color: #fff;
  font-size: 24px;
  font-weight: 800;
  line-height: 1.1;
}
.logo-name .tagline {
  color: rgba(255,255,255,0.7);
  font-size: 12px;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.header-search-wrap { width: 100%; max-width: 320px; justify-self: end; }
.search-box {
  display: flex;
  align-items: stretch;
  width: 100%;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 999px;
  overflow: hidden;
}
.search-box input {
  flex: 1;
  min-width: 0;
  border: 0;
  outline: 0;
  padding: 11px 15px;
  background: transparent;
  color: #fff;
}
.search-box input::placeholder { color: rgba(255,255,255,0.6); }
.search-box button {
  border: 0;
  background: var(--yellow);
  color: var(--navy-dark);
  padding: 0 15px;
  font-size: 15px;
  cursor: pointer;
  font-weight: 700;
}
.search-box:focus-within { border-color: var(--yellow); }

.main-nav {
  background: rgba(255,255,255,0.06);
  border-top: 1px solid rgba(255,255,255,0.1);
}
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  gap: 2px;
  overflow-x: auto;
  scrollbar-width: none;
}
.nav-inner::-webkit-scrollbar { display: none; }
.nav-inner a {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  padding: 13px 16px;
  color: rgba(255,255,255,0.82);
  border-bottom: 3px solid transparent;
  font-size: 13px;
  font-weight: 600;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.nav-inner a:hover,
.nav-inner a.current-menu-item,
.nav-inner a.current_page_item,
.nav-inner a.active {
  color: #fff;
  background: rgba(255,255,255,0.08);
  border-bottom-color: var(--yellow);
}

.page-wrap {
  max-width: var(--max-w);
  margin: 24px auto;
  padding: 0 16px;
}
.hero-panel {
  background: linear-gradient(135deg, #ffffff 0%, #f7f9ff 100%);
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: 0 8px 28px rgba(26,37,71,0.08);
  padding: 26px;
  margin-bottom: 22px;
  display: flex;
  gap: 20px;
  justify-content: space-between;
  align-items: center;
}
.eyebrow {
  margin: 0 0 8px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--red);
  font-weight: 700;
  font-size: 12px;
}
.hero-panel h1 {
  margin: 0 0 8px;
  font-family: 'Poppins', sans-serif;
  font-size: 32px;
  line-height: 1.15;
}
.hero-panel p { margin: 0; color: var(--muted); max-width: 680px; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 140px;
  padding: 12px 18px;
  border-radius: 999px;
  background: #fff;
  color: var(--navy);
  border: 1px solid var(--border);
  font-weight: 700;
}
.hero-btn.primary {
  background: linear-gradient(90deg, var(--navy-dark), var(--navy));
  color: #fff;
  border-color: transparent;
}

.ad-strip,
.empty-state,
.post-section,
.cat-box,
.sidebar-widget,
.single-content {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 4px 16px rgba(26,37,71,0.06);
}
.ad-strip {
  text-align: center;
  padding: 18px;
  color: #8290b4;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  margin-bottom: 22px;
}

.cat-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 24px;
}
.cat-box { overflow: hidden; }
.cat-head,
.section-head,
.widget-head {
  background: linear-gradient(90deg, var(--navy-dark), var(--navy));
  color: #fff;
}
.cat-head {
  padding: 14px 16px;
  text-align: center;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 15px;
}
.cat-list li { border-bottom: 1px solid #eef2fb; }
.cat-list li:last-child { border-bottom: 0; }
.cat-list:empty::before {
  content: attr(data-empty-text);
  display: block;
  padding: 14px;
  color: var(--muted);
}
.cat-list li a {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 14px;
}
.cat-title-text { flex: 1; line-height: 1.45; }
.cat-list li a:hover .cat-title-text { color: #1565c0; }
.cb,
.badge {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 3px 9px;
  border-radius: 999px;
  font-size: 10px;
  text-transform: uppercase;
  font-weight: 800;
}
.cb-new, .b-new { background: #ffe2e2; color: var(--red); }
.cb-out, .b-out { background: #dff6e4; color: var(--green); }
.cb-soon, .b-soon { background: #ffebd8; color: var(--orange); }
.badge-count { background: #e8eefc; color: var(--navy); }
.cat-footer {
  padding: 12px 14px 14px;
  background: #f9fbff;
  border-top: 1px solid #eef2fb;
  text-align: center;
}
.cat-footer a,
.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 800;
  background: linear-gradient(90deg, var(--navy-dark), var(--navy));
  color: #fff;
}

.cat-editor {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 100px;
  gap: 10px;
  padding: 12px 14px;
  background: #f9fbff;
  border-top: 1px solid #eef2fb;
  border-bottom: 1px solid #eef2fb;
}

.cat-editor input,
.cat-editor button {
  min-width: 0;
  border: 1px solid #d9e2f3;
  border-radius: 10px;
  padding: 10px 12px;
  font: inherit;
}

.cat-editor input:focus {
  outline: none;
  border-color: #1976ec;
  box-shadow: 0 0 0 3px rgba(25, 118, 236, 0.12);
}

.cat-editor button {
  background: #1976ec;
  color: #fff;
  font-weight: 700;
  cursor: pointer;
}

.cat-remove {
  border: 0;
  background: transparent;
  color: #c62828;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  padding: 0 14px 10px;
}

.post-section { margin-bottom: 22px; overflow: hidden; }
.section-head {
  padding: 14px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.section-head h1,
.section-head h2 {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  line-height: 1.25;
}
.view-all,
.archive-count { color: rgba(255,255,255,0.82); font-size: 12px; font-weight: 700; }
.archive-description {
  padding: 16px;
  border-bottom: 1px solid #eef2fb;
  color: var(--muted);
}
.post-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  border-bottom: 1px solid #eef2fb;
}
.post-list li:last-child { border-bottom: 0; }
.post-list li:hover { background: #fafcff; }
.post-list-main { flex: 1; min-width: 0; }
.post-link {
  display: inline-block;
  color: var(--text);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.45;
}
.post-link:hover { color: #1565c0; }
.post-list-meta {
  margin-top: 4px;
  font-size: 12px;
  color: var(--muted);
}

.single-wrap {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 20px;
}
.single-content { padding: 26px; min-width: 0; }
.article-card h1 {
  margin: 0 0 10px;
  font-family: 'Poppins', sans-serif;
  font-size: 30px;
  line-height: 1.2;
}
.breadcrumb {
  margin-bottom: 12px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}
.post-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 12px;
}
.featured-media {
  margin-bottom: 18px;
  overflow: hidden;
  border-radius: 12px;
}
.featured-media img { display: block; width: 100%; }
.post-body { color: #28304d; font-size: 15px; }
.post-body > *:first-child { margin-top: 0; }
.post-body h2,
.post-body h3,
.post-body h4 {
  font-family: 'Poppins', sans-serif;
  color: var(--navy);
  margin: 24px 0 10px;
}
.post-body table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0;
}
.post-body th,
.post-body td {
  border: 1px solid var(--border);
  padding: 10px 12px;
  text-align: left;
}
.post-body th { background: #f5f8ff; }
.tags-wrap {
  margin-top: 24px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  color: var(--muted);
}

.sidebar {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.widget-head {
  padding: 12px 14px;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 14px;
}
.sidebar-widget .post-list li { padding: 12px 14px; }
.sidebar-widget .search-box {
  margin: 14px;
  border-radius: 12px;
  background: #f6f8ff;
  border-color: var(--border);
}
.sidebar-widget .search-box input { color: var(--text); }
.sidebar-widget .search-box input::placeholder { color: #8c98b5; }

.site-footer {
  margin-top: 42px;
  background: linear-gradient(135deg, var(--navy-dark), #0d1732);
  color: rgba(255,255,255,0.8);
}
.footer-top {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 40px 16px 28px;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 28px;
}
.footer-brand .f-name {
  margin: 12px 0 8px;
  font-family: 'Poppins', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: #fff;
}
.footer-brand p { margin: 0 0 14px; color: rgba(255,255,255,0.62); }
.f-social { display: flex; gap: 10px; flex-wrap: wrap; }
.f-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.15);
  color: #fff;
  font-weight: 800;
}
.footer-col h4 {
  margin: 0 0 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  color: var(--yellow);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.footer-col ul li { margin-bottom: 8px; }
.footer-col a { color: rgba(255,255,255,0.72); }
.footer-col a:hover { color: #fff; }
.footer-divider {
  border: 0;
  border-top: 1px solid rgba(255,255,255,0.09);
  margin: 0;
}
.footer-bottom {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}
.footer-bottom p { margin: 0; font-size: 12px; }
.footer-bottom p span { color: var(--yellow); }
.footer-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-links li { list-style: none; }
.footer-links a { font-size: 12px; color: rgba(255,255,255,0.7); }

.empty-state {
  padding: 50px 20px;
  text-align: center;
}
.empty-state-icon { font-size: 60px; margin-bottom: 12px; }
.empty-state h1 { margin: 0 0 8px; font-family: 'Poppins', sans-serif; }
.empty-state p { margin: 0 0 18px; color: var(--muted); }

@media (max-width: 991px) {
  .header-top { grid-template-columns: 1fr; justify-items: center; text-align: center; }
  .header-search-wrap { justify-self: center; max-width: 100%; }
  .logo-name .tagline { white-space: normal; }
  .cat-grid,
  .footer-top,
  .single-wrap { grid-template-columns: 1fr 1fr; }
  .single-wrap { grid-template-columns: 1fr; }
  .hero-panel { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 767px) {
  :root { --header-offset: 200px; }
  .cat-grid,
  .footer-top { grid-template-columns: 1fr; }
  .cat-editor { grid-template-columns: 1fr; }
  .page-wrap { margin-top: 18px; }
  .hero-panel { padding: 20px; }
  .hero-panel h1,
  .article-card h1 { font-size: 24px; }
  .section-head,
  .post-list li,
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .footer-bottom { align-items: center; text-align: center; }
  .post-list li { align-items: flex-start; }
}

@media (max-width: 520px) {
  :root { --header-offset: 230px; }
  .btn-wa span:last-child,
  .btn-tg span:last-child { display: none; }
  .btn-wa,
  .btn-tg { padding: 10px 12px; }
  .logo-name .s1 { font-size: 20px; }
  .section-head h1,
  .section-head h2 { font-size: 16px; }
  .single-content { padding: 18px; }
}

/* Header redesign requested by user */
:root {
  --brand-blue: #182345;
  --brand-blue-deep: #182345;
  --brand-red: #eb0909;
  --brand-yellow: #ffd41f;
  --header-offset: 285px;
}

body {
  padding-top: var(--header-offset);
}

.site-header.sc-header-v2 {
  background: transparent;
  box-shadow: none;
}

.site-header.sc-header-v2.header-scrolled {
  box-shadow: none;
}

.header-brand-band {
  background: #182345;
  padding: 28px 16px 24px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.22);
}

.brand-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: center !important;
  align-items: center !important;
  text-align: center;
  width: 100%;
}

.sc-header-v2 .logo-block {
  display: flex !important;
  flex-direction: column !important;
  gap: 6px;
  align-items: center !important;
  justify-content: center !important;
  width: 100%;
  margin: 0 auto;
  text-align: center;
}

.logo-emblem {
  width: 124px;
  height: 124px;
  background: #fff;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 14px 24px rgba(0,0,0,0.28);
  border: 4px solid rgba(0,0,0,0.12);
  flex: 0 0 auto;
}

.logo-emblem-inner {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: linear-gradient(180deg, #ffffff 0%, #f0f0f0 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #000;
  line-height: 1;
}

.logo-sc {
  font-family: 'Poppins', sans-serif;
  font-size: 40px;
  font-weight: 800;
  color: #ff6d3a;
  letter-spacing: 0.04em;
}

.logo-sub {
  margin-top: 4px;
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.05;
  color: #111;
}

.sc-header-v2 .logo-name {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  width: 100%;
  text-align: center;
}

.sc-header-v2 .logo-name .s1 {
  font-family: 'Arial Narrow', 'Roboto Condensed', 'Poppins', sans-serif;
  font-size: 74px;
  font-weight: 800;
  color: #fff;
  text-transform: none;
  letter-spacing: -0.03em;
  text-shadow: 0 4px 12px rgba(0,0,0,0.22);
}

.tagline-row {
  position: relative;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 12px;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  margin-top: 8px;
}

.tagline-row::before,
.tagline-row::after {
  content: '';
  width: 18px;
  height: 18px;
  background: var(--brand-yellow);
  transform: rotate(45deg);
  border-radius: 3px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.15);
}

.tagline-text {
  display: inline-flex;
  align-items: center;
  color: var(--brand-yellow);
  font-size: 30px;
  font-weight: 800;
  font-family: 'Noto Sans', sans-serif;
  line-height: 1.15;
  position: relative;
  padding-bottom: 8px;
}

.tagline-text::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 5px;
  border-radius: 999px;
  background: var(--brand-yellow);
}

.sc-header-v2 .main-nav {
  background: var(--brand-red);
  border-top: 0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.14);
}

.sc-header-v2 .nav-inner {
  max-width: 1400px;
  padding: 0;
  justify-content: center;
  gap: 0;
}

.sc-header-v2 .nav-inner a {
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  padding: 10px 16px;
  border-bottom: 0;
  position: relative;
}

.sc-header-v2 .nav-inner a::after {
  content: '';
  position: absolute;
  right: 0;
  top: 26%;
  height: 48%;
  width: 1px;
  background: rgba(255,255,255,0.9);
}

.sc-header-v2 .nav-inner a:last-child::after {
  display: none;
}

.sc-header-v2 .nav-inner a:hover,
.sc-header-v2 .nav-inner a.active,
.sc-header-v2 .nav-inner .current-menu-item > a,
.sc-header-v2 .nav-inner .current_page_item > a {
  background: rgba(255,255,255,0.08);
  color: #fff;
}

.header-search-strip {
  background: #f1f1f1;
  padding: 10px 16px 12px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.8);
}

.sc-header-v2 .header-search-wrap {
  max-width: 1520px;
  margin: 0 auto;
  width: 100%;
}

.sc-header-v2 .search-box {
  background: #ececef;
  border: 1px solid #d1d1d7;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(0,0,0,0.12);
}

.sc-header-v2 .search-box input {
  color: #666;
  font-size: 19px;
  padding: 12px 18px;
  background: transparent;
}

.sc-header-v2 .search-box input::placeholder {
  color: #9d9d9d;
}

.sc-header-v2 .search-box button {
  min-width: 96px;
  background: #1976ec;
  color: #fff;
  font-size: 24px;
  font-weight: 700;
}

@media (max-width: 1100px) {
  :root { --header-offset: 240px; }
  .sc-header-v2 .logo-name .s1 { font-size: 52px; }
  .tagline-text { font-size: 21px; }
  .logo-emblem { width: 96px; height: 96px; }
  .logo-emblem-inner { width: 76px; height: 76px; }
  .logo-sc { font-size: 31px; }
  .sc-header-v2 .nav-inner a { font-size: 15px; padding: 9px 14px; }
  .sc-header-v2 .search-box input { font-size: 16px; padding: 11px 16px; }
}

@media (max-width: 768px) {
  :root { --header-offset: 212px; }
  .header-brand-band { padding: 20px 10px 18px; }
  .sc-header-v2 .logo-block { align-items: center; gap: 12px; }
  .logo-emblem { width: 72px; height: 72px; }
  .logo-emblem-inner { width: 58px; height: 58px; }
  .logo-sc { font-size: 23px; }
  .logo-sub { font-size: 7px; }
  .sc-header-v2 .logo-name .s1 { font-size: 31px; }
  .tagline-row { gap: 7px; }
  .tagline-row::before,
  .tagline-row::after { width: 10px; height: 10px; }
  .tagline-text { font-size: 13px; padding-bottom: 5px; }
  .tagline-text::after { height: 3px; }
  .sc-header-v2 .nav-inner { justify-content: flex-start; }
  .sc-header-v2 .nav-inner a { font-size: 12px; padding: 8px 12px; }
  .sc-header-v2 .search-box { border-radius: 16px; }
  .sc-header-v2 .search-box input { font-size: 15px; padding: 10px 14px; }
  .sc-header-v2 .search-box button { min-width: 68px; font-size: 20px; }
  .cat-editor { grid-template-columns: 1fr; }
  .page-wrap { margin-top: 16px; }
}
