@charset "utf-8";

:root {
  color-scheme: light;
  --header-height: 96px;
  --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;
}

.has-js .material-symbols-rounded {
  visibility: hidden;
}

.has-js.icons-ready .material-symbols-rounded {
  visibility: visible;
}

.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 {
  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 {
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.92rem;
  letter-spacing: 0.01em;
}

.site-nav 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;
  max-height: min(70vh, 520px);
  overflow-y: auto;
  overscroll-behavior: contain;
}

.language-switcher__search {
  position: sticky;
  top: -0.45rem;
  z-index: 1;
  padding: 0.45rem 0 0.5rem;
  background: var(--surface);
}

.language-switcher__search-input {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0.72rem 0.85rem;
  background: #f7f9fb;
  color: var(--ink);
}

.language-switcher__search-input:focus {
  outline: none;
  border-color: rgba(47, 125, 208, 0.42);
  box-shadow: 0 0 0 3px rgba(47, 125, 208, 0.12);
}

.language-switcher__list {
  display: grid;
  gap: 0.2rem;
}

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

.language-switcher__empty {
  margin: 0.2rem 0 0;
  padding: 0.72rem 0.85rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.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: center;
  padding-top: 1.8rem;
  padding-bottom: 1rem;
  transition: padding 0.22s ease, gap 0.22s ease;
}

.site-header-legacy {
  position: fixed;
  inset: 0 0 auto;
  width: 100%;
  background:
    linear-gradient(180deg, rgba(7, 10, 13, 0.92) 0%, rgba(7, 10, 13, 0.62) 62%, rgba(7, 10, 13, 0) 100%);
  transition:
    background 0.22s ease,
    box-shadow 0.22s ease,
    border-color 0.22s ease,
    backdrop-filter 0.22s ease;
}

.site-header-legacy.is-scrolled,
.site-header-legacy.is-menu-open {
  background: rgba(7, 10, 13, 0.94);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 16px 36px rgba(7, 10, 13, 0.24);
  backdrop-filter: blur(16px);
}

.site-header-legacy.is-scrolled .site-header__inner,
.site-header-legacy.is-menu-open .site-header__inner {
  padding-top: 0.82rem;
  padding-bottom: 0.82rem;
}

.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: center;
  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;
  max-height: min(70vh, 520px);
}

.site-header-legacy .language-switcher__search-input {
  border-radius: 2px;
  background: #fff;
}

.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.2rem, 4.6vw, 3.8rem);
  color: #fff;
}

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

.page-home .hero {
  min-height: 530px;
  position: relative;
  overflow: hidden;
  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 .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: auto;
  min-width: 72px;
  align-items: center;
  justify-content: center;
  padding: 0 1.2rem 0 0.8rem;
  background: transparent;
  color: var(--green);
}

.page-home .search-form-hero .search-submit:hover {
  background: transparent;
}

.page-home .search-form-hero .search-submit .material-symbols-rounded {
  font-size: 2.2rem;
  font-variation-settings:
    "FILL" 0,
    "wght" 350,
    "GRAD" 0,
    "opsz" 40;
}

.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;
}

.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 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  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 .hero {
  position: relative;
  z-index: 1;
}

.page-home .home-search-section {
  position: relative;
  z-index: 3;
  margin-top: -20rem;
}

.page-home .home-search-stage {
  display: grid;
  justify-items: center;
  margin: 0 auto;
}

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

.page-home .home-board {
  position: relative;
  z-index: 1;
  overflow: visible;
}

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

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

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

.page-home .home-faqs {
  padding: 2.8rem 0 4.25rem;
}

.page-home .home-board-faqs {
  padding: 2.35rem 0 1.1rem;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.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;
}

.home-faqs__header {
  margin-bottom: 2.1rem;
  text-align: center;
}

.home-faqs__header h2 {
  margin-bottom: 0;
  font-size: clamp(1.9rem, 2.6vw, 2.45rem);
  font-weight: 400;
  color: #31445a;
}

.page-faq-index .page-intro,
.page-contact .page-intro {
  padding-top: calc(var(--header-height, 96px) + 2rem);
}

.page-search {
  background: #dfe5eb;
}

.page-category {
  background: #dfe5eb;
}

.search-page-main {
  padding-bottom: 3.6rem;
}

.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;
}

.page-faq-index {
  background: #dfe5eb;
}

.page-contact {
  background: #dfe5eb;
}

.faq-index-main {
  padding-bottom: 3.85rem;
}

.faq-index-hero {
  height: calc(var(--header-height, 96px) + 138px);
  background:
    linear-gradient(180deg, rgba(7, 10, 13, 0.48) 0%, rgba(7, 10, 13, 0.18) 40%, rgba(7, 10, 13, 0.46) 100%),
    url("/img/hero-warehouse.jpg") center top/cover no-repeat;
}

.faq-index-panel {
  position: relative;
  z-index: 1;
  margin-top: -88px;
}

.faq-index-panel__inner {
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid #d8dfe6;
  padding: 3rem clamp(1.35rem, 4vw, 5rem) 3.6rem;
}

.faq-index-header {
  margin-bottom: 2.55rem;
  padding-bottom: 1.55rem;
  border-bottom: 1px solid #d7dee5;
  text-align: center;
}

.faq-index-header h1 {
  margin-bottom: 0;
  font-size: clamp(2.1rem, 3.8vw, 2.9rem);
  font-weight: 400;
  color: #31465c;
  letter-spacing: 0.01em;
}

.contact-page-main {
  padding-bottom: 4.5rem;
}

.contact-simple {
  display: flex;
  justify-content: center;
}

.contact-page-panel__inner {
  padding-top: 2.85rem;
  padding-bottom: 3.1rem;
}

.contact-simple__panel {
  width: min(100%, 760px);
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  text-align: center;
}

.contact-page-header {
  margin-bottom: 2rem;
}

.contact-page-header h1 {
  font-size: clamp(2.1rem, 3.8vw, 2.9rem);
}

.contact-simple__intro {
  max-width: 560px;
  margin: 0 auto 1.8rem;
  color: #5f6b77;
  font-size: 1.08rem;
}

.contact-simple__cta {
  min-width: 280px;
  margin-bottom: 2rem;
  padding-inline: 2rem;
}

.contact-simple__details {
  max-width: 540px;
  margin: 0 auto 1.5rem;
  padding: 0;
  border: 0;
  background: transparent;
  text-align: left;
}

.contact-simple__details h2 {
  margin-bottom: 0.95rem;
  color: #6f7c88;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-simple__list {
  list-style: none;
  padding: 0;
  margin: 0;
  max-width: none;
  display: grid;
  gap: 0;
  border-top: 1px solid #dbe2e8;
}

.contact-simple__list li {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 0.8rem;
  align-items: start;
  padding: 0.95rem 0;
  border-bottom: 1px solid #dbe2e8;
  background: transparent;
  color: #44586c;
}

.contact-simple__list-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 0;
  background: transparent;
  color: #77ab7d;
}

.contact-simple__list-icon .material-symbols-rounded {
  font-size: 1.15rem;
}

.contact-simple__list-text {
  display: block;
  padding-top: 0.05rem;
  color: #44586c;
  font-size: 0.98rem;
  line-height: 1.5;
}

.contact-simple__note {
  margin: 0;
  color: #76818c;
  font-size: 0.95rem;
}

.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;
}

.article-layout {
  padding-bottom: 4.5rem;
}

.category-layout {
  padding-bottom: 4.5rem;
}

.article-hero {
  height: calc(var(--header-height, 96px) + 150px);
  background:
    linear-gradient(180deg, rgba(7, 10, 13, 0.5) 0%, rgba(7, 10, 13, 0.18) 42%, rgba(7, 10, 13, 0.48) 100%),
    url("/img/hero-warehouse.jpg") center top/cover no-repeat;
}

.article-frame {
  position: relative;
  z-index: 1;
  margin-top: -92px;
  width: min(100% - (var(--gutter) * 2), 1280px);
}

.category-panel {
  position: relative;
  z-index: 1;
  margin-top: -88px;
  width: min(100% - (var(--gutter) * 2), 1280px);
}

.article-frame__panel {
  background: rgba(255, 255, 255, 0.985);
  border: 1px solid #d9e0e6;
}

.category-panel__inner {
  padding: 3rem clamp(1.35rem, 4vw, 5rem) 3.6rem;
}

.page-article .article-shell {
  grid-template-columns: 340px minmax(0, 1fr);
  align-items: start;
  gap: 3.9rem;
  padding: 3.6rem 3.9rem 4rem;
  padding-bottom: 4rem;
}

.page-category .category-shell {
  grid-template-columns: 340px minmax(0, 1fr);
  align-items: start;
  gap: 3.9rem;
  padding: 3.6rem 3.9rem 4rem;
  padding-bottom: 4rem;
}

.page-category .support-sidebar {
  top: calc(var(--header-height, 96px) + 2rem);
}

.page-category .support-sidebar__panel {
  padding: 0 2.65rem 0 0;
  background: transparent;
  border: 0;
  border-right: 1px solid #e0e6ec;
}

.category-main {
  padding-bottom: 0;
}

.category-header-simple {
  margin-bottom: 2.35rem;
}

.category-header-simple__summary {
  max-width: 720px;
  margin: 0 auto 1.55rem;
  color: #66727f;
  font-size: 1rem;
  line-height: 1.7;
}

.category-article-stack {
  gap: 0.95rem;
}

.category-article-row {
  align-items: stretch;
  gap: 1.35rem;
  padding: 1.25rem 1.35rem;
  border: 1px solid #e1e7ed;
  border-radius: 2px;
  background: #fbfcfd;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease;
}

.category-article-row:hover {
  border-color: #d0dbe5;
  background: #fff;
  box-shadow: 0 12px 24px rgba(22, 31, 43, 0.04);
}

.category-article-row:first-child {
  border-top: 1px solid #e1e7ed;
  padding-top: 1.25rem;
}

.category-article-row__copy {
  min-width: 0;
  flex: 1 1 auto;
}

.category-article-row h3 {
  margin-bottom: 0.52rem;
  font-size: clamp(1.16rem, 1.45vw, 1.34rem);
  line-height: 1.3;
}

.category-article-row h3 a {
  color: #2f7dd0;
}

.category-article-row h3 a:hover {
  color: #216ab6;
  text-decoration: none;
}

.category-article-row p {
  margin-bottom: 0;
  color: #5e6b78;
  font-size: 0.98rem;
  line-height: 1.72;
  max-width: 46rem;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.category-article-row__meta {
  flex: 0 0 132px;
  flex-direction: column;
  align-items: flex-end;
  justify-content: space-between;
  gap: 0.9rem;
  text-align: right;
}

.category-article-row__date {
  display: block;
  color: #7a8693;
  font-size: 0.92rem;
  line-height: 1.45;
}

.category-article-row__likes {
  margin-left: 0;
  font-size: 0.94rem;
}

.category-article-row__likes .material-symbols-rounded {
  font-size: 1rem;
}

.page-article .support-sidebar {
  position: static;
  top: auto;
}

.page-article .support-sidebar__panel-article {
  padding: 0 2.65rem 0 0;
  background: transparent;
  border: 0;
  border-right: 1px solid #e0e6ec;
}

.page-article .article-main {
  padding-bottom: 0;
}

.article-header-simple {
  margin-bottom: 3.2rem;
  text-align: center;
}

.article-breadcrumbs {
  justify-content: center;
  gap: 0.85rem;
  margin-bottom: 2rem;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.article-breadcrumbs a {
  color: #8e98a3;
}

.article-breadcrumbs a + a::before {
  content: "›";
  margin-right: 0.85rem;
  color: #a9b1ba;
}

.article-header-simple h1 {
  margin-bottom: 1.65rem;
  font-size: clamp(1.85rem, 3vw, 2.7rem);
  font-weight: 400;
  color: #31465c;
}

.article-header-simple__rule {
  height: 1px;
  background: #d7dee5;
}

.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;
}

.support-sidebar__panel h2 {
  margin-bottom: 1rem;
  color: #7d8791;
  font-size: 0.9rem;
  font-weight: 700;
}

.support-sidebar__panel-article {
  padding: 1.35rem 0.9rem 0.85rem;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid #d7dee5;
  box-shadow: none;
}

.support-sidebar__divider {
  height: 1px;
  margin: 0.9rem 0 1.45rem;
  background: #e1e7ed;
}

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

.sidebar-nav-article {
  gap: 0;
}

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

.sidebar-nav__group-article {
  border: 0;
  border-radius: 0;
  padding: 0;
}

.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__group-article summary {
  padding: 0.75rem 0.15rem 0.75rem 0.25rem;
}

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

.sidebar-nav__group-article .sidebar-nav__title {
  width: 100%;
  gap: 0.75rem;
  color: #2f7dd0;
  font-size: 0.92rem;
  font-weight: 400;
}

.sidebar-nav__group-article[open] .sidebar-nav__title {
  font-size: 0.96rem;
  font-weight: 700;
}

.sidebar-nav__group-article .sidebar-nav__title .icon-inline {
  color: #77ab7d;
}

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

.sidebar-nav__group-article .sidebar-nav__count {
  margin-left: 0.2rem;
  font-size: 0.82rem;
  font-weight: 400;
  color: #a1a7b5;
}

.sidebar-nav__toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border: 1px solid #aeb5c2;
  border-radius: 4px;
  color: #303844;
  font-size: 1.15rem;
  transition: transform 0.18s ease, background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}

.sidebar-nav__group[open] .sidebar-nav__toggle {
  transform: rotate(180deg);
}

.sidebar-nav__group-article[open] .sidebar-nav__toggle {
  background: #7fb67d;
  border-color: #7fb67d;
  color: #fff;
}

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

.sidebar-nav__group-article ul {
  padding: 0 0 0.7rem;
  gap: 0;
}

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

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

.sidebar-nav__group-article li a {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  padding: 0.62rem 0.7rem 0.62rem 2.35rem;
  color: #2f7dd0;
  font-size: 0.84rem;
  line-height: 1.35;
}

.sidebar-nav__group-article li a:hover {
  text-decoration: none;
  color: #216ab6;
}

.sidebar-nav__group-article li.is-current a {
  margin-left: -1.05rem;
  margin-right: -1.05rem;
  padding-left: calc(2.35rem + 1.05rem - 4px);
  padding-right: calc(0.7rem + 1.05rem);
  border-left: 4px solid #79ac7a;
  background: #eef1f7;
  color: #2d7bbc;
  font-weight: 700;
}

.sidebar-nav__article-icon {
  color: #a5acb7;
}

.sidebar-nav__article-icon .material-symbols-rounded,
.sidebar-nav__group-article .sidebar-nav__title .material-symbols-rounded {
  font-size: 1.2rem;
}

.sidebar-nav__group-article li.is-current .sidebar-nav__article-icon {
  color: #79ac7a;
}

.sidebar-latest-article h2 {
  margin-bottom: 1.25rem;
}

.sidebar-latest-article__list {
  display: grid;
  gap: 1.35rem;
}

.sidebar-latest-article__item {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  gap: 0.7rem;
  align-items: start;
}

.sidebar-latest-article__icon {
  color: #79ac7a;
}

.sidebar-latest-article__icon .material-symbols-rounded {
  font-size: 1.15rem;
}

.sidebar-latest-article__copy {
  min-width: 0;
}

.sidebar-latest-article__row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.8rem;
}

.sidebar-latest-article__row h3 {
  margin-bottom: 0.35rem;
  font-size: 0.84rem;
  font-weight: 400;
  line-height: 1.38;
}

.sidebar-latest-article__row h3 a {
  color: #2f7dd0;
}

.sidebar-latest-article__row h3 a:hover {
  color: #216ab6;
  text-decoration: none;
}

.sidebar-latest-article__copy p {
  margin-bottom: 0;
  color: #88929c;
  font-size: 0.76rem;
}

.sidebar-latest-article__likes {
  display: inline-flex;
  align-items: center;
  gap: 0.18rem;
  flex: 0 0 auto;
  margin-top: 0.05rem;
  color: #79ac7a;
  font-size: 0.8rem;
}

.sidebar-latest-article__likes .material-symbols-rounded {
  font-size: 0.88rem;
  font-variation-settings:
    "FILL" 1,
    "wght" 500,
    "GRAD" 0,
    "opsz" 20;
}

.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;
}

.page-article .article-body-plain {
  color: #575d69;
  font-size: 1.05rem;
  line-height: 1.95;
}

.page-article .article-body-plain p {
  margin-bottom: 1.8rem;
}

.page-article .article-body-plain h2 {
  margin-top: 2.4rem;
  padding-top: 0;
  border-top: 0;
  font-size: 1.7rem;
  color: #394552;
}

.page-article .article-body-plain h3 {
  margin-top: 1.85rem;
  color: #434f5d;
}

.article-endcap {
  margin-top: 3.3rem;
}

.article-helpful,
.article-nav-split,
.article-related-flat {
  border-top: 1px solid #d7dee5;
}

.article-helpful {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  padding: 2rem 0 1.9rem;
}

.article-helpful h2 {
  margin-bottom: 0;
  color: #34495f;
  font-size: 0.9rem;
  font-weight: 700;
}

.article-helpful__button {
  min-width: 92px;
  justify-content: center;
  padding: 0.88rem 1.2rem;
  border-color: #d7dee5;
  background: #fff;
  color: #77ab7d;
  font-size: 0.92rem;
  font-weight: 500;
}

.article-helpful__button .icon-inline .material-symbols-rounded {
  font-size: 1.2rem;
  font-variation-settings:
    "FILL" 1,
    "wght" 500,
    "GRAD" 0,
    "opsz" 20;
}

.article-helpful__button.is-liked {
  opacity: 1;
  color: #77ab7d;
}

.article-feedback-banner {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 1rem;
  align-items: center;
  margin: 0 0 2rem;
  padding: 1.4rem 1.6rem;
  border: 1px solid #d9e5f1;
  background: #e8f0f9;
  color: #2d5f92;
}

.article-feedback-banner__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #336b9d;
}

.article-feedback-banner__icon .material-symbols-rounded {
  font-size: 2rem;
  font-variation-settings:
    "FILL" 1,
    "wght" 500,
    "GRAD" 0,
    "opsz" 24;
}

.article-feedback-banner__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-width: 0;
}

.article-feedback-banner__message {
  margin-bottom: 0;
  color: #2c6297;
  font-size: 1rem;
  line-height: 1.5;
}

.article-feedback-banner__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  min-height: 44px;
  padding: 0.7rem 1.1rem;
  border-radius: 999px;
  background: #79ac7a;
  color: #fff;
  font-size: 0.92rem;
  font-weight: 700;
  text-align: center;
}

.article-feedback-banner__cta:hover {
  color: #fff;
  text-decoration: none;
  background: #6c9c6d;
}

.article-nav-split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
  padding: 2rem 0 1.95rem;
}

.article-nav-split__item {
  min-height: 4.9rem;
}

.article-nav-split__item small,
.article-related-flat h2 {
  display: block;
  margin-bottom: 0.7rem;
  color: #98a2ad;
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.article-nav-split__item a {
  color: #2f7dd0;
  font-size: clamp(1rem, 1.55vw, 1.15rem);
  line-height: 1.45;
}

.article-nav-split__item-next {
  text-align: right;
}

.article-related-flat {
  padding: 2rem 0 0;
}

.article-related-flat__list {
  display: grid;
  gap: 0.78rem;
}

.article-related-flat__item {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.85rem;
}

.article-related-flat__icon {
  color: #a7adba;
}

.article-related-flat__icon .material-symbols-rounded {
  font-size: 1.2rem;
}

.article-related-flat__copy {
  min-width: 0;
}

.article-related-flat__copy a {
  color: #2f7dd0;
  font-size: clamp(1rem, 1.45vw, 1.12rem);
  line-height: 1.45;
}

.article-related-flat__likes {
  display: inline-flex;
  align-items: center;
  gap: 0.22rem;
  color: #77ab7d;
  font-size: 0.92rem;
  white-space: nowrap;
}

.article-related-flat__likes .material-symbols-rounded {
  font-size: 1rem;
  font-variation-settings:
    "FILL" 1,
    "wght" 500,
    "GRAD" 0,
    "opsz" 20;
}

.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);
}

.callout.info {
  background: #eef5ff;
  border-color: rgba(71, 118, 196, 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;
}

.page-article .article-body-plain .comparison-table-block {
  margin: 1.6rem 0 1.9rem;
  padding: 1.2rem;
  border: 1px solid rgba(47, 103, 176, 0.12);
  border-radius: 22px;
  background:
    radial-gradient(circle at top left, rgba(47, 103, 176, 0.09), transparent 34%),
    linear-gradient(180deg, #fff 0%, #f7fafc 100%);
  box-shadow: 0 18px 34px rgba(18, 31, 44, 0.06);
}

.page-article .article-body-plain .comparison-table__intro {
  margin-bottom: 1rem;
  color: #44515f;
}

.page-article .article-body-plain .comparison-table-card {
  margin: 0;
  border: 1px solid rgba(47, 103, 176, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
}

.page-article .article-body-plain .comparison-table-card figcaption {
  padding: 1rem 1.1rem 0.35rem;
  color: #647282;
  font-size: 0.88rem;
}

.page-article .article-body-plain .comparison-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 0.96rem;
}

.page-article .article-body-plain .comparison-table thead th {
  padding: 1rem 1.1rem;
  border-top: 0;
  border-bottom: 1px solid var(--line);
  background: rgba(244, 248, 252, 0.94);
  color: #304153;
  vertical-align: bottom;
}

.page-article .article-body-plain .comparison-table thead th:first-child {
  width: 34%;
  border-top-left-radius: 18px;
}

.page-article .article-body-plain .comparison-table thead th:last-child {
  border-top-right-radius: 18px;
}

.page-article .article-body-plain .comparison-table__heading {
  display: block;
  color: #1f3144;
  font-size: 1rem;
  font-weight: 700;
}

.page-article .article-body-plain .comparison-table__subheading {
  display: block;
  margin-top: 0.3rem;
  color: #708090;
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1.5;
}

.page-article .article-body-plain .comparison-table tbody th[scope="row"],
.page-article .article-body-plain .comparison-table tbody td {
  padding: 1rem 1.1rem;
  border-top: 1px solid var(--line);
  background: #fff;
  vertical-align: middle;
}

.page-article .article-body-plain .comparison-table tbody th[scope="row"] {
  color: #273443;
  font-weight: 700;
}

.page-article .article-body-plain .comparison-table tbody td {
  text-align: center;
}

.page-article .article-body-plain .comparison-table tbody tr:nth-child(even) th[scope="row"],
.page-article .article-body-plain .comparison-table tbody tr:nth-child(even) td {
  background: #fbfcfd;
}

.page-article .article-body-plain .comparison-cell {
  display: inline-grid;
  gap: 0.42rem;
  justify-items: center;
  text-align: center;
}

.page-article .article-body-plain .comparison-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.42rem;
  min-width: 84px;
  padding: 0.44rem 0.82rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1;
}

.page-article .article-body-plain .comparison-pill--yes {
  border-color: rgba(86, 143, 98, 0.18);
  background: var(--green-soft);
  color: var(--green-strong);
}

.page-article .article-body-plain .comparison-pill--no {
  border-color: rgba(196, 107, 95, 0.18);
  background: #fff2ef;
  color: var(--danger);
}

.page-article .article-body-plain .comparison-pill__icon {
  font-size: 0.95rem;
  line-height: 1;
}

.page-article .article-body-plain .comparison-note {
  max-width: 12rem;
  color: #6b7785;
  font-size: 0.82rem;
  line-height: 1.45;
}

.page-article .article-body-plain img {
  display: block;
  max-width: 100%;
  width: auto;
  height: auto;
  border-radius: 16px;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
}

.page-article .article-body-plain .image-block {
  display: inline-block;
  width: fit-content;
  max-width: 100%;
}

.page-article .article-body-plain video {
  display: block;
  width: 100%;
  max-width: 320px;
  height: auto;
  border: 0;
  border-radius: 16px;
  background: #000;
  margin: 1.35rem 0;
}

.page-article .article-body-plain .ratio-frame {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  overflow: hidden;
  border-radius: 16px;
  background: #000;
}

.page-article .article-body-plain .ratio-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.page-article .article-body-plain .imported-video-stack {
  display: grid;
  gap: 1.25rem;
}

.page-article .article-body-plain .imported-video-card figcaption {
  margin-bottom: 0.55rem;
  color: var(--ink);
  font-weight: 600;
}

.page-article .article-body-plain .video-block--narrow {
  max-width: 320px;
}

.page-article .article-body-plain .video-block,
.page-article .article-body-plain .video-block--narrow {
  max-width: 320px;
}

.page-article .article-body-plain .video-block--wide video {
  max-width: 600px;
}

.page-article .article-body-plain .imported-caption {
  margin-top: -0.3rem;
  margin-bottom: 1.4rem;
  color: var(--muted);
  font-size: 0.92rem;
  text-align: center;
  font-style: italic;
}

.page-article .article-body-plain .support-panel {
  margin: 1.4rem 0;
  padding: 1.1rem 1.2rem;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
}

.page-article .article-body-plain .support-panel-soft {
  background: var(--surface-soft);
}

.page-article .article-body-plain .support-panel-brand {
  background: #eff6ff;
  border-color: rgba(59, 104, 171, 0.28);
}

.page-article .article-body-plain .support-panel__content > :last-child,
.page-article .article-body-plain .support-panel > :last-child,
.page-article .article-body-plain .imported-callout > :last-child {
  margin-bottom: 0;
}

.page-article .article-body-plain .table-scroll {
  overflow-x: auto;
}

.page-article .article-body-plain .support-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.page-article .article-body-plain .imported-section {
  margin-top: 2rem;
}

.page-article .article-body-plain .imported-section--narrow {
  max-width: 620px;
}

.page-article .article-body-plain .support-icon-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.page-article .article-body-plain .support-icon-box {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 6px;
  background: #0c5460;
  color: #fff;
}

.page-article .article-body-plain .imported-accordion {
  display: grid;
  gap: 0.7rem;
  margin: 1.2rem 0 1.8rem;
}

.page-article .article-body-plain .imported-accordion-item {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  overflow: hidden;
}

.page-article .article-body-plain .imported-accordion-item summary {
  list-style: none;
  cursor: pointer;
  padding: 0.95rem 1rem;
  font-weight: 600;
}

.page-article .article-body-plain .imported-accordion-item summary::-webkit-details-marker {
  display: none;
}

.page-article .article-body-plain .imported-accordion-body {
  padding: 0 1rem 1rem;
}

@media (max-width: 760px) {
  .page-article .article-body-plain .support-grid {
    grid-template-columns: 1fr;
  }

  .page-article .article-body-plain .comparison-table-block {
    padding: 0.95rem;
    border-radius: 18px;
  }

  .page-article .article-body-plain .comparison-table-card {
    border-radius: 16px;
  }

  .page-article .article-body-plain .comparison-table-card figcaption {
    padding: 0.95rem 1rem 0.1rem;
  }

  .page-article .article-body-plain .comparison-table thead {
    display: none;
  }

  .page-article .article-body-plain .comparison-table,
  .page-article .article-body-plain .comparison-table tbody,
  .page-article .article-body-plain .comparison-table tr,
  .page-article .article-body-plain .comparison-table th,
  .page-article .article-body-plain .comparison-table td {
    display: block;
    width: 100%;
  }

  .page-article .article-body-plain .comparison-table tbody {
    padding: 0 0.95rem 0.95rem;
  }

  .page-article .article-body-plain .comparison-table tr {
    margin-top: 0.9rem;
    border: 1px solid var(--line);
    border-radius: 14px;
    overflow: hidden;
  }

  .page-article .article-body-plain .comparison-table tbody tr:first-child {
    margin-top: 0;
  }

  .page-article .article-body-plain .comparison-table tbody tr:nth-child(even) th[scope="row"],
  .page-article .article-body-plain .comparison-table tbody tr:nth-child(even) td,
  .page-article .article-body-plain .comparison-table tbody tr:nth-child(odd) th[scope="row"],
  .page-article .article-body-plain .comparison-table tbody tr:nth-child(odd) td {
    background: #fff;
  }

  .page-article .article-body-plain .comparison-table tbody th[scope="row"] {
    padding: 0.9rem 1rem 0.75rem;
    border-top: 0;
    background: #f5f8fb;
  }

  .page-article .article-body-plain .comparison-table tbody td {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 0.8rem;
    align-items: start;
    padding: 0.8rem 1rem;
    text-align: left;
  }

  .page-article .article-body-plain .comparison-table tbody td::before {
    content: attr(data-label);
    color: #5f6b79;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .page-article .article-body-plain .comparison-cell {
    justify-items: end;
    text-align: right;
  }

  .page-article .article-body-plain .comparison-note {
    max-width: none;
  }
}

.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,
.like-button.is-disabled,
.like-button:disabled {
  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__summary-text {
  min-width: 0;
}

.faq-item__actions {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  flex: 0 0 auto;
}

.faq-item__copy {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #a1a9b3;
  cursor: pointer;
  transition: color 0.18s ease, background 0.18s ease;
}

.faq-item__copy:hover {
  color: #7f8893;
}

.faq-item__copy:focus-visible {
  outline: 2px solid var(--green-strong);
  outline-offset: 2px;
}

.faq-item__copy.is-copied {
  color: var(--green-strong);
}

.faq-item__copy .material-symbols-rounded {
  font-size: 1.15rem;
}

.faq-item__copied-note {
  opacity: 0;
  transform: translateY(-1px);
  color: var(--green-strong);
  font-size: 0.82rem;
  font-weight: 600;
  pointer-events: none;
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.faq-item__copied-note.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.faq-item__marker {
  flex: 0 0 auto;
  font-size: 2rem;
  color: #96a0a9;
  transition: transform 0.18s ease, color 0.18s ease;
}

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

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

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

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

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

.page-home .home-faq-item {
  border-radius: 2px;
  border: 1px solid #d5dde5;
  box-shadow: none;
  background: rgba(255, 255, 255, 0.18);
}

.page-home .home-faq-item summary {
  min-height: 88px;
  padding: 1.25rem 1.5rem;
  font-size: clamp(0.98rem, 1.05vw, 1.08rem);
  line-height: 1.35;
  font-weight: 400;
  color: #42586f;
}

.page-home .home-faq-item summary:hover {
  background: rgba(255, 255, 255, 0.28);
}

.page-home .home-faq-item summary:focus-visible {
  outline: 2px solid var(--green-strong);
  outline-offset: -2px;
}

.page-home .home-faq-item .faq-item__marker {
  font-size: 1.8rem;
}

.page-home .home-faq-item .faq-item__body {
  padding: 1.05rem 1.5rem 1.3rem;
  border-top: 1px solid #e3e9ef;
  color: #5f6974;
  font-size: 0.94rem;
}

.page-home .home-faq-item .faq-item__body > *:last-child {
  margin-bottom: 0;
}

.page-home .home-faq-item .faq-item__copy {
  display: none;
}

.home-faqs__footer {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-top: 3.15rem;
}

.home-faqs__rule {
  flex: 1 1 0;
  height: 1px;
  background: #d6dde4;
}

.home-faqs__cta {
  min-width: 226px;
  padding: 1rem 2.35rem;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  box-shadow: none;
}

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

.faq-list-page-index {
  gap: 0.72rem;
  padding-bottom: 0;
}

.page-faq-index .faq-item {
  border-radius: 2px;
  border: 1px solid #d7dee5;
  box-shadow: none;
  background: #fff;
}

.page-faq-index .faq-item summary {
  padding: 1.2rem 1.7rem;
  font-size: clamp(0.94rem, 1.08vw, 1rem);
  font-weight: 400;
  line-height: 1.35;
  color: #31465c;
}

.page-faq-index .faq-item__copy {
  color: #a6aeb7;
}

.page-faq-index .faq-item summary:focus-visible {
  outline: 2px solid var(--green-strong);
  outline-offset: -2px;
}

.page-faq-index .faq-item[open] .faq-item__marker {
  color: #71808e;
}

.page-faq-index .faq-item__body {
  padding: 1rem 1.7rem 1.3rem;
  border-top: 1px solid #ecf0f3;
  color: #5b6774;
  font-size: 0.94rem;
}

.page-faq-index .faq-item__body > *:last-child {
  margin-bottom: 0;
}

.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: block;
  padding: 0.95rem 0 1rem;
  border-top: 1px solid var(--line);
}

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

.search-result__body h3 {
  font-size: 1rem;
  margin-bottom: 0.42rem;
  line-height: 1.35;
}

.search-result__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 0.75rem;
  margin-bottom: 0.45rem;
  color: var(--muted);
  font-size: 0.86rem;
}

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

.search-result__likes {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  margin-left: auto;
  color: var(--green-strong);
  font-weight: 600;
  white-space: nowrap;
}

.search-result__likes .material-symbols-rounded {
  font-size: 0.95rem;
  font-variation-settings:
    "FILL" 1,
    "wght" 500,
    "GRAD" 0,
    "opsz" 20;
}

.search-result p {
  margin-bottom: 0;
  color: #33414f;
  line-height: 1.65;
}

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

.search-page {
  padding: 0;
  border: 0;
  background: transparent;
}

.search-page-simple {
  max-width: 1080px;
  margin: 0 auto;
}

.search-page-panel__inner {
  padding-top: 2.85rem;
  padding-bottom: 3.1rem;
}

.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 {
  margin-top: 0;
  color: rgba(255, 255, 255, 0.86);
  background: #1e2129;
}

.site-footer__top-bar {
  background: #373945;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.site-footer__main {
  background: #1d2029;
}

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

.site-footer__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  min-height: 104px;
}

.footer-nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.25rem 3.85rem;
}

.footer-nav a,
.footer-social__link {
  color: #d8dde8;
  font-size: 1.15rem;
  font-weight: 400;
  letter-spacing: 0.01em;
}

.footer-nav a {
  display: inline-flex;
  align-items: center;
  gap: 0.38rem;
}

.footer-nav__external-icon {
  color: currentColor;
}

.footer-nav__external-icon .material-symbols-rounded {
  font-size: 0.95rem;
  font-variation-settings:
    "FILL" 0,
    "wght" 400,
    "GRAD" 0,
    "opsz" 20;
}

.footer-nav a:hover,
.footer-social__link:hover,
.site-footer__column a:hover,
.site-footer__credit a:hover {
  color: #83b986;
  text-decoration: none;
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 1.9rem;
}

.footer-social__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 30px;
  color: #7fb67d;
}

.footer-social__link .material-symbols-rounded {
  font-size: 2rem;
  font-variation-settings:
    "FILL" 0,
    "wght" 300,
    "GRAD" 0,
    "opsz" 40;
}

.footer-social__brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.footer-social__brand-facebook {
  font-family: "Open Sans", sans-serif;
  font-size: 2.15rem;
  font-weight: 700;
}

.footer-social__brand-youtube {
  gap: 0.12rem;
  font-family: "Open Sans", sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1.02fr 1fr 1fr;
  gap: 4.2rem;
  padding: 5.8rem 0 5rem;
}

.site-footer__column h2 {
  margin-bottom: 2.35rem;
  color: #eef2f7;
  font-size: 1.22rem;
  font-weight: 400;
}

.site-footer__column p {
  max-width: 380px;
  margin-bottom: 0;
  color: #9ca2b1;
  font-size: 1.08rem;
  line-height: 1.85;
}

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

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

.site-footer__column a {
  color: #7fb67d;
  font-size: 1.07rem;
  line-height: 1.45;
}

.footer-list-helpful li {
  align-items: center;
}

.footer-list-helpful a {
  flex: 1 1 auto;
}

.footer-like-count {
  display: inline-flex;
  align-items: center;
  gap: 0.28rem;
  flex: 0 0 auto;
  color: #7fb67d;
  font-size: 0.98rem;
}

.footer-like-count .material-symbols-rounded {
  font-size: 1rem;
  font-variation-settings:
    "FILL" 1,
    "wght" 500,
    "GRAD" 0,
    "opsz" 20;
}

.site-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 118px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.site-footer__bottom-meta {
  display: flex;
  align-items: center;
  gap: 1rem 1.5rem;
  flex-wrap: wrap;
}

.site-footer__credit {
  margin: 0;
  color: #9ca2b1;
  font-size: 1rem;
}

.site-footer__credit a {
  color: #7fb67d;
}

.site-footer__translate {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
}

.site-footer__translate .gtranslate_wrapper {
  display: inline-flex;
  align-items: center;
}

.site-footer__back-top {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #7fb67d;
}

.site-footer__back-top .material-symbols-rounded {
  font-size: 2rem;
  font-variation-settings:
    "FILL" 1,
    "wght" 500,
    "GRAD" 0,
    "opsz" 28;
}

@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;
  }

  .site-footer__grid {
    gap: 2.5rem;
    padding: 4.5rem 0 3.8rem;
  }

  .faq-index-panel__inner {
    padding-top: 2.7rem;
    padding-bottom: 3rem;
  }

  .article-hero {
    height: calc(var(--header-height, 96px) + 118px);
  }

  .article-frame {
    margin-top: -58px;
  }

  .category-panel {
    margin-top: -54px;
  }

  .category-panel__inner {
    padding-top: 2.7rem;
    padding-bottom: 3rem;
  }

  .page-article .article-shell {
    grid-template-columns: minmax(0, 1fr);
    gap: 2.2rem;
    padding: 2.35rem 2rem 3rem;
  }

  .page-article .content-main {
    order: 1;
  }

  .page-article .support-sidebar {
    order: 2;
  }

  .page-article .support-sidebar__panel-article {
    padding: 2.2rem 0 0;
    border-right: 0;
    border-top: 1px solid #e0e6ec;
  }

  .page-category .category-shell {
    grid-template-columns: minmax(0, 1fr);
    gap: 1.4rem;
  }

  .page-category .content-main {
    order: 1;
  }

  .page-category .support-sidebar {
    order: 2;
  }

  .page-category .support-sidebar__panel-article {
    padding: 2.2rem 0 0;
    border-right: 0;
    border-top: 1px solid #e0e6ec;
  }

  .article-helpful {
    align-items: flex-start;
  }

  .article-nav-split {
    gap: 1.35rem;
  }
}

@media (max-width: 920px) {
  .site-header__inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: start;
    column-gap: 0.9rem;
    row-gap: 0.8rem;
  }

  .menu-toggle {
    display: inline-flex;
    justify-self: end;
    align-self: start;
  }

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

  .brand {
    min-width: 0;
  }

  .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 .brand {
    gap: 0.72rem;
    align-items: flex-start;
  }

  .site-header-legacy .brand img {
    width: 46px;
    height: 46px;
  }

  .site-header-legacy .brand-copy strong {
    font-size: 0.88rem;
    line-height: 1.14;
  }

  .site-header-legacy .brand-copy small {
    font-size: 0.72rem;
    line-height: 1.18;
  }

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

  .site-header-legacy.is-scrolled .site-header__inner,
  .site-header-legacy.is-menu-open .site-header__inner {
    padding-top: 1rem;
    padding-bottom: 0.75rem;
  }

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

  .page-home .home-search-section {
    margin-top: -7rem;
  }

  .page-home .home-board-faqs {
    padding-left: 0;
    padding-right: 0;
  }

  .home-faqs__footer {
    gap: 1rem;
  }

  .home-faqs__cta {
    min-width: 208px;
  }

  .site-footer__top {
    align-items: flex-start;
    min-height: 0;
    padding: 2rem 0;
  }

  .footer-nav {
    gap: 1rem 2rem;
  }

  .site-footer__grid {
    padding: 3.4rem 0 3rem;
  }

  .site-footer__column p {
    max-width: none;
  }

  .faq-index-hero {
    height: calc(var(--header-height, 96px) + 112px);
  }

  .faq-index-panel {
    margin-top: -54px;
  }

  .faq-index-header {
    margin-bottom: 1.95rem;
    padding-bottom: 1.2rem;
  }

  .page-faq-index .faq-item summary,
  .page-faq-index .faq-item__body {
    padding-left: 1.2rem;
    padding-right: 1.2rem;
  }

  .contact-page-main {
    padding-bottom: 3rem;
  }

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

  .contact-page-panel__inner {
    padding-top: 2.15rem;
    padding-bottom: 2.35rem;
  }

  .search-page-panel__inner {
    padding-top: 2.15rem;
    padding-bottom: 2.35rem;
  }

  .category-panel {
    margin-top: -38px;
  }

  .category-panel__inner {
    padding-top: 2.15rem;
    padding-bottom: 2.35rem;
  }

  .article-layout {
    padding-bottom: 3.2rem;
  }

  .category-layout {
    padding-bottom: 3.2rem;
  }

  .article-hero {
    height: calc(var(--header-height, 96px) + 92px);
  }

  .article-frame {
    margin-top: -38px;
  }

  .page-article .article-shell {
    gap: 1.6rem;
    padding: 1.9rem 1.45rem 2.4rem;
  }

  .page-article .support-sidebar__panel-article {
    padding-top: 1.7rem;
  }

  .page-category .support-sidebar__panel-article {
    padding-top: 1.7rem;
  }

  .article-helpful,
  .article-nav-split {
    grid-template-columns: 1fr;
  }

  .article-nav-split__item {
    min-height: 0;
  }

  .article-nav-split__item-next {
    text-align: left;
  }

  .article-feedback-banner__content {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 680px) {
  .site-header-legacy .brand-copy strong {
    font-size: 0.82rem;
  }

  .site-header-legacy .brand-copy small {
    font-size: 0.68rem;
  }

  .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-article-row {
    padding: 1.1rem 1.15rem;
  }

  .category-article-row__meta {
    width: 100%;
    flex: 1 1 auto;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    text-align: left;
  }

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

  .search-result {
    gap: 0.6rem;
  }

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

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

  .page-home .home-search-section {
    margin-top: -6.9rem;
  }

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

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

  .page-home .home-board-faqs {
    padding-left: 0;
    padding-right: 0;
  }

  .footer-nav,
  .footer-social {
    width: 100%;
  }

  .footer-nav {
    gap: 0.9rem 1.4rem;
  }

  .footer-social {
    justify-content: flex-start;
    gap: 1.35rem;
  }

  .footer-nav a,
  .footer-social__link,
  .site-footer__column a,
  .site-footer__credit,
  .site-footer__column p {
    font-size: 1rem;
  }

  .site-footer__grid {
    gap: 2.4rem;
    padding: 2.8rem 0 2.4rem;
  }

  .site-footer__column h2 {
    margin-bottom: 1.25rem;
  }

  .footer-list {
    gap: 1rem;
  }

  .faq-index-main {
    padding-bottom: 2.8rem;
  }

  .faq-index-hero {
    height: calc(var(--header-height, 96px) + 86px);
  }

  .faq-index-panel {
    margin-top: -38px;
  }

  .faq-index-panel__inner {
    padding: 1.8rem 0.95rem 2rem;
  }

  .faq-index-header {
    margin-bottom: 1.3rem;
    padding-bottom: 0.9rem;
  }

  .page-faq-index .faq-item summary {
    padding: 0.95rem 1rem;
    font-size: 0.95rem;
  }

  .page-faq-index .faq-item__marker {
    font-size: 1.7rem;
  }

  .page-faq-index .faq-item__body {
    padding: 0.9rem 1rem 1.1rem;
  }

  .contact-page-panel__inner {
    padding-top: 1.8rem;
    padding-bottom: 2rem;
  }

  .search-page-panel__inner {
    padding-top: 1.8rem;
    padding-bottom: 2rem;
  }

  .category-panel__inner {
    padding: 1.8rem 0.95rem 2rem;
  }

  .article-layout {
    padding-bottom: 2.6rem;
  }

  .category-layout {
    padding-bottom: 2.6rem;
  }

  .article-frame {
    margin-top: -22px;
  }

  .page-article .article-shell {
    padding: 1.35rem 0.95rem 2rem;
  }

  .article-header-simple {
    margin-bottom: 2rem;
  }

  .category-header-simple {
    margin-bottom: 1.7rem;
  }

  .category-header-simple__summary {
    margin-bottom: 1.1rem;
    font-size: 0.94rem;
  }

  .article-helpful {
    padding: 1.5rem 0 1.45rem;
  }

  .article-related-flat {
    padding-top: 1.5rem;
  }

  .article-related-flat__item {
    grid-template-columns: 22px minmax(0, 1fr);
    align-items: start;
  }

  .article-feedback-banner {
    grid-template-columns: 1fr;
    gap: 0.8rem;
    padding: 1.15rem 1rem;
  }

  .article-feedback-banner__icon {
    display: none;
  }

  .article-related-flat__likes {
    grid-column: 2;
    margin-top: -0.15rem;
  }

  .article-nav-split__item a,
  .article-related-flat__copy a {
    font-size: 0.98rem;
  }

  .contact-simple__panel {
    padding: 0;
  }

  .search-page {
    padding: 1.15rem 0.95rem 1.5rem;
  }

  .contact-simple__intro {
    margin-bottom: 1.35rem;
    font-size: 1rem;
  }

  .contact-simple__cta {
    min-width: 0;
    width: 100%;
    margin-bottom: 1.4rem;
  }

  .contact-simple__details {
    padding: 0;
  }

  .contact-simple__list li {
    grid-template-columns: 30px minmax(0, 1fr);
    gap: 0.7rem;
    padding: 0.8rem 0;
  }

  .contact-simple__list-icon {
    width: 30px;
    height: 30px;
    border-radius: 0;
  }

  .contact-simple__list-text {
    padding-top: 0.15rem;
    font-size: 0.93rem;
  }

  .home-faqs__header {
    margin-bottom: 1.5rem;
  }

  .page-home .home-faq-item summary {
    min-height: 78px;
    padding: 1.05rem 1.15rem;
    font-size: 0.94rem;
  }

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

  .home-faqs__footer {
    justify-content: center;
    margin-top: 2.35rem;
  }

  .home-faqs__rule {
    display: none;
  }
}
