/*
 * 8530Cloud — Help Scout Docs Theme
 * Version: 1.0
 * Target: Help Scout Docs public knowledge base
 *
 * Brand direction:
 * - Bright cloud cyan / blue
 * - Darker infrastructure blue
 * - Clean SaaS / hosting support interface
 *
 * Upload this file via:
 * Help Scout → Manage → Docs → 8530Cloud MyService → Custom Code → Upload stylesheet
 */

/* =========================================================
   1. Design tokens
   ========================================================= */

:root {
  --c-cloud: #19b9f1;
  --c-cloud-strong: #079fdb;
  --c-cloud-soft: #eaf8fe;

  --c-navy: #163b72;
  --c-navy-deep: #0c2853;
  --c-ink: #142033;
  --c-muted: #66758a;

  --c-page: #f6f9fc;
  --c-surface: #ffffff;
  --c-border: #dce6f0;

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 18px;

  --shadow-sm: 0 2px 8px rgba(14, 42, 82, 0.06);
  --shadow-md: 0 12px 32px rgba(14, 42, 82, 0.10);

  --content-width: 1120px;
}


/* =========================================================
   2. Global
   ========================================================= */

html {
  scroll-behavior: smooth;
}

body {
  background: var(--c-page);
  color: var(--c-ink);
  font-family:
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Inter,
    Roboto,
    Helvetica,
    Arial,
    sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a {
  color: var(--c-cloud-strong);
  text-decoration-color: rgba(7, 159, 219, 0.35);
  text-underline-offset: 3px;
}

a:hover,
a:focus {
  color: var(--c-navy);
  text-decoration-color: currentColor;
}

::selection {
  background: var(--c-cloud-soft);
  color: var(--c-navy-deep);
}


/* =========================================================
   3. Main navigation / brand bar
   Help Scout currently exposes #mainNav on Docs.
   ========================================================= */

#mainNav {
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--c-border);
  box-shadow: 0 1px 0 rgba(14, 42, 82, 0.02);
}

#mainNav .container {
  max-width: var(--content-width);
}

#mainNav .brand,
#mainNav .brand a {
  color: var(--c-navy-deep);
  font-weight: 700;
}

#mainNav a {
  transition: color 160ms ease, opacity 160ms ease;
}


/* =========================================================
   4. Search hero
   #docsSearch is a documented Help Scout Docs selector.
   ========================================================= */

#docsSearch {
  position: relative;
  background:
    radial-gradient(circle at 82% 20%, rgba(25, 185, 241, 0.28), transparent 34%),
    linear-gradient(135deg, var(--c-navy-deep) 0%, var(--c-navy) 58%, #136b9a 100%);
  border-bottom: 0;
  padding-top: 64px;
  padding-bottom: 64px;
  overflow: hidden;
}

#docsSearch::after {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  right: -80px;
  bottom: -140px;
  border-radius: 50%;
  border: 36px solid rgba(255, 255, 255, 0.06);
  pointer-events: none;
}

#docsSearch h1,
#docsSearch h2,
#docsSearch p {
  color: #fff;
}

#docsSearch form,
#docsSearch .search-form {
  position: relative;
  z-index: 1;
}

#docsSearch input[type="text"],
#docsSearch input[type="search"] {
  min-height: 52px;
  background: #fff;
  color: var(--c-ink);
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 12px;
  box-shadow: 0 14px 34px rgba(4, 28, 62, 0.22);
  outline: none;
}

#docsSearch input[type="text"]:focus,
#docsSearch input[type="search"]:focus {
  border-color: var(--c-cloud);
  box-shadow:
    0 0 0 4px rgba(25, 185, 241, 0.18),
    0 14px 34px rgba(4, 28, 62, 0.22);
}

#docsSearch input::placeholder {
  color: #8593a6;
}


/* =========================================================
   5. Main layout
   ========================================================= */

.container,
.contentWrapper,
#mainContent {
  max-width: var(--content-width);
}

#mainContent {
  padding-top: 38px;
  padding-bottom: 56px;
}


/* =========================================================
   6. Category cards
   .category-list .category is documented by Help Scout.
   ========================================================= */

.category-list .category {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-left: 4px solid var(--c-cloud);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  margin-bottom: 18px;
  overflow: hidden;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    border-color 160ms ease;
}

.category-list .category:hover {
  transform: translateY(-2px);
  border-color: #c9dce9;
  border-left-color: var(--c-cloud-strong);
  box-shadow: var(--shadow-md);
}

.category-list .category h3,
.category-list .category h4,
.category-list .category .category-title {
  color: var(--c-navy-deep);
  font-weight: 700;
}

.category-list .category p,
.category-list .category .description {
  color: var(--c-muted);
}


/* =========================================================
   7. Article lists / popular articles
   ========================================================= */

.article-list,
.popular-articles,
.most-popular {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.article-list li,
.popular-articles li,
.most-popular li {
  border-color: var(--c-border);
}

.article-list a,
.popular-articles a,
.most-popular a {
  color: var(--c-ink);
  font-weight: 550;
}

.article-list a:hover,
.popular-articles a:hover,
.most-popular a:hover {
  color: var(--c-cloud-strong);
}


/* =========================================================
   8. Article page
   #fullArticle is a documented Help Scout Docs selector.
   ========================================================= */

#fullArticle {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: clamp(24px, 4vw, 48px);
}

#fullArticle h1,
#fullArticle h2,
#fullArticle h3,
#fullArticle h4 {
  color: var(--c-navy-deep);
  line-height: 1.25;
  letter-spacing: -0.012em;
}

#fullArticle h1 {
  font-size: clamp(2rem, 4vw, 2.65rem);
}

#fullArticle h2 {
  margin-top: 2.1em;
  padding-bottom: 0.42em;
  border-bottom: 1px solid var(--c-border);
}

#fullArticle p,
#fullArticle li {
  line-height: 1.72;
}

#fullArticle strong {
  color: #10203a;
}

#fullArticle hr {
  border: 0;
  border-top: 1px solid var(--c-border);
  margin: 34px 0;
}

#fullArticle img {
  max-width: 100%;
  border-radius: var(--radius-sm);
}

#fullArticle img:not(.noBdr) {
  border: 1px solid var(--c-border);
  box-shadow: var(--shadow-sm);
}


/* =========================================================
   9. Code blocks
   ========================================================= */

#fullArticle code {
  background: #eef5fa;
  color: #164a70;
  border-radius: 5px;
  padding: 0.14em 0.38em;
  font-size: 0.92em;
}

#fullArticle pre {
  background: #0f2037;
  color: #eef7ff;
  border: 1px solid #1c3554;
  border-radius: var(--radius-md);
  padding: 18px 20px;
  overflow-x: auto;
  box-shadow: var(--shadow-sm);
}

#fullArticle pre code {
  background: transparent;
  color: inherit;
  padding: 0;
}


/* =========================================================
   10. Quotes, notes and definition lists
   ========================================================= */

#fullArticle blockquote {
  margin: 24px 0;
  padding: 16px 20px;
  background: var(--c-cloud-soft);
  color: #23445d;
  border-left: 4px solid var(--c-cloud);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

#fullArticle dt {
  background: var(--c-cloud-soft);
  color: var(--c-navy-deep);
  border: 1px solid #cdebf7;
  font-weight: 750;
}


/* =========================================================
   11. Tables
   ========================================================= */

#fullArticle table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border: 1px solid var(--c-border);
  border-radius: var(--radius-md);
  overflow: hidden;
}

#fullArticle th {
  background: #edf5fb;
  color: var(--c-navy-deep);
  font-weight: 700;
}

#fullArticle th,
#fullArticle td {
  border-color: var(--c-border);
  padding: 12px 14px;
}


/* =========================================================
   12. Buttons / controls
   ========================================================= */

button,
.btn,
.button,
input[type="submit"] {
  border-radius: 10px;
}

.btn-primary,
.button-primary,
input[type="submit"] {
  background: var(--c-cloud-strong);
  border-color: var(--c-cloud-strong);
  color: #fff;
  box-shadow: 0 6px 16px rgba(7, 159, 219, 0.18);
  transition:
    background 160ms ease,
    border-color 160ms ease,
    transform 160ms ease,
    box-shadow 160ms ease;
}

.btn-primary:hover,
.button-primary:hover,
input[type="submit"]:hover {
  background: var(--c-navy);
  border-color: var(--c-navy);
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(14, 42, 82, 0.18);
}


/* =========================================================
   13. Breadcrumbs / secondary navigation
   ========================================================= */

.breadcrumb,
.breadcrumbs {
  color: var(--c-muted);
}

.breadcrumb a,
.breadcrumbs a {
  color: var(--c-cloud-strong);
}


/* =========================================================
   14. Footer
   ========================================================= */

footer,
#footer {
  background: #eef4f8;
  border-top: 1px solid var(--c-border);
  color: var(--c-muted);
}

footer a,
#footer a {
  color: var(--c-navy);
}


/* =========================================================
   15. Accessibility / keyboard focus
   ========================================================= */

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 3px solid rgba(25, 185, 241, 0.35);
  outline-offset: 3px;
}


/* =========================================================
   16. Mobile
   ========================================================= */

@media (max-width: 767px) {
  #docsSearch {
    padding-top: 42px;
    padding-bottom: 42px;
  }

  #mainContent {
    padding-top: 24px;
    padding-bottom: 36px;
  }

  #fullArticle {
    padding: 22px 18px;
    border-radius: var(--radius-md);
  }

  .category-list .category {
    border-left-width: 3px;
  }
}


/* =========================================================
   17. Reduced motion
   ========================================================= */

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}


/* =========================================================
   18. Article layout v2 — 8530Cloud MyService
   Tuned against current Help Scout Docs article view.
   ========================================================= */

/* Make the article page feel less like a floating paper sheet */
body.article,
body.article-page {
  background: #f4f8fb;
}

/* Wider, cleaner article shell */
#fullArticle {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  background: rgba(255,255,255,0.98);
  border: 1px solid #d7e4ee;
  border-radius: 16px;
  box-shadow: 0 10px 28px rgba(14, 42, 82, 0.07);
}

/* Reduce excessive nested-card styling when Help Scout wraps article content */
#fullArticle > div,
#fullArticle .article-content,
#fullArticle .articleBody,
#fullArticle .article-body {
  background: transparent;
  box-shadow: none;
}

/* Better article heading */
#fullArticle h1 {
  max-width: 760px;
  margin-top: 0;
  margin-bottom: 18px;
  color: var(--c-navy-deep);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 760;
  line-height: 1.12;
  letter-spacing: -0.025em;
}

/* Article prose sizing */
#fullArticle p,
#fullArticle li {
  color: #485568;
  font-size: 1rem;
  line-height: 1.78;
}

#fullArticle p {
  margin-bottom: 1.15em;
}

/* Technical values stand out more clearly */
#fullArticle code,
#fullArticle kbd,
#fullArticle samp {
  background: #edf7fc;
  border: 1px solid #d4edf8;
  color: #0d567d;
  border-radius: 6px;
  padding: 0.16em 0.42em;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
}

/* Improve label/value paragraphs often used in DNS articles */
#fullArticle p strong:first-child {
  color: var(--c-navy-deep);
  font-weight: 700;
}

/* Search field on article pages */
#sidebar input[type="text"],
#sidebar input[type="search"],
.sidebar input[type="text"],
.sidebar input[type="search"],
.search input[type="text"],
.search input[type="search"] {
  min-height: 40px;
  border: 1px solid #cedbe6;
  border-radius: 10px;
  background: #fff;
  color: var(--c-ink);
  box-shadow: 0 2px 8px rgba(14, 42, 82, 0.04);
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

#sidebar input[type="text"]:focus,
#sidebar input[type="search"]:focus,
.sidebar input[type="text"]:focus,
.sidebar input[type="search"]:focus,
.search input[type="text"]:focus,
.search input[type="search"]:focus {
  border-color: var(--c-cloud);
  box-shadow: 0 0 0 3px rgba(25, 185, 241, 0.14);
  outline: none;
}

/* Left sidebar spacing and visual separation */
#sidebar,
.sidebar {
  color: var(--c-muted);
}

#sidebar a,
.sidebar a {
  color: var(--c-navy);
}

#sidebar a:hover,
.sidebar a:hover {
  color: var(--c-cloud-strong);
}

/* Top navigation: stronger brand presence and better contrast */
#mainNav {
  background: linear-gradient(90deg, #102a52 0%, #173c72 100%);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 4px 18px rgba(10, 30, 61, 0.12);
}

#mainNav .brand,
#mainNav .brand a,
#mainNav a {
  color: rgba(255,255,255,0.92);
}

#mainNav .brand,
#mainNav .brand a {
  font-weight: 760;
}

#mainNav a:hover,
#mainNav a:focus {
  color: #fff;
}

/* Current navigation item */
#mainNav .active > a,
#mainNav a.active {
  color: #fff;
  position: relative;
}

#mainNav .active > a::after,
#mainNav a.active::after {
  content: "";
  position: absolute;
  left: 20%;
  right: 20%;
  bottom: -8px;
  height: 3px;
  border-radius: 999px;
  background: var(--c-cloud);
}

/* Neutralize Help Scout admin-only helper buttons when visible */
#fullArticle .admin,
#fullArticle .admin-only,
#fullArticle a[href*="secure.helpscout.net"],
#fullArticle a[href*="helpscout.net/docs/"] {
  border-radius: 999px;
  font-size: 0.78rem;
  opacity: 0.62;
  box-shadow: none;
}

#fullArticle a[href*="secure.helpscout.net"]:hover,
#fullArticle a[href*="helpscout.net/docs/"]:hover {
  opacity: 0.9;
}

/* Print icon / article utility controls */
#fullArticle .print,
#fullArticle .article-print,
#fullArticle [class*="print"] {
  opacity: 0.45;
  transition: opacity 160ms ease;
}

#fullArticle .print:hover,
#fullArticle .article-print:hover,
#fullArticle [class*="print"]:hover {
  opacity: 0.9;
}

/* Article links */
#fullArticle a {
  font-weight: 550;
}

/* Lists */
#fullArticle ul,
#fullArticle ol {
  padding-left: 1.35rem;
}

#fullArticle li + li {
  margin-top: 0.35rem;
}

/* More polished footer strip */
footer,
#footer {
  background: #edf3f7;
  border-top: 1px solid #dbe6ee;
  color: #7c8998;
  font-size: 0.82rem;
}

/* Responsive article layout */
@media (max-width: 980px) {
  #fullArticle {
    max-width: none;
  }
}

@media (max-width: 767px) {
  #fullArticle h1 {
    font-size: 2rem;
  }

  #mainNav .active > a::after,
  #mainNav a.active::after {
    display: none;
  }
}


/* =========================================================
   19. 8530Cloud Support Center — Enterprise / Zendesk-inspired
   Purpose: make Help Scout Docs feel like a bespoke support hub,
   without copying another product's exact visual identity.
   ========================================================= */

/* ---------- Global support-center shell ---------- */

body {
  background: #f7f9fb;
  color: #1f2937;
}

#mainContent {
  max-width: 1180px;
  padding-top: 42px;
}

/* ---------- Top navigation ---------- */

#mainNav {
  min-height: 68px;
  background: #0f2f57;
  border-bottom: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 2px 10px rgba(15,47,87,.12);
}

#mainNav .container {
  max-width: 1180px;
  min-height: 68px;
  display: flex;
  align-items: center;
}

#mainNav .brand,
#mainNav .brand a {
  color: #fff;
  font-size: 1.02rem;
  font-weight: 750;
  letter-spacing: -0.01em;
}

#mainNav a {
  color: rgba(255,255,255,.82);
  font-size: .94rem;
}

#mainNav a:hover,
#mainNav a:focus,
#mainNav .active > a,
#mainNav a.active {
  color: #fff;
}

/* ---------- Homepage hero ---------- */

#docsSearch {
  background:
    radial-gradient(circle at 86% 18%, rgba(34,190,245,.18), transparent 26%),
    linear-gradient(135deg, #0f2f57 0%, #174f83 62%, #1d78a6 100%);
  padding: 84px 20px 88px;
  border-bottom: none;
}

#docsSearch .container {
  max-width: 980px;
  text-align: center;
}

#docsSearch h1,
#docsSearch h2 {
  margin: 0 auto 14px;
  max-width: 780px;
  color: #fff;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 760;
  line-height: 1.08;
  letter-spacing: -0.03em;
}

#docsSearch p {
  max-width: 680px;
  margin: 0 auto 30px;
  color: rgba(255,255,255,.8);
  font-size: 1.08rem;
}

#docsSearch form,
#docsSearch .search-form {
  max-width: 720px;
  margin: 0 auto;
}

#docsSearch input[type="text"],
#docsSearch input[type="search"] {
  min-height: 58px;
  padding-left: 20px;
  border: 1px solid rgba(255,255,255,.55);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(0,0,0,.14);
  font-size: 1rem;
}

#docsSearch input[type="submit"],
#docsSearch button {
  min-height: 58px;
  border-radius: 0 8px 8px 0;
  background: #159fd4;
  border-color: #159fd4;
  font-weight: 650;
}

#docsSearch input[type="submit"]:hover,
#docsSearch button:hover {
  background: #0f84b6;
  border-color: #0f84b6;
}

/* ---------- Home category grid ---------- */

.category-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-top: 8px;
}

.category-list .category {
  margin: 0;
  padding: 28px 30px;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-left: 1px solid #e2e8f0;
  border-radius: 10px;
  box-shadow: none;
  transition: border-color 150ms ease, box-shadow 150ms ease, transform 150ms ease;
}

.category-list .category:hover {
  transform: translateY(-1px);
  border-color: #cfd8e3;
  border-left-color: #cfd8e3;
  box-shadow: 0 8px 22px rgba(15,47,87,.06);
}

.category-list .category h3,
.category-list .category h4,
.category-list .category .category-title {
  margin-bottom: 8px;
  color: #17395f;
  font-size: 1.13rem;
  font-weight: 720;
  letter-spacing: -0.01em;
}

.category-list .category p,
.category-list .category .description {
  color: #6b7280;
  line-height: 1.6;
}

.category-list .category a {
  text-decoration: none;
}

/* ---------- Article lists ---------- */

.article-list,
.popular-articles,
.most-popular {
  background: transparent;
  border: 0;
  box-shadow: none;
}

.article-list li,
.popular-articles li,
.most-popular li {
  padding: 15px 0;
  border-bottom: 1px solid #e8edf2;
}

.article-list a,
.popular-articles a,
.most-popular a {
  color: #263445;
  font-weight: 560;
  text-decoration: none;
}

.article-list a:hover,
.popular-articles a:hover,
.most-popular a:hover {
  color: #0f8fca;
}

/* ---------- Article page layout ---------- */

#fullArticle {
  max-width: 860px;
  background: #fff;
  border: 1px solid #e0e6ed;
  border-radius: 10px;
  box-shadow: none;
  padding: clamp(34px, 5vw, 58px);
}

#fullArticle h1 {
  color: #122d4b;
  font-size: clamp(2rem, 3.8vw, 2.7rem);
  font-weight: 760;
  line-height: 1.12;
  letter-spacing: -0.025em;
}

#fullArticle h2 {
  color: #17395f;
  font-size: 1.45rem;
  margin-top: 2.2em;
  padding-bottom: 10px;
  border-bottom: 1px solid #e8edf2;
}

#fullArticle h3 {
  color: #1d426d;
  font-size: 1.16rem;
}

#fullArticle p,
#fullArticle li {
  color: #4b5563;
  font-size: 1rem;
  line-height: 1.78;
}

/* ---------- Breadcrumbs ---------- */

.breadcrumb,
.breadcrumbs {
  margin-bottom: 24px;
  color: #8a94a3;
  font-size: .9rem;
}

.breadcrumb a,
.breadcrumbs a {
  color: #58708d;
  text-decoration: none;
}

.breadcrumb a:hover,
.breadcrumbs a:hover {
  color: #0f8fca;
}

/* ---------- Sidebar / article search ---------- */

#sidebar,
.sidebar {
  color: #667085;
}

#sidebar input[type="text"],
#sidebar input[type="search"],
.sidebar input[type="text"],
.sidebar input[type="search"] {
  min-height: 42px;
  border: 1px solid #d9e0e7;
  border-radius: 8px;
  background: #fff;
  box-shadow: none;
}

#sidebar input[type="text"]:focus,
#sidebar input[type="search"]:focus,
.sidebar input[type="text"]:focus,
.sidebar input[type="search"]:focus {
  border-color: #22aee6;
  box-shadow: 0 0 0 3px rgba(34,174,230,.12);
}

/* ---------- Code / DNS values ---------- */

#fullArticle code,
#fullArticle kbd,
#fullArticle samp {
  background: #f2f8fb;
  color: #145a7d;
  border: 1px solid #d6eaf3;
  border-radius: 5px;
  padding: .15em .4em;
}

#fullArticle pre {
  background: #10263f;
  color: #eef7fc;
  border: 1px solid #16395d;
  border-radius: 8px;
  box-shadow: none;
}

/* ---------- Tables ---------- */

#fullArticle table {
  border: 1px solid #dde5ec;
  border-radius: 8px;
}

#fullArticle th {
  background: #f5f8fa;
  color: #17395f;
}

/* ---------- Callouts ---------- */

#fullArticle blockquote {
  background: #f2f9fc;
  color: #36556e;
  border-left: 4px solid #22aee6;
  border-radius: 0 8px 8px 0;
}

/* ---------- Buttons ---------- */

.btn,
.button,
button,
input[type="submit"] {
  border-radius: 8px;
}

.btn-primary,
.button-primary,
input[type="submit"] {
  background: #159fd4;
  border-color: #159fd4;
  box-shadow: none;
  font-weight: 650;
}

.btn-primary:hover,
.button-primary:hover,
input[type="submit"]:hover {
  background: #0f84b6;
  border-color: #0f84b6;
  box-shadow: none;
  transform: none;
}

/* ---------- Footer ---------- */

footer,
#footer {
  background: #f3f6f8;
  border-top: 1px solid #e1e7ed;
  color: #8b95a1;
  font-size: .8rem;
}

/* ---------- Admin-only Help Scout controls ---------- */

#fullArticle a[href*="secure.helpscout.net"],
#fullArticle a[href*="helpscout.net/docs/"] {
  opacity: .42;
  font-size: .74rem;
  border-radius: 999px;
}

#fullArticle a[href*="secure.helpscout.net"]:hover,
#fullArticle a[href*="helpscout.net/docs/"]:hover {
  opacity: .8;
}

/* ---------- Mobile ---------- */

@media (max-width: 820px) {
  .category-list {
    grid-template-columns: 1fr;
  }

  #docsSearch {
    padding: 62px 18px 66px;
  }

  #docsSearch h1,
  #docsSearch h2 {
    font-size: 2.2rem;
  }

  #fullArticle {
    padding: 26px 20px;
  }
}
