:root {
  --bg: #f6f8fb;
  --bg-soft: #eef4ff;
  --card: #ffffff;
  --card-2: #f8fafc;
  --text: #111827;
  --muted: #64748b;
  --muted-2: #94a3b8;
  --line: #e2e8f0;
  --accent: #2563eb;
  --accent-2: #0ea5e9;
  --accent-dark: #1d4ed8;
  --dark: #0f172a;
  --dark-2: #111827;
  --green: #16a34a;
  --radius: 22px;
  --radius-sm: 14px;
  --shadow: 0 20px 45px rgba(15, 23, 42, .08);
  --shadow-soft: 0 12px 30px rgba(15, 23, 42, .06);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, Arial, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(37, 99, 235, .12), transparent 32rem),
    radial-gradient(circle at top right, rgba(14, 165, 233, .10), transparent 30rem),
    var(--bg);
  line-height: 1.65;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
}

.wrapper {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.topline {
  background: var(--dark);
  color: #cbd5e1;
  font-size: 14px;
}

.topline-inner {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.topline b {
  color: #fff;
}

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, .88);
  border-bottom: 1px solid rgba(226, 232, 240, .9);
  backdrop-filter: blur(18px);
}

.nav {
  min-height: 78px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 22px;
  align-items: center;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-weight: 850;
  letter-spacing: -.04em;
  font-size: 22px;
  color: #0f172a;
  white-space: nowrap;
}

.logo img {
  width: 42px;
  height: 42px;
  border-radius: 15px;
  box-shadow: 0 10px 24px rgba(37, 99, 235, .24);
}

.logo-text em {
  font-style: normal;
  color: var(--accent);
}

.menu {
  display: flex;
  justify-content: center;
  gap: 6px;
  flex-wrap: wrap;
}

.menu a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 7px 12px;
  border-radius: 999px;
  color: #334155;
  font-size: 15px;
}

.menu a:hover,
.menu a.active {
  background: #eef4ff;
  color: var(--accent-dark);
}

.header-search {
  display: flex;
  align-items: center;
  width: min(310px, 100%);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 4px 4px 4px 14px;
  box-shadow: 0 8px 20px rgba(15, 23, 42, .04);
}

.header-search input {
  min-width: 0;
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--text);
  font-size: 14px;
}

.header-search button {
  border: 0;
  cursor: pointer;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  padding: 8px 12px;
  font-weight: 700;
}

.hero {
  padding: 72px 0 46px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.12fr .88fr;
  gap: 34px;
  align-items: center;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 13px;
  border: 1px solid #bfdbfe;
  border-radius: 999px;
  background: rgba(239, 246, 255, .86);
  color: var(--accent-dark);
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 18px;
}

h1,
h2,
h3 {
  line-height: 1.12;
  letter-spacing: -.04em;
}

h1 {
  margin: 0 0 22px;
  font-size: clamp(38px, 5.4vw, 66px);
}

h2 {
  margin: 0 0 12px;
  font-size: clamp(27px, 3.2vw, 42px);
}

h3 {
  margin: 0 0 10px;
  font-size: 22px;
}

.lead {
  margin: 0 0 26px;
  max-width: 760px;
  color: #475569;
  font-size: 19px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: #fff;
  color: #0f172a;
  font-weight: 800;
  box-shadow: 0 8px 20px rgba(15, 23, 42, .04);
}

.btn.primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  border-color: transparent;
  color: #fff;
  box-shadow: 0 14px 28px rgba(37, 99, 235, .22);
}

.hero-panel {
  background: rgba(255,255,255,.9);
  border: 1px solid rgba(226,232,240,.95);
  border-radius: 30px;
  padding: 24px;
  box-shadow: var(--shadow);
}

.server-card {
  background:
    linear-gradient(145deg, rgba(15,23,42,.96), rgba(30,41,59,.96)),
    var(--dark);
  color: #e2e8f0;
  border-radius: 24px;
  padding: 24px;
  overflow: hidden;
  position: relative;
}

.server-card:before {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  right: -70px;
  top: -90px;
  background: radial-gradient(circle, rgba(56,189,248,.35), transparent 70%);
}

.server-card h3 {
  position: relative;
  color: #fff;
  margin-bottom: 16px;
}

.status-list {
  position: relative;
  display: grid;
  gap: 10px;
}

.status-row {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 11px 0;
  border-bottom: 1px solid rgba(148,163,184,.22);
}

.status-row:last-child {
  border-bottom: 0;
}

.status-row span {
  color: #94a3b8;
}

.status-row strong {
  color: #fff;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 14px;
}

.stat {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 16px;
}

.stat b {
  display: block;
  font-size: 24px;
  line-height: 1;
  margin-bottom: 6px;
  color: var(--accent-dark);
}

.stat span {
  color: var(--muted);
  font-size: 14px;
}

.section {
  padding: 50px 0;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
}

.section-intro {
  margin: 0;
  max-width: 760px;
  color: var(--muted);
}

.search-panel {
  background: rgba(255,255,255,.92);
  border: 1px solid var(--line);
  border-radius: 26px;
  padding: 18px;
  box-shadow: var(--shadow-soft);
  margin-bottom: 22px;
}

.search-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
}

.searchbox {
  width: 100%;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 16px;
  outline: 0;
  padding: 15px 16px;
  color: var(--text);
  font-size: 16px;
}

.searchbox:focus {
  border-color: #93c5fd;
  box-shadow: 0 0 0 4px rgba(37, 99, 235, .10);
}

.search-meta {
  margin-top: 12px;
  color: var(--muted);
  font-size: 14px;
}

.filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 14px;
}

.filter-btn {
  border: 1px solid var(--line);
  background: #fff;
  color: #334155;
  border-radius: 999px;
  padding: 8px 12px;
  cursor: pointer;
  font-weight: 700;
}

.filter-btn.active,
.filter-btn:hover {
  background: #eff6ff;
  color: var(--accent-dark);
  border-color: #bfdbfe;
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.card {
  display: flex;
  flex-direction: column;
  min-height: 245px;
  background: rgba(255,255,255,.94);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: 0 10px 26px rgba(15, 23, 42, .045);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.card:hover {
  transform: translateY(-4px);
  border-color: #bfdbfe;
  box-shadow: 0 18px 38px rgba(15, 23, 42, .08);
}

.card h3 a {
  color: #0f172a;
}

.card h3 a:hover {
  color: var(--accent-dark);
}

.card p {
  margin: 0 0 16px;
  color: var(--muted);
}

.meta {
  color: #64748b;
  font-size: 14px;
  margin-bottom: 10px;
}

.tags {
  display: flex;
  gap: 7px;
  flex-wrap: wrap;
  margin-top: auto;
}

.tag {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 4px 9px;
  border-radius: 999px;
  background: #f1f5f9;
  color: #334155;
  font-size: 13px;
  font-weight: 700;
}

.no-results {
  display: none;
  background: #fff;
  border: 1px dashed #cbd5e1;
  border-radius: 22px;
  padding: 26px;
  color: var(--muted);
  text-align: center;
}

.no-results.show {
  display: block;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.feature {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 8px 24px rgba(15,23,42,.04);
}

.feature b {
  display: block;
  margin-bottom: 8px;
  color: #0f172a;
}

.feature span {
  color: var(--muted);
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 28px;
  align-items: start;
}

.article {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: clamp(22px, 4vw, 38px);
  box-shadow: var(--shadow-soft);
}

.article h1 {
  font-size: clamp(32px, 4.4vw, 52px);
}

.article h2 {
  margin-top: 34px;
}

.article code {
  background: #f1f5f9;
  border: 1px solid #e2e8f0;
  padding: 2px 6px;
  border-radius: 7px;
  color: #0f172a;
}

.aside {
  position: sticky;
  top: 104px;
  background: rgba(255,255,255,.94);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 20px;
  box-shadow: var(--shadow-soft);
}

.aside ul {
  margin: 10px 0 0;
  padding-left: 18px;
  color: var(--muted);
}

.faq details {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 17px 20px;
  margin-bottom: 12px;
  box-shadow: 0 8px 22px rgba(15, 23, 42, .035);
}

.faq summary {
  cursor: pointer;
  font-weight: 850;
  color: #0f172a;
}

.faq p {
  color: var(--muted);
}

.footer {
  margin-top: 52px;
  padding: 42px 0;
  background:
    radial-gradient(circle at top right, rgba(37,99,235,.22), transparent 28rem),
    var(--dark);
  color: #cbd5e1;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 24px;
  align-items: start;
}

.footer strong {
  display: block;
  color: #fff;
  margin-bottom: 8px;
}

.footer p {
  margin: 0;
  color: #94a3b8;
}

.footer-nav {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: end;
}

.footer-nav a {
  color: #dbeafe;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 999px;
  padding: 8px 12px;
}

@media (max-width: 980px) {
  .nav {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 14px 0;
  }

  .menu {
    justify-content: flex-start;
  }

  .header-search {
    width: 100%;
  }

  .hero-grid,
  .article-layout,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .aside {
    position: static;
  }

  .grid,
  .feature-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero {
    padding-top: 42px;
  }
}

@media (max-width: 640px) {
  .wrapper {
    width: min(100% - 24px, 1180px);
  }

  .topline-inner {
    padding: 8px 0;
  }

  .hero {
    padding: 34px 0 30px;
  }

  .stats,
  .grid,
  .feature-list,
  .search-row {
    grid-template-columns: 1fr;
  }

  .card {
    min-height: auto;
  }

  .footer-nav {
    justify-content: flex-start;
  }

  .menu a {
    padding: 7px 10px;
  }
}

.start-card {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 26px;
  box-shadow: var(--shadow);
}

.start-card h3 {
  margin-bottom: 10px;
}

.start-card p {
  margin: 0 0 18px;
  color: var(--muted);
}

.start-list {
  display: grid;
  gap: 10px;
}

.start-link {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #f8fafc;
  color: #0f172a;
  font-weight: 750;
}

.start-link:hover {
  border-color: #bfdbfe;
  background: #eff6ff;
  color: var(--accent-dark);
}

.start-link span {
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
}

.start-note {
  margin-top: 16px;
  padding: 14px 16px;
  border-radius: 16px;
  background: #f1f5f9;
  color: #475569;
  font-size: 15px;
}

.article p {
  margin: 0 0 16px;
}

.article ul.article-list {
  margin: 0 0 22px;
  padding-left: 22px;
  color: #475569;
}

.article ul.article-list li {
  margin-bottom: 8px;
}

.article .note {
  margin: 26px 0;
  padding: 18px 20px;
  border-radius: 18px;
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  color: #1e3a8a;
}

.article .warning {
  margin: 26px 0;
  padding: 18px 20px;
  border-radius: 18px;
  background: #fff7ed;
  border: 1px solid #fed7aa;
  color: #7c2d12;
}

.article pre {
  overflow-x: auto;
  background: #0f172a;
  color: #e2e8f0;
  padding: 18px;
  border-radius: 16px;
  line-height: 1.55;
  margin: 18px 0 24px;
}

.article pre code {
  background: transparent;
  border: 0;
  color: inherit;
  padding: 0;
}

/* AUTO_ARTICLES_CSS */
.auto-articles {
  margin: 48px 0;
}

.auto-section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 22px;
}

.auto-section-head h1,
.auto-section-head h2 {
  margin: 0 0 8px;
}

.auto-section-head p {
  margin: 0;
  color: var(--muted, #64748b);
}

.auto-all-link {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  text-decoration: none;
  font-weight: 700;
}

.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0 24px;
}

.tag-chip,
.tag-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1px solid rgba(100, 116, 139, .25);
  border-radius: 999px;
  padding: 7px 11px;
  text-decoration: none;
  font-size: 14px;
  line-height: 1;
  background: rgba(148, 163, 184, .08);
}

.tag-pill {
  padding: 5px 9px;
  font-size: 12px;
}

.tag-chip span {
  opacity: .65;
}

.auto-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.auto-card {
  border: 1px solid rgba(100, 116, 139, .18);
  border-radius: 20px;
  padding: 20px;
  background: var(--card, rgba(255,255,255,.72));
  box-shadow: 0 14px 40px rgba(15, 23, 42, .06);
}

.auto-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}

.auto-card h3 {
  margin: 0 0 10px;
  font-size: 20px;
  line-height: 1.25;
}

.auto-card h3 a {
  text-decoration: none;
}

.auto-card p {
  margin: 0 0 14px;
  color: var(--muted, #64748b);
}

.auto-card-meta {
  font-size: 13px;
  color: var(--muted, #64748b);
}

.page-main {
  padding-top: 32px;
  padding-bottom: 56px;
}

@media (max-width: 900px) {
  .auto-grid {
    grid-template-columns: 1fr;
  }

  .auto-section-head {
    display: block;
  }

  .auto-all-link {
    margin-top: 14px;
  }
}

/* FIX_AUTO_ARTICLES_CSS */
.auto-articles {
  max-width: 1180px !important;
  margin: 72px auto 56px !important;
  padding: 0 20px !important;
}

.auto-section-head {
  display: flex !important;
  align-items: flex-end !important;
  justify-content: space-between !important;
  gap: 24px !important;
  margin-bottom: 24px !important;
}

.auto-section-head h1,
.auto-section-head h2 {
  margin: 0 0 10px !important;
  font-size: clamp(30px, 4vw, 48px) !important;
  line-height: 1.05 !important;
  letter-spacing: -0.04em !important;
}

.auto-section-head p {
  max-width: 720px !important;
  margin: 0 !important;
  color: #64748b !important;
  font-size: 17px !important;
  line-height: 1.6 !important;
}

.eyebrow {
  margin: 0 0 10px !important;
  color: #2563eb !important;
  font-size: 13px !important;
  font-weight: 800 !important;
  text-transform: uppercase !important;
  letter-spacing: .12em !important;
}

.auto-all-link {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-height: 42px !important;
  padding: 10px 16px !important;
  border-radius: 999px !important;
  border: 1px solid rgba(37, 99, 235, .22) !important;
  background: rgba(37, 99, 235, .08) !important;
  color: #1d4ed8 !important;
  text-decoration: none !important;
  font-weight: 800 !important;
  white-space: nowrap !important;
}

.tag-cloud {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 10px !important;
  margin: 20px 0 28px !important;
}

.tag-chip,
.tag-pill {
  display: inline-flex !important;
  align-items: center !important;
  gap: 7px !important;
  width: auto !important;
  max-width: max-content !important;
  border: 1px solid rgba(100, 116, 139, .22) !important;
  border-radius: 999px !important;
  background: #ffffff !important;
  color: #0f172a !important;
  text-decoration: none !important;
  line-height: 1 !important;
  box-shadow: 0 8px 24px rgba(15, 23, 42, .05) !important;
}

.tag-chip {
  padding: 9px 13px !important;
  font-size: 14px !important;
  font-weight: 700 !important;
}

.tag-pill {
  padding: 6px 9px !important;
  font-size: 12px !important;
  font-weight: 700 !important;
}

.tag-chip span {
  color: #64748b !important;
  font-weight: 700 !important;
}

.auto-grid {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 20px !important;
  align-items: stretch !important;
}

.auto-card {
  display: flex !important;
  flex-direction: column !important;
  min-width: 0 !important;
  min-height: 260px !important;
  padding: 22px !important;
  border: 1px solid rgba(100, 116, 139, .18) !important;
  border-radius: 24px !important;
  background: #ffffff !important;
  box-shadow: 0 18px 45px rgba(15, 23, 42, .07) !important;
  overflow: hidden !important;
}

.auto-card-tags {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 8px !important;
  margin-bottom: 14px !important;
}

.auto-card h3 {
  margin: 0 0 12px !important;
  font-size: 21px !important;
  line-height: 1.25 !important;
  letter-spacing: -0.02em !important;
}

.auto-card h3 a {
  color: #0f172a !important;
  text-decoration: none !important;
}

.auto-card h3 a:hover {
  color: #2563eb !important;
}

.auto-card p {
  margin: 0 0 18px !important;
  color: #475569 !important;
  font-size: 15px !important;
  line-height: 1.65 !important;
  overflow: hidden !important;
}

.auto-card-meta {
  margin-top: auto !important;
  padding-top: 14px !important;
  color: #64748b !important;
  font-size: 13px !important;
  font-weight: 700 !important;
}

@media (max-width: 1000px) {
  .auto-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 680px) {
  .auto-articles {
    margin: 44px auto !important;
    padding: 0 16px !important;
  }

  .auto-section-head {
    display: block !important;
  }

  .auto-all-link {
    margin-top: 16px !important;
  }

  .auto-grid {
    grid-template-columns: 1fr !important;
  }
}

/* FIX_AUTO_LAYOUT_V2 */
.site-header {
  position: sticky !important;
  top: 0 !important;
  z-index: 50 !important;
  width: 100% !important;
  background: rgba(248, 250, 252, .86) !important;
  backdrop-filter: blur(16px) !important;
  border-bottom: 1px solid rgba(148, 163, 184, .22) !important;
}

.site-header-inner {
  max-width: 1180px !important;
  margin: 0 auto !important;
  padding: 16px 20px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 24px !important;
}

.site-brand {
  color: #0f172a !important;
  text-decoration: none !important;
  font-weight: 900 !important;
  font-size: 19px !important;
  letter-spacing: -0.03em !important;
}

.site-nav {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  flex-wrap: wrap !important;
}

.site-nav a,
.site-header nav a {
  display: inline-flex !important;
  align-items: center !important;
  min-height: 36px !important;
  padding: 8px 12px !important;
  border-radius: 999px !important;
  color: #334155 !important;
  text-decoration: none !important;
  font-size: 14px !important;
  font-weight: 800 !important;
}

.site-nav a:hover,
.site-header nav a:hover {
  color: #1d4ed8 !important;
  background: rgba(37, 99, 235, .08) !important;
}

.container {
  max-width: 1180px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  padding-left: 20px !important;
  padding-right: 20px !important;
}

.page-main {
  padding-top: 58px !important;
  padding-bottom: 72px !important;
}

.auto-articles {
  max-width: 1180px !important;
  margin: 72px auto 56px !important;
  padding: 0 20px !important;
}

.auto-archive {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.auto-section-head {
  display: flex !important;
  align-items: flex-end !important;
  justify-content: space-between !important;
  gap: 24px !important;
  margin-bottom: 26px !important;
}

.auto-section-head h1,
.auto-section-head h2 {
  margin: 0 0 10px !important;
  font-size: clamp(34px, 4vw, 52px) !important;
  line-height: 1.03 !important;
  letter-spacing: -0.045em !important;
  color: #0f172a !important;
}

.auto-section-head p {
  max-width: 720px !important;
  margin: 0 !important;
  color: #64748b !important;
  font-size: 17px !important;
  line-height: 1.6 !important;
}

.eyebrow {
  margin: 0 0 10px !important;
  color: #64748b !important;
  font-size: 13px !important;
  font-weight: 900 !important;
  text-transform: uppercase !important;
  letter-spacing: .14em !important;
}

.auto-all-link {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-height: 42px !important;
  padding: 10px 16px !important;
  border-radius: 999px !important;
  border: 1px solid rgba(37, 99, 235, .22) !important;
  background: rgba(37, 99, 235, .08) !important;
  color: #1d4ed8 !important;
  text-decoration: none !important;
  font-weight: 900 !important;
  white-space: nowrap !important;
}

.tag-cloud {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 10px !important;
  margin: 20px 0 30px !important;
}

.tag-chip,
.tag-pill {
  display: inline-flex !important;
  align-items: center !important;
  gap: 7px !important;
  width: auto !important;
  max-width: max-content !important;
  border: 1px solid rgba(100, 116, 139, .22) !important;
  border-radius: 999px !important;
  background: #ffffff !important;
  color: #0f172a !important;
  text-decoration: none !important;
  line-height: 1 !important;
  box-shadow: 0 8px 24px rgba(15, 23, 42, .05) !important;
}

.tag-chip {
  padding: 9px 13px !important;
  font-size: 14px !important;
  font-weight: 800 !important;
}

.tag-pill {
  padding: 6px 9px !important;
  font-size: 12px !important;
  font-weight: 800 !important;
}

.tag-chip span {
  color: #64748b !important;
  font-weight: 800 !important;
}

.auto-grid {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 20px !important;
  align-items: stretch !important;
}

.auto-card {
  display: flex !important;
  flex-direction: column !important;
  min-width: 0 !important;
  min-height: 285px !important;
  padding: 22px !important;
  border: 1px solid rgba(100, 116, 139, .18) !important;
  border-radius: 24px !important;
  background: #ffffff !important;
  box-shadow: 0 18px 45px rgba(15, 23, 42, .07) !important;
  overflow: hidden !important;
}

.auto-card-tags {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 8px !important;
  margin-bottom: 14px !important;
}

.auto-card h3 {
  margin: 0 0 12px !important;
  font-size: 21px !important;
  line-height: 1.25 !important;
  letter-spacing: -0.02em !important;
}

.auto-card h3 a {
  color: #0f172a !important;
  text-decoration: none !important;
}

.auto-card h3 a:hover {
  color: #2563eb !important;
}

.auto-card p {
  margin: 0 0 18px !important;
  color: #475569 !important;
  font-size: 15px !important;
  line-height: 1.65 !important;
  overflow: hidden !important;
}

.auto-card-meta {
  margin-top: auto !important;
  padding-top: 14px !important;
  color: #64748b !important;
  font-size: 13px !important;
  font-weight: 800 !important;
}

@media (max-width: 1000px) {
  .auto-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 680px) {
  .site-header-inner {
    display: block !important;
  }

  .site-nav {
    margin-top: 10px !important;
  }

  .auto-grid {
    grid-template-columns: 1fr !important;
  }

  .auto-section-head {
    display: block !important;
  }

  .auto-all-link {
    margin-top: 16px !important;
  }
}

/* WordPress-managed navigation. */
.menu .sj-menu-list {
  display: flex;
  justify-content: center;
  gap: 6px;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
  list-style: none;
}
.menu .sj-menu-list li { margin: 0; padding: 0; }
.menu .sj-menu-list .current-menu-item > a,
.menu .sj-menu-list .current_page_item > a,
.menu .sj-menu-list .current-post-ancestor > a {
  background: #eef4ff;
  color: var(--accent-dark);
}
.sj-custom-logo,
.sj-logo-img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  border-radius: 15px;
}
