:root {
      --primary: #0B3D91;
      --template-theme: {主题色};
      --primary-dark: #072b68;
      --primary-soft: #eaf1ff;
      --cyan: #19c8e5;
      --cyan-soft: #e9fbff;
      --ink: #10213d;
      --muted: #64748b;
      --line: #dce4ef;
      --surface: #ffffff;
      --surface-soft: #f4f7fb;
      --success: #138a5b;
      --warning: #c77908;
      --shadow: 0 18px 50px rgba(20, 46, 85, 0.1);
      --radius: 20px;
      --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", Arial, sans-serif;
      line-height: 1.65;
    }

    body.drawer-lock {
      overflow: hidden;
    }

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

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

    button,
    input,
    select {
      font: inherit;
    }

    button,
    select {
      cursor: pointer;
    }

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

    .skip-link {
      position: fixed;
      top: 12px;
      left: 12px;
      z-index: 5000;
      padding: 10px 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: #dce8ff;
      background: #071d42;
      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 0.2s ease;
    }

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

    .header {
      position: relative;
      z-index: 1000;
      background: rgba(255, 255, 255, 0.98);
      border-bottom: 1px solid var(--line);
      box-shadow: 0 4px 20px rgba(20, 46, 85, 0.04);
    }

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

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

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

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

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

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

    .nav-link {
      height: 100%;
      padding: 0 14px;
      display: flex;
      align-items: center;
      color: #263752;
      font-size: 15px;
      font-weight: 750;
      white-space: nowrap;
      transition: color 0.2s ease;
    }

    .nav-item.has-panel > .nav-link::after {
      width: 6px;
      height: 6px;
      margin-left: 7px;
      border-right: 2px solid currentColor;
      border-bottom: 2px solid currentColor;
      content: "";
      transform: rotate(45deg) translateY(-2px);
    }

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

    .nav-item.has-panel::after {
      position: absolute;
      top: 80%;
      right: 0;
      bottom: -16px;
      left: 0;
      content: "";
    }

    .dropdown-panel,
    .mega-menu {
      position: absolute;
      top: 100%;
      z-index: 1200;
      padding: 22px;
      visibility: hidden;
      opacity: 0;
      background: #fff;
      border: 1px solid var(--line);
      border-radius: 0 0 20px 20px;
      box-shadow: var(--shadow);
      transform: translateY(10px);
      transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s 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);
    }

    .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: #33445f;
      border-bottom: 1px solid #edf1f6;
      font-size: 14px;
    }

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

    .panel-more {
      display: inline-flex;
      margin-top: 14px;
      color: var(--primary);
      font-weight: 800;
    }

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

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

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

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

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

    .mega-sidebar .mega-title {
      color: #fff;
      font-size: 18px;
    }

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

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

    .mega-categories {
      margin-bottom: 18px;
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
    }

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

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

    .mega-card {
      min-width: 0;
      padding: 14px;
      display: grid;
      align-content: start;
      gap: 8px;
      background: #f8faff;
      border: 1px solid #e3eaf4;
      border-radius: 14px;
      transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
    }

    .mega-card:hover {
      border-color: #9db8e6;
      box-shadow: 0 10px 24px rgba(11, 61, 145, 0.1);
      transform: translateY(-2px);
    }

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

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

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

    .mega-card small {
      overflow: hidden;
      color: var(--muted);
      font-size: 11px;
      line-height: 1.5;
    }

    .mega-meta {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      color: var(--primary);
      font-size: 11px;
      font-weight: 750;
    }

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

    .member-entry {
      color: var(--primary);
      font-size: 14px;
      font-weight: 800;
    }

    .open-account {
      padding: 11px 16px;
      color: #fff;
      background: var(--primary);
      border-radius: 999px;
      font-size: 14px;
      font-weight: 850;
      box-shadow: 0 8px 20px rgba(11, 61, 145, 0.18);
    }

    .open-account:hover {
      background: var(--primary-dark);
    }

    .hamburger {
      width: 44px;
      height: 44px;
      padding: 10px;
      display: none;
      background: #fff;
      border: 1px solid var(--line);
      border-radius: 12px;
    }

    .hamburger span {
      width: 100%;
      height: 2px;
      margin: 5px 0;
      display: block;
      background: var(--ink);
      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: 1990;
      visibility: hidden;
      opacity: 0;
      background: rgba(4, 15, 33, 0.58);
      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: 2000;
      width: min(90vw, 390px);
      height: 100dvh;
      overflow-y: auto;
      background: #fff;
      box-shadow: -20px 0 60px rgba(3, 15, 36, 0.25);
      transform: translateX(105%);
      transition: transform 0.28s ease;
    }

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

    .drawer-head {
      min-height: 76px;
      padding: 16px 18px;
      display: flex;
      align-items: center;
      gap: 12px;
      color: #fff;
      background: var(--primary);
    }

    .drawer-head > a {
      padding: 8px 12px;
      background: var(--cyan);
      color: var(--primary-dark);
      border-radius: 999px;
      font-size: 13px;
      font-weight: 900;
    }

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

    .drawer-menu {
      padding: 16px;
    }

    .drawer-link,
    .drawer-toggle {
      width: 100%;
      padding: 15px 12px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      color: #1b2c46;
      background: transparent;
      border: 0;
      border-bottom: 1px solid #e9eef5;
      text-align: left;
      font-weight: 800;
    }

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

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

    .drawer-submenu {
      max-height: 0;
      overflow: hidden;
      background: #f6f9fd;
      transition: max-height 0.3s ease;
    }

    .drawer-submenu.open {
      max-height: 620px;
    }

    .drawer-submenu a {
      padding: 11px 18px;
      display: block;
      color: #4a5b73;
      border-bottom: 1px solid #e8edf4;
      font-size: 14px;
    }

    .brokerlist-page {
      min-height: 700px;
    }

    .brokerlist-page .broker-hero {
      position: relative;
      overflow: hidden;
      padding: 82px 0 72px;
      color: #fff;
      background:
        radial-gradient(circle at 15% 10%, rgba(25, 200, 229, 0.3), transparent 30%),
        radial-gradient(circle at 90% 80%, rgba(100, 145, 255, 0.25), transparent 34%),
        linear-gradient(135deg, #071d42, var(--primary));
    }

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

    .brokerlist-page .broker-hero::before {
      width: 350px;
      height: 350px;
      top: -220px;
      right: 8%;
    }

    .brokerlist-page .broker-hero::after {
      width: 240px;
      height: 240px;
      bottom: -170px;
      left: 12%;
    }

    .brokerlist-page .broker-hero-inner {
      position: relative;
      z-index: 1;
      max-width: 820px;
      margin: 0 auto;
      text-align: center;
    }

    .brokerlist-page .eyebrow {
      margin: 0 0 16px;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      color: #8eeeff;
      font-size: 14px;
      font-weight: 900;
      letter-spacing: 0.08em;
    }

    .brokerlist-page .eyebrow::before {
      width: 28px;
      height: 3px;
      background: var(--cyan);
      border-radius: 99px;
      content: "";
    }

    .brokerlist-page .broker-hero h1 {
      margin: 0;
      font-size: clamp(36px, 6vw, 64px);
      line-height: 1.15;
      letter-spacing: -0.05em;
    }

    .brokerlist-page .broker-hero p {
      max-width: 680px;
      margin: 22px auto 0;
      color: #dbe8ff;
      font-size: 18px;
    }

    .brokerlist-page .hero-points {
      margin-top: 30px;
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 10px;
    }

    .brokerlist-page .hero-points span {
      padding: 8px 14px;
      color: #e6fbff;
      background: rgba(255, 255, 255, 0.09);
      border: 1px solid rgba(255, 255, 255, 0.18);
      border-radius: 999px;
      font-size: 13px;
      font-weight: 750;
      backdrop-filter: blur(8px);
    }

    .brokerlist-page .comparison-section {
      padding: 64px 0 88px;
    }

    .brokerlist-page .comparison-intro {
      margin-bottom: 28px;
      display: grid;
      grid-template-columns: minmax(0, 1fr) auto;
      align-items: end;
      gap: 24px;
    }

    .brokerlist-page .comparison-intro h2 {
      margin: 0 0 8px;
      color: var(--ink);
      font-size: clamp(27px, 4vw, 40px);
      line-height: 1.2;
      letter-spacing: -0.04em;
    }

    .brokerlist-page .comparison-intro p {
      max-width: 680px;
      margin: 0;
      color: var(--muted);
    }

    .brokerlist-page .result-note {
      padding: 9px 14px;
      color: var(--primary);
      background: var(--primary-soft);
      border: 1px solid #cbdafb;
      border-radius: 999px;
      font-size: 13px;
      font-weight: 850;
      white-space: nowrap;
    }

    .brokerlist-page .filter-panel {
      margin-bottom: 28px;
      padding: 18px;
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 12px;
      background: #fff;
      border: 1px solid var(--line);
      border-radius: 18px;
      box-shadow: 0 10px 30px rgba(20, 46, 85, 0.06);
    }

    .brokerlist-page .filter-label {
      margin-right: 4px;
      color: #34445d;
      font-size: 14px;
      font-weight: 900;
    }

    .brokerlist-page .filter-chip {
      padding: 9px 14px;
      color: #4b5c74;
      background: #f6f8fb;
      border: 1px solid #e0e7f0;
      border-radius: 999px;
      font-size: 13px;
      font-weight: 750;
    }

    .brokerlist-page .filter-chip.active,
    .brokerlist-page .filter-chip:hover {
      color: #fff;
      background: var(--primary);
      border-color: var(--primary);
    }

    .brokerlist-page .broker-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 22px;
    }

    .brokerlist-page .broker-card {
      min-width: 0;
      padding: 24px;
      display: flex;
      flex-direction: column;
      background: #fff;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      box-shadow: 0 10px 32px rgba(20, 46, 85, 0.06);
      transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
    }

    .brokerlist-page .broker-card:hover {
      border-color: #9bb7e5;
      box-shadow: var(--shadow);
      transform: translateY(-5px);
    }

    .brokerlist-page .broker-card-head {
      display: grid;
      grid-template-columns: 76px minmax(0, 1fr) auto;
      align-items: center;
      gap: 16px;
    }

    .brokerlist-page .broker-logo {
      width: 76px;
      height: 76px;
      padding: 9px;
      object-fit: contain;
      background: #f7f9fc;
      border: 1px solid #e4eaf2;
      border-radius: 16px;
    }

    .brokerlist-page .broker-title {
      min-width: 0;
    }

    .brokerlist-page .broker-title h2 {
      margin: 0 0 4px;
      overflow: hidden;
      color: #152640;
      font-size: 21px;
      line-height: 1.3;
      text-overflow: ellipsis;
      white-space: nowrap;
    }

    .brokerlist-page .broker-regulation {
      color: var(--muted);
      font-size: 13px;
    }

    .brokerlist-page .broker-rating {
      min-width: 68px;
      padding: 9px 10px;
      color: #7b4b00;
      background: #fff5d9;
      border: 1px solid #f2d58b;
      border-radius: 12px;
      text-align: center;
    }

    .brokerlist-page .broker-rating strong {
      display: block;
      font-size: 18px;
      line-height: 1.1;
    }

    .brokerlist-page .broker-rating span {
      font-size: 11px;
      font-weight: 750;
    }

    .brokerlist-page .broker-summary {
      min-height: 78px;
      margin: 20px 0;
      color: #5b6b80;
      font-size: 14px;
    }

    .brokerlist-page .broker-stats {
      margin: 0 0 22px;
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      background: #f6f9fd;
      border: 1px solid #e4eaf2;
      border-radius: 15px;
    }

    .brokerlist-page .broker-stat {
      min-width: 0;
      padding: 14px 10px;
      text-align: center;
    }

    .brokerlist-page .broker-stat + .broker-stat {
      border-left: 1px solid #e0e7f0;
    }

    .brokerlist-page .broker-stat dt {
      margin-bottom: 4px;
      color: var(--muted);
      font-size: 11px;
    }

    .brokerlist-page .broker-stat dd {
      margin: 0;
      overflow: hidden;
      color: var(--ink);
      font-size: 14px;
      font-weight: 900;
      text-overflow: ellipsis;
      white-space: nowrap;
    }

    .brokerlist-page .broker-actions {
      margin-top: auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 10px;
    }

    .brokerlist-page .broker-actions a {
      min-height: 46px;
      padding: 11px 14px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border-radius: 12px;
      font-size: 14px;
      font-weight: 900;
      text-align: center;
    }

    .brokerlist-page .detail-button {
      color: var(--primary);
      background: var(--primary-soft);
      border: 1px solid #bdcff2;
    }

    .brokerlist-page .account-button {
      color: #fff;
      background: var(--primary);
      border: 1px solid var(--primary);
    }

    .brokerlist-page .detail-button:hover {
      background: #dce8ff;
    }

    .brokerlist-page .account-button:hover {
      background: var(--primary-dark);
    }

    .brokerlist-page .pagination {
      margin-top: 40px;
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 8px;
    }

    .brokerlist-page .pagination a {
      min-width: 42px;
      min-height: 42px;
      padding: 8px 12px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      color: #3d4f69;
      background: #fff;
      border: 1px solid var(--line);
      border-radius: 11px;
      font-size: 14px;
      font-weight: 800;
    }

    .brokerlist-page .pagination a:hover,
    .brokerlist-page .pagination .active,
    .brokerlist-page .pagination .current {
      color: #fff;
      background: var(--primary);
      border-color: var(--primary);
    }

    .brokerlist-page .guide-section {
      padding: 0 0 88px;
    }

    .brokerlist-page .guide-box {
      padding: 36px;
      background: linear-gradient(145deg, #ffffff, #edf4ff);
      border: 1px solid #d8e3f3;
      border-radius: 24px;
    }

    .brokerlist-page .guide-box h2 {
      margin: 0 0 10px;
      font-size: 28px;
      letter-spacing: -0.035em;
    }

    .brokerlist-page .guide-box > p {
      margin: 0;
      color: var(--muted);
    }

    .brokerlist-page .guide-grid {
      margin-top: 26px;
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 16px;
    }

    .brokerlist-page .guide-card {
      padding: 20px;
      background: rgba(255, 255, 255, 0.78);
      border: 1px solid #dbe5f2;
      border-radius: 16px;
    }

    .brokerlist-page .guide-number {
      width: 35px;
      height: 35px;
      margin-bottom: 14px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      color: var(--primary-dark);
      background: var(--cyan);
      border-radius: 50%;
      font-weight: 950;
    }

    .brokerlist-page .guide-card h3 {
      margin: 0 0 8px;
      font-size: 17px;
    }

    .brokerlist-page .guide-card p {
      margin: 0;
      color: var(--muted);
      font-size: 14px;
    }

    .brokerlist-page .risk-note {
      margin-top: 20px;
      padding: 15px 17px;
      color: #62511c;
      background: #fff9e8;
      border: 1px solid #ead89a;
      border-radius: 13px;
      font-size: 13px;
    }

    .footer {
      color: #c8d6eb;
      background: #07172f;
    }

    .footer-main {
      padding: 64px 0 46px;
      display: grid;
      grid-template-columns: 1.4fr 1fr 1fr 1.05fr;
      gap: 42px;
    }

    .footer .logo {
      color: #fff;
    }

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

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

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

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

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

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

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

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

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

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

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

      .hamburger {
        display: block;
      }

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

      .brokerlist-page .broker-grid {
        grid-template-columns: 1fr;
      }
    }

    @media (max-width: 860px) {
      .footer-main {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .brokerlist-page .guide-grid {
        grid-template-columns: 1fr;
      }
    }

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

      .topbar-inner {
        padding: 9px 0;
        align-items: flex-start;
        flex-direction: column;
        gap: 3px;
      }

      .topbar-contact {
        flex-wrap: wrap;
        gap: 4px 14px;
      }

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

      .logo {
        min-width: 0;
      }

      .logo img {
        width: 36px;
        height: 36px;
      }

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

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

      .brokerlist-page .broker-hero {
        padding: 58px 0 52px;
      }

      .brokerlist-page .broker-hero p {
        font-size: 15px;
      }

      .brokerlist-page .comparison-section {
        padding: 46px 0 64px;
      }

      .brokerlist-page .comparison-intro {
        grid-template-columns: 1fr;
        align-items: start;
        gap: 14px;
      }

      .brokerlist-page .result-note {
        justify-self: start;
      }

      .brokerlist-page .filter-panel {
        padding: 14px;
      }

      .brokerlist-page .filter-label {
        width: 100%;
      }

      .brokerlist-page .broker-card {
        padding: 18px;
      }

      .brokerlist-page .broker-card-head {
        grid-template-columns: 62px minmax(0, 1fr);
      }

      .brokerlist-page .broker-logo {
        width: 62px;
        height: 62px;
      }

      .brokerlist-page .broker-rating {
        grid-column: 1 / -1;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 5px;
      }

      .brokerlist-page .broker-rating strong {
        display: inline;
      }

      .brokerlist-page .broker-stats {
        grid-template-columns: 1fr;
      }

      .brokerlist-page .broker-stat + .broker-stat {
        border-top: 1px solid #e0e7f0;
        border-left: 0;
      }

      .brokerlist-page .broker-actions {
        grid-template-columns: 1fr;
      }

      .brokerlist-page .guide-box {
        padding: 24px 18px;
      }

      .footer-main {
        padding: 50px 0 36px;
        grid-template-columns: 1fr;
        gap: 30px;
      }

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

    @media (prefers-reduced-motion: reduce) {
      html {
        scroll-behavior: auto;
      }

      *,
      *::before,
      *::after {
        transition-duration: 0.01ms !important;
      }
    }