:root {
      --theme: #0B3D91;
      --theme-dark: #072b68;
      --theme-soft: #eaf0fb;
      --cyan: #16d9e3;
      --cyan-soft: #e7fbfc;
      --ink: #122033;
      --muted: #64748b;
      --line: #dfe6ef;
      --surface: #ffffff;
      --surface-soft: #f5f7fa;
      --danger: #dc2626;
      --shadow-sm: 0 8px 24px rgba(15, 35, 70, .08);
      --shadow-lg: 0 22px 60px rgba(11, 61, 145, .14);
      --radius-sm: 10px;
      --radius-md: 18px;
      --radius-lg: 28px;
      --container: 1200px;
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      color: var(--ink);
      background: var(--surface-soft);
      font-family: Pretendard, "Noto Sans KR", "Apple SD Gothic Neo", Arial, sans-serif;
      line-height: 1.65;
      overflow-wrap: anywhere;
    }

    body.drawer-lock {
      overflow: hidden;
    }

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

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

    button,
    input,
    textarea,
    select {
      font: inherit;
    }

    button {
      color: inherit;
    }

    .container {
      width: min(calc(100% - 40px), var(--container));
      margin-inline: auto;
    }

    .skip-link {
      position: fixed;
      top: 12px;
      left: 12px;
      z-index: 2000;
      padding: 10px 16px;
      color: #fff;
      background: var(--theme);
      border-radius: 8px;
      transform: translateY(-150%);
      transition: transform .2s ease;
    }

    .skip-link:focus {
      transform: translateY(0);
    }

    .topbar {
      color: #dce8ff;
      background: var(--theme-dark);
      font-size: 13px;
    }

    .topbar-inner {
      min-height: 38px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
    }

    .topbar-welcome {
      margin: 0;
    }

    .topbar-contact {
      display: flex;
      align-items: center;
      gap: 20px;
    }

    .topbar-contact a {
      transition: color .2s ease;
    }

    .topbar-contact a:hover {
      color: var(--cyan);
    }

    .header {
      position: relative;
      z-index: 100;
      background: rgba(255, 255, 255, .98);
      border-bottom: 1px solid var(--line);
      box-shadow: 0 5px 20px rgba(15, 35, 70, .04);
    }

    .header-inner {
      min-height: 78px;
      display: flex;
      align-items: center;
      gap: 28px;
    }

    .logo {
      display: inline-flex;
      align-items: center;
      gap: 11px;
      min-width: 0;
      color: var(--theme);
      font-size: 20px;
      font-weight: 900;
      letter-spacing: -.03em;
    }

    .logo img {
      width: 42px;
      height: 42px;
      object-fit: contain;
      border-radius: 10px;
    }

    .logo span {
      max-width: 190px;
      overflow: hidden;
      white-space: nowrap;
      text-overflow: ellipsis;
    }

    .main-nav {
      align-self: stretch;
      flex: 1;
    }

    .nav-list {
      height: 100%;
      display: flex;
      align-items: stretch;
      justify-content: center;
      gap: 2px;
      margin: 0;
      padding: 0;
      list-style: none;
    }

    .nav-item {
      position: relative;
      display: flex;
      align-items: stretch;
    }

    .nav-link {
      position: relative;
      display: flex;
      align-items: center;
      padding: 0 13px;
      color: #334155;
      font-size: 14px;
      font-weight: 750;
      white-space: nowrap;
    }

    .nav-link::after {
      content: "";
      position: absolute;
      right: 13px;
      bottom: 17px;
      left: 13px;
      height: 2px;
      background: var(--cyan);
      transform: scaleX(0);
      transition: transform .2s ease;
    }

    .nav-item:hover > .nav-link,
    .nav-item:focus-within > .nav-link {
      color: var(--theme);
    }

    .nav-item:hover > .nav-link::after,
    .nav-item:focus-within > .nav-link::after {
      transform: scaleX(1);
    }

    .dropdown-panel,
    .mega-menu {
      position: absolute;
      top: 100%;
      left: 0;
      z-index: 150;
      visibility: hidden;
      opacity: 0;
      pointer-events: none;
      transform: translateY(8px);
      transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
      background: #fff;
      border: 1px solid var(--line);
      border-radius: 0 0 var(--radius-md) var(--radius-md);
      box-shadow: var(--shadow-lg);
    }

    .dropdown-panel::before,
    .mega-menu::before {
      content: "";
      position: absolute;
      top: -10px;
      right: 0;
      left: 0;
      height: 10px;
    }

    .nav-item:hover > .dropdown-panel,
    .nav-item:focus-within > .dropdown-panel,
    .nav-item:hover > .mega-menu,
    .nav-item:focus-within > .mega-menu {
      visibility: visible;
      opacity: 1;
      pointer-events: auto;
      transform: translateY(0);
    }

    .dropdown-panel {
      width: 330px;
      padding: 20px;
    }

    .dropdown-title,
    .mega-title {
      margin: 0 0 12px;
      color: var(--theme);
      font-size: 16px;
      font-weight: 900;
    }

    .dropdown-article {
      display: block;
      padding: 10px 0;
      color: #334155;
      font-size: 14px;
      font-weight: 650;
      border-bottom: 1px solid #edf1f6;
    }

    .dropdown-article:hover {
      color: var(--theme);
    }

    .panel-more {
      display: inline-flex;
      margin-top: 15px;
      color: var(--theme);
      font-size: 14px;
      font-weight: 850;
    }

    .mega-menu {
      width: min(900px, calc(100vw - 40px));
      padding: 22px;
    }

    .mega-wide {
      left: 50%;
      width: min(1060px, calc(100vw - 40px));
      transform: translate(-50%, 8px);
    }

    .nav-item:hover > .mega-wide,
    .nav-item:focus-within > .mega-wide {
      transform: translate(-50%, 0);
    }

    .mega-layout {
      display: grid;
      grid-template-columns: 210px minmax(0, 1fr);
      gap: 22px;
    }

    .mega-sidebar {
      padding: 20px;
      color: #dce8ff;
      background: linear-gradient(145deg, var(--theme), var(--theme-dark));
      border-radius: 14px;
    }

    .mega-sidebar .mega-title {
      color: #fff;
    }

    .mega-sidebar p:not(.mega-title) {
      margin: 0 0 18px;
      color: #dce8ff;
      font-size: 13px;
    }

    .mega-sidebar > a {
      display: inline-flex;
      padding: 8px 12px;
      color: var(--theme-dark);
      background: var(--cyan);
      border-radius: 999px;
      font-size: 12px;
      font-weight: 900;
    }

    .mega-categories {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-bottom: 18px;
      padding-bottom: 16px;
      border-bottom: 1px solid var(--line);
    }

    .mega-categories a {
      padding: 7px 12px;
      color: var(--theme);
      background: var(--theme-soft);
      border-radius: 999px;
      font-size: 12px;
      font-weight: 800;
    }

    .mega-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 12px;
    }

    .mega-card {
      min-width: 0;
      display: grid;
      align-content: start;
      gap: 7px;
      padding: 13px;
      background: #f8fafc;
      border: 1px solid #e8edf4;
      border-radius: 12px;
      transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease;
    }

    .mega-card:hover {
      border-color: var(--cyan);
      box-shadow: var(--shadow-sm);
      transform: translateY(-2px);
    }

    .mega-card img {
      width: 100%;
      height: 68px;
      object-fit: contain;
      background: #fff;
      border-radius: 8px;
    }

    .video-card img,
    .product-card img {
      object-fit: cover;
    }

    .mega-card strong {
      overflow: hidden;
      color: #1e293b;
      font-size: 13px;
      white-space: nowrap;
      text-overflow: ellipsis;
    }

    .mega-card small {
      display: -webkit-box;
      overflow: hidden;
      color: var(--muted);
      font-size: 11px;
      line-height: 1.45;
      -webkit-box-orient: vertical;
      -webkit-line-clamp: 2;
    }

    .mega-meta {
      display: flex;
      flex-wrap: wrap;
      gap: 5px 9px;
      color: var(--theme);
      font-size: 10px;
      font-weight: 750;
    }

    .header-btns {
      display: flex;
      align-items: center;
      gap: 9px;
      margin-left: auto;
    }

    .member-entry {
      display: flex;
      align-items: center;
    }

    .member-entry a,
    .open-account {
      display: inline-flex;
      min-height: 40px;
      align-items: center;
      justify-content: center;
      padding: 0 14px;
      border-radius: 999px;
      font-size: 13px;
      font-weight: 850;
    }

    .member-entry a {
      color: var(--theme);
      background: var(--theme-soft);
    }

    .open-account {
      color: #06214d;
      background: var(--cyan);
    }

    .hamburger {
      width: 44px;
      height: 44px;
      display: none;
      align-items: center;
      justify-content: center;
      flex-direction: column;
      gap: 5px;
      padding: 0;
      background: #fff;
      border: 1px solid var(--line);
      border-radius: 12px;
      cursor: pointer;
    }

    .hamburger span {
      width: 20px;
      height: 2px;
      background: var(--theme);
      transition: transform .2s ease, opacity .2s ease;
    }

    .hamburger.active span:nth-child(1) {
      transform: translateY(7px) rotate(45deg);
    }

    .hamburger.active span:nth-child(2) {
      opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
      transform: translateY(-7px) rotate(-45deg);
    }

    .drawer-overlay {
      position: fixed;
      inset: 0;
      z-index: 500;
      visibility: hidden;
      opacity: 0;
      background: rgba(4, 16, 39, .62);
      backdrop-filter: blur(3px);
      transition: opacity .25s ease, visibility .25s ease;
    }

    .drawer-overlay.open {
      visibility: visible;
      opacity: 1;
    }

    .mobile-drawer {
      position: fixed;
      top: 0;
      right: 0;
      z-index: 501;
      width: min(390px, 92vw);
      height: 100dvh;
      overflow-y: auto;
      background: #fff;
      box-shadow: -20px 0 50px rgba(5, 25, 60, .2);
      transform: translateX(105%);
      transition: transform .28s ease;
    }

    .mobile-drawer.open {
      transform: translateX(0);
    }

    .drawer-head {
      min-height: 78px;
      display: flex;
      align-items: center;
      gap: 9px;
      padding: 15px 18px;
      color: #fff;
      background: var(--theme);
    }

    .drawer-head > a,
    .drawer-head > div a {
      display: inline-flex;
      padding: 8px 11px;
      color: #06214d;
      background: var(--cyan);
      border-radius: 999px;
      font-size: 12px;
      font-weight: 850;
    }

    .drawer-close {
      width: 38px;
      height: 38px;
      margin-left: auto;
      color: #fff;
      background: rgba(255, 255, 255, .13);
      border: 1px solid rgba(255, 255, 255, .24);
      border-radius: 50%;
      font-size: 25px;
      line-height: 1;
      cursor: pointer;
    }

    .drawer-menu {
      padding: 15px 18px 32px;
    }

    .drawer-link,
    .drawer-toggle {
      width: 100%;
      min-height: 48px;
      display: flex;
      align-items: center;
      padding: 0 12px;
      color: #1e293b;
      background: transparent;
      border: 0;
      border-bottom: 1px solid #e9eef5;
      font-weight: 800;
      text-align: left;
      cursor: pointer;
    }

    .drawer-toggle {
      justify-content: space-between;
    }

    .drawer-toggle::after {
      content: "+";
      color: var(--theme);
      font-size: 20px;
    }

    .drawer-toggle.active::after {
      content: "−";
    }

    .drawer-submenu {
      display: none;
      padding: 7px 10px 11px 20px;
      background: #f8fafc;
      border-radius: 0 0 12px 12px;
    }

    .drawer-submenu.open {
      display: grid;
    }

    .drawer-submenu a {
      padding: 9px 8px;
      color: #526174;
      border-bottom: 1px dashed #dce3ec;
      font-size: 13px;
    }

    .article-page {
      min-width: 0;
    }

    .article-theme-page .article-banner {
      position: relative;
      overflow: hidden;
      padding: 52px 0 46px;
      color: #fff;
      background:
        radial-gradient(circle at 16% 12%, rgba(22, 217, 227, .25), transparent 29%),
        radial-gradient(circle at 86% 82%, rgba(116, 153, 255, .24), transparent 32%),
        linear-gradient(145deg, #072b68, #0B3D91 58%, #092e6e);
    }

    .article-theme-page .article-banner::after {
      content: "";
      position: absolute;
      right: -100px;
      bottom: -160px;
      width: 420px;
      height: 420px;
      border: 1px solid rgba(255, 255, 255, .15);
      border-radius: 50%;
      box-shadow:
        0 0 0 50px rgba(255, 255, 255, .035),
        0 0 0 100px rgba(255, 255, 255, .025);
    }

    .article-theme-page .breadcrumb {
      position: relative;
      z-index: 1;
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 7px;
      margin-bottom: 22px;
      color: #cbdcff;
      font-size: 13px;
    }

    .article-theme-page .breadcrumb a:hover {
      color: var(--cyan);
    }

    .article-theme-page .article-heading {
      position: relative;
      z-index: 1;
      max-width: 900px;
    }

    .article-theme-page .article-category {
      display: inline-flex;
      padding: 7px 13px;
      color: #052758;
      background: var(--cyan);
      border-radius: 999px;
      font-size: 12px;
      font-weight: 900;
    }

    .article-theme-page .article-heading h1 {
      margin: 17px 0 19px;
      color: #fff;
      font-size: clamp(32px, 5vw, 58px);
      line-height: 1.15;
      letter-spacing: -.045em;
    }

    .article-theme-page .article-meta {
      display: flex;
      flex-wrap: wrap;
      gap: 9px 20px;
      color: #d8e5ff;
      font-size: 14px;
    }

    .article-theme-page .article-meta span {
      display: inline-flex;
      align-items: center;
      gap: 7px;
    }

    .article-theme-page .article-meta span::before {
      width: 7px;
      height: 7px;
      content: "";
      background: var(--cyan);
      border-radius: 50%;
      box-shadow: 0 0 0 4px rgba(22, 217, 227, .12);
    }

    .article-theme-page .article-layout {
      min-width: 0;
      display: grid;
      grid-template-columns: minmax(0, 1fr) 300px;
      gap: 30px;
      align-items: start;
      padding-top: 38px;
      padding-bottom: 58px;
    }

    .article-theme-page .article-main-card {
      min-width: 0;
      padding: clamp(24px, 4vw, 52px);
      background: #fff;
      border: 1px solid var(--line);
      border-radius: var(--radius-lg);
      box-shadow: var(--shadow-sm);
    }

    .article-theme-page .article-summary {
      margin: 0 0 30px;
      padding: 20px 22px;
      color: #334155;
      background: linear-gradient(135deg, var(--theme-soft), var(--cyan-soft));
      border-left: 4px solid var(--cyan);
      border-radius: 4px 16px 16px 4px;
      font-size: 17px;
      font-weight: 650;
    }

    .article-theme-page .article-content {
      min-width: 0;
      max-width: 100%;
      overflow-x: auto;
      color: #26364a;
      font-size: 17px;
      line-height: 1.88;
    }

    .article-theme-page .article-content > :first-child {
      margin-top: 0;
    }

    .article-theme-page .article-content h2,
    .article-theme-page .article-content h3,
    .article-theme-page .article-content h4 {
      color: #132743;
      line-height: 1.35;
      scroll-margin-top: 24px;
    }

    .article-theme-page .article-content h2 {
      margin: 42px 0 17px;
      padding-left: 15px;
      border-left: 4px solid var(--theme);
      font-size: 28px;
    }

    .article-theme-page .article-content h3 {
      margin: 32px 0 14px;
      font-size: 22px;
    }

    .article-theme-page .article-content p {
      margin: 0 0 21px;
    }

    .article-theme-page .article-content a {
      color: var(--theme);
      text-decoration: underline;
      text-decoration-color: rgba(11, 61, 145, .35);
      text-underline-offset: 3px;
    }

    .article-theme-page .article-content img,
    .article-theme-page .article-content video,
    .article-theme-page .article-content iframe,
    .article-theme-page .article-content table {
      max-width: 100%;
    }

    .article-theme-page .article-content img {
      height: auto;
      margin: 28px auto;
      border-radius: 16px;
    }

    .article-theme-page .article-content iframe {
      width: 100%;
      border: 0;
    }

    .article-theme-page .article-content table {
      width: 100%;
      border-collapse: collapse;
    }

    .article-theme-page .article-content th,
    .article-theme-page .article-content td {
      padding: 12px;
      border: 1px solid var(--line);
      text-align: left;
    }

    .article-theme-page .article-content th {
      color: #fff;
      background: var(--theme);
    }

    .article-theme-page .article-content blockquote {
      margin: 28px 0;
      padding: 20px 24px;
      color: #233856;
      background: #f7f9fc;
      border: 1px solid var(--line);
      border-left: 5px solid var(--cyan);
      border-radius: 4px 14px 14px 4px;
    }

    .article-theme-page .article-tags {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 9px;
      margin-top: 35px;
      padding-top: 25px;
      border-top: 1px solid var(--line);
    }

    .article-theme-page .article-tags strong {
      margin-right: 4px;
      color: #1e293b;
    }

    .article-theme-page .article-tags a {
      display: inline-flex;
      padding: 7px 12px;
      color: var(--theme);
      background: var(--theme-soft);
      border: 1px solid #d5e0f3;
      border-radius: 999px;
      font-size: 13px;
      font-weight: 750;
    }

    .article-theme-page .article-tags a:hover {
      color: #052758;
      background: var(--cyan);
      border-color: var(--cyan);
    }

    .article-theme-page .article-notice {
      margin-top: 26px;
      padding: 16px 18px;
      color: #59687a;
      background: #f8fafc;
      border: 1px solid var(--line);
      border-radius: 12px;
      font-size: 13px;
    }

    .article-theme-page .article-navigation {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 14px;
      margin-top: 24px;
    }

    .article-theme-page .article-navigation a {
      min-width: 0;
      display: grid;
      gap: 5px;
      padding: 18px;
      background: #fff;
      border: 1px solid var(--line);
      border-radius: 15px;
      box-shadow: var(--shadow-sm);
      transition: transform .2s ease, border-color .2s ease;
    }

    .article-theme-page .article-navigation a:hover {
      border-color: var(--cyan);
      transform: translateY(-2px);
    }

    .article-theme-page .article-navigation small {
      color: var(--theme);
      font-weight: 850;
    }

    .article-theme-page .article-navigation strong {
      overflow: hidden;
      color: #25364b;
      white-space: nowrap;
      text-overflow: ellipsis;
    }

    .article-theme-page .article-sidebar {
      position: sticky;
      top: 24px;
      display: grid;
      gap: 18px;
    }

    .article-theme-page .sidebar-card {
      padding: 23px;
      background: #fff;
      border: 1px solid var(--line);
      border-radius: 20px;
      box-shadow: var(--shadow-sm);
    }

    .article-theme-page .sidebar-card h2 {
      margin: 0 0 13px;
      color: #172b49;
      font-size: 18px;
    }

    .article-theme-page .sidebar-card p {
      margin: 0 0 17px;
      color: var(--muted);
      font-size: 14px;
    }

    .article-theme-page .sidebar-links {
      display: grid;
      gap: 9px;
    }

    .article-theme-page .sidebar-links a {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 11px 12px;
      color: #334155;
      background: #f7f9fc;
      border-radius: 10px;
      font-size: 14px;
      font-weight: 750;
    }

    .article-theme-page .sidebar-links a::after {
      content: "›";
      color: var(--theme);
      font-size: 20px;
    }

    .article-theme-page .sidebar-links a:hover {
      color: var(--theme);
      background: var(--theme-soft);
    }

    .article-theme-page .sidebar-action {
      color: #fff;
      background: linear-gradient(145deg, var(--theme), var(--theme-dark));
      border-color: transparent;
    }

    .article-theme-page .sidebar-action h2,
    .article-theme-page .sidebar-action p {
      color: #fff;
    }

    .article-theme-page .sidebar-action p {
      color: #d9e6ff;
    }

    .article-theme-page .sidebar-action a {
      display: inline-flex;
      width: 100%;
      min-height: 44px;
      align-items: center;
      justify-content: center;
      color: #06214d;
      background: var(--cyan);
      border-radius: 999px;
      font-weight: 900;
    }

    .article-theme-page .related-section {
      padding: 4px 0 72px;
    }

    .article-theme-page .section-heading {
      display: flex;
      align-items: end;
      justify-content: space-between;
      gap: 20px;
      margin-bottom: 22px;
    }

    .article-theme-page .section-heading h2 {
      margin: 0;
      color: #152942;
      font-size: clamp(25px, 4vw, 36px);
      letter-spacing: -.035em;
    }

    .article-theme-page .section-heading p {
      margin: 0;
      color: var(--muted);
      font-size: 14px;
    }

    .article-theme-page .related-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 18px;
    }

    .article-theme-page .related-card {
      min-width: 0;
      overflow: hidden;
      background: #fff;
      border: 1px solid var(--line);
      border-radius: 18px;
      box-shadow: var(--shadow-sm);
      transition: transform .2s ease, box-shadow .2s ease;
    }

    .article-theme-page .related-card:hover {
      box-shadow: var(--shadow-lg);
      transform: translateY(-4px);
    }

    .article-theme-page .related-card > img {
      width: 100%;
      height: 175px;
      object-fit: cover;
      background: var(--theme-soft);
    }

    .article-theme-page .related-card-body {
      padding: 18px;
    }

    .article-theme-page .related-card-body > span {
      display: inline-flex;
      margin-bottom: 10px;
      color: var(--theme);
      font-size: 12px;
      font-weight: 850;
    }

    .article-theme-page .related-card h3 {
      display: -webkit-box;
      overflow: hidden;
      margin: 0 0 10px;
      color: #1b2d45;
      font-size: 18px;
      line-height: 1.45;
      -webkit-box-orient: vertical;
      -webkit-line-clamp: 2;
    }

    .article-theme-page .related-card p {
      display: -webkit-box;
      overflow: hidden;
      margin: 0 0 14px;
      color: var(--muted);
      font-size: 13px;
      -webkit-box-orient: vertical;
      -webkit-line-clamp: 2;
    }

    .article-theme-page .related-meta {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      gap: 6px;
      color: #7b8797;
      font-size: 11px;
    }

    .footer {
      color: #cbd8eb;
      background: #071a38;
    }

    .footer-main {
      display: grid;
      grid-template-columns: 1.45fr 1fr 1fr 1.15fr;
      gap: 38px;
      padding-top: 58px;
      padding-bottom: 46px;
    }

    .footer .logo {
      color: #fff;
    }

    .footer-brand p {
      max-width: 390px;
      margin: 18px 0;
      color: #9eb0c8;
      font-size: 14px;
    }

    .footer-social {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
    }

    .footer-social a {
      display: inline-flex;
      min-height: 34px;
      align-items: center;
      padding: 0 10px;
      color: #dce8f8;
      background: rgba(255, 255, 255, .07);
      border: 1px solid rgba(255, 255, 255, .1);
      border-radius: 8px;
      font-size: 12px;
    }

    .footer h2 {
      margin: 6px 0 17px;
      color: #fff;
      font-size: 16px;
    }

    .footer-links {
      display: grid;
      gap: 10px;
    }

    .footer-links a,
    .footer-contact a {
      color: #9eb0c8;
      font-size: 14px;
      transition: color .2s ease;
    }

    .footer-links a:hover,
    .footer-contact a:hover {
      color: var(--cyan);
    }

    .footer-contact address {
      display: grid;
      gap: 10px;
      color: #9eb0c8;
      font-size: 14px;
      font-style: normal;
    }

    .footer-bottom {
      min-height: 70px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
      color: #8396b0;
      border-top: 1px solid rgba(255, 255, 255, .1);
      font-size: 12px;
    }

    .footer-bottom-links {
      display: flex;
      gap: 17px;
    }

    .footer-bottom-links a:hover {
      color: var(--cyan);
    }

    @media (max-width: 1120px) {
      .main-nav {
        display: none;
      }

      .hamburger {
        display: flex;
      }

      .header-inner {
        gap: 16px;
      }

      .header-btns {
        margin-left: auto;
      }

      .article-theme-page .article-layout {
        grid-template-columns: minmax(0, 1fr) 270px;
      }
    }

    @media (max-width: 900px) {
      .article-theme-page .article-layout {
        grid-template-columns: 1fr;
      }

      .article-theme-page .article-sidebar {
        position: static;
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .article-theme-page .related-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

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

    @media (max-width: 680px) {
      .container {
        width: min(calc(100% - 28px), var(--container));
      }

      .topbar-inner {
        min-height: 52px;
        align-items: flex-start;
        flex-direction: column;
        justify-content: center;
        gap: 2px;
        padding-block: 7px;
      }

      .topbar-contact {
        flex-wrap: wrap;
        gap: 3px 13px;
      }

      .header-inner {
        min-height: 68px;
      }

      .header .logo span {
        max-width: 125px;
      }

      .header .logo img {
        width: 37px;
        height: 37px;
      }

      .member-entry,
      .open-account {
        display: none;
      }

      .article-theme-page .article-banner {
        padding: 36px 0 34px;
      }

      .article-theme-page .article-heading h1 {
        font-size: 34px;
      }

      .article-theme-page .article-layout {
        gap: 20px;
        padding-top: 22px;
        padding-bottom: 42px;
      }

      .article-theme-page .article-main-card {
        padding: 23px 18px;
        border-radius: 20px;
      }

      .article-theme-page .article-summary,
      .article-theme-page .article-content {
        font-size: 15px;
      }

      .article-theme-page .article-content h2 {
        font-size: 23px;
      }

      .article-theme-page .article-navigation,
      .article-theme-page .article-sidebar,
      .article-theme-page .related-grid {
        grid-template-columns: 1fr;
      }

      .article-theme-page .section-heading {
        align-items: flex-start;
        flex-direction: column;
        gap: 5px;
      }

      .article-theme-page .related-card {
        display: grid;
        grid-template-columns: 120px minmax(0, 1fr);
      }

      .article-theme-page .related-card > img {
        height: 100%;
        min-height: 160px;
      }

      .article-theme-page .related-card h3 {
        font-size: 16px;
      }

      .footer-main {
        grid-template-columns: 1fr;
        gap: 28px;
        padding-top: 42px;
      }

      .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
        justify-content: center;
        padding-block: 18px;
      }
    }

    @media (max-width: 430px) {
      .article-theme-page .related-card {
        display: block;
      }

      .article-theme-page .related-card > img {
        height: 185px;
      }

      .drawer-head {
        flex-wrap: wrap;
      }
    }