body.page-category {
  background: var(--page-bg);
}

.category-sidebar,
.category-sidebar__scroll,
.category-main {
  scrollbar-width: thin;
  scrollbar-color: rgba(95, 104, 128, 0.36) transparent;
}

.category-sidebar::-webkit-scrollbar,
.category-sidebar__scroll::-webkit-scrollbar,
.category-main::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

.category-sidebar::-webkit-scrollbar-track,
.category-sidebar__scroll::-webkit-scrollbar-track,
.category-main::-webkit-scrollbar-track {
  background: transparent;
}

.category-sidebar::-webkit-scrollbar-thumb,
.category-sidebar__scroll::-webkit-scrollbar-thumb,
.category-main::-webkit-scrollbar-thumb {
  min-height: 56px;
  border: 3px solid transparent;
  border-radius: 999px;
  background-color: rgba(95, 104, 128, 0.28);
  background-clip: content-box;
}

.category-sidebar:hover::-webkit-scrollbar-thumb,
.category-sidebar:focus-within::-webkit-scrollbar-thumb,
.category-sidebar__scroll:hover::-webkit-scrollbar-thumb,
.category-sidebar__scroll:focus-within::-webkit-scrollbar-thumb,
.category-main:hover::-webkit-scrollbar-thumb,
.category-main:focus-within::-webkit-scrollbar-thumb {
  background-color: rgba(0, 74, 198, 0.38);
}

.page-category main.category-page-main {
  display: block;
  height: calc(100vh - 89px);
  overflow: hidden;
}

.ag-header--category {
  position: relative;
  padding: 30px 6px 20px 10px;
}

.ag-header--category .ag-header__content--category {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto auto minmax(280px, 320px);
  align-items: center;
  column-gap: 24px;
}

body.page-home .ag-header--static-searchless .ag-header__content--category,
body.page-search .ag-header--static-searchless .ag-header__content--category {
  grid-template-columns: auto 1fr;
}

body.page-home .ag-header--static-searchless .category-header-nav,
body.page-search .ag-header--static-searchless .category-header-nav {
  justify-self: end;
}

.category-header__brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.ag-header--category .ag-header__logo,
.ag-header--category .ag-header__nav {
  float: none;
}

.category-search-toggle,
.category-menu-toggle {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  color: #0b1c30;
  transition: background-color 160ms ease;
}

.category-search-toggle {
  display: none;
  justify-self: end;
}

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

.category-menu-toggle span {
  width: 18px;
  height: 1.5px;
  border-radius: 999px;
  background: currentColor;
}

.category-search-toggle:hover,
.category-search-toggle:focus-visible,
.category-menu-toggle:hover,
.category-menu-toggle:focus-visible {
  background: rgba(239, 244, 255, 0.85);
}

.category-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
}

.category-search-panel {
  position: static;
  z-index: auto;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 12px;
  justify-self: end;
}

.category-search-panel[hidden] {
  display: none !important;
}

.category-search-close {
  display: none;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  flex: 0 0 36px;
  border-radius: 10px;
  color: #667085;
  background: rgba(255, 255, 255, 0.96);
  transition: background-color 160ms ease, color 160ms ease;
}

.category-search-close span {
  position: relative;
  width: 14px;
  height: 14px;
  display: block;
}

.category-search-close span::before,
.category-search-close span::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 14px;
  height: 1.5px;
  border-radius: 999px;
  background: currentColor;
}

.category-search-close span::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.category-search-close span::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.category-search-close:hover,
.category-search-close:focus-visible {
  background: rgba(239, 244, 255, 0.95);
  color: #344054;
}

.category-search {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1 1 auto;
  width: auto;
  max-width: none;
  margin-left: 0;
}

.category-search__field {
  position: relative;
  z-index: 0;
  flex: 1 1 auto;
}

.category-search input {
  -webkit-appearance: textfield;
  appearance: textfield;
  width: 100%;
  height: 39px;
  padding: 10px 16px 8px 40px;
  border: 1px solid #d9e1ee;
  border-radius: 9999px;
  background: #ffffff;
  color: #0b1c30;
  font-family: var(--font-ko);
  font-size: 15px;
  font-weight: 500;
  line-height: 20px;
  outline: 0;
}

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

.category-search input::-webkit-search-cancel-button,
.category-search input::-webkit-search-decoration,
.category-search input::-webkit-search-results-button,
.category-search input::-webkit-search-results-decoration,
.category-search input::-ms-clear,
.category-search input::-ms-reveal {
  -webkit-appearance: none;
  appearance: none;
  display: none;
  width: 0;
  height: 0;
  opacity: 0;
  pointer-events: none;
}

.category-search input {
  padding-right: 38px;
}

.category-search__submit {
  flex: 0 0 auto;
  min-width: 74px;
  height: 39px;
  padding: 0 20px;
  border-radius: 9999px;
  background: #004ac6;
  color: #ffffff;
  font-family: var(--font-ko);
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  text-align: center;
}

.category-search__submit:hover,
.category-search__submit:focus-visible {
  background: #003da4;
}

.category-search__clear {
  position: absolute;
  right: 10px;
  top: 50%;
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 0;
  background: transparent;
  color: #98a2b3;
  transform: translateY(-50%);
}

.category-search__clear[hidden] {
  display: none !important;
}

.category-search__clear span {
  position: relative;
  width: 11px;
  height: 11px;
  display: block;
}

.category-search__clear span::before,
.category-search__clear span::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 11px;
  height: 1.5px;
  border-radius: 999px;
  background: currentColor;
}

.category-search__clear span::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.category-search__clear span::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.category-search__clear:hover,
.category-search__clear:focus-visible {
  color: #667085;
}

.category-search__icon {
  position: absolute;
  left: 12px;
  top: 50%;
  width: 18px;
  height: 18px;
  color: #c3c6d7;
  transform: translateY(-50%);
  z-index: 1;
  pointer-events: none;
}

.category-search__icon svg {
  width: 18px;
  height: 18px;
}

.category-header-nav {
  justify-self: center;
}

.category-header-nav ul {
  white-space: nowrap;
}

.category-header-nav a.is-active {
  color: #004ac6;
  font-weight: 700;
  border-bottom-color: #004ac6;
}

.category-shell {
  --category-shell-gutter: max(40px, calc((100vw - 1200px) / 2));
  --category-content-max: 856px;
  width: 100%;
  height: 100%;
  margin: 0;
  display: flex;
  align-items: stretch;
  gap: 0;
  padding: 48px 0 72px var(--category-shell-gutter);
  min-height: 0;
  overflow: hidden;
}

.category-sidebar {
  width: 288px;
  flex: 0 0 288px;
  height: 100%;
  padding: 0 16px 32px;
  border-right: 1px solid #c3c6d7;
  overflow-y: auto;
  overscroll-behavior: auto;
  scrollbar-gutter: stable;
}

.category-sidebar__top {
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 20px;
  padding: 0 4px;
}

.category-sidebar__brand {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  min-width: 0;
  font-size: 0;
  line-height: 0;
}

.category-sidebar__brand .agit-logo,
.category-sidebar__brand .by-kep {
  display: inline-block;
  height: 27px;
  background-repeat: no-repeat;
  background-size: contain;
}

.category-sidebar__brand .agit-logo {
  width: 49px;
  background-image: url("./assets/agit-logo.png");
}

.category-sidebar__brand .by-kep {
  width: 97px;
  background-image: url("./assets/by-kakao.png");
}

.category-sidebar__close {
  display: none;
  width: 32px;
  height: 32px;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  color: #667085;
  transition: background-color 160ms ease, color 160ms ease;
}

.category-sidebar__close span {
  position: relative;
  width: 14px;
  height: 14px;
  display: block;
}

.category-sidebar__close span::before,
.category-sidebar__close span::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 14px;
  height: 1.5px;
  border-radius: 999px;
  background: currentColor;
}

.category-sidebar__close span::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.category-sidebar__close span::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.category-sidebar__close:hover,
.category-sidebar__close:focus-visible {
  background: rgba(239, 244, 255, 0.85);
  color: #344054;
}

.category-sidebar-menu {
  display: none;
}

.category-sidebar__scroll {
  min-height: 0;
}

.category-sidebar-menu ul {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin: 0 0 18px;
  padding: 0 0 18px 6px;
  border-bottom: 1px solid #e5e7eb;
  list-style-position: outside;
}

.category-sidebar-menu li {
  padding-left: 6px;
}

.category-sidebar-menu li::marker {
  color: rgba(67, 70, 85, 0.45);
}

.category-sidebar-menu a {
  display: block;
  padding: 10px 12px;
  border-radius: 10px;
  color: #0b1c30;
  font-family: var(--font-ko);
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
}

.category-sidebar-menu a.is-active {
  background: rgba(239, 244, 255, 0.9);
  color: #004ac6;
}

.category-sidebar-menu li:has(> a.is-active)::marker {
  color: #004ac6;
}

.category-sidebar-backdrop {
  display: none;
}

.category-tree {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.tree-category {
  width: 100%;
}

.tree-category__title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-width: 0;
  padding: 18px 16px;
  border-radius: 8px;
  color: #0b1c30;
  font-family: var(--font-ko);
  font-size: 15px;
  font-weight: 500;
  line-height: 22px;
  text-align: left;
}

.tree-category__title:hover,
.tree-category__title:focus-visible {
  background: rgba(239, 244, 255, 0.6);
}

.tree-category.is-active .tree-category__title {
  background: rgba(239, 244, 255, 0.85);
  color: #004ac6;
}

.tree-category__title.is-legacy-current {
  background: rgba(239, 244, 255, 0.85);
  color: #004ac6;
}

.tree-category__label {
  min-width: 0;
}

.tree-category__chevron {
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.tree-category__chevron svg {
  display: block;
  width: auto;
  height: auto;
  max-width: none;
  max-height: none;
}

.tree-section-list {
  margin: 8px 0 0 16px;
  padding-left: 0;
  border-left: 2px solid #e5eeff;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.tree-section-block {
  width: 100%;
}

.tree-section {
  width: calc(100% - 2px);
  margin-left: -2px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 40px;
  padding: 8px 16px 8px 24px;
  border-left: 2px solid transparent;
  border-radius: 0 8px 8px 0;
  color: #434655;
  text-align: left;
}

.tree-section:hover,
.tree-section:focus-visible {
  background: rgba(239, 244, 255, 0.7);
}

.tree-section.is-current {
  background: rgba(239, 244, 255, 0.9);
  border-left-color: #004ac6;
  color: #004ac6;
}

.tree-section__label {
  min-width: 0;
  font-family: var(--font-ko);
  font-size: 15px;
  font-weight: 500;
  line-height: 22px;
}

.tree-section__chevron,
.tree-article__chevron {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.tree-section__chevron svg,
.tree-article__chevron svg {
  display: block;
  width: auto;
  height: auto;
  max-width: none;
  max-height: none;
}

.tree-article-list {
  margin: 4px 0 6px 22px;
  padding-left: 0;
  border-left: 1px solid #d9e4f5;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.tree-article-list--sections {
  margin-left: 22px;
}

.tree-article-list--nested {
  margin: 2px 0 8px 14px;
}

.tree-article {
  width: 100%;
  min-height: 36px;
  padding: 7px 12px 7px 18px;
  border-radius: 0 8px 8px 0;
  color: #667085;
  font-family: var(--font-ko);
  font-size: 14px;
  font-weight: 500;
  line-height: 22px;
  text-align: left;
}

.tree-article--toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.tree-article__label {
  min-width: 0;
  flex: 1 1 auto;
}

.tree-article:hover,
.tree-article:focus-visible {
  background: rgba(239, 244, 255, 0.55);
  color: #004ac6;
}

.tree-article.is-current {
  background: rgba(239, 244, 255, 0.85);
  color: #004ac6;
}

.tree-article--nested {
  min-height: 34px;
  padding-left: 16px;
  font-size: 13px;
  line-height: 20px;
}

.category-main {
  flex: 1 1 auto;
  min-width: 0;
  height: 100%;
  overflow-y: auto;
  overscroll-behavior: auto;
  padding: 0 40px 0 56px;
}

.category-main > .article-breadcrumb,
.category-main > .article-header,
.category-main > .article-body-shell {
  max-width: var(--category-content-max);
}

.article-breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  min-height: 24px;
  margin-bottom: 28px;
  color: #434655;
  font-family: var(--font-ko);
  font-size: 13px;
  line-height: 20px;
}

.breadcrumb__item {
  min-width: 0;
  font-size: 13px;
  font-weight: 500;
  line-height: 20px;
}

.breadcrumb__link {
  color: #5f6880;
  font-size: 13px;
  font-weight: 500;
  line-height: 20px;
  text-decoration: none;
}

.breadcrumb__link:hover,
.breadcrumb__link:focus-visible {
  color: #004ac6;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.breadcrumb__item--current {
  color: #004ac6;
  font-weight: 500;
}

.breadcrumb__sep {
  color: #c3c6d7;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
}

.article-header {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 20px;
}

.article-header h2 {
  margin: 0;
  color: #0b1c30;
  font-family: var(--font-ko);
  font-size: 30px;
  font-weight: 600;
  line-height: 56px;
  letter-spacing: 0;
  word-break: keep-all;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  color: #434655;
}

.article-meta__item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 16px;
  font-family: var(--font-ko);
  font-size: 14px;
  font-weight: 500;
  line-height: 22px;
}

.article-body-shell {
  padding: 48px;
  border: 1px solid #c3c6d7;
  border-radius: 12px;
  background: #ffffff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.article-body-shell.is-list-view {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.article-body {
  color: #0b1c30;
  font-family: var(--font-ko);
  font-size: 16px;
  line-height: 28px;
  word-break: keep-all;
}

.article-body > :first-child {
  margin-top: 0 !important;
}

.article-body h1,
.article-body h2,
.article-body h3,
.article-body h4,
.article-body h5,
.article-body h6 {
  margin: 28px 0 12px;
  color: #0b1c30;
  line-height: 1.35;
  font-family: var(--font-ko);
  font-weight: 500;
  letter-spacing: 0;
}

.article-body h1 *,
.article-body h2 *,
.article-body h3 *,
.article-body h4 *,
.article-body h5 *,
.article-body h6 * {
  font-weight: inherit !important;
}

.article-body h1 {
  margin: 48px 0 28px;
  font-size: 30px;
}

.article-body h2 {
  margin: 44px 0 24px;
  font-size: 27px;
}

.article-body h3 {
  margin: 40px 0 22px;
  font-size: 24px;
}

.article-body h4 {
  margin: 36px 0 20px;
  font-size: 20px;
}

.article-body h5 {
  margin: 32px 0 18px;
  font-size: 17px;
}

.article-body h6 {
  margin: 28px 0 16px;
  font-size: 15px;
}

.article-body p {
  margin: 0 0 24px;
  color: #434655;
}

.article-body font {
  font: inherit;
  color: inherit;
}

.article-body hr {
  margin: 16px 0;
  border: 0;
  border-top: 1px solid rgba(195, 198, 215, 0.65);
}

.article-body ul,
.article-body ol {
  margin: 0 0 16px;
  padding-left: 24px;
  color: #434655;
}

.article-body li + li {
  margin-top: 8px;
}

.article-body a {
  color: #004ac6;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.article-body code {
  display: inline-block;
  padding: 0 5px;
  border-radius: 4px;
  background: #eff4ff;
  color: #0b1c30;
  font-family: var(--font-ko);
  font-size: 0.92em;
  line-height: 1.65;
}

.article-body img {
  width: auto;
  max-width: 100%;
  height: auto;
  vertical-align: -0.18em;
}

.article-body p img,
.article-body li img,
.article-body td img,
.article-body th img,
.article-body h1 img,
.article-body h2 img,
.article-body h3 img,
.article-body h4 img,
.article-body h5 img,
.article-body h6 img {
  vertical-align: -0.42em;
}

.article-body h1 img[width="25"],
.article-body h2 img[width="25"],
.article-body h3 img[width="25"],
.article-body h4 img[width="25"],
.article-body h5 img[width="25"],
.article-body h6 img[width="25"],
.article-body h1 img[width="35"],
.article-body h2 img[width="35"],
.article-body h3 img[width="35"],
.article-body h4 img[width="35"],
.article-body h5 img[width="35"],
.article-body h6 img[width="35"] {
  vertical-align: -0.18em;
}

.article-body h1 img[width="80"],
.article-body h2 img[width="80"],
.article-body h3 img[width="80"],
.article-body h4 img[width="80"],
.article-body h5 img[width="80"],
.article-body h6 img[width="80"],
.article-body h1 img[width="110"],
.article-body h2 img[width="110"],
.article-body h3 img[width="110"],
.article-body h4 img[width="110"],
.article-body h5 img[width="110"],
.article-body h6 img[width="110"] {
  vertical-align: -0.72em;
}

.article-body table {
  width: 100%;
  margin: 0 0 28px;
  border-collapse: collapse;
}

.article-body table + :is(p, ul, ol, h1, h2, h3, h4, h5, h6) {
  margin-top: 0;
}

.article-body td,
.article-body th {
  padding: 12px;
  border: 1px solid #d9e1ee;
  vertical-align: top;
}

.article-body td > :last-child,
.article-body th > :last-child {
  margin-bottom: 0;
}

.article-list-view {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.article-list-group {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.legacy-landing {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.legacy-landing--platform {
  gap: 32px;
}

.legacy-landing__intro {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.legacy-landing__intro p {
  margin: 0;
  color: #434655;
}

.legacy-landing__cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.legacy-landing__card {
  width: 100%;
}

.article-list-group__title {
  margin: 0;
  color: #0b1c30;
  font-family: var(--font-ko);
  font-size: 18px;
  font-weight: 600;
  line-height: 26px;
}

.article-list-cards {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.article-list-card {
  width: 100%;
  min-height: 74px;
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  border: 1px solid #c3c6d7;
  border-radius: 12px;
  background: #ffffff;
  text-align: left;
}

.article-list-card:hover,
.article-list-card:focus-visible {
  border-color: #004ac6;
  box-shadow: 0 0 0 3px rgba(0, 74, 198, 0.08);
}

.article-list-card__title {
  color: #0b1c30;
  font-family: var(--font-ko);
  font-size: 15px;
  font-weight: 500;
  line-height: 22px;
}

.article-list-card__arrow {
  margin-left: auto;
  width: 12px;
  height: 12px;
  color: #c3c6d7;
}

.article-list-card__arrow svg {
  width: 12px;
  height: 12px;
}


@media (max-width: 1100px) {
  .page-category main.category-page-main {
    height: auto;
    overflow: visible;
  }

  .ag-header--category .ag-header__content--category {
    grid-template-columns: auto 1fr auto;
    row-gap: 0;
  }

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

  .category-header-nav {
    display: none;
  }

  .category-search-toggle {
    display: inline-flex;
  }

  .category-search-panel {
    position: absolute;
    left: 50%;
    top: 30px;
    z-index: 25;
    width: min(1040px, calc(100% - 20px));
    transform: translateX(-50%);
    gap: 8px;
  }

  .category-search-close {
    display: inline-flex;
  }

  .category-search__submit {
    min-width: 68px;
    padding: 0 18px;
  }

  .category-shell {
    width: calc(100% - 32px);
    height: auto;
    margin: 0 auto;
    display: block;
    padding: 24px 0 64px;
    overflow: visible;
  }

  .category-sidebar {
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    z-index: 40;
    width: min(320px, calc(100vw - 36px));
    max-width: 320px;
    padding: 22px 16px 20px;
    height: auto;
    max-height: none;
    display: flex;
    flex-direction: column;
    background: #ffffff;
    border-right: 1px solid #c3c6d7;
    border-bottom: 0;
    overflow: hidden;
    transform: translateX(-100%);
    transition: transform 220ms ease, box-shadow 220ms ease;
  }

  .category-sidebar__close {
    display: inline-flex;
  }

  .category-sidebar__top {
    display: flex;
    flex: 0 0 auto;
  }

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

  body.page-category.is-mobile-tree-open .category-sidebar {
    transform: translateX(0);
    box-shadow: 14px 0 28px rgba(11, 28, 48, 0.12);
  }

  .category-sidebar-menu {
    display: block;
  }

  .category-sidebar__scroll {
    flex: 1 1 auto;
    min-height: 0;
    overflow-y: auto;
    overscroll-behavior: auto;
    scrollbar-gutter: stable;
    padding-bottom: calc(20px + env(safe-area-inset-bottom));
  }

  .category-sidebar-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 30;
    border: 0;
    background: rgba(11, 28, 48, 0.18);
  }

  body.page-category.is-mobile-tree-open .category-sidebar-backdrop {
    display: block;
  }

  .category-main {
    height: auto;
    overflow: visible;
    padding: 16px 0 0;
  }

  .category-main > .article-breadcrumb,
  .category-main > .article-header,
  .category-main > .article-body-shell {
    max-width: none;
  }
}

@media (max-width: 720px) {
  .ag-header--category {
    padding: 22px 6px 18px 10px;
  }

  .ag-header--category .ag-header__content--category {
    grid-template-columns: auto 1fr;
    justify-items: stretch;
    column-gap: 12px;
  }

  .category-search-panel {
    top: 22px;
    width: calc(100% - 24px);
    gap: 6px;
  }

  .category-search-close {
    width: 32px;
    height: 32px;
    flex-basis: 32px;
  }

  .category-shell {
    padding: 20px 0 56px;
  }

  .category-search {
    max-width: none;
  }

  .category-search__submit {
    min-width: 60px;
    height: 36px;
    padding: 0 16px;
    font-size: 13px;
  }

  .article-header h2 {
    font-size: 30px;
    line-height: 40px;
  }

  .article-breadcrumb,
  .breadcrumb__item,
  .breadcrumb__link {
    font-size: 13px;
    line-height: 20px;
  }

  .article-body-shell {
    padding: 32px 20px;
  }
}
