/* roulang page: index */
:root {
      --bg: #080709;
      --bg-soft: #101014;
      --panel: #151018;
      --panel-2: #1b1218;
      --gold: #d9a441;
      --gold-soft: #f0c978;
      --wine: #8b1e3f;
      --purple: #3d215f;
      --green: #0f3b34;
      --text: #f7ecd2;
      --muted: #b9aa8e;
      --dim: #786d5e;
      --border: rgba(217, 164, 65, .28);
      --border-strong: rgba(240, 201, 120, .58);
      --shadow: 0 22px 60px rgba(0, 0, 0, .46);
      --glow: 0 0 26px rgba(217, 164, 65, .16);
      --radius: 8px;
      --nav-h: 66px;
      --font: -apple-system, BlinkMacSystemFont, "PingFang SC", "Microsoft YaHei", "Noto Sans SC", Arial, sans-serif;
    }

    * { box-sizing: border-box; }

    html { scroll-behavior: smooth; }

    body {
      margin: 0;
      font-family: var(--font);
      color: var(--text);
      background:
        radial-gradient(circle at 12% 0%, rgba(139, 30, 63, .16), transparent 34%),
        radial-gradient(circle at 88% 14%, rgba(15, 59, 52, .18), transparent 28%),
        linear-gradient(135deg, rgba(240, 201, 120, .035) 0 1px, transparent 1px 12px),
        var(--bg);
      line-height: 1.75;
      letter-spacing: 0;
      overflow-x: hidden;
    }

    a { color: inherit; text-decoration: none; transition: color .2s ease, border-color .2s ease, background .2s ease, transform .2s ease; }
    img { max-width: 100%; display: block; }
    button, input { font-family: inherit; }
    ::selection { background: rgba(217, 164, 65, .32); color: #fff7df; }

    .site-shell {
      min-height: 100vh;
      position: relative;
    }

    .site-shell::before {
      content: "";
      position: fixed;
      inset: 0;
      pointer-events: none;
      opacity: .22;
      background-image:
        linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.02) 1px, transparent 1px);
      background-size: 36px 36px;
      mask-image: linear-gradient(to bottom, #000, transparent 84%);
      z-index: -1;
    }

    .container-xl { max-width: 1220px; }

    .site-header {
      position: sticky;
      top: 0;
      z-index: 1000;
      min-height: var(--nav-h);
      background: rgba(8, 7, 9, .88);
      backdrop-filter: blur(18px);
      border-bottom: 1px solid rgba(217, 164, 65, .22);
      box-shadow: 0 14px 34px rgba(0, 0, 0, .28);
    }

    .navbar {
      min-height: var(--nav-h);
      padding: 0;
    }

    .navbar-brand {
      display: flex;
      align-items: center;
      gap: 10px;
      color: var(--text);
      font-weight: 800;
      font-size: 18px;
      max-width: 360px;
      white-space: normal;
      line-height: 1.25;
    }

    .brand-mark {
      width: 36px;
      height: 36px;
      border: 1px solid var(--border-strong);
      border-radius: 8px;
      display: grid;
      place-items: center;
      background: linear-gradient(145deg, rgba(217, 164, 65, .22), rgba(139, 30, 63, .16));
      color: var(--gold-soft);
      box-shadow: var(--glow);
      flex: 0 0 auto;
    }

    .navbar-toggler {
      border: 1px solid var(--border);
      color: var(--gold-soft);
      border-radius: 6px;
      padding: 8px 10px;
    }

    .navbar-toggler:focus {
      box-shadow: 0 0 0 3px rgba(240, 201, 120, .24);
    }

    .navbar-nav {
      gap: 6px;
      align-items: center;
    }

    .nav-link {
      color: var(--muted);
      font-size: 14px;
      font-weight: 600;
      padding: 9px 12px !important;
      border-radius: 6px;
      position: relative;
    }

    .nav-link:hover,
    .nav-link.active {
      color: var(--gold-soft);
      background: rgba(217, 164, 65, .08);
    }

    .nav-link.active::after {
      content: "";
      position: absolute;
      left: 12px;
      right: 12px;
      bottom: 4px;
      height: 2px;
      background: linear-gradient(90deg, var(--gold), transparent);
    }

    .nav-tools {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-left: 14px;
    }

    .search-mini {
      display: flex;
      align-items: center;
      gap: 8px;
      min-width: 210px;
      height: 40px;
      padding: 0 12px;
      border: 1px solid rgba(217, 164, 65, .22);
      border-radius: 6px;
      background: rgba(21, 16, 24, .86);
      color: var(--muted);
    }

    .search-mini input {
      width: 100%;
      border: 0;
      outline: 0;
      background: transparent;
      color: var(--text);
      font-size: 14px;
    }

    .search-mini input::placeholder { color: rgba(185, 170, 142, .72); }

    .search-mini:focus-within {
      border-color: var(--gold-soft);
      box-shadow: 0 0 0 3px rgba(240, 201, 120, .14);
    }

    .btn-club {
      min-height: 42px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      padding: 10px 18px;
      border-radius: 6px;
      border: 1px solid rgba(240, 201, 120, .55);
      background: linear-gradient(135deg, var(--gold-soft), var(--gold));
      color: #151008;
      font-weight: 700;
      font-size: 14px;
      box-shadow: 0 12px 28px rgba(217, 164, 65, .18);
      transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
      white-space: nowrap;
    }

    .btn-club:hover {
      transform: translateY(-2px);
      color: #090704;
      box-shadow: 0 18px 36px rgba(240, 201, 120, .24);
      background: linear-gradient(135deg, #ffe1a0, var(--gold));
    }

    .btn-ghost {
      min-height: 42px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      padding: 10px 17px;
      border-radius: 6px;
      border: 1px solid var(--border);
      background: rgba(8, 7, 9, .5);
      color: var(--gold-soft);
      font-weight: 700;
      font-size: 14px;
      transition: transform .2s ease, border-color .2s ease, background .2s ease;
    }

    .btn-ghost:hover {
      transform: translateY(-2px);
      border-color: var(--border-strong);
      background: rgba(217, 164, 65, .08);
      color: var(--gold-soft);
    }

    .hero {
      position: relative;
      min-height: calc(100vh - var(--nav-h));
      padding: 86px 0 46px;
      overflow: hidden;
      border-bottom: 1px solid rgba(217, 164, 65, .2);
    }

    .hero-video-stage {
      position: absolute;
      inset: 0;
      background:
        linear-gradient(90deg, rgba(8, 7, 9, .94) 0%, rgba(8, 7, 9, .7) 45%, rgba(8, 7, 9, .38) 100%),
        linear-gradient(135deg, rgba(139, 30, 63, .42), rgba(61, 33, 95, .34) 42%, rgba(15, 59, 52, .38)),
        repeating-linear-gradient(120deg, rgba(240, 201, 120, .09) 0 1px, transparent 1px 26px);
    }

    .hero-video-stage::before,
    .hero-video-stage::after {
      content: "";
      position: absolute;
      inset: 10% 5%;
      border: 1px solid rgba(240, 201, 120, .16);
      transform: skewX(-8deg);
    }

    .hero-video-stage::after {
      inset: 18% 62% 14% 8%;
      background: linear-gradient(180deg, rgba(217, 164, 65, .12), rgba(139, 30, 63, .08));
      box-shadow: var(--shadow);
    }

    .hero-content {
      position: relative;
      z-index: 2;
    }

    .hero-kicker,
    .section-kicker {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      min-height: 30px;
      padding: 4px 10px;
      border-radius: 999px;
      border: 1px solid rgba(240, 201, 120, .35);
      background: rgba(21, 16, 24, .72);
      color: var(--gold-soft);
      font-size: 13px;
      font-weight: 700;
    }

    h1 {
      max-width: 760px;
      margin: 22px 0 18px;
      font-size: clamp(32px, 5vw, 56px);
      line-height: 1.16;
      font-weight: 800;
      color: #fff7df;
    }

    .hero-lead {
      max-width: 720px;
      color: #d8ccb3;
      font-size: 17px;
      line-height: 1.85;
      margin-bottom: 24px;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      align-items: center;
      margin-bottom: 28px;
    }

    .hero-play {
      width: 74px;
      height: 74px;
      display: inline-grid;
      place-items: center;
      border-radius: 999px;
      border: 1px solid rgba(240, 201, 120, .6);
      background: rgba(8, 7, 9, .56);
      color: var(--gold-soft);
      box-shadow: 0 0 0 12px rgba(217, 164, 65, .08), var(--glow);
      transition: transform .2s ease, background .2s ease;
    }

    .hero-play:hover {
      transform: scale(1.05);
      background: rgba(217, 164, 65, .14);
    }

    .hero-meta {
      display: grid;
      grid-template-columns: repeat(3, minmax(130px, 1fr));
      gap: 12px;
      max-width: 650px;
    }

    .metric {
      min-height: 92px;
      padding: 14px;
      border: 1px solid var(--border);
      border-radius: var(--radius);
      background: rgba(16, 16, 20, .78);
    }

    .metric strong {
      display: block;
      color: var(--gold-soft);
      font-size: 24px;
      line-height: 1.2;
    }

    .metric span {
      color: var(--muted);
      font-size: 13px;
    }

    .hero-matrix {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 14px;
      margin-top: 14px;
    }

    .matrix-card {
      min-height: 132px;
      padding: 16px;
      border-radius: var(--radius);
      border: 1px solid var(--border);
      background:
        linear-gradient(145deg, rgba(21, 16, 24, .95), rgba(8, 7, 9, .8)),
        linear-gradient(90deg, rgba(217, 164, 65, .12), transparent);
      box-shadow: var(--shadow);
      position: relative;
      overflow: hidden;
    }

    .matrix-card::before {
      content: "";
      position: absolute;
      top: 0;
      left: 16px;
      width: 42px;
      height: 2px;
      background: var(--gold-soft);
    }

    .matrix-card b {
      display: block;
      color: #fff4d4;
      margin-bottom: 8px;
      font-size: 16px;
    }

    .matrix-card p {
      margin: 0;
      color: var(--muted);
      font-size: 13px;
      line-height: 1.65;
    }

    .club-badge {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 5px 9px;
      border-radius: 999px;
      border: 1px solid rgba(240, 201, 120, .34);
      background: rgba(217, 164, 65, .08);
      color: var(--gold-soft);
      font-size: 12px;
      font-weight: 700;
      margin-bottom: 10px;
    }

    .section {
      padding: 84px 0;
      position: relative;
    }

    .section.tight { padding: 64px 0; }

    .section-head {
      display: flex;
      align-items: end;
      justify-content: space-between;
      gap: 28px;
      margin-bottom: 30px;
    }

    .section-title {
      max-width: 760px;
    }

    .section-title h2 {
      font-size: clamp(25px, 3.4vw, 36px);
      line-height: 1.25;
      font-weight: 800;
      margin: 12px 0 10px;
      color: #fff4d8;
    }

    .section-title p {
      margin: 0;
      color: var(--muted);
      font-size: 16px;
      max-width: 760px;
    }

    .pain-panel {
      border: 1px solid var(--border);
      border-radius: var(--radius);
      background: linear-gradient(135deg, rgba(21, 16, 24, .96), rgba(16, 16, 20, .88));
      box-shadow: var(--shadow);
      overflow: hidden;
    }

    .pain-row {
      display: grid;
      grid-template-columns: 1.1fr 1.4fr;
      border-bottom: 1px solid rgba(217, 164, 65, .16);
    }

    .pain-row:last-child { border-bottom: 0; }

    .pain-label {
      padding: 20px;
      background: rgba(139, 30, 63, .12);
      color: var(--gold-soft);
      font-weight: 800;
    }

    .pain-copy {
      padding: 20px;
      color: #d9cdb5;
    }

    .step-track {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 14px;
      position: relative;
    }

    .step-card,
    .directory-card,
    .entry-card,
    .quote-card,
    .preview-card {
      border: 1px solid var(--border);
      border-radius: var(--radius);
      background: linear-gradient(145deg, rgba(21, 16, 24, .94), rgba(10, 9, 11, .94));
      box-shadow: 0 18px 44px rgba(0, 0, 0, .26);
      transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
    }

    .step-card:hover,
    .directory-card:hover,
    .entry-card:hover,
    .quote-card:hover,
    .preview-card:hover {
      transform: translateY(-3px);
      border-color: var(--border-strong);
      box-shadow: 0 22px 54px rgba(0, 0, 0, .34), var(--glow);
    }

    .step-card {
      min-height: 205px;
      padding: 22px;
      position: relative;
    }

    .step-no {
      width: 38px;
      height: 38px;
      display: grid;
      place-items: center;
      border-radius: 8px;
      border: 1px solid var(--border-strong);
      color: var(--gold-soft);
      background: rgba(217, 164, 65, .08);
      font-weight: 800;
      margin-bottom: 18px;
    }

    .step-card h3,
    .directory-card h3,
    .entry-card h3,
    .quote-card h3,
    .preview-card h3 {
      margin: 0 0 10px;
      color: #fff4d8;
      font-size: 18px;
      font-weight: 800;
    }

    .step-card p,
    .directory-card p,
    .entry-card p,
    .quote-card p,
    .preview-card p {
      margin: 0;
      color: var(--muted);
      font-size: 14px;
      line-height: 1.75;
    }

    .directory-layout {
      display: grid;
      grid-template-columns: 280px 1fr;
      gap: 18px;
      align-items: start;
    }

    .directory-index {
      position: sticky;
      top: calc(var(--nav-h) + 18px);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      background: rgba(16, 16, 20, .82);
      padding: 12px;
    }

    .index-link {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 10px;
      min-height: 44px;
      padding: 9px 10px;
      border-radius: 6px;
      color: var(--muted);
      font-weight: 700;
      font-size: 14px;
    }

    .index-link:hover,
    .index-link.active {
      color: var(--gold-soft);
      background: rgba(217, 164, 65, .08);
    }

    .directory-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 14px;
    }

    .directory-card {
      min-height: 190px;
      padding: 18px;
      position: relative;
      overflow: hidden;
    }

    .directory-card::after {
      content: attr(data-no);
      position: absolute;
      right: 16px;
      top: 10px;
      color: rgba(240, 201, 120, .12);
      font-size: 54px;
      font-weight: 800;
      line-height: 1;
    }

    .tag-row {
      display: flex;
      flex-wrap: wrap;
      gap: 7px;
      margin: 14px 0 0;
    }

    .tag {
      display: inline-flex;
      align-items: center;
      min-height: 26px;
      padding: 3px 8px;
      border-radius: 999px;
      border: 1px solid rgba(217, 164, 65, .22);
      background: rgba(8, 7, 9, .38);
      color: #cdbf9f;
      font-size: 12px;
      font-weight: 600;
    }

    .entry-list {
      display: grid;
      gap: 12px;
    }

    .entry-card {
      min-height: 138px;
      padding: 18px;
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 18px;
      align-items: center;
    }

    .entry-actions {
      display: flex;
      gap: 8px;
      flex-wrap: wrap;
      justify-content: flex-end;
    }

    .icon-btn {
      width: 42px;
      height: 42px;
      border-radius: 6px;
      border: 1px solid var(--border);
      background: rgba(8, 7, 9, .48);
      color: var(--gold-soft);
      display: inline-grid;
      place-items: center;
      transition: transform .2s ease, border-color .2s ease, background .2s ease;
    }

    .icon-btn:hover {
      transform: translateY(-2px);
      border-color: var(--border-strong);
      background: rgba(217, 164, 65, .1);
    }

    .related-strip {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
    }

    .related-pill {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      min-height: 42px;
      padding: 8px 13px;
      border-radius: 999px;
      border: 1px solid rgba(217, 164, 65, .22);
      background: rgba(21, 16, 24, .68);
      color: var(--muted);
      font-weight: 700;
      font-size: 14px;
    }

    .related-pill:hover {
      color: var(--gold-soft);
      border-color: var(--border-strong);
      background: rgba(217, 164, 65, .08);
    }

    .news-wrap {
      display: grid;
      grid-template-columns: 1.3fr .7fr;
      gap: 18px;
    }

    .news-list,
    .guide-box,
    .faq-box,
    .cta-band,
    .club-note {
      border: 1px solid var(--border);
      border-radius: var(--radius);
      background: rgba(16, 16, 20, .82);
      box-shadow: var(--shadow);
    }

    .news-list {
      padding: 8px;
    }

    .news-item {
      display: grid;
      grid-template-columns: 118px 1fr auto;
      gap: 14px;
      align-items: center;
      min-height: 72px;
      padding: 13px 14px;
      border-radius: 6px;
      border-bottom: 1px solid rgba(217, 164, 65, .12);
    }

    .news-item:last-child { border-bottom: 0; }

    .news-date {
      color: var(--gold-soft);
      font-size: 13px;
      font-weight: 800;
    }

    .news-item a {
      color: #f3e5c4;
      font-weight: 800;
    }

    .news-item a:hover { color: var(--gold-soft); }

    .news-item p {
      margin: 3px 0 0;
      color: var(--muted);
      font-size: 13px;
      line-height: 1.6;
    }

    .recommend-side {
      padding: 20px;
      border-radius: var(--radius);
      border: 1px solid rgba(139, 30, 63, .45);
      background: linear-gradient(145deg, rgba(139, 30, 63, .18), rgba(21, 16, 24, .92));
    }

    .recommend-side h3 {
      font-size: 20px;
      font-weight: 800;
      color: #fff4d8;
      margin: 0 0 12px;
    }

    .guide-grid,
    .quote-grid,
    .preview-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 14px;
    }

    .guide-box {
      min-height: 210px;
      padding: 20px;
    }

    .guide-box ul {
      padding: 0;
      margin: 14px 0 0;
      list-style: none;
    }

    .guide-box li {
      display: flex;
      gap: 10px;
      color: var(--muted);
      font-size: 14px;
      padding: 7px 0;
      border-bottom: 1px solid rgba(217, 164, 65, .1);
    }

    .guide-box li:last-child { border-bottom: 0; }

    .guide-box i { color: var(--gold-soft); }

    .quote-card,
    .preview-card {
      min-height: 190px;
      padding: 20px;
    }

    .quote-card blockquote {
      margin: 0 0 14px;
      color: #eadcbf;
      font-weight: 700;
      line-height: 1.75;
    }

    .timeline {
      position: relative;
      padding-left: 18px;
    }

    .timeline::before {
      content: "";
      position: absolute;
      left: 6px;
      top: 8px;
      bottom: 8px;
      width: 1px;
      background: linear-gradient(var(--gold), rgba(217, 164, 65, .08));
    }

    .timeline-item {
      position: relative;
      padding: 0 0 18px 18px;
    }

    .timeline-item::before {
      content: "";
      position: absolute;
      left: -16px;
      top: 7px;
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background: var(--gold-soft);
      box-shadow: 0 0 0 5px rgba(217, 164, 65, .12);
    }

    .timeline-item strong {
      display: block;
      color: #fff4d8;
      margin-bottom: 4px;
    }

    .timeline-item span {
      color: var(--muted);
      font-size: 14px;
    }

    .accordion {
      --bs-accordion-bg: transparent;
      --bs-accordion-border-color: transparent;
      --bs-accordion-btn-focus-box-shadow: 0 0 0 3px rgba(240, 201, 120, .18);
    }

    .accordion-item {
      border: 1px solid var(--border);
      border-radius: var(--radius) !important;
      background: rgba(16, 16, 20, .86);
      margin-bottom: 10px;
      overflow: hidden;
    }

    .accordion-button {
      min-height: 58px;
      background: rgba(21, 16, 24, .92);
      color: #fff1d0;
      font-weight: 800;
      padding: 16px 18px;
      box-shadow: none;
    }

    .accordion-button:not(.collapsed) {
      background: rgba(217, 164, 65, .09);
      color: var(--gold-soft);
    }

    .accordion-button::after {
      filter: sepia(1) saturate(2) hue-rotate(350deg);
    }

    .accordion-body {
      color: var(--muted);
      padding: 0 18px 18px;
      line-height: 1.8;
      font-size: 15px;
    }

    .cta-band {
      padding: 26px;
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 18px;
      align-items: center;
      background:
        linear-gradient(90deg, rgba(217, 164, 65, .13), transparent 44%),
        linear-gradient(135deg, rgba(21, 16, 24, .96), rgba(139, 30, 63, .16));
    }

    .cta-band h2 {
      margin: 0 0 8px;
      color: #fff4d8;
      font-size: clamp(24px, 3vw, 32px);
      font-weight: 800;
    }

    .cta-band p {
      margin: 0;
      color: var(--muted);
      max-width: 760px;
    }

    .cta-actions {
      display: flex;
      gap: 10px;
      flex-wrap: wrap;
      justify-content: flex-end;
    }

    .site-footer {
      border-top: 1px solid rgba(217, 164, 65, .28);
      background: #070608;
      padding: 46px 0 28px;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.3fr .7fr .7fr;
      gap: 28px;
      margin-bottom: 28px;
    }

    .footer-logo {
      display: flex;
      align-items: center;
      gap: 10px;
      color: #fff4d8;
      font-weight: 800;
      font-size: 18px;
      margin-bottom: 12px;
    }

    .footer-copy,
    .footer-note {
      color: var(--muted);
      font-size: 14px;
      margin: 0;
    }

    .footer-title {
      color: var(--gold-soft);
      font-weight: 800;
      margin-bottom: 12px;
    }

    .footer-links {
      display: grid;
      gap: 8px;
    }

    .footer-links a {
      color: var(--muted);
      font-size: 14px;
    }

    .footer-links a:hover { color: var(--gold-soft); }

    .footer-bottom {
      display: flex;
      justify-content: space-between;
      gap: 16px;
      padding-top: 18px;
      border-top: 1px solid rgba(217, 164, 65, .14);
      color: var(--dim);
      font-size: 13px;
      flex-wrap: wrap;
    }

    :focus-visible {
      outline: 2px solid var(--gold-soft);
      outline-offset: 3px;
    }

    @media (max-width: 991.98px) {
      .navbar-collapse {
        padding: 14px 0 18px;
        border-top: 1px solid rgba(217, 164, 65, .16);
        margin-top: 10px;
      }

      .navbar-nav { align-items: stretch; }

      .nav-tools {
        margin-left: 0;
        margin-top: 12px;
        flex-direction: column;
        align-items: stretch;
      }

      .search-mini { width: 100%; min-width: 0; }

      .hero {
        min-height: auto;
        padding: 62px 0 34px;
      }

      .hero-meta,
      .hero-matrix,
      .step-track,
      .guide-grid,
      .quote-grid,
      .preview-grid {
        grid-template-columns: 1fr;
      }

      .section-head,
      .cta-band,
      .news-wrap,
      .directory-layout,
      .footer-grid {
        grid-template-columns: 1fr;
        display: grid;
      }

      .directory-index {
        position: static;
        display: flex;
        overflow-x: auto;
        gap: 8px;
        padding: 10px;
      }

      .index-link {
        white-space: nowrap;
        flex: 0 0 auto;
      }

      .directory-grid { grid-template-columns: 1fr; }

      .entry-card {
        grid-template-columns: 1fr;
      }

      .entry-actions {
        justify-content: flex-start;
      }

      .news-item {
        grid-template-columns: 1fr;
        align-items: start;
      }

      .cta-actions {
        justify-content: flex-start;
      }
    }

    @media (max-width: 575.98px) {
      :root { --nav-h: 60px; }

      .navbar-brand {
        font-size: 15px;
        max-width: 260px;
      }

      .brand-mark {
        width: 32px;
        height: 32px;
      }

      .section {
        padding: 56px 0;
      }

      .section.tight {
        padding: 46px 0;
      }

      .hero-actions,
      .cta-actions {
        flex-direction: column;
        align-items: stretch;
      }

      .btn-club,
      .btn-ghost {
        width: 100%;
      }

      .hero-meta {
        grid-template-columns: 1fr;
      }

      .pain-row {
        grid-template-columns: 1fr;
      }

      .matrix-card,
      .directory-card,
      .step-card,
      .entry-card,
      .guide-box,
      .quote-card,
      .preview-card,
      .cta-band {
        padding: 16px;
      }

      .hero-play {
        width: 62px;
        height: 62px;
      }
    }

/* roulang page: category1 */
:root {
      --bg-0: #080709;
      --bg-1: #101014;
      --bg-2: #151018;
      --panel: #121116;
      --panel-2: #19131a;
      --gold: #d9a441;
      --gold-soft: #f0c978;
      --wine: #8b1e3f;
      --purple: #3d215f;
      --green: #0f3b34;
      --text: #f7efd8;
      --muted: #b9ad93;
      --faint: #807763;
      --line: rgba(217, 164, 65, .28);
      --line-strong: rgba(240, 201, 120, .5);
      --shadow: 0 18px 50px rgba(0, 0, 0, .46);
      --glow: 0 0 0 1px rgba(217, 164, 65, .22), 0 20px 55px rgba(0, 0, 0, .48);
      --radius: 8px;
      --radius-sm: 6px;
      --header-h: 66px;
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      min-height: 100vh;
      font-family: -apple-system, BlinkMacSystemFont, "PingFang SC", "Microsoft YaHei", "Noto Sans SC", Arial, sans-serif;
      font-size: 16px;
      line-height: 1.75;
      color: var(--text);
      background:
        linear-gradient(135deg, rgba(217, 164, 65, .035) 0 1px, transparent 1px 18px),
        radial-gradient(circle at 78% 18%, rgba(139, 30, 63, .18), transparent 34%),
        radial-gradient(circle at 18% 48%, rgba(15, 59, 52, .2), transparent 38%),
        linear-gradient(180deg, var(--bg-0), #0c090c 48%, var(--bg-1));
      overflow-x: hidden;
    }

    body::before {
      content: "";
      position: fixed;
      inset: 0;
      pointer-events: none;
      opacity: .22;
      background-image:
        linear-gradient(rgba(255, 255, 255, .025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .02) 1px, transparent 1px);
      background-size: 28px 28px;
      mask-image: linear-gradient(to bottom, #000, transparent 82%);
      z-index: -1;
    }

    a {
      color: inherit;
      text-decoration: none;
      transition: color .2s ease, border-color .2s ease, background .2s ease, transform .2s ease;
    }

    img {
      max-width: 100%;
      height: auto;
      display: block;
    }

    button,
    input,
    select {
      font: inherit;
    }

    :focus-visible {
      outline: 2px solid var(--gold-soft);
      outline-offset: 3px;
    }

    .container-xl {
      max-width: 1220px;
    }

    .site-header {
      position: sticky;
      top: 0;
      z-index: 1000;
      background: rgba(8, 7, 9, .88);
      backdrop-filter: blur(16px);
      border-bottom: 1px solid rgba(217, 164, 65, .2);
      box-shadow: 0 10px 35px rgba(0, 0, 0, .35);
    }

    .navbar {
      min-height: var(--header-h);
      padding: 10px 0;
    }

    .navbar-brand {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      color: var(--text);
      font-weight: 800;
      font-size: 18px;
      line-height: 1.25;
      max-width: 360px;
      white-space: normal;
    }

    .navbar-brand:hover {
      color: var(--gold-soft);
    }

    .brand-mark {
      width: 34px;
      height: 34px;
      flex: 0 0 34px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      color: #17100a;
      background: linear-gradient(135deg, var(--gold-soft), var(--gold));
      border: 1px solid rgba(255, 238, 180, .55);
      border-radius: 999px;
      box-shadow: 0 0 24px rgba(217, 164, 65, .28);
    }

    .navbar-toggler {
      width: 42px;
      height: 42px;
      border: 1px solid var(--line);
      color: var(--gold-soft);
      border-radius: var(--radius-sm);
      padding: 0;
      box-shadow: none;
    }

    .navbar-toggler:focus {
      box-shadow: 0 0 0 3px rgba(217, 164, 65, .22);
    }

    .navbar-nav {
      gap: 8px;
      align-items: center;
    }

    .nav-link {
      position: relative;
      color: var(--muted);
      font-weight: 600;
      padding: 9px 13px !important;
      border-radius: var(--radius-sm);
    }

    .nav-link:hover,
    .nav-link:focus {
      color: var(--gold-soft);
      background: rgba(217, 164, 65, .08);
    }

    .nav-link.active {
      color: var(--gold-soft) !important;
      background: linear-gradient(180deg, rgba(217, 164, 65, .16), rgba(217, 164, 65, .05));
      box-shadow: inset 0 -1px 0 var(--gold);
    }

    .nav-tools {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .search-mini {
      min-width: 260px;
      height: 42px;
      display: flex;
      align-items: center;
      gap: 8px;
      padding: 0 12px;
      background: rgba(16, 16, 20, .92);
      border: 1px solid rgba(217, 164, 65, .22);
      border-radius: var(--radius-sm);
      color: var(--muted);
    }

    .search-mini input {
      width: 100%;
      min-width: 0;
      color: var(--text);
      background: transparent;
      border: 0;
      outline: none;
      font-size: 14px;
    }

    .search-mini input::placeholder {
      color: rgba(185, 173, 147, .72);
    }

    .search-mini:focus-within {
      border-color: var(--gold-soft);
      box-shadow: 0 0 0 3px rgba(217, 164, 65, .15);
    }

    .btn-club,
    .btn-gold,
    .btn-ghost,
    .btn-wine {
      min-height: 42px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      border-radius: var(--radius-sm);
      font-weight: 700;
      border: 1px solid transparent;
      padding: 10px 16px;
      line-height: 1.25;
      transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
      white-space: normal;
      text-align: center;
    }

    .btn-club,
    .btn-gold {
      color: #15100a;
      background: linear-gradient(135deg, var(--gold-soft), var(--gold));
      border-color: rgba(255, 238, 180, .45);
      box-shadow: 0 12px 26px rgba(217, 164, 65, .18);
    }

    .btn-club:hover,
    .btn-gold:hover {
      color: #0b0807;
      transform: translateY(-2px);
      box-shadow: 0 18px 34px rgba(217, 164, 65, .24);
      background: linear-gradient(135deg, #ffe1a0, var(--gold-soft));
    }

    .btn-ghost {
      color: var(--gold-soft);
      background: rgba(8, 7, 9, .42);
      border-color: var(--line);
    }

    .btn-ghost:hover {
      color: var(--text);
      border-color: var(--line-strong);
      background: rgba(217, 164, 65, .1);
      transform: translateY(-2px);
    }

    .btn-wine {
      color: #fff3e0;
      background: linear-gradient(135deg, rgba(139, 30, 63, .95), rgba(61, 33, 95, .86));
      border-color: rgba(240, 201, 120, .22);
    }

    .btn-wine:hover {
      color: #fff;
      transform: translateY(-2px);
      border-color: rgba(240, 201, 120, .44);
      box-shadow: 0 16px 34px rgba(139, 30, 63, .22);
    }

    main {
      position: relative;
    }

    .section {
      padding: 78px 0;
    }

    .section-tight {
      padding: 54px 0;
    }

    .section-kicker {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      margin-bottom: 14px;
      color: var(--gold-soft);
      font-size: 13px;
      font-weight: 800;
      padding: 5px 10px;
      border: 1px solid var(--line);
      border-radius: 999px;
      background: rgba(217, 164, 65, .08);
    }

    .section-title {
      margin: 0 0 12px;
      font-size: clamp(24px, 3vw, 34px);
      line-height: 1.25;
      font-weight: 800;
      color: var(--text);
    }

    .section-lead {
      max-width: 760px;
      margin: 0;
      color: var(--muted);
      font-size: 16px;
    }

    .category-hero {
      padding: 52px 0 34px;
      border-bottom: 1px solid rgba(217, 164, 65, .18);
      background:
        linear-gradient(100deg, rgba(139, 30, 63, .18), transparent 44%),
        linear-gradient(180deg, rgba(217, 164, 65, .06), transparent);
    }

    .hero-shell {
      display: grid;
      grid-template-columns: minmax(0, 5.1fr) minmax(320px, 4.9fr);
      gap: 34px;
      align-items: stretch;
    }

    .crumbs {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 8px;
      margin-bottom: 18px;
      color: var(--faint);
      font-size: 14px;
    }

    .crumbs a {
      color: var(--muted);
    }

    .crumbs a:hover {
      color: var(--gold-soft);
    }

    h1 {
      margin: 0;
      color: var(--text);
      font-size: clamp(30px, 4vw, 48px);
      line-height: 1.18;
      font-weight: 800;
    }

    .hero-text {
      color: var(--muted);
      margin: 18px 0 0;
      max-width: 700px;
      font-size: 17px;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-top: 26px;
    }

    .question-panel {
      min-height: 100%;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background:
        linear-gradient(135deg, rgba(217, 164, 65, .12), transparent 34%),
        linear-gradient(180deg, rgba(21, 16, 24, .96), rgba(10, 9, 12, .96));
      box-shadow: var(--glow);
      padding: 22px;
      position: relative;
      overflow: hidden;
    }

    .question-panel::before {
      content: "";
      position: absolute;
      top: 0;
      left: 22px;
      right: 22px;
      height: 2px;
      background: linear-gradient(90deg, var(--gold), transparent);
    }

    .question-title {
      font-size: 18px;
      font-weight: 800;
      margin-bottom: 12px;
    }

    .question-note {
      color: var(--muted);
      font-size: 14px;
      margin-bottom: 18px;
    }

    .lead-form {
      display: grid;
      gap: 12px;
    }

    .lead-form label {
      color: var(--gold-soft);
      font-size: 13px;
      font-weight: 700;
    }

    .form-control,
    .form-select {
      min-height: 42px;
      color: var(--text);
      background-color: rgba(8, 7, 9, .78);
      border: 1px solid rgba(217, 164, 65, .25);
      border-radius: var(--radius-sm);
      box-shadow: none;
    }

    .form-control::placeholder {
      color: rgba(185, 173, 147, .66);
    }

    .form-control:focus,
    .form-select:focus {
      color: var(--text);
      background-color: rgba(8, 7, 9, .92);
      border-color: var(--gold-soft);
      box-shadow: 0 0 0 3px rgba(217, 164, 65, .16);
    }

    .form-select {
      background-image:
        linear-gradient(45deg, transparent 50%, var(--gold-soft) 50%),
        linear-gradient(135deg, var(--gold-soft) 50%, transparent 50%);
      background-position:
        calc(100% - 18px) 18px,
        calc(100% - 13px) 18px;
      background-size: 5px 5px, 5px 5px;
      background-repeat: no-repeat;
    }

    .hero-badges {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-top: 18px;
    }

    .club-badge,
    .tag {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      min-height: 28px;
      padding: 5px 10px;
      border-radius: 999px;
      font-size: 13px;
      font-weight: 700;
      line-height: 1.2;
      border: 1px solid rgba(217, 164, 65, .25);
      color: var(--gold-soft);
      background: rgba(217, 164, 65, .08);
    }

    .club-badge.wine {
      color: #ffd7df;
      border-color: rgba(139, 30, 63, .46);
      background: rgba(139, 30, 63, .22);
    }

    .club-badge.green {
      color: #bdf1df;
      border-color: rgba(15, 59, 52, .65);
      background: rgba(15, 59, 52, .34);
    }

    .filter-bar {
      margin-top: -18px;
      position: relative;
      z-index: 5;
    }

    .filter-box {
      display: grid;
      grid-template-columns: auto 1fr auto;
      gap: 14px;
      align-items: center;
      padding: 14px;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: rgba(12, 10, 13, .94);
      box-shadow: var(--shadow);
    }

    .filter-label {
      color: var(--gold-soft);
      font-weight: 800;
      white-space: nowrap;
    }

    .filter-chips {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
    }

    .filter-chip {
      min-height: 38px;
      padding: 8px 12px;
      border-radius: var(--radius-sm);
      border: 1px solid rgba(217, 164, 65, .2);
      color: var(--muted);
      background: rgba(16, 16, 20, .86);
      font-weight: 700;
      font-size: 14px;
      cursor: pointer;
      transition: .2s ease;
    }

    .filter-chip:hover,
    .filter-chip.active {
      color: var(--gold-soft);
      border-color: var(--line-strong);
      background: rgba(217, 164, 65, .12);
      transform: translateY(-1px);
    }

    .layout-grid {
      display: grid;
      grid-template-columns: 280px minmax(0, 1fr);
      gap: 24px;
      align-items: start;
    }

    .side-nav {
      position: sticky;
      top: calc(var(--header-h) + 22px);
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: linear-gradient(180deg, rgba(18, 17, 22, .96), rgba(10, 9, 12, .96));
      box-shadow: var(--shadow);
      overflow: hidden;
    }

    .side-nav-title {
      padding: 16px 16px 12px;
      color: var(--gold-soft);
      font-weight: 800;
      border-bottom: 1px solid rgba(217, 164, 65, .16);
    }

    .side-nav a {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 10px;
      min-height: 46px;
      padding: 12px 16px;
      color: var(--muted);
      border-bottom: 1px solid rgba(217, 164, 65, .1);
      font-weight: 650;
    }

    .side-nav a:last-child {
      border-bottom: 0;
    }

    .side-nav a:hover,
    .side-nav a.active {
      color: var(--gold-soft);
      background: rgba(217, 164, 65, .08);
    }

    .side-count {
      color: var(--faint);
      font-size: 12px;
      border: 1px solid rgba(217, 164, 65, .18);
      border-radius: 999px;
      padding: 2px 7px;
    }

    .list-head {
      display: flex;
      justify-content: space-between;
      gap: 18px;
      align-items: end;
      margin-bottom: 18px;
    }

    .sort-line {
      color: var(--faint);
      font-size: 14px;
      white-space: nowrap;
    }

    .entry-list {
      display: grid;
      gap: 14px;
    }

    .entry-card,
    .info-card,
    .related-card,
    .faq-wrap,
    .cta-strip {
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: linear-gradient(180deg, rgba(18, 17, 22, .96), rgba(12, 10, 13, .96));
      box-shadow: var(--shadow);
    }

    .entry-card {
      display: grid;
      grid-template-columns: auto minmax(0, 1fr) auto;
      gap: 16px;
      align-items: center;
      padding: 18px;
      position: relative;
      overflow: hidden;
    }

    .entry-card::before {
      content: "";
      position: absolute;
      left: 0;
      top: 14px;
      bottom: 14px;
      width: 3px;
      background: linear-gradient(180deg, var(--gold-soft), var(--wine));
    }

    .entry-card:hover {
      transform: translateY(-3px);
      border-color: var(--line-strong);
      box-shadow: var(--glow);
    }

    .entry-no {
      width: 42px;
      height: 42px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border-radius: var(--radius-sm);
      color: #15100a;
      background: linear-gradient(135deg, var(--gold-soft), var(--gold));
      font-weight: 900;
      box-shadow: 0 10px 24px rgba(217, 164, 65, .16);
    }

    .entry-title {
      margin: 0 0 5px;
      color: var(--text);
      font-size: 18px;
      font-weight: 800;
      line-height: 1.35;
    }

    .entry-summary {
      margin: 0 0 10px;
      color: var(--muted);
      font-size: 14px;
    }

    .tag-row {
      display: flex;
      flex-wrap: wrap;
      gap: 7px;
    }

    .tag {
      min-height: 25px;
      padding: 4px 8px;
      font-size: 12px;
      color: var(--muted);
      background: rgba(8, 7, 9, .48);
    }

    .entry-actions {
      display: flex;
      gap: 8px;
      align-items: center;
      flex-wrap: wrap;
      justify-content: flex-end;
      min-width: 170px;
    }

    .icon-btn {
      width: 42px;
      height: 42px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      color: var(--gold-soft);
      border: 1px solid var(--line);
      border-radius: var(--radius-sm);
      background: rgba(8, 7, 9, .5);
      transition: .2s ease;
    }

    .icon-btn:hover {
      color: #15100a;
      background: var(--gold-soft);
      border-color: var(--gold-soft);
      transform: translateY(-2px);
    }

    .guide-band {
      border-top: 1px solid rgba(217, 164, 65, .16);
      border-bottom: 1px solid rgba(217, 164, 65, .16);
      background:
        linear-gradient(90deg, rgba(15, 59, 52, .28), transparent 44%),
        rgba(8, 7, 9, .38);
    }

    .guide-grid {
      display: grid;
      grid-template-columns: minmax(0, 1.1fr) minmax(260px, .9fr);
      gap: 24px;
      align-items: stretch;
    }

    .info-card {
      padding: 22px;
      min-height: 100%;
    }

    .info-card h2,
    .info-card h3 {
      margin: 0 0 12px;
      font-size: 24px;
      font-weight: 800;
    }

    .info-card p {
      color: var(--muted);
      margin: 0 0 12px;
    }

    .rule-list {
      display: grid;
      gap: 10px;
      padding: 0;
      margin: 16px 0 0;
      list-style: none;
    }

    .rule-list li {
      display: grid;
      grid-template-columns: 28px 1fr;
      gap: 10px;
      align-items: start;
      color: var(--muted);
    }

    .rule-list i {
      color: var(--gold-soft);
      margin-top: 3px;
    }

    .meter-grid {
      display: grid;
      gap: 12px;
    }

    .meter-item {
      padding: 13px;
      border: 1px solid rgba(217, 164, 65, .18);
      border-radius: var(--radius-sm);
      background: rgba(8, 7, 9, .42);
    }

    .meter-top {
      display: flex;
      justify-content: space-between;
      gap: 10px;
      margin-bottom: 8px;
      color: var(--muted);
      font-size: 14px;
      font-weight: 700;
    }

    .meter-line {
      height: 6px;
      border-radius: 999px;
      background: rgba(217, 164, 65, .12);
      overflow: hidden;
    }

    .meter-line span {
      display: block;
      height: 100%;
      border-radius: inherit;
      background: linear-gradient(90deg, var(--gold), var(--gold-soft));
    }

    .related-grid {
      display: grid;
      grid-template-columns: 1.2fr .8fr;
      gap: 18px;
    }

    .related-card {
      padding: 20px;
      min-height: 170px;
    }

    .related-card h3 {
      margin: 0 0 10px;
      font-size: 20px;
      font-weight: 800;
    }

    .related-card p {
      margin: 0 0 14px;
      color: var(--muted);
    }

    .pill-cloud {
      display: flex;
      flex-wrap: wrap;
      gap: 9px;
    }

    .pill-cloud a {
      display: inline-flex;
      min-height: 34px;
      align-items: center;
      padding: 7px 11px;
      border-radius: 999px;
      color: var(--muted);
      border: 1px solid rgba(217, 164, 65, .18);
      background: rgba(8, 7, 9, .38);
      font-weight: 650;
      font-size: 14px;
    }

    .pill-cloud a:hover {
      color: var(--gold-soft);
      border-color: var(--line-strong);
      background: rgba(217, 164, 65, .1);
    }

    .accordion {
      --bs-accordion-bg: transparent;
      --bs-accordion-border-color: transparent;
      --bs-accordion-border-radius: 0;
      --bs-accordion-inner-border-radius: 0;
    }

    .faq-wrap {
      overflow: hidden;
    }

    .accordion-item {
      background: transparent;
      border: 0;
      border-bottom: 1px solid rgba(217, 164, 65, .14);
    }

    .accordion-item:last-child {
      border-bottom: 0;
    }

    .accordion-button {
      min-height: 58px;
      color: var(--text);
      background: rgba(18, 17, 22, .9);
      box-shadow: none;
      font-weight: 800;
      line-height: 1.5;
      padding: 16px 18px;
    }

    .accordion-button:not(.collapsed) {
      color: var(--gold-soft);
      background: rgba(217, 164, 65, .08);
      box-shadow: none;
    }

    .accordion-button::after {
      filter: sepia(1) saturate(2) hue-rotate(350deg);
    }

    .accordion-button:focus {
      border-color: var(--gold-soft);
      box-shadow: inset 0 0 0 2px rgba(217, 164, 65, .24);
    }

    .accordion-body {
      color: var(--muted);
      background: rgba(8, 7, 9, .45);
      padding: 16px 18px 20px;
    }

    .cta-strip {
      display: grid;
      grid-template-columns: minmax(0, 1fr) auto;
      gap: 20px;
      align-items: center;
      padding: 24px;
      background:
        linear-gradient(90deg, rgba(217, 164, 65, .14), transparent 38%),
        linear-gradient(135deg, rgba(139, 30, 63, .16), rgba(15, 59, 52, .12));
    }

    .cta-strip h2 {
      margin: 0 0 6px;
      font-size: clamp(22px, 2.4vw, 30px);
      font-weight: 800;
    }

    .cta-strip p {
      margin: 0;
      color: var(--muted);
    }

    .cta-actions {
      display: flex;
      gap: 10px;
      flex-wrap: wrap;
      justify-content: flex-end;
    }

    .site-footer {
      padding: 46px 0 26px;
      background: #050405;
      border-top: 1px solid rgba(217, 164, 65, .3);
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.25fr .8fr .8fr;
      gap: 34px;
      align-items: start;
    }

    .footer-logo {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-weight: 800;
      font-size: 18px;
      margin-bottom: 12px;
    }

    .footer-copy {
      margin: 0;
      max-width: 520px;
      color: var(--muted);
      font-size: 14px;
    }

    .footer-title {
      color: var(--gold-soft);
      font-weight: 800;
      margin-bottom: 12px;
    }

    .footer-links {
      display: grid;
      gap: 8px;
    }

    .footer-links a {
      color: var(--muted);
      font-size: 14px;
    }

    .footer-links a:hover {
      color: var(--gold-soft);
      padding-left: 3px;
    }

    .footer-bottom {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      gap: 12px;
      margin-top: 34px;
      padding-top: 18px;
      border-top: 1px solid rgba(217, 164, 65, .14);
      color: var(--faint);
      font-size: 13px;
    }

    @media (max-width: 991.98px) {
      :root {
        --header-h: 62px;
      }

      .navbar-collapse {
        padding-top: 14px;
      }

      .navbar-nav {
        align-items: stretch;
        gap: 4px;
      }

      .nav-tools {
        margin-top: 12px;
        flex-direction: column;
        align-items: stretch;
      }

      .search-mini {
        min-width: 0;
        width: 100%;
      }

      .btn-club {
        width: 100%;
      }

      .hero-shell,
      .layout-grid,
      .guide-grid,
      .related-grid {
        grid-template-columns: 1fr;
      }

      .side-nav {
        position: static;
        display: flex;
        overflow-x: auto;
        border-radius: var(--radius);
      }

      .side-nav-title {
        flex: 0 0 auto;
        border-bottom: 0;
        border-right: 1px solid rgba(217, 164, 65, .16);
        display: flex;
        align-items: center;
      }

      .side-nav a {
        flex: 0 0 auto;
        border-bottom: 0;
        border-right: 1px solid rgba(217, 164, 65, .1);
      }

      .filter-box {
        grid-template-columns: 1fr;
      }

      .filter-chips {
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 2px;
      }

      .filter-chip {
        flex: 0 0 auto;
      }

      .sort-line {
        white-space: normal;
      }

      .footer-grid {
        grid-template-columns: 1fr 1fr;
      }
    }

    @media (max-width: 767.98px) {
      .section {
        padding: 58px 0;
      }

      .section-tight {
        padding: 42px 0;
      }

      .category-hero {
        padding: 38px 0 30px;
      }

      .hero-text {
        font-size: 16px;
      }

      .question-panel {
        padding: 18px;
      }

      .list-head {
        display: block;
      }

      .sort-line {
        margin-top: 8px;
      }

      .entry-card {
        grid-template-columns: 1fr;
        align-items: start;
      }

      .entry-no {
        width: 38px;
        height: 38px;
      }

      .entry-actions {
        min-width: 0;
        justify-content: flex-start;
      }

      .cta-strip {
        grid-template-columns: 1fr;
      }

      .cta-actions {
        justify-content: flex-start;
      }
    }

    @media (max-width: 575.98px) {
      .navbar-brand {
        max-width: 245px;
        font-size: 15px;
      }

      .brand-mark {
        width: 30px;
        height: 30px;
        flex-basis: 30px;
      }

      .hero-actions,
      .cta-actions {
        flex-direction: column;
      }

      .hero-actions a,
      .cta-actions a,
      .lead-form button {
        width: 100%;
      }

      .filter-box {
        padding: 12px;
      }

      .side-nav {
        margin-left: -2px;
        margin-right: -2px;
      }

      .entry-card,
      .info-card,
      .related-card,
      .cta-strip {
        padding: 16px;
      }

      .footer-grid {
        grid-template-columns: 1fr;
      }

      .footer-bottom {
        display: grid;
      }
    }
