/* ================================================
   ChongwuPet base.css
   ============================================== */

/* 1) 设计变量 */
:root {
  --font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  /* Brand */
  --primary-color-dark: #4c3b71;
  --primary-color: #4c3b71;
  --primary-color-800: #69399a;
  --primary-color-700: #8244be;
  --primary-color-light: #9553d8;
  --primary-color-500: #a16fe5;
  --primary-color-400: #ad8bee;
  --primary-color-300: #bfacf5;
  --primary-color-200: #d7ccf9;
  --primary-color-100: #e9e3fc;
  --primary-color-50: #f2effe;

  /* Secondary */
  --secondary-color-dark: #470808;
  --secondary-color-900: #821a1a;
  --secondary-color-800: #9d1717;
  --secondary-color-700: #be1717;
  --secondary-color-600: #e22020;
  --secondary-color: #f53e3e;
  --secondary-color-300: #ff9999;
  --secondary-color-200: #ffc8c8;
  --secondary-color-100: #ffe1e1;
  --secondary-color-50: #fef2f2;

  /* Base */
  --background-color: #f9fafb;
  --text-color-primary: #202124;
  --text-color-secondary: #5f6368;
  --text-color-secondary-2: #999;
  --border-color: #e5e7eb;

  --link-color: var(--primary-color);
  --link-hover-color: #fd6c6c;

  --container-max: 1440px;
  --gutter: 16px;
  --nav-h: 80px;

  /* 安全区 */
  --gutter-safe-left: max(var(--gutter), env(safe-area-inset-left));
  --gutter-safe-right: max(var(--gutter), env(safe-area-inset-right));

  /* globals.css */
  --radius: 8px;
  --ease-smooth: cubic-bezier(.22, .61, .36, 1);
}

@font-face {
  font-family: 'icomoon';
  src: url('/wp-content/themes/cwp/fonts/icomoon.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

[class^="icon-"],
[class*=" icon-"] {
  font-family: 'icomoon' !important;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-arrow_back_ios:before {
  content: "\e900";
}

.icon-arrow_back:before {
  content: "\e901";
}

.icon-share:before {
  content: "\e902";
}

.icon-print:before {
  content: "\e903";
}

.icon-arrow_forward_ios:before {
  content: "\e904";
}

.icon-arrow_forward:before {
  content: "\e905";
}

.icon-chevron_down:before {
  content: "\e906";
}

.icon-chevron_left:before {
  content: "\e907";
}

.icon-chevron_right:before {
  content: "\e908";
}

.icon-chevron_up:before {
  content: "\e909";
}

.icon-close:before {
  content: "\e90a";
}

.icon-dark_mode_fill:before {
  content: "\e90b";
}

.icon-dark_mode:before {
  content: "\e90c";
}

.icon-favorite_fill:before {
  content: "\e90d";
}

.icon-favorite:before {
  content: "\e90e";
}

.icon-light_mode_fill:before {
  content: "\e90f";
}

.icon-light_mode:before {
  content: "\e910";
}

.icon-menu:before {
  content: "\e911";
}

.icon-play_arrow_fill:before {
  content: "\e912";
}

.icon-play_arrow:before {
  content: "\e913";
}

.icon-play_circle_fill:before {
  content: "\e914";
}

.icon-play_circle:before {
  content: "\e915";
}

.icon-search:before {
  content: "\e916";
}

.icon-star_fill:before {
  content: "\e917";
}

.icon-star:before {
  content: "\e918";
}

.icon-text_decrease:before {
  content: "\e919";
}

.icon-text_increase:before {
  content: "\e91a";
}

.icon-thumb_up_fill:before {
  content: "\e91b";
}

.icon-thumb_up:before {
  content: "\e91c";
}

.icon-edit:before {
  content: "\e91d";
}

.icon-more:before {
  content: "...";
  font-size: 20px;
}

.icon-arrow_prev:before {
  content: "\e900";
}

.icon-arrow_next:before {
  content: "\e904";
}

.icon-volume_up:before {
  content: "\e91e";
}

/* 2) Reset 与排版 */
html,
body {
  margin: 0;
  padding: 0;
	height: auto;
	min-height: 100%;
  display: flex;
  flex-direction: column;
  background: #fff;
  color: var(--text-color-primary);
  font-family: var(--font-family);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}



html {
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  box-sizing: border-box;
  scrollbar-width: auto;
  scrollbar-color: #aaa #f1f1f1;
}

body {
  padding-top: calc(var(--nav-h, 80px) + env(safe-area-inset-top, 0px) + 30px);
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

h1,
h2,
h3,
h4 {
  font-weight: 700;
  margin: 0;
}

h1 {
  font-size: 28px;
}

h2 {
  font-size: 22px;
}

h3 {
  font-size: 18px;
}

h4 {
  font-size: 16px;
}

b,
strong {
  font-weight: bolder;
}

ul,
li,
p,
figure {
  margin: 0;
  padding: 0;
  list-style: none;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

button,
input {
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
}

header,
main,
footer {
  display: block;
  clear: both;
}

main {
  flex: 1;
  position: relative;
}

/* 3) 链接/媒体 */
a {
  color: var(--link-color);
  text-decoration: none;
}

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

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--primary-color);
  outline-offset: 0;
  border-radius: var(--radius);
}

button:focus-visible {
  border-radius: 999px;
}

/* 4) 滚动条 */
::-webkit-scrollbar {
  width: auto;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: #aaa;
  border-radius: 50px;
}

::-webkit-scrollbar-thumb:hover {
  background: #777;
}

/* 5) 顶部导航 */
.site-nav {
  background: var(--primary-color-dark);
  height: var(--nav-h);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1000;
}

.nav-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  align-items: center;
  height: 100%;
  justify-content: space-between;
  gap: 30px;
}

@media (min-width:834px) {
  .nav-container {
    justify-content: flex-start;
  }
}

.cwp-logo {
  display: flex;
  margin: 0 auto;
  align-items: center;
  height: var(--nav-h);
  font-size: 21px;
}

.cwp-logo__img {
  height: 50px;
  width: auto;
}

.nav-icons .nav-icon:not(.search-icon) {
  display: none;
}

.nav-icons {
  display: flex;
  margin-top: 0;
  align-items: center;
}

.nav-icon {
  color: #fff;
  font-size: 18px;
}

.nav-divider {
  display: none;
}

@media (min-width:834px) {
  .nav-divider {
    display: block;
    color: rgba(255, 255, 255, .4);
    font-size: 14px;
    line-height: var(--nav-h);
    padding: 0 12px;
    pointer-events: none;
  }
}

/* 汉堡按钮 */
.hamburger {
  display: flex;
  position: relative;
  width: 20px;
  height: 14px;
  cursor: pointer;
  flex-direction: column;
  justify-content: space-between;
  color: var(--nav-icon-color, #fff);
  /* 用 currentColor 控色，更稳 */
}

@media (min-width:834px) {
  .hamburger {
    display: none;
  }
}

.hamburger span {
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background: currentColor;
  /* ← 不再用 --background-color */
  border-radius: 1px;
  transform-origin: 50% 50%;
  transition: transform .25s ease, opacity .2s ease, top .25s ease, bottom .25s ease;
  backface-visibility: hidden;
}

.hamburger span:nth-child(1) {
  top: 0;
}

.hamburger span:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}

.hamburger span:nth-child(3) {
  bottom: 0;
}

/* 打开态：兼容三种写法：.active / .is-open / aria-expanded="true" */
.hamburger.active span:nth-child(1),
.hamburger.is-open span:nth-child(1),
.hamburger[aria-expanded="true"] span:nth-child(1) {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}

.hamburger.active span:nth-child(2),
.hamburger.is-open span:nth-child(2),
.hamburger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3),
.hamburger.is-open span:nth-child(3),
.hamburger[aria-expanded="true"] span:nth-child(3) {
  bottom: auto;
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
}

/* 6) 搜索面板（含遮罩） */
.search-panel {
  position: fixed;
  z-index: 999;
  left: 0;
  right: 0;
  top: var(--nav-h);
  background: #fff;
  transform: translateY(-12px);
  opacity: 0;
  pointer-events: none;
  transition: transform .28s cubic-bezier(.4, .14, .3, 1), opacity .2s ease;
  color: var(--text-color-primary);
}

.search-panel .icon-search {
  color: var(--text-color-secondary);
}

.search-panel.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.search-inner {
  max-width: 844px;
  margin: 0 auto;
  padding: 16px 22px 18px;
}

.search-input-wrap {
  position: relative;
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(0, 0, 0, .15);
  padding: 10px 0;
  color: var(--text-color-secondary);
}

.search-input {
  flex: 1 1 auto;
  min-width: 0;
  height: 36px;
  padding: 3px 0 0;
  background: transparent;
  border: 0;
  outline: none;
  font-size: 16px;
  color: var(--text-color-primary);
}

.search-input::placeholder {
  color: var(--text-color-secondary-2);
}

/* 右侧 SVG 提交按钮 */
.submit-icon {
  width: 24px;
  height: 24px;
  margin-left: 10px;
  cursor: pointer;
  flex: 0 0 auto;
}

.submit-icon:hover {
  opacity: .9;
}

.submit-icon:focus {
  outline: 2px solid var(--primary-color);
  outline-offset: 2px;
  border-radius: 20px;
}

/* 热词/联想 */
.search-hints {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 10px;
}

.default-hints,
.dynamic-hints {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.search-hints a,
.search-hints span {
  display: inline-block;
  font-size: 13px;
  line-height: 1.4;
  white-space: nowrap;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid var(--border-color);
  background: #fff;
  color: var(--primary-color);
  text-decoration: none;
}

.search-hints a:hover {
  background: var(--primary-color-50);
  border-color: var(--primary-color-200);
}

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

/* 热词删除叉 */
.search-hints a.hint {
  position: relative;
  padding-right: 26px;
}

.search-hints .hint-del {
  position: absolute;
  right: 6px;
  top: 50%;
  transform: translateY(-50%);
  padding: 0;
  width: 16px;
  height: 16px;
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--text-color-secondary);
  opacity: .7;
  cursor: pointer;
  border-radius: 999px;
  border: none;
  user-select: none;
}

.search-hints a.hint:hover .hint-del {
  opacity: .95;
}

.search-hints .hint-del:hover {
  background: #fff;
}

/* 顶部搜索图标切换（导航右侧） */
.icon {
  font-size: 26px;
  display: inline-block;
}

.search-icon {
  position: relative;
  color: #fff !important;
  display: flex;
  align-items: center;
  justify-content: center;
}

.search-icon .icon-search,
.search-icon .icon-close {
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: opacity .18s ease, transform .22s ease;
}

.search-icon .icon-search {
  opacity: .9;
}

.search-icon .icon-close {
  opacity: 0;
  transform: translate(-50%, -50%) scale(.85) rotate(-90deg);
}

.is-search-open .search-icon .icon-search {
  opacity: 0;
  transform: translate(-50%, -50%) scale(.85) rotate(90deg);
}

.is-search-open .search-icon .icon-close {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1) rotate(0deg);
}

/* iOS 搜索输入优化 */
.search-input:-webkit-autofill,
.search-input:-webkit-autofill:focus {
  -webkit-box-shadow: 0 0 0 1000px #fff inset !important;
  -webkit-text-fill-color: var(--text-color-primary) !important;
}

.search-input::-webkit-search-cancel-button {
  -webkit-appearance: none;
  height: 18px;
  width: 18px;
  cursor: pointer;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2' stroke-linecap='round'%3E%3Cline x1='18' y1='6' x2='6' y2='18'/%3E%3Cline x1='6' y1='6' x2='18' y2='18'/%3E%3C/svg%3E") no-repeat center/18px 18px;
}

/* 遮罩 */
.search-dim {
  position: fixed;
  z-index: 998;
  left: 0;
  right: 0;
  top: var(--nav-h);
  bottom: 0;
  background: rgba(0, 0, 0, .3);
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease;
}

.search-dim.open {
  opacity: 1;
  pointer-events: auto;
}

/* 移动端：打开搜索/菜单禁滚 */
body.is-locked {
  position: fixed;
  left: 0;
  right: 0;
  width: 100%;
  overflow: hidden;
  overscroll-behavior: contain;
}

/* 7) 工具类 */
.visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

#main-content {
  scroll-margin-top: calc(var(--nav-h) + 30px);
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
  z-index: 10000;
  background: var(--primary-color);
  color: #fff;
  padding: 10px 16px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: .2s;
}

.skip-link:focus {
  left: 16px;
  top: 16px;
  width: auto;
  height: auto;
  overflow: visible;
  box-shadow: 0 2px 6px rgba(0, 0, 0, .25);
}

/* 面包屑 */
.breadcrumb {
  display: inline-block;
  align-items: center;
  flex-wrap: wrap;
  gap: 0;
  font-size: 0;
}

.breadcrumb>a,
.breadcrumb>span {
  font-size: 14px;
  line-height: 1.6;
}

.breadcrumb>span {
  color: var(--text-color-secondary);
}

.breadcrumb>a:hover {
  text-decoration: underline;
}

.breadcrumb>a:not(:first-child)::before,
.breadcrumb>span:not(:first-child)::before {
  content: "/";
  display: inline-block;
  width: 10px;
  height: 16px;
  margin: 0 5px 0 10px;
  font-weight: 300;
  color: var(--text-color-secondary-2);
}

footer {
  text-align: center;
  color: var(--text-color-secondary);
  font-size: 14px;
  padding: 30px 0 20px;
  background: var(--primary-color-dark);
}

footer p {
  font-size: 12px;
  margin-bottom: 10px;
  color: #fff;
}

footer p a {
  color: #fff;
  text-decoration: underline;
}


/* ======= 全局导航 ======= */
.vn-container {
  position: relative;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media (min-width: 1024px) {
  .vn-container {
    height: var(--nav-h);
    min-width: 1264px;
  }
}

.vn-menu-btn {
  display: flex;
  align-items: center;
  height: 100%;
  padding: 0;
  background: none;
  border: 0;
  color: #fff;
  cursor: pointer;
  line-height: 1;
}

.vn-menu-btn i {
  font-size: 28px;
  padding: 5px 0;
  overflow: hidden;
}

.vn-dt {
  display: none !important;
}

.vn-mt {
  display: block;
}

.icon-arrow_forward_ios {
  color: var(--link-hover-color);
}

.vn-hidden {
  visibility: hidden !important;
}

.vn-none {
  display: none !important;
}

.vn-logo-container {
  display: flex;
  align-items: center;
}

.vn-logo-container .vn-logo {
  line-height: 1;
}

.vn-logo-container .vn-logo img {
  display: block;
  height: 50px;
}

.vn-links,
.vn-links .vn-menu-section {
  position: fixed;
  width: 100%;
  height: 100%;
  background: var(--background-alt-color);
  overflow: auto;
  z-index: 100;
  transition: left 0.5s ease, right 0.5s ease;
}

.vn-links {
  left: -140vw;
  padding: 8px;
  display: flex;
  flex-direction: column;
  background: #f5f5f5;
}

.vn-links .vn-menu-section {
  right: -140vw;
  padding: 0 24px;
  z-index: 10;
  background: #fff;
  height: unset;
  -webkit-overflow-scrolling: touch;
}

@media (max-width: 1023px) {
  .vn-menu-btn i {
    margin-top: 10px;
  }

  .vn-links,
  .vn-links .vn-menu-section {
    top: var(--nav-h);
  }
}

.vn-links.open {
  left: 0;
}

.vn-links.open.vn-slide-out {
  left: -100vw;
}

.vn-links .vn-links-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.vn-links .vn-links-list>li {
  background: #fff;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 500;
  height: 48px;
  margin-top: 2px;
}

.vn-links .vn-links-list>li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  padding: 0 10px 0 15px;
  height: 100%;
  text-decoration: none;
}

.vn-links .vn-links-list>li a:hover {
  text-decoration: none;
}

.vn-links .vn-links-list>li h2 a {
  padding-left: 0;
}

.vn-links .vn-menu-section.open {
  right: 0;
}

.vn-links .vn-menu-section .vn-menu-section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border-color);
  padding: 12px 0;
}

.vn-links .vn-menu-section .vn-menu-section-header h2 {
  color: var(--primary-color);
  font-size: 20px;
  line-height: 1;
  margin: 0;
}

.vn-links .vn-menu-section .vn-menu-section-header a {
  font-weight: 700;
}

.vn-links .vn-menu-section .vn-menu-section-header a img {
  width: 13px;
  margin-right: 8px;
}

.vn-links .vn-menu-section ul {
  margin: 12px 0;
  padding: 0;
  list-style: none;
}

.vn-links .vn-menu-section ul li {
  font-size: 18px;
  font-weight: 400;
}

.vn-links .vn-menu-section ul li a {
  display: block;
  padding: 13px 0 12px;
  text-decoration: none;
}

.vn-links .vn-menu-section ul li a:hover {
  font-weight: 500;
}

@media (min-width: 1024px) {
  .vn-links .vn-menu-section ul li a:hover {
    text-decoration: underline;
  }
}

.vn-links .vn-back {
  color: var(--primary-color);
  background: none;
  border: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  padding: 16px 0;
  margin-left: -5px;
}

.vn-links .vn-back i {
  color: var(--primary-color);
}

.vn-links .vn-actions {
  margin-top: 16px;
}

.vn-menu-section {
  bottom: 0;
}

@media (min-width: 1024px) {
  .vn-menu-section {
    bottom: auto;
  }

  .vn-dt {
    display: block !important;
  }

  .vn-links .vn-links-list>li>a i {
    font-size: 20px;
    margin-left: 5px;
    -webkit-transition: transform 0.3s ease;
    transition: transform 0.3s ease;
  }

  .vn-mt,
  .vn-none {
    display: none !important;
  }

  .vn-logo-container .vn-logo img {
    height: 50px;
  }

  .vn-links {
    flex-direction: row;
    position: relative;
    top: 0;
    left: 0;
    padding: 0;
    max-width: 78%;
    height: 100%;
    overflow: visible;
    background: none;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
  }

  .vn-links .vn-links-list {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }

  .vn-links .vn-links-list,
  .vn-links .vn-links-list>li {
    display: flex;
    display: -ms-flexbox;
    display: -webkit-box;
    align-items: center;
    -ms-flex-align: center;
    -webkit-box-align: center;
  }

  .vn-links .vn-links-list>li {
    background: none;
    height: 100%;
    margin-right: 0;
    margin-top: 0;
    position: relative;
  }

  .vn-links .vn-links-list>li>a {
    border-radius: 8px;
    color: #fff;
    cursor: pointer;
    height: auto;
    padding: 8px 10px 7px;
    text-decoration: none;
  }

  .vn-links .vn-links-list>li:hover>a {
    background: #fff;
    color: var(--primary-color);
  }

  .vn-links .vn-links-list>li:hover>a i {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
  }

  .vn-links .vn-links-list>li:hover .vn-menu-section {
    left: 0;
    opacity: 1;
    visibility: visible;
  }

  .vn-links .vn-links-list>li:focus-visible>a,
  .vn-links .vn-links-list>li:has(:focus-visible)>a {
    background: #fff;
  }

  .vn-links .vn-links-list>li:focus-visible>a i,
  .vn-links .vn-links-list>li:has(:focus-visible)>a i {
    -webkit-transform: rotateX(180deg);
    transform: rotateX(180deg);
  }

  .vn-links .vn-links-list>li:focus-visible .vn-menu-section,
  .vn-links .vn-links-list>li:has(:focus-visible) .vn-menu-section {
    left: 0;
    opacity: 1;
    visibility: visible;
  }

  .vn-links .vn-menu-section {
    background: #fff;
    border-radius: 0 0 5px 5px;
    border-top: 0;
    left: -20px;
    margin-left: -15px;
    max-width: none;
    height: auto;
    opacity: 0;
    padding: 10px 25px;
    position: absolute;
    top: var(--nav-h);
    width: 320px;
    visibility: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  }

  .vn-links .vn-menu-section ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 20px;
    row-gap: 0;
    margin: 0;
    padding: 0;
  }

  .vn-links .vn-menu-section ul li {
    border-bottom: 1px solid var(--border-color);
  }

  .vn-links .vn-menu-section ul li:last-of-type,
  .vn-links .vn-menu-section ul li:nth-last-child(2) {
    border-bottom: 0;
  }

  .vn-links .vn-actions {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-left: 1px solid var(--border-color);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 19px 0;
    padding-left: 20px;
  }
}

@media (min-width: 600px) and (max-width: 1023px) {
  .vn-links {
    max-width: 400px;
  }

  .vn-links.open.vn-slide-out {
    left: 0;
  }

  .vn-links .vn-menu-section {
    max-width: 400px;
    left: -140vw;
    right: auto;
  }

  .vn-links .vn-menu-section.open {
    left: 0;
    right: auto;
  }
}