:root {
  --primary-700: #1d4ed8;
  --primary-600: #2563eb;
  --primary-500: #3b82f6;
  --primary-100: #dbeafe;
  --primary-050: #eff6ff;
  --navy-950: #142033;
  --navy-900: #19283e;
  --ink-900: #162033;
  --ink-700: #344054;
  --ink-600: #475467;
  --ink-500: #667085;
  --line-300: #d8e0eb;
  --line-200: #e5eaf1;
  --line-100: #eef2f6;
  --surface: #ffffff;
  --background: #f7f9fc;
  --radius-sm: 7px;
  --sidebar-width: 280px;
  --content-max: 1440px;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink-900);
  background: var(--background);
  font-family: Pretendard, "Noto Sans KR", "Malgun Gothic", sans-serif;
  font-size: 15px;
  line-height: 1.55;
  word-break: keep-all;
}

button,
input,
select {
  font: inherit;
}

button,
a,
summary,
select {
  -webkit-tap-highlight-color: transparent;
}

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

svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.site-shell {
  min-height: 100vh;
}

.app-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  min-height: calc(100vh - 68px);
  background: var(--surface);
}

.app-layout > .main-content {
  grid-column: 1 / -1;
}

.sidebar {
  position: sticky;
  top: 0;
  align-self: start;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  color: #ffffff;
  background: var(--navy-950);
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.sidebar-brand {
  display: flex;
  gap: 14px;
  align-items: center;
  min-height: 112px;
  padding: 26px 24px;
  color: #ffffff;
  background: var(--primary-600);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.brand-icon {
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  opacity: 0.94;
}

.sidebar-brand strong {
  font-size: 21px;
  letter-spacing: -0.03em;
}

.nav-label {
  margin: 0 0 10px;
  color: #98a7ba;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.primary-nav {
  padding: 26px 16px 18px;
}

.primary-nav .nav-label {
  padding: 0 10px;
}

.primary-nav a {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  min-height: 48px;
  margin-bottom: 4px;
  padding: 0 14px;
  color: #cbd5e1;
  border-radius: var(--radius-sm);
}

.primary-nav a:hover,
.primary-nav a:focus-visible {
  color: #ffffff;
  background: var(--navy-900);
  outline: none;
}

.primary-nav a.is-current {
  color: #ffffff;
  background: var(--primary-600);
}

.primary-nav a svg {
  width: 16px;
  height: 16px;
  opacity: 0.65;
}

.current-dot {
  width: 7px;
  height: 7px;
  background: #ffffff;
  border-radius: 50%;
}


.mobile-nav summary::-webkit-details-marker,
.floating-tree summary::-webkit-details-marker,
.tree-menu summary::-webkit-details-marker {
  display: none;
}

body.is-tree-open {
  overflow: hidden;
}

.floating-tree__toggle {
  position: fixed;
  top: 50%;
  right: 0;
  z-index: 70;
  display: inline-flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  justify-content: center;
  width: 52px;
  min-height: 126px;
  padding: 14px 8px;
  color: #ffffff;
  font-weight: 800;
  cursor: pointer;
  list-style: none;
  background: linear-gradient(180deg, var(--primary-600), var(--primary-700));
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-right: 0;
  border-radius: 14px 0 0 14px;
  box-shadow: 0 12px 28px rgba(20, 32, 51, 0.2);
  transform: translateY(-50%);
  transition:
    width 160ms ease,
    background-color 160ms ease,
    box-shadow 160ms ease,
    opacity 160ms ease;
}

.floating-tree__toggle:hover,
.floating-tree__toggle:focus-visible {
  width: 58px;
  outline: none;
  box-shadow: 0 14px 32px rgba(29, 78, 216, 0.28);
}

.floating-tree__toggle svg {
  width: 22px;
  height: 22px;
}

.floating-tree__toggle span {
  font-size: 12px;
  line-height: 1.2;
  writing-mode: vertical-rl;
  letter-spacing: 0.08em;
}

.floating-tree[open] > .floating-tree__toggle {
  opacity: 0;
  pointer-events: none;
}

.floating-tree__backdrop {
  position: fixed;
  inset: 0;
  z-index: 80;
  visibility: hidden;
  padding: 0;
  cursor: default;
  background: rgba(20, 32, 51, 0.42);
  border: 0;
  opacity: 0;
  transition:
    opacity 220ms ease,
    visibility 220ms ease;
}

.floating-tree__drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 81;
  display: flex;
  flex-direction: column;
  width: min(400px, calc(100vw - 32px));
  height: 100vh;
  height: 100dvh;
  overflow: hidden;
  color: var(--ink-900);
  background: var(--surface);
  border-left: 1px solid var(--line-300);
  box-shadow: -18px 0 44px rgba(20, 32, 51, 0.18);
  transform: translateX(100%);
  transition: transform 240ms cubic-bezier(0.22, 1, 0.36, 1);
}

.floating-tree[open] > .floating-tree__backdrop {
  visibility: visible;
  opacity: 1;
}

.floating-tree[open] > .floating-tree__drawer {
  transform: translateX(0);
}

.floating-tree__header {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
  min-height: 96px;
  padding: 22px 22px 20px 24px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--navy-950), var(--navy-900));
}

.floating-tree__eyebrow {
  margin: 0 0 4px;
  color: #9fb1c8;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.floating-tree__header h2 {
  margin: 0;
  font-size: 21px;
  line-height: 1.3;
  letter-spacing: -0.03em;
}

.floating-tree__close {
  display: inline-grid;
  flex: 0 0 auto;
  place-items: center;
  width: 40px;
  height: 40px;
  padding: 0;
  color: #ffffff;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
}

.floating-tree__close:hover,
.floating-tree__close:focus-visible {
  background: rgba(255, 255, 255, 0.16);
  outline: none;
}

.floating-tree__close svg {
  width: 20px;
  height: 20px;
}

.tree-menu {
  flex: 1 1 auto;
  padding: 24px;
  overflow-y: auto;
  background:
    linear-gradient(var(--primary-050), var(--primary-050)) top / 100% 5px no-repeat,
    var(--surface);
}

.tree-menu__branch {
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line-300);
  border-radius: 12px;
  box-shadow: 0 8px 22px rgba(20, 32, 51, 0.06);
}

.tree-menu__branch > summary {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr) 18px;
  gap: 11px;
  align-items: center;
  min-height: 54px;
  padding: 0 16px;
  color: var(--ink-900);
  font-weight: 800;
  cursor: pointer;
  list-style: none;
  background: #f5f8fc;
  border-bottom: 1px solid transparent;
}

.tree-menu__branch[open] > summary {
  color: var(--primary-700);
  background: var(--primary-050);
  border-bottom-color: var(--line-200);
}

.tree-menu__branch > summary:focus-visible {
  outline: 3px solid var(--primary-100);
  outline-offset: -3px;
}

.tree-menu__folder {
  position: relative;
  display: inline-block;
  width: 19px;
  height: 14px;
  background: #fbbf24;
  border-radius: 3px;
}

.tree-menu__folder::before {
  position: absolute;
  top: -4px;
  left: 1px;
  width: 9px;
  height: 4px;
  content: "";
  background: #fbbf24;
  border-radius: 3px 3px 0 0;
}

.tree-menu__chevron {
  width: 18px;
  height: 18px;
  color: var(--ink-500);
  transition: transform 160ms ease;
}

.tree-menu__branch[open] .tree-menu__chevron {
  transform: rotate(90deg);
}

.tree-menu__children {
  display: grid;
  padding: 8px;
}

.tree-menu__children a {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  min-height: 48px;
  padding: 9px 12px 9px 28px;
  color: var(--ink-700);
  border-radius: 8px;
}

.tree-menu__children a::before {
  position: absolute;
  top: 50%;
  left: 11px;
  width: 7px;
  height: 7px;
  content: "";
  background: var(--line-300);
  border: 2px solid var(--surface);
  border-radius: 50%;
  box-shadow: 0 0 0 1px var(--line-300);
  transform: translateY(-50%);
}

.tree-menu__children a:hover,
.tree-menu__children a:focus-visible {
  color: var(--primary-700);
  background: var(--primary-050);
  outline: none;
}

.tree-menu__children a.is-current {
  color: var(--primary-700);
  font-weight: 800;
  background: var(--primary-050);
}

.tree-menu__children a.is-current::before {
  background: var(--primary-600);
  box-shadow: 0 0 0 1px var(--primary-600);
}

.tree-menu__children small {
  color: var(--ink-500);
  font-size: 11px;
  font-weight: 600;
}

.main-content {
  width: 100%;
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 40px clamp(24px, 3.4vw, 52px) 56px;
}

.content-header {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 22px;
}

.content-title {
  display: flex;
  flex: 0 0 auto;
  gap: 13px;
  align-items: center;
  white-space: nowrap;
}

.content-title__accent {
  width: 4px;
  height: 50px;
  background: var(--primary-600);
  border-radius: 2px;
}

.content-header h1 {
  margin: 0;
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1.2;
  letter-spacing: -0.04em;
}

.content-title__link {
  display: flex;
  flex-direction: column;
  gap: 1px;
  color: var(--ink-900);
  text-decoration: none;
}

.content-title__service {
  color: var(--primary-700);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.015em;
}

.content-title__page {
  line-height: 1.05;
}

.content-title__link:hover .content-title__page,
.content-title__link:focus-visible .content-title__page {
  color: var(--primary-700);
}

.content-title__link:focus-visible {
  outline: 2px solid var(--primary-600);
  outline-offset: 4px;
  border-radius: 2px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  padding-top: 5px;
  color: var(--ink-500);
  font-size: 13px;
}

.breadcrumb a:hover,
.breadcrumb a:focus-visible {
  color: var(--primary-600);
  outline: none;
}

.breadcrumb strong {
  color: var(--ink-700);
}

.search-area {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line-200);
}


.search-box {
  display: grid;
  grid-template-columns: 144px minmax(240px, 1fr) 92px;
  flex: 1 1 auto;
  width: min(100%, 820px);
  min-height: 46px;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--primary-600);
  border-radius: var(--radius-sm);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.search-box--wide {
  width: 100%;
}
/* 결과값 카테고리 선택박스 넓이 조절 
144px -> 250px
*/
.search-box--compact {
  grid-template-columns: 250px minmax(220px, 1fr) 92px;
  flex-basis: 600px;
}

.search-box:focus-within {
  border-color: var(--primary-700);
  box-shadow: 0 0 0 3px var(--primary-100);
}

.search-box__select,
.search-box__input,
.search-box__submit {
  min-width: 0;
  height: 44px;
  border: 0;
  outline: none;
}

.search-box__select,
.search-box__input {
  border-radius: 0;
}

.search-box__select,
.select-control {
  appearance: none;
  color: var(--ink-700);
  background-color: var(--surface);
  background-image:
    linear-gradient(45deg, transparent 50%, var(--ink-500) 50%),
    linear-gradient(135deg, var(--ink-500) 50%, transparent 50%);
  background-repeat: no-repeat;
  background-size: 5px 5px, 5px 5px;
}

.search-box__select {
  padding: 0 38px 0 14px;
  background-position:
    calc(100% - 18px) 19px,
    calc(100% - 13px) 19px;
  border-right: 1px solid var(--line-200);
}

.search-box__input {
  padding: 0 15px;
  color: var(--ink-900);
  background: var(--surface);
}

.search-box__keyword-area {
  display: flex;
  min-width: 0;
  height: 44px;
  align-items: center;
  background: var(--surface);
}

.search-box__keyword-area .search-box__input {
  flex: 1 1 auto;
  width: auto;
}

.search-category-chip {
  display: inline-flex;
  flex: 0 1 auto;
  gap: 5px;
  align-items: center;
  max-width: 45%;
  margin: 0 10px;
  padding: 5px 7px 5px 10px;
  color: var(--primary-700);
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
  background: var(--primary-050);
  border: 1px solid var(--primary-100);
  border-radius: 999px;
}

.search-category-chip__name {
  overflow: hidden;
  text-overflow: ellipsis;
}

.search-category-chip__remove {
  display: inline-grid;
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  padding: 0;
  color: var(--primary-700);
  line-height: 1;
  cursor: pointer;
  background: transparent;
  border: 0;
  border-radius: 50%;
  place-items: center;
}

.search-category-chip__remove:hover,
.search-category-chip__remove:focus-visible {
  color: #fff;
  background: var(--primary-600);
  outline: none;
}

.search-box__input::placeholder {
  color: #98a2b3;
}

.search-box__select:focus,
.search-box__input:focus {
  background-color: var(--primary-050);
}

.search-box__submit {
  display: inline-flex;
  gap: 7px;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  color: #ffffff;
  font-weight: 700;
  white-space: nowrap;
  cursor: pointer;
  background: var(--primary-600);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.search-box__submit:hover,
.search-box__submit:focus-visible {
  background: var(--primary-700);
}

.search-box__submit:focus-visible {
  outline: 2px solid #ffffff;
  outline-offset: -4px;
}

.search-box__submit svg {
  width: 18px;
  height: 18px;
}

.select-control {
  width: 100%;
  height: 38px;
  padding: 0 36px 0 12px;
  background-position:
    calc(100% - 17px) 16px,
    calc(100% - 12px) 16px;
  border: 1px solid var(--line-300);
  border-radius: var(--radius-sm);
  outline: none;
}

.select-control:focus {
  border-color: var(--primary-500);
  box-shadow: 0 0 0 3px var(--primary-100);
}

.select-control--small {
  width: 98px;
  height: 36px;
  background-position:
    calc(100% - 17px) 15px,
    calc(100% - 12px) 15px;
}

.check-control {
  display: inline-flex;
  gap: 7px;
  align-items: center;
  color: var(--ink-600);
  font-size: 13px;
}

.check-control input {
  width: 16px;
  height: 16px;
  margin: 0;
  accent-color: var(--primary-600);
}

.button {
  display: inline-flex;
  gap: 7px;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 14px;
  color: var(--ink-700);
  font-weight: 700;
  white-space: nowrap;
  cursor: pointer;
  background: transparent;
  border: 1px solid var(--line-300);
  border-radius: var(--radius-sm);
}

.button:hover,
.button:focus-visible {
  border-color: var(--primary-500);
  outline: none;
}

.button--primary {
  color: #ffffff;
  background: var(--primary-600);
  border-color: var(--primary-600);
}

.button--primary:hover,
.button--primary:focus-visible {
  background: var(--primary-700);
  border-color: var(--primary-700);
}

.button--secondary {
  color: #ffffff;
  background: var(--ink-700);
  border-color: var(--ink-700);
}

.button--secondary:hover,
.button--secondary:focus-visible {
  background: var(--ink-900);
  border-color: var(--ink-900);
}

.button--outline {
  color: var(--primary-700);
  background: var(--surface);
}

.button svg {
  width: 17px;
  height: 17px;
}

.button--small {
  min-height: 36px;
}

.content-section {
  margin-top: 28px;
}

.section-header {
  display: flex;
  gap: 20px;
  align-items: flex-end;
  justify-content: space-between;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--primary-600);
}

.section-header__content {
  min-width: 0;
}

.section-header h2 {
  margin: 0;
  font-size: 20px;
  line-height: 1.35;
  letter-spacing: -0.025em;
}

.section-header p {
  margin: 4px 0 0;
  color: var(--ink-500);
  font-size: 13px;
}

.section-header strong {
  color: var(--primary-700);
}

.section-header__actions {
  flex: 0 0 auto;
}

.result-actions {
  display: flex;
  gap: 8px;
  align-items: center;
}

.page-size {
  display: flex;
  gap: 8px;
  align-items: center;
  color: var(--ink-600);
  font-size: 12px;
}

.data-table-wrap {
  overflow-x: auto;
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
  text-align: left;
  background: var(--surface);
}

.data-table caption {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.data-table__head-cell {
  height: 42px;
  padding: 0 12px;
  color: var(--ink-700);
  font-size: 13px;
  font-weight: 700;
  text-align: inherit;
  background: #f2f5f9;
  border-bottom: 1px solid var(--line-300);
}

.data-table__cell {
  padding: 10px 12px;
  color: var(--ink-600);
  font-size: 13px;
  text-align: inherit;
  vertical-align: middle;
  border-bottom: 1px solid var(--line-100);
}

.data-table__body-row:hover {
  background: var(--primary-050);
}

.table-link {
  color: var(--ink-900);
  font-weight: 700;
}

.table-link--regular {
  font-weight: 600;
}

.table-link--truncate {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.table-link:hover,
.table-link:focus-visible {
  color: var(--primary-700);
  text-decoration: underline;
  text-underline-offset: 3px;
  outline: none;
}

.table-col--standards-category {
  width: 190px;
}

.table-col--standards-code {
  width: 158px;
}

.table-col--standards-action {
  width: 48px;
}

.table-cell--category {
  white-space: nowrap;
}

.table-cell--title {
  text-align: left;
}

.category-badge {
  display: inline-block;
  margin-right: 8px;
  color: var(--primary-700);
  font-size: 14px;
  font-weight: 700;
  vertical-align: middle;
}

.data-table--standards small {
  display: inline-block;
  color: var(--ink-500);
  font-size: 13px;
  vertical-align: middle;
}

.code {
  color: var(--ink-700);
  font-size: 14px;
  letter-spacing: 0.01em;
}

.table-cell--action {
  text-align: center;
}

.row-action__link {
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  color: var(--primary-700);
  font-size: 17px;
  border-radius: var(--radius-sm);
}

.row-action__link:hover,
.row-action__link:focus-visible {
  text-decoration: none;
  background: var(--primary-050);
}

.pagination {
  display: flex;
  flex-wrap: wrap;
  gap: 3px;
  align-items: center;
  justify-content: center;
  margin-top: 18px;
}

.pagination__link,
.pagination__item {
  display: inline-grid;
  place-items: center;
  min-width: 32px;
  height: 32px;
  padding: 0 7px;
  color: var(--ink-600);
  border-radius: var(--radius-sm);
}

.pagination__link:hover,
.pagination__link:focus-visible {
  color: var(--primary-700);
  background: var(--primary-050);
  outline: none;
}

.pagination__link.is-current {
  color: #ffffff;
  font-weight: 700;
  background: var(--primary-600);
}

.pagination__link.is-disabled {
  color: #98a2b3;
  pointer-events: none;
  background: transparent;
}

.pagination__control {
  min-width: 52px;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: center;
  min-height: 76px;
  padding: 18px 32px;
  color: var(--ink-500);
  font-size: 12px;
  background: var(--surface);
  border-top: 1px solid var(--line-300);
}

.site-footer p {
  margin: 0;
}

.mobile-header {
  display: none;
}

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


@media (prefers-reduced-motion: reduce) {
  .floating-tree__toggle,
  .floating-tree__backdrop,
  .floating-tree__drawer,
  .tree-menu__chevron {
    transition: none;
  }
}

@media (max-width: 1180px) {
  :root {
    --sidebar-width: 248px;
  }

  .main-content {
    padding-right: 32px;
    padding-left: 32px;
  }
}

@media (max-width: 960px) {
  .mobile-header {
    position: sticky;
    top: 0;
    z-index: 50;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 68px;
    padding: 0 18px;
    color: #ffffff;
    background: var(--navy-950);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .mobile-brand {
    display: flex;
    gap: 10px;
    align-items: center;
    font-weight: 800;
  }

  .mobile-brand .brand-icon {
    width: 26px;
    height: 26px;
  }

  .mobile-nav summary {
    display: flex;
    gap: 6px;
    align-items: center;
    padding: 8px 0 8px 12px;
    cursor: pointer;
    list-style: none;
  }

  .mobile-nav summary svg {
    width: 22px;
    height: 22px;
  }

  .mobile-nav__panel {
    position: fixed;
    top: 68px;
    right: 0;
    left: 0;
    max-height: calc(100vh - 68px);
    overflow-y: auto;
    color: var(--ink-900);
    background: var(--surface);
    border-bottom: 1px solid var(--line-300);
  }

  .mobile-nav:not([open]) .mobile-nav__panel {
    display: none;
  }

  .mobile-nav__panel nav {
    display: grid;
    padding: 12px 16px;
  }

  .mobile-nav__panel nav a {
    display: flex;
    align-items: center;
    min-height: 48px;
    padding: 0 14px;
    border-radius: var(--radius-sm);
  }

  .mobile-nav__panel nav a.is-current {
    color: var(--primary-700);
    font-weight: 700;
    background: var(--primary-050);
  }


  .app-layout {
    display: block;
    min-height: auto;
  }

  .sidebar {
    display: none;
  }

  .main-content {
    padding-top: 36px;
  }

  .content-header {
    display: block;
  }

  .breadcrumb {
    margin-top: 16px;
  }

  .site-footer {
    grid-template-columns: 1fr;
    gap: 7px;
    text-align: center;
  }
}

@media (max-width: 720px) {

  .content-title {
    gap: 10px;
  }

  .content-title__accent {
    height: 44px;
  }

  .content-title__service {
    font-size: 12px;
  }

  .floating-tree__toggle {
    top: auto;
    right: 14px;
    bottom: 16px;
    flex-direction: row;
    width: auto;
    min-height: 46px;
    padding: 0 16px;
    border-right: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 999px;
    transform: none;
  }

  .floating-tree__toggle:hover,
  .floating-tree__toggle:focus-visible {
    width: auto;
  }

  .floating-tree__toggle span {
    font-size: 13px;
    writing-mode: horizontal-tb;
    letter-spacing: -0.01em;
  }

  .floating-tree__drawer {
    width: min(380px, calc(100vw - 20px));
  }

  body {
    font-size: 14px;
  }

  .main-content {
    padding: 28px 16px 48px;
  }

  .breadcrumb {
    display: none;
  }

  .search-area {
    display: block;
    padding-bottom: 18px;
  }

  .search-box,
  .search-box--compact,
  .search-box--wide {
    grid-template-columns: minmax(0, 1fr) 52px;
    width: 100%;
  }

  .search-box__select {
    grid-column: 1 / -1;
    border-right: 0;
    border-bottom: 1px solid var(--line-200);
  }

  .search-box__submit {
    width: 52px;
    padding: 0;
    border-radius: 0 0 var(--radius-sm) 0;
  }

  .search-box__submit span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
  }

  .section-header {
    display: block;
  }

  .section-header h2 {
    font-size: 18px;
  }

  .section-header__actions {
    margin-top: 14px;
  }

  .result-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .select-control--small {
    width: 100%;
  }

  .result-actions__button {
    align-self: end;
  }

  .data-table-wrap {
    overflow: visible;
    border-bottom: 0;
  }

  .data-table--standards,
  .data-table--standards .data-table__body-row,
  .data-table--standards .data-table__cell {
    display: block;
    width: 100%;
  }

  .data-table--standards {
    table-layout: auto;
  }

  .data-table--standards .data-table__head {
    display: none;
  }

  .data-table--standards .data-table__body {
    display: grid;
    gap: 0;
  }

  .data-table--standards .data-table__body-row {
    position: relative;
    padding: 14px 48px 14px 4px;
    border-bottom: 1px solid var(--line-200);
  }

  .data-table--standards .data-table__cell {
    padding: 0;
    border: 0;
  }

  .table-cell--category {
    margin-bottom: 10px;
  }

  .table-cell--code {
    margin-bottom: 4px;
  }

  .table-link {
    font-size: 16px;
  }

  .table-cell--action {
    position: absolute;
    top: 50%;
    right: 14px;
    width: auto;
    transform: translateY(-50%);
  }

  .row-action__link {
    width: 36px;
    height: 36px;
  }

  .pagination__item--mobile-hidden {
    display: none;
  }

  .site-footer {
    padding: 20px 16px;
  }
}

@media (max-width: 430px) {
  .mobile-brand__text {
    font-size: 15px;
  }

  .mobile-nav summary span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
  }

  .result-actions {
    grid-template-columns: 1fr;
  }

  .result-actions__button {
    width: 100%;
  }

}
