:root {
      --primary: #0B3D91;
      --primary-dark: #072b68;
      --primary-soft: #eaf1ff;
      --cyan: #11c5db;
      --cyan-soft: #e6fbff;
      --ink: #12213a;
      --muted: #627087;
      --line: #dce4ef;
      --surface: #ffffff;
      --surface-soft: #f4f7fb;
      --footer: #071a38;
      --shadow: 0 18px 48px rgba(11, 61, 145, 0.12);
      --radius: 20px;
      --container: 1220px;
    }

    * {
      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.6;
      word-break: keep-all;
    }

    body.drawer-lock {
      overflow: hidden;
    }

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

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

    button,
    input {
      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: 11px 16px;
      color: #fff;
      background: var(--primary);
      border-radius: 10px;
      transform: translateY(-160%);
      transition: transform 0.2s ease;
    }

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

    .topbar {
      color: #dce9ff;
      background: #061b3e;
      font-size: 0.82rem;
    }

    .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 0.2s ease;
    }

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

    .header {
      position: relative;
      z-index: 100;
      background: rgba(255, 255, 255, 0.98);
      border-bottom: 1px solid var(--line);
      box-shadow: 0 6px 20px rgba(17, 33, 58, 0.04);
    }

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

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

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

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

    .main-nav {
      align-self: stretch;
      display: flex;
      align-items: stretch;
      margin-left: auto;
    }

    .nav-list {
      height: 100%;
      display: flex;
      align-items: stretch;
      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 14px;
      color: #263750;
      font-size: 0.93rem;
      font-weight: 750;
      white-space: nowrap;
    }

    .nav-link::after {
      position: absolute;
      right: 14px;
      bottom: 17px;
      left: 14px;
      height: 3px;
      content: "";
      background: var(--cyan);
      border-radius: 20px;
      transform: scaleX(0);
      transition: transform 0.2s ease;
    }

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

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

    .has-panel::after {
      position: absolute;
      top: 100%;
      right: 0;
      left: 0;
      height: 14px;
      content: "";
    }

    .dropdown-panel,
    .mega-menu {
      position: absolute;
      top: 100%;
      z-index: 120;
      margin-top: 0;
      padding: 22px;
      visibility: hidden;
      background: #fff;
      border: 1px solid var(--line);
      border-radius: 0 0 18px 18px;
      box-shadow: 0 24px 55px rgba(6, 27, 62, 0.16);
      opacity: 0;
      transform: translateY(9px);
      pointer-events: none;
      transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
    }

    .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;
      transform: translateY(0);
      pointer-events: auto;
    }

    .dropdown-panel {
      left: 0;
      width: 330px;
    }

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

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

    .dropdown-article:hover,
    .dropdown-article:focus-visible {
      color: var(--primary);
    }

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

    .mega-menu {
      left: 50%;
      width: min(760px, calc(100vw - 40px));
      transform: translate(-50%, 9px);
    }

    .mega-wide {
      width: min(940px, calc(100vw - 40px));
    }

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

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

    .mega-sidebar {
      padding: 18px;
      color: #dfeaff;
      background: linear-gradient(145deg, var(--primary), var(--primary-dark));
      border-radius: 15px;
    }

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

    .mega-sidebar p {
      margin: 0 0 16px;
      font-size: 0.84rem;
    }

    .mega-sidebar a {
      display: inline-flex;
      padding: 8px 11px;
      color: #06234d;
      background: var(--cyan);
      border-radius: 9px;
      font-size: 0.82rem;
      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 11px;
      color: var(--primary);
      background: var(--primary-soft);
      border-radius: 999px;
      font-size: 0.8rem;
      font-weight: 800;
    }

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

    .mega-card {
      min-width: 0;
      display: flex;
      flex-direction: column;
      gap: 7px;
      padding: 13px;
      background: #f8faff;
      border: 1px solid #e8edf5;
      border-radius: 13px;
      transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
    }

    .mega-card:hover,
    .mega-card:focus-visible {
      border-color: #8ddfeb;
      box-shadow: 0 10px 25px rgba(11, 61, 145, 0.1);
      transform: translateY(-2px);
    }

    .mega-card img {
      width: 42px;
      height: 42px;
      object-fit: contain;
      background: #fff;
      border-radius: 9px;
    }

    .mega-card.video-card img,
    .mega-card.product-card img {
      width: 100%;
      height: 82px;
      object-fit: cover;
    }

    .mega-card strong {
      overflow: hidden;
      color: #162942;
      font-size: 0.84rem;
      text-overflow: ellipsis;
      white-space: nowrap;
    }

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

    .mega-meta {
      display: flex;
      flex-wrap: wrap;
      gap: 6px 10px;
      color: var(--primary);
      font-size: 0.7rem;
      font-weight: 750;
    }

    .header-btns {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .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: 10px;
      font-size: 0.85rem;
      font-weight: 850;
      white-space: nowrap;
    }

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

    .open-account {
      color: #062340;
      background: var(--cyan);
      box-shadow: 0 8px 18px rgba(17, 197, 219, 0.22);
    }

    .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: 11px;
      cursor: pointer;
    }

    .hamburger span {
      width: 20px;
      height: 2px;
      background: var(--ink);
      border-radius: 10px;
      transition: transform 0.2s ease, opacity 0.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: 800;
      visibility: hidden;
      background: rgba(3, 15, 35, 0.62);
      opacity: 0;
      backdrop-filter: blur(3px);
      transition: opacity 0.25s ease, visibility 0.25s ease;
    }

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

    .mobile-drawer {
      position: fixed;
      top: 0;
      right: 0;
      z-index: 900;
      width: min(390px, 92vw);
      height: 100dvh;
      overflow-y: auto;
      background: #fff;
      box-shadow: -20px 0 60px rgba(3, 15, 35, 0.24);
      transform: translateX(105%);
      transition: transform 0.28s ease;
    }

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

    .drawer-head {
      position: sticky;
      top: 0;
      z-index: 2;
      min-height: 76px;
      display: flex;
      align-items: center;
      gap: 9px;
      padding: 14px 18px;
      color: #fff;
      background: var(--primary);
    }

    .drawer-head > a,
    .drawer-head > div a {
      display: inline-flex;
      min-height: 38px;
      align-items: center;
      padding: 0 11px;
      color: #08274d;
      background: var(--cyan);
      border-radius: 9px;
      font-size: 0.8rem;
      font-weight: 850;
    }

    .drawer-close {
      width: 40px;
      height: 40px;
      margin-left: auto;
      padding: 0;
      color: #fff;
      background: rgba(255, 255, 255, 0.12);
      border: 1px solid rgba(255, 255, 255, 0.3);
      border-radius: 10px;
      font-size: 1.5rem;
      cursor: pointer;
    }

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

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

    .drawer-toggle {
      position: relative;
    }

    .drawer-toggle::after {
      position: absolute;
      right: 12px;
      content: "+";
      color: var(--primary);
      font-size: 1.25rem;
      font-weight: 500;
    }

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

    .drawer-submenu {
      max-height: 0;
      overflow: hidden;
      padding: 0 12px;
      background: #f5f8fd;
      border-radius: 0 0 10px 10px;
      transition: max-height 0.3s ease, padding 0.3s ease;
    }

    .drawer-submenu.open {
      max-height: 600px;
      padding: 8px 12px;
    }

    .drawer-submenu a {
      display: block;
      padding: 9px 8px;
      color: #53647b;
      font-size: 0.87rem;
      border-bottom: 1px dashed #dbe3ee;
    }

    .drawer-submenu a:last-child {
      border-bottom: 0;
    }

    .tag-index-page {
      min-height: 620px;
    }

    .tag-index-page .tag-hero {
      position: relative;
      overflow: hidden;
      padding: 88px 0 78px;
      color: #fff;
      background:
        radial-gradient(circle at 15% 20%, rgba(17, 197, 219, 0.25), transparent 27%),
        radial-gradient(circle at 85% 85%, rgba(116, 139, 255, 0.24), transparent 28%),
        linear-gradient(145deg, #071c45 0%, var(--primary) 55%, #125ba5 100%);
    }

    .tag-index-page .tag-hero::before,
    .tag-index-page .tag-hero::after {
      position: absolute;
      content: "";
      border: 1px solid rgba(255, 255, 255, 0.13);
      border-radius: 50%;
    }

    .tag-index-page .tag-hero::before {
      top: -180px;
      right: -100px;
      width: 430px;
      height: 430px;
    }

    .tag-index-page .tag-hero::after {
      bottom: -220px;
      left: -130px;
      width: 520px;
      height: 520px;
    }

    .tag-index-page .hero-inner {
      position: relative;
      z-index: 1;
      max-width: 840px;
      text-align: center;
    }

    .tag-index-page .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      margin-bottom: 18px;
      padding: 7px 13px;
      color: #bdf8ff;
      background: rgba(17, 197, 219, 0.13);
      border: 1px solid rgba(134, 241, 255, 0.3);
      border-radius: 999px;
      font-size: 0.82rem;
      font-weight: 850;
      letter-spacing: 0.05em;
    }

    .tag-index-page .eyebrow::before {
      width: 7px;
      height: 7px;
      content: "";
      background: var(--cyan);
      border-radius: 50%;
      box-shadow: 0 0 0 5px rgba(17, 197, 219, 0.14);
    }

    .tag-index-page .tag-hero h1 {
      margin: 0;
      font-size: clamp(2.25rem, 5vw, 4.3rem);
      line-height: 1.12;
      letter-spacing: -0.055em;
    }

    .tag-index-page .tag-hero p {
      max-width: 680px;
      margin: 20px auto 0;
      color: #d7e7ff;
      font-size: clamp(1rem, 2vw, 1.15rem);
    }

    .tag-index-page .hero-links {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 10px;
      margin-top: 28px;
    }

    .tag-index-page .hero-links a {
      display: inline-flex;
      min-height: 43px;
      align-items: center;
      padding: 0 16px;
      color: #fff;
      background: rgba(255, 255, 255, 0.1);
      border: 1px solid rgba(255, 255, 255, 0.24);
      border-radius: 999px;
      font-size: 0.87rem;
      font-weight: 800;
      backdrop-filter: blur(8px);
      transition: background 0.2s ease, transform 0.2s ease;
    }

    .tag-index-page .hero-links a:hover,
    .tag-index-page .hero-links a:focus-visible {
      color: #06284c;
      background: var(--cyan);
      transform: translateY(-2px);
    }

    .tag-index-page .tag-content {
      padding: 68px 0 88px;
    }

    .tag-index-page .section-heading {
      max-width: 730px;
      margin: 0 auto 32px;
      text-align: center;
    }

    .tag-index-page .section-heading span {
      color: var(--primary);
      font-size: 0.8rem;
      font-weight: 900;
      letter-spacing: 0.08em;
    }

    .tag-index-page .section-heading h2 {
      margin: 8px 0 10px;
      font-size: clamp(1.8rem, 4vw, 2.7rem);
      line-height: 1.2;
      letter-spacing: -0.045em;
    }

    .tag-index-page .section-heading p {
      margin: 0;
      color: var(--muted);
    }

    .tag-index-page .tag-cloud-panel {
      position: relative;
      overflow: hidden;
      padding: clamp(25px, 5vw, 52px);
      background: #fff;
      border: 1px solid var(--line);
      border-radius: 28px;
      box-shadow: var(--shadow);
    }

    .tag-index-page .tag-cloud-panel::before {
      position: absolute;
      top: -80px;
      right: -70px;
      width: 240px;
      height: 240px;
      content: "";
      background: radial-gradient(circle, rgba(17, 197, 219, 0.13), transparent 68%);
      border-radius: 50%;
      pointer-events: none;
    }

    .tag-index-page .tag-cloud {
      position: relative;
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: center;
      gap: 13px;
    }

    .tag-index-page .tag-chip {
      display: inline-flex;
      min-height: 50px;
      align-items: center;
      gap: 9px;
      padding: 0 19px;
      color: #203652;
      background: #f5f8fd;
      border: 1px solid #dce6f2;
      border-radius: 999px;
      font-size: 0.96rem;
      font-weight: 850;
      box-shadow: 0 7px 18px rgba(11, 61, 145, 0.05);
      transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
    }

    .tag-index-page .tag-chip::before {
      color: var(--cyan);
      content: "#";
      font-weight: 950;
    }

    .tag-index-page .tag-chip:nth-child(4n+1) {
      color: var(--primary);
      background: var(--primary-soft);
      border-color: #c8d8f5;
      font-size: 1.08rem;
    }

    .tag-index-page .tag-chip:nth-child(4n+2) {
      background: var(--cyan-soft);
      border-color: #bdeef5;
    }

    .tag-index-page .tag-chip:nth-child(5n) {
      min-height: 58px;
      padding-inline: 23px;
      font-size: 1.12rem;
    }

    .tag-index-page .tag-chip:hover,
    .tag-index-page .tag-chip:focus-visible {
      color: #fff;
      background: var(--primary);
      border-color: var(--primary);
      box-shadow: 0 12px 25px rgba(11, 61, 145, 0.2);
      transform: translateY(-4px);
    }

    .tag-index-page .tag-chip:hover::before,
    .tag-index-page .tag-chip:focus-visible::before {
      color: var(--cyan);
    }

    .tag-index-page .topic-guide {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 18px;
      margin-top: 28px;
    }

    .tag-index-page .guide-card {
      padding: 25px;
      background: #fff;
      border: 1px solid var(--line);
      border-radius: 18px;
    }

    .tag-index-page .guide-icon {
      width: 44px;
      height: 44px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      color: var(--primary);
      background: var(--cyan-soft);
      border-radius: 12px;
      font-size: 1.08rem;
      font-weight: 950;
    }

    .tag-index-page .guide-card h3 {
      margin: 16px 0 8px;
      font-size: 1.08rem;
    }

    .tag-index-page .guide-card p {
      margin: 0;
      color: var(--muted);
      font-size: 0.91rem;
    }

    .tag-index-page .tag-cta {
      margin-top: 28px;
      padding: 31px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
      color: #fff;
      background: linear-gradient(120deg, var(--primary-dark), var(--primary));
      border-radius: 22px;
    }

    .tag-index-page .tag-cta h2 {
      margin: 0 0 7px;
      font-size: clamp(1.35rem, 3vw, 1.9rem);
    }

    .tag-index-page .tag-cta p {
      margin: 0;
      color: #cfe0fb;
    }

    .tag-index-page .tag-cta a {
      flex: 0 0 auto;
      display: inline-flex;
      min-height: 48px;
      align-items: center;
      justify-content: center;
      padding: 0 19px;
      color: #062746;
      background: var(--cyan);
      border-radius: 12px;
      font-weight: 900;
    }

    .footer {
      color: #c9d7eb;
      background: var(--footer);
    }

    .footer-main {
      display: grid;
      grid-template-columns: 1.35fr 0.85fr 0.85fr 1fr;
      gap: 45px;
      padding-top: 64px;
      padding-bottom: 50px;
    }

    .footer .logo {
      color: #fff;
    }

    .footer-brand p {
      max-width: 360px;
      margin: 19px 0;
      color: #aebfd6;
      font-size: 0.9rem;
    }

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

    .footer-social a {
      display: inline-flex;
      min-height: 38px;
      align-items: center;
      padding: 0 12px;
      color: #fff;
      background: rgba(255, 255, 255, 0.08);
      border: 1px solid rgba(255, 255, 255, 0.12);
      border-radius: 9px;
      font-size: 0.82rem;
    }

    .footer h2 {
      margin: 5px 0 18px;
      color: #fff;
      font-size: 1rem;
    }

    .footer-links {
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .footer-links a,
    .footer-contact a {
      color: #b7c8df;
      font-size: 0.88rem;
      transition: color 0.2s ease, transform 0.2s ease;
    }

    .footer-links a:hover,
    .footer-links a:focus-visible,
    .footer-contact a:hover,
    .footer-contact a:focus-visible {
      color: var(--cyan);
      transform: translateX(2px);
    }

    .footer-contact address {
      display: flex;
      flex-direction: column;
      gap: 10px;
      color: #9fb1ca;
      font-size: 0.86rem;
      font-style: normal;
    }

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

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

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

    :focus-visible {
      outline: 3px solid rgba(17, 197, 219, 0.6);
      outline-offset: 3px;
    }

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

      .hamburger {
        display: flex;
      }

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

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

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

      .topbar-inner {
        min-height: 44px;
      }

      .topbar-welcome {
        display: none;
      }

      .topbar-contact {
        width: 100%;
        justify-content: space-between;
        gap: 10px;
      }

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

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

      .header .logo span {
        max-width: 130px;
        font-size: 0.96rem;
      }

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

      .tag-index-page .tag-hero {
        padding: 64px 0 58px;
      }

      .tag-index-page .tag-hero h1 {
        font-size: clamp(2rem, 11vw, 3.1rem);
      }

      .tag-index-page .tag-content {
        padding: 50px 0 66px;
      }

      .tag-index-page .tag-cloud-panel {
        border-radius: 20px;
      }

      .tag-index-page .tag-cloud {
        gap: 9px;
      }

      .tag-index-page .tag-chip,
      .tag-index-page .tag-chip:nth-child(4n+1),
      .tag-index-page .tag-chip:nth-child(5n) {
        min-height: 44px;
        padding: 0 14px;
        font-size: 0.89rem;
      }

      .tag-index-page .topic-guide {
        grid-template-columns: 1fr;
      }

      .tag-index-page .tag-cta {
        align-items: flex-start;
        flex-direction: column;
        padding: 25px;
      }

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

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

    @media (max-width: 420px) {
      .topbar-contact {
        align-items: flex-start;
        flex-direction: column;
        gap: 2px;
        padding: 6px 0;
      }

      .logo span {
        max-width: 110px;
      }

      .tag-index-page .hero-links {
        align-items: stretch;
        flex-direction: column;
      }

      .tag-index-page .hero-links a {
        justify-content: center;
      }
    }