@charset "utf-8";

:root {
  color-scheme: light;
  --bg: #e9edf1;
  --bg-soft: #f4f6f8;
  --surface: #ffffff;
  --surface-soft: #f8fafb;
  --ink: #1f2933;
  --muted: #66717d;
  --line: #d9e0e6;
  --line-strong: #c2cdd6;
  --header: #070a0d;
  --header-soft: rgba(7, 10, 13, 0.9);
  --link: #2f67b0;
  --green: #7aac80;
  --green-strong: #568f62;
  --green-soft: #eff7f1;
  --danger: #c46b5f;
  --warning-soft: #fff2ef;
  --shadow: 0 18px 36px rgba(18, 31, 44, 0.08);
  --radius: 18px;
  --radius-sm: 12px;
  --shell: 1180px;
  --gutter: clamp(18px, 3vw, 32px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Work Sans", sans-serif;
  color: var(--ink);
  background: linear-gradient(180deg, #eef2f5 0%, #e7ebef 100%);
}

.page-home {
  background: #e7edf2;
}

img,
svg,
video {
  max-width: 100%;
}

a {
  color: var(--link);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

button,
input {
  font: inherit;
}

[hidden] {
  display: none !important;
}

.shell {
  width: min(100% - (var(--gutter) * 2), var(--shell));
  margin: 0 auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -48px;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--header);
  color: #fff;
  z-index: 1000;
  transition: top 0.18s ease;
}

.skip-link:focus {
  top: 16px;
}

h1,
h2,
h3,
h4 {
  margin: 0 0 0.75rem;
  font-family: "Open Sans", sans-serif;
  line-height: 1.2;
  color: #17212b;
}

p,
ul,
ol {
  margin: 0 0 1rem;
  line-height: 1.7;
}

ul,
ol {
  padding-left: 1.2rem;
}

code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 0.92em;
  padding: 0.14rem 0.36rem;
  background: #eef2f5;
  border-radius: 6px;
}

.icon-inline,
.icon-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.material-symbols-rounded {
  display: block;
  font-family: "Material Symbols Rounded";
  font-style: normal;
  font-weight: 400;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  white-space: nowrap;
  direction: ltr;
  -webkit-font-smoothing: antialiased;
  font-variation-settings:
    "FILL" 0,
    "wght" 400,
    "GRAD" 0,
    "opsz" 24;
}

.icon-inline .material-symbols-rounded,
.icon-badge .material-symbols-rounded,
.article-list-item__icon .material-symbols-rounded {
  font-size: 1.25rem;
}

.icon-badge {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: var(--green-soft);
  color: var(--green-strong);
  flex: 0 0 auto;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  border: 0;
  border-radius: 999px;
  padding: 0.82rem 1.3rem;
  background: var(--green);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 12px 24px rgba(86, 143, 98, 0.2);
}

.button:hover {
  background: var(--green-strong);
  text-decoration: none;
}

.button-secondary {
  background: transparent;
  color: var(--ink);
  border: 1px solid rgba(255, 255, 255, 0.28);
  box-shadow: none;
}

.page-home .button-secondary {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--header);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.site-header-home {
  position: absolute;
  inset: 0 0 auto;
  background: linear-gradient(180deg, rgba(7, 10, 13, 0.9) 0%, rgba(7, 10, 13, 0.58) 70%, rgba(7, 10, 13, 0) 100%);
  border-bottom: 0;
}

.site-header__inner {
  width: min(100% - (var(--gutter) * 2), var(--shell));
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  color: #fff;
  flex: 1 1 auto;
}

.brand:hover {
  text-decoration: none;
}

.brand img {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.24);
}

.brand-copy {
  display: flex;
  flex-direction: column;
}

.brand-copy strong {
  font-size: 0.95rem;
  letter-spacing: 0.01em;
}

.brand-copy small {
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.76rem;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: transparent;
  border-radius: 12px;
  padding: 0;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
}

.menu-toggle span {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: #fff;
}

.header-tools {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.3rem;
}

.site-nav a,
.footer-nav a,
.footer-social a {
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.92rem;
  letter-spacing: 0.01em;
}

.site-nav a:hover,
.footer-nav a:hover,
.footer-social a:hover {
  color: #fff;
  text-decoration: none;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.search-toggle,
.language-switcher__button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  min-height: 44px;
  padding: 0.7rem 0.95rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  border-radius: 12px;
  cursor: pointer;
}

.button-install {
  min-height: 44px;
}

.header-search,
.language-switcher,
.search-unit {
  position: relative;
}

.header-search__panel,
.language-switcher__menu,
.search-dropdown {
  position: absolute;
  top: calc(100% + 0.6rem);
  right: 0;
  width: min(92vw, 560px);
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.language-switcher__menu {
  width: 220px;
  padding: 0.45rem;
}

.language-switcher__menu a {
  display: block;
  padding: 0.72rem 0.85rem;
  border-radius: 10px;
  color: var(--ink);
}

.language-switcher__menu a:hover,
.language-switcher__menu a.active {
  background: var(--bg-soft);
  text-decoration: none;
}

.language-switcher__chevron {
  font-size: 0.72rem;
  opacity: 0.72;
}

.header-search__panel {
  padding: 1rem;
}

.site-header-legacy .site-header__inner {
  align-items: flex-start;
  padding-top: 1.8rem;
  padding-bottom: 1rem;
}

.site-header-legacy .brand {
  padding-top: 0.1rem;
}

.site-header-legacy .brand img {
  width: 54px;
  height: 54px;
  border-radius: 0;
  box-shadow: none;
}

.site-header-legacy .brand-copy strong {
  font-size: 1rem;
}

.site-header-legacy .brand-copy small {
  font-size: 0.82rem;
  font-style: italic;
  color: rgba(255, 255, 255, 0.88);
}

.site-header-legacy .header-tools {
  margin-left: auto;
  align-items: flex-start;
  gap: 0.95rem;
}

.site-header-legacy .site-nav {
  gap: 0.35rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.site-header-legacy .site-nav a {
  padding: 0.56rem 0.92rem;
  border: 1px solid transparent;
  border-radius: 4px;
  color: #fff;
  font-size: 0.9rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.site-header-legacy .site-nav a.is-current {
  border-color: rgba(255, 255, 255, 0.52);
  background: rgba(255, 255, 255, 0.07);
}

.site-header-legacy .site-nav a:hover {
  background: rgba(255, 255, 255, 0.08);
}

.site-header-legacy .site-nav .nav-link-articles {
  display: none;
}

.site-header-legacy .header-actions {
  gap: 1rem;
}

.site-header-legacy .language-switcher__button {
  min-height: 40px;
  padding: 0.62rem 1rem;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.96);
  color: #6f757e;
  border-color: rgba(255, 255, 255, 0.4);
  box-shadow: none;
}

.site-header-legacy .language-switcher__menu {
  width: 240px;
}

.site-header-legacy .button-install {
  min-height: 40px;
  padding: 0.62rem 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.92);
  border-radius: 0;
  box-shadow: none;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.site-header-legacy .button-install:hover {
  background: transparent;
  color: #fff;
}

.hero {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: center;
  background:
    linear-gradient(180deg, rgba(7, 10, 13, 0.7) 0%, rgba(7, 10, 13, 0.28) 42%, rgba(7, 10, 13, 0.6) 100%),
    url("/img/hero-warehouse.jpg") center/cover no-repeat;
}

.hero__content {
  position: relative;
  z-index: 1;
  padding: 7.5rem 0 5rem;
  color: #fff;
}

.hero__stage {
  width: min(100%, 980px);
}

.hero__eyebrow,
.section-heading__eyebrow {
  margin-bottom: 0.8rem;
  color: rgba(255, 255, 255, 0.8);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  font-weight: 600;
}

.hero h1 {
  max-width: 720px;
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  color: #fff;
}

.hero__subtitle {
  max-width: 680px;
  font-size: 1.08rem;
  color: rgba(255, 255, 255, 0.86);
}

.page-home .hero {
  min-height: 530px;
  align-items: flex-start;
  background:
    linear-gradient(180deg, rgba(7, 10, 13, 0.62) 0%, rgba(7, 10, 13, 0.18) 38%, rgba(7, 10, 13, 0.54) 100%),
    url("/img/hero-warehouse.jpg") center/cover no-repeat;
}

.page-home .hero__content {
  display: flex;
  justify-content: center;
  padding: 15.2rem 0 8.4rem;
  text-align: center;
}

.page-home .hero__stage {
  display: grid;
  justify-items: center;
}

.page-home .search-unit-hero {
  width: min(100%, 760px);
}

.page-home .search-form-hero label {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.page-home .search-form-hero .search-form__row {
  border-radius: 4px;
  box-shadow: 0 26px 48px rgba(7, 10, 13, 0.2);
}

.page-home .search-form-hero input {
  padding: 1.32rem 1.6rem;
  font-size: 1.12rem;
}

.page-home .search-form-hero input::placeholder {
  color: #8a8f97;
  font-style: italic;
}

.page-home .search-form-hero .search-submit {
  width: 68px;
  background: var(--green);
}

.page-home .hero__suggested {
  margin: 0 auto 0;
  display: inline-block;
  padding: 0.68rem 1.4rem;
  border-radius: 0 0 4px 4px;
  background: rgba(122, 172, 128, 0.96);
  color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 20px 34px rgba(49, 75, 53, 0.16);
  font-size: 0.8rem;
}

.page-home .hero__suggested strong {
  font-weight: 500;
}

.page-home .hero__suggested a {
  color: #fff;
  text-decoration: underline;
}

.page-home .search-unit-hero .search-dropdown {
  left: 50%;
  right: auto;
  transform: translateX(-50%);
  width: min(100%, 880px);
}

.search-form label {
  display: block;
  margin-bottom: 0.55rem;
  font-size: 0.9rem;
  color: var(--ink);
}

.search-form-hero label {
  color: #fff;
}

.search-form__row {
  display: flex;
  align-items: stretch;
  background: #fff;
  border-radius: 14px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  overflow: hidden;
  box-shadow: 0 18px 34px rgba(7, 10, 13, 0.16);
}

.search-form input {
  flex: 1 1 auto;
  min-width: 0;
  border: 0;
  padding: 1rem 1rem 1rem 1.1rem;
  background: transparent;
}

.search-form input:focus {
  outline: none;
}

.search-submit {
  width: 56px;
  border: 0;
  background: var(--green);
  color: #fff;
  cursor: pointer;
}

.hero__suggested {
  margin-top: 1rem;
  color: rgba(255, 255, 255, 0.82);
}

.hero__suggested a {
  color: #fff;
}

.section {
  padding: 3rem 0;
}

.home-board {
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.page-home .section {
  padding: 0;
}

.page-home .home-categories {
  position: relative;
  z-index: 2;
  margin-top: -4.6rem;
}

.page-home .home-board-categories {
  padding: 3.2rem 2.4rem 2.8rem;
}

.page-home .home-faqs {
  padding: 2.1rem 0 3.8rem;
}

.page-home .home-board-faqs {
  padding: 2.2rem 2.4rem 2.5rem;
  background: rgba(255, 255, 255, 0.9);
}

.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.9rem;
}

.section-heading__eyebrow {
  color: var(--green-strong);
}

.section-heading__text {
  margin-bottom: 1.5rem;
  max-width: 760px;
  color: var(--muted);
}

.page-home .home-board .section-heading {
  align-items: flex-start;
  margin-bottom: 0.75rem;
}

.page-home .home-board .section-heading__eyebrow {
  color: #6ca071;
}

.page-home .home-board .section-heading__text {
  max-width: 880px;
  margin-bottom: 2rem;
  font-size: 1.04rem;
}

.page-home .home-board .button-secondary {
  border-color: #d5dde4;
  background: transparent;
  color: #6f7982;
}

.page-home .home-board .button-secondary:hover {
  background: #f5f8fa;
  color: var(--ink);
}

.page-home .home-board-categories .section-heading,
.page-home .home-board-categories .section-heading__text {
  display: none;
}

.page-home .home-board-faqs .section-heading {
  margin-bottom: 1.15rem;
}

.page-home .home-board-faqs .section-heading h2 {
  margin-bottom: 0;
  font-size: 2rem;
}

.page-faq-index .page-intro,
.page-faq-detail .page-intro {
  padding-top: 8.25rem;
}

.category-grid,
.faq-grid,
.related-grid {
  display: grid;
  gap: 1.2rem;
}

.category-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.faq-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.related-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.category-card,
.content-card,
.support-sidebar__panel,
.faq-item,
.mini-card,
.kb-group,
.toc-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.category-card {
  padding: 1.4rem;
}

.page-home .category-grid {
  gap: 1.35rem;
}

.page-home .category-card {
  min-height: 100%;
  padding: 1.85rem 1.5rem 1.65rem;
  border-radius: 2px;
  box-shadow: none;
}

.category-card__header {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.page-home .category-card__header {
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.85rem;
  margin-bottom: 1.4rem;
}

.category-card__header p {
  color: var(--muted);
  margin-bottom: 0;
}

.page-home .category-card__header p {
  display: none;
}

.page-home .category-card .icon-badge {
  width: auto;
  height: auto;
  border-radius: 0;
  background: transparent;
  color: #74a87a;
}

.page-home .category-card .icon-badge .material-symbols-rounded {
  font-size: 2.65rem;
  font-variation-settings:
    "FILL" 0,
    "wght" 300,
    "GRAD" 0,
    "opsz" 40;
}

.page-home .category-card h3 {
  margin-bottom: 0;
  font-size: 1.05rem;
  font-weight: 600;
}

.page-home .category-card h3 a {
  color: #26313c;
}

.category-card__links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.7rem;
}

.page-home .category-card__links {
  gap: 0.95rem;
}

.category-card__links li {
  padding-top: 0.7rem;
  border-top: 1px solid var(--line);
}

.page-home .category-card__links li {
  padding-top: 0;
  border-top: 0;
}

.page-home .category-card__links a {
  display: block;
  color: #2f7dd0;
  font-size: 0.95rem;
  line-height: 1.45;
  text-align: center;
}

.page-home .category-card__links a:hover {
  color: #1f5da7;
}

.empty-copy {
  color: var(--muted);
}

.page-intro {
  padding: 7rem 0 1.8rem;
}

.page-home .page-intro {
  padding-top: 0;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-size: 0.92rem;
}

.breadcrumbs a {
  color: var(--muted);
}

.content-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 1.4rem;
  padding-bottom: 3rem;
}

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

.content-card {
  padding: 1.5rem;
}

.content-card__header {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1rem;
}

.article-stack,
.latest-list {
  display: grid;
  gap: 1rem;
}

.article-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
  border-top: 1px solid var(--line);
}

.article-row:first-child {
  border-top: 0;
  padding-top: 0;
}

.article-row__meta,
.meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 1.1rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.support-sidebar {
  display: grid;
  gap: 1rem;
  align-self: start;
  position: sticky;
  top: 5.7rem;
}

.support-sidebar__panel {
  padding: 1.2rem;
}

.sidebar-nav {
  display: grid;
  gap: 0.7rem;
}

.sidebar-nav__group {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 0.1rem 0;
  box-shadow: none;
}

.sidebar-nav__group summary,
.kb-group summary,
.faq-item summary {
  list-style: none;
  cursor: pointer;
}

.sidebar-nav__group summary::-webkit-details-marker,
.kb-group summary::-webkit-details-marker,
.faq-item summary::-webkit-details-marker {
  display: none;
}

.sidebar-nav__group summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  padding: 0.9rem 1rem;
}

.sidebar-nav__title {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-weight: 600;
}

.sidebar-nav__count {
  font-size: 0.82rem;
  color: var(--muted);
}

.sidebar-nav__group ul {
  list-style: none;
  padding: 0 1rem 1rem 2.7rem;
  margin: 0;
  display: grid;
  gap: 0.55rem;
}

.sidebar-nav__group li a {
  color: var(--muted);
}

.sidebar-nav__group li.is-current a {
  color: var(--ink);
  font-weight: 600;
}

.article-list-item {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
}

.article-list-item__icon {
  color: var(--green-strong);
}

.article-list-item__copy h3 {
  font-size: 1rem;
  margin-bottom: 0.35rem;
}

.article-list-item__copy p,
.article-list-item__meta {
  color: var(--muted);
  font-size: 0.9rem;
}

.article-list-item__meta {
  display: flex;
  gap: 0.7rem;
}

.toc-card {
  padding: 1.2rem 1.3rem;
  margin-bottom: 1rem;
}

.toc-card h2 {
  font-size: 1.05rem;
}

.toc-card ul {
  margin-bottom: 0;
}

.article-body > *:last-child {
  margin-bottom: 0;
}

.article-body h2 {
  margin-top: 2rem;
  padding-top: 0.5rem;
  border-top: 1px solid var(--line);
}

.article-body h3 {
  margin-top: 1.5rem;
}

.callout,
.checklist-card,
.media-block,
.support-table {
  margin: 1.4rem 0;
}

.callout {
  border-radius: 16px;
  padding: 1rem 1.1rem;
  border: 1px solid rgba(86, 143, 98, 0.15);
  background: var(--green-soft);
}

.callout.warning {
  background: var(--warning-soft);
  border-color: rgba(196, 107, 95, 0.18);
}

.checklist-card {
  border-radius: 16px;
  background: var(--surface-soft);
  border: 1px solid var(--line);
  padding: 1rem 1.1rem;
}

.checklist-card ul {
  margin: 0;
}

.card-list {
  margin: 1.6rem 0;
}

.card-list-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.mini-card {
  padding: 1.1rem;
}

.support-table {
  overflow: hidden;
}

.support-table figcaption {
  padding: 1rem 1rem 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.support-table table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.96rem;
}

.support-table th,
.support-table td {
  padding: 0.9rem 1rem;
  text-align: left;
  border-top: 1px solid var(--line);
  vertical-align: top;
}

.feedback-panel {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.like-button,
.like-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  border-radius: 999px;
  border: 1px solid rgba(86, 143, 98, 0.2);
  background: var(--green-soft);
  color: var(--green-strong);
  padding: 0.42rem 0.78rem;
  font-size: 0.88rem;
  font-weight: 600;
}

.like-button {
  cursor: pointer;
}

.like-button.is-liked {
  opacity: 0.65;
  cursor: default;
}

.prev-next {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin: 1.25rem 0;
}

.prev-next__item {
  display: block;
  padding: 1rem 1.1rem;
  border-radius: var(--radius-sm);
  background: var(--surface);
  border: 1px solid var(--line);
}

.prev-next__item small {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--muted);
}

.related-section {
  padding: 1rem 0 3rem;
}

.faq-item {
  overflow: hidden;
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.1rem;
  font-weight: 600;
}

.faq-item__marker {
  font-size: 1.2rem;
  color: var(--green-strong);
}

.faq-item[open] .faq-item__marker {
  transform: rotate(45deg);
}

.faq-item__body {
  padding: 0 1.1rem 1rem;
  color: var(--muted);
}

.page-home .faq-grid {
  gap: 1rem;
}

.page-home .faq-item {
  border-radius: 2px;
  box-shadow: none;
}

.page-home .faq-item summary {
  padding: 1.15rem 1.2rem;
}

.faq-list-page {
  display: grid;
  gap: 1rem;
  padding-bottom: 3rem;
}

.kb-index-list {
  display: grid;
  gap: 1rem;
}

.kb-group {
  padding: 0;
}

.kb-group summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.2rem;
  font-weight: 700;
}

.kb-group__title {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

.kb-group__count {
  color: var(--muted);
}

.kb-group p,
.kb-group ul {
  padding: 0 1.2rem 1rem;
}

.search-dropdown {
  z-index: 30;
  padding: 0.9rem;
}

.search-dropdown__filters,
.search-filter-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.filter-pill {
  border: 1px solid var(--line-strong);
  background: var(--surface-soft);
  color: var(--ink);
  border-radius: 999px;
  padding: 0.45rem 0.8rem;
  cursor: pointer;
}

.filter-pill.is-active {
  background: var(--green-soft);
  color: var(--green-strong);
  border-color: rgba(86, 143, 98, 0.22);
}

.search-dropdown__results,
.search-page__results {
  display: grid;
  gap: 0.8rem;
  margin-top: 0.9rem;
}

.search-result {
  display: flex;
  gap: 0.9rem;
  padding: 0.85rem 0;
  border-top: 1px solid var(--line);
}

.search-result:first-child {
  border-top: 0;
  padding-top: 0;
}

.search-result__icon {
  color: var(--green-strong);
  flex: 0 0 auto;
}

.search-result__body h3 {
  font-size: 1rem;
  margin-bottom: 0.35rem;
}

.search-result__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0.8rem;
  color: var(--muted);
  font-size: 0.88rem;
}

.search-type {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0.2rem 0.55rem;
  background: var(--surface-soft);
  border: 1px solid var(--line);
}

.search-dropdown__cta {
  display: inline-flex;
  margin-top: 0.9rem;
  font-weight: 600;
}

.search-page {
  padding-bottom: 3rem;
}

.search-page__toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1rem;
}

.search-page__status {
  color: var(--muted);
}

.error-state {
  padding: 9rem 0 2rem;
  text-align: center;
}

.site-footer {
  background:
    linear-gradient(90deg, rgba(22, 27, 34, 0.98), rgba(7, 10, 13, 0.98)),
    linear-gradient(180deg, rgba(122, 172, 128, 0.18), transparent);
  color: rgba(255, 255, 255, 0.86);
  padding: 2.4rem var(--gutter) 1.5rem;
}

.site-footer__top,
.site-footer__grid,
.site-footer__bottom {
  width: min(100%, var(--shell));
  margin: 0 auto;
}

.site-footer__top,
.site-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr;
  gap: 2rem;
  padding: 2rem 0;
}

.site-footer__grid h2 {
  color: #fff;
  font-size: 1rem;
}

.footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.6rem;
}

.footer-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.7rem;
}

.site-footer__bottom {
  padding-top: 1.2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.9rem;
}

@media (max-width: 1080px) {
  .category-grid,
  .related-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .content-shell {
    grid-template-columns: minmax(0, 1fr);
  }

  .support-sidebar {
    position: static;
  }

  .page-home .hero__content {
    padding-top: 13rem;
    padding-bottom: 7.4rem;
  }

  .page-home .home-categories {
    margin-top: -3.5rem;
  }
}

@media (max-width: 920px) {
  .site-header__inner {
    flex-wrap: wrap;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .header-tools {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    padding-bottom: 0.35rem;
  }

  .header-tools.is-open {
    display: flex;
  }

  .site-nav,
  .header-actions {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }

  .site-nav a,
  .button-install,
  .search-toggle,
  .language-switcher__button {
    width: 100%;
    justify-content: flex-start;
  }

  .header-search__panel,
  .language-switcher__menu {
    position: static;
    width: 100%;
    margin-top: 0.6rem;
  }

  .faq-grid,
  .site-footer__grid {
    grid-template-columns: 1fr;
  }

  .site-header-legacy .site-header__inner {
    padding-top: 1.1rem;
  }

  .site-header-legacy .site-nav a,
  .site-header-legacy .button-install {
    letter-spacing: 0.08em;
    text-transform: none;
  }

  .page-home .home-board-categories,
  .page-home .home-board-faqs {
    padding: 2rem 1.5rem;
  }
}

@media (max-width: 680px) {
  .hero {
    min-height: 430px;
  }

  .hero__content {
    padding-top: 8rem;
  }

  .section-heading,
  .site-footer__top,
  .site-footer__bottom,
  .feedback-panel,
  .article-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .category-grid,
  .related-grid,
  .card-list-grid,
  .prev-next {
    grid-template-columns: 1fr;
  }

  .search-result {
    gap: 0.6rem;
  }

  .page-home .hero {
    min-height: 520px;
  }

  .page-home .hero__content {
    padding-top: 9.8rem;
    padding-bottom: 6rem;
  }

  .page-home .search-form-hero input {
    padding: 1rem 1rem 1rem 1.1rem;
    font-size: 1rem;
  }

  .page-home .hero__suggested {
    width: 100%;
    padding: 0.8rem 1rem;
    text-align: center;
  }

  .page-home .home-categories {
    margin-top: -2rem;
  }

  .page-home .home-board-categories,
  .page-home .home-board-faqs {
    padding: 1.55rem 1.15rem;
  }
}
