/* 攻略目錄專屬樣式 */
    .site-main {
      display: flex;
      flex-direction: column;
    }
    .guides-hero {
      text-align: center;
      padding: 40px 20px;
      background: linear-gradient(135deg, #e0f2fe 0%, #bae6fd 100%);
      border-radius: 18px;
      margin-bottom: 30px;
      border: 1px solid #7dd3fc;
      order: -30;
    }
    .guides-hero h1 { margin: 0 0 10px 0; color: #0369a1; font-size: 2rem; }
    .guides-hero p { margin: 0; color: #0c4a6e; font-size: 1.1rem; }

    .guide-intent-panel {
      order: -28;
      margin: 0 0 26px;
      padding: 18px;
      border-radius: 16px;
      background: #ffffff;
      border: 1px solid #bfdbfe;
      box-shadow: 0 12px 28px rgba(15,23,42,0.07);
    }
    .guide-intent-panel h2 {
      margin: 0 0 6px;
      color: #0f172a;
      font-size: 1.15rem;
    }
    .guide-intent-panel p {
      margin: 0;
      color: #475569;
      line-height: 1.65;
    }
    .guide-intent-links {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 10px;
      margin-top: 14px;
    }
    .guide-intent-link {
      display: flex;
      flex-direction: column;
      gap: 4px;
      min-height: 88px;
      padding: 12px;
      border: 1px solid #dbeafe;
      border-radius: 14px;
      background: linear-gradient(180deg, #f8fbff 0%, #eff6ff 100%);
      color: #0f172a;
      text-decoration: none;
    }
    .guide-intent-link strong { color: #1d4ed8; }
    .guide-intent-link span {
      color: #64748b;
      font-size: 0.86rem;
      line-height: 1.45;
    }

    .category-title {
      font-size: 1.4rem;
      font-weight: bold;
      color: #334155;
      margin: 30px 0 15px;
      border-left: 5px solid #3b82f6;
      padding-left: 12px;
      display: flex;
      align-items: center;
      gap: 8px;
    }

    /* 攻略卡片網格 */
    .guide-menu-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
      gap: 20px;
    }

    .guide-card {
      background: #fff;
      border-radius: 14px;
      padding: 20px;
      border: 1px solid #e2e8f0;
      box-shadow: 0 2px 5px rgba(0,0,0,0.05);
      text-decoration: none;
      color: inherit;
      transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
      display: flex;
      flex-direction: column;
      height: 100%;
    }
    .guide-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 20px rgba(0,0,0,0.1);
      border-color: #3b82f6;
    }

    .guide-icon {
      width: 50px;
      height: 50px;
      background: #f1f5f9;
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.8rem;
      margin-bottom: 15px;
    }
    /* 不同類別的圖示背景色 */
    .gc-newbie .guide-icon { background: #dcfce7; color: #166534; }
    .gc-combat .guide-icon { background: #fee2e2; color: #991b1b; }
    .gc-item .guide-icon { background: #fef3c7; color: #92400e; }
    .gc-sys .guide-icon { background: #e0f2fe; color: #075985; }

    .guide-title {
      font-size: 1.15rem;
      font-weight: bold;
      color: #1e293b;
      margin-bottom: 6px;
    }
    .guide-desc {
      font-size: 0.9rem;
      color: #64748b;
      line-height: 1.5;
      flex-grow: 1; /* 讓文字撐開，保持卡片高度一致 */
    }
    .guide-arrow {
      margin-top: 15px;
      font-size: 0.9rem;
      font-weight: bold;
      color: #3b82f6;
      text-align: right;
    }
  
    /* 攻略搜尋列 */
    .guide-search {
      margin: 0 0 24px;
      padding: 16px 18px;
      background: #f1f5f9;
      border-radius: 12px;
      border: 1px solid #e2e8f0;
      order: -29;
      scroll-margin-top: 92px;
    }
    .guide-search-label {
      display: block;
      font-weight: 600;
      margin-bottom: 8px;
      color: #0f172a;
    }
    .guide-search-input-wrap input {
      width: 100%;
      padding: 10px 12px;
      border-radius: 999px;
      border: 1px solid #cbd5e1;
      font-size: 0.95rem;
      outline: none;
      background: #ffffff;
    }
    .guide-search-input-wrap input::placeholder {
      color: #9ca3af;
    }
    .guide-search-input-wrap input:focus {
      border-color: #3b82f6;
      box-shadow: 0 0 0 1px rgba(59, 130, 246, 0.35);
    }
    .guide-search-hint {
      margin-top: 6px;
      font-size: 0.85rem;
      color: #64748b;
    }
    .guide-tip-bar {
      margin: 18px 0 8px;
      padding: 10px 14px;
      border-radius: 12px;
      background: #eff6ff;
      border: 1px solid #bfdbfe;
      display: flex;
      align-items: flex-start;
      gap: 8px;
      font-size: 0.9rem;
      color: #1d4ed8;
      order: -28;
    }
    .guide-tip-emoji {
      font-size: 1.4rem;
      line-height: 1;
      margin-top: 2px;
    }
    .guide-tip-text strong {
      display: block;
      margin-bottom: 2px;
      font-weight: 700;
    }
    .guide-tip-text p {
      margin: 0;
      color: #1f2933;
      font-size: 0.9rem;
    }
    
    .guide-search-empty {
      margin-top: 16px;
      text-align: center;
      font-size: 0.95rem;
      color: #64748b;
    }

    /* 全站相關頁面顯示區塊 */
    .guide-search-global {
      margin-top: 10px;
      padding-top: 10px;
      border-top: 1px dashed #cbd5e1;
    }
    .guide-search-global-list {
      margin-top: 4px;
      display: flex;
      flex-direction: column;
      gap: 8px;
    }
    .guide-search-global-item {
      padding: 10px 12px;
      border-radius: 12px;
      border: 1px solid #dbeafe;
      background: #ffffff;
    }
    .guide-search-global-item a {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-size: 0.92rem;
      font-weight: 800;
      color: #1d4ed8;
      text-decoration: none;
    }
    .guide-search-global-item a::before {
      content: "↗";
      font-size: 0.8rem;
      color: #60a5fa;
    }
    .guide-search-global-item a:hover {
      text-decoration: underline;
    }
    .guide-search-global-item .meta {
      margin-top: 4px;
      font-size: 0.8rem;
      color: #64748b;
      line-height: 1.45;
    }


    
    .guide-search-toggle {
      border-radius: 999px;
      border: 1px solid #cbd5e1;
      padding: 4px 10px;
      font-size: 0.8rem;
      background: #ffffff;
      color: #0f172a;
      cursor: pointer;
      user-select: none;
      white-space: nowrap;
      margin-top: 8px;
      transition: background 0.15s ease, transform 0.05s ease, border-color 0.15s ease;
    }
    
    .guide-scope-toggle {
      border-radius: 999px;
      border: 1px solid #cbd5e1;
      padding: 4px 10px;
      font-size: 0.8rem;
      background: #ffffff;
      color: #0f172a;
      cursor: pointer;
      user-select: none;
      white-space: nowrap;
      margin-top: 8px;
      transition: background 0.15s ease, transform 0.05s ease, border-color 0.15s ease;
    }
    .guide-scope-toggle.is-title {
      border-color: #94a3b8;
      background: #f8fafc;
    }

    .guide-quick-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin: 10px 0 6px;
    }
    .guide-quick-action {
      border-radius: 14px;
      border: 1px solid #e2e8f0;
      background: #ffffff;
      padding: 10px 12px;
      font-size: 0.95rem;
      cursor: pointer;
      user-select: none;
      transition: transform 0.05s ease, background 0.15s ease, border-color 0.15s ease;
      white-space: nowrap;
    }
    .guide-quick-action:hover {
      background: #f8fafc;
    }
    .guide-quick-action:active {
      transform: translateY(1px);
    }

    .guide-flow {
      margin: 8px 0 10px;
      padding: 10px 12px;
      border-radius: 16px;
      border: 1px solid #e2e8f0;
      background: #ffffff;
    }
    .guide-flow-title {
      font-weight: 800;
      margin-bottom: 10px;
      color: #0f172a;
      letter-spacing: 0.2px;
    }
    .guide-flow-cards {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 10px;
    }
    .guide-flow-choice {
      border-radius: 16px;
      border: 1px solid #e2e8f0;
      background: #ffffff;
      padding: 10px 12px;
      cursor: pointer;
      display: flex;
      align-items: center;
      gap: 10px;
      text-align: left;
      transition: transform 0.05s ease, background 0.15s ease, border-color 0.15s ease;
      user-select: none;
    }
    .guide-flow-choice:hover { background: #f8fafc; }
    .guide-flow-choice:active { transform: translateY(1px); }
    .guide-flow-emoji { font-size: 1.35rem; }
    .guide-flow-main { font-weight: 800; }
    .guide-flow-sub { margin-top: 2px; font-size: 0.82rem; color: #64748b; }

    @media (max-width: 900px) {
      .guide-flow-cards { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    }
    @media (max-width: 640px) {
      .guide-quick-action { flex: 1 1 calc(50% - 8px); text-align: center; }
    }

.guide-search-toggle:hover {
      background: #f1f5f9;
      transform: translateY(-1px);
    }
    .guide-search-toggle:active {
      transform: translateY(0);
    }
    .guide-search-toggle.is-popular {
      background: #fee2e2;
      border-color: #f97316;
      color: #b45309;
    }

    .guide-card mark {
      background-color: #fef08a;
      padding: 0 2px;
      border-radius: 2px;
    }
    
    .guide-search-row {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      align-items: center;
      margin-bottom: 8px;
    }
    .guide-search-input-wrap {
      flex: 1 1 220px;
    }
    .guide-search-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 6px;
      margin-top: 8px;
    }
    .guide-search-tag {
      border-radius: 999px;
      border: 1px solid #cbd5e1;
      padding: 4px 10px;
      font-size: 0.8rem;
      background: #e5f0ff;
      color: #1d4ed8;
      cursor: pointer;
      user-select: none;
      white-space: nowrap;
      transition: background 0.15s ease, transform 0.05s ease;
    }
    .guide-search-tag:hover {
      background: #dbeafe;
      transform: translateY(-1px);
    }
    .guide-compact-links {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-top: 14px;
    }
    .guide-compact-links a {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 7px 11px;
      border-radius: 999px;
      border: 1px solid #cbd5e1;
      background: #fff;
      color: #0f172a;
      font-size: 0.9rem;
      font-weight: 700;
      text-decoration: none;
      line-height: 1.2;
    }
    .guide-compact-links a:hover {
      border-color: #2563eb;
      color: #1d4ed8;
      background: #eff6ff;
    }
    .guide-search-tag:active {
      transform: translateY(0);
    }
    .guide-search-tag span {
      margin-left: 2px;
      opacity: 0.85;
    }
    
    .guide-search-toggle {
      border-radius: 999px;
      border: 1px solid #cbd5e1;
      padding: 4px 10px;
      font-size: 0.8rem;
      background: #ffffff;
      color: #0f172a;
      cursor: pointer;
      user-select: none;
      white-space: nowrap;
      margin-top: 8px;
      transition: background 0.15s ease, transform 0.05s ease, border-color 0.15s ease;
    }
    .guide-search-toggle:hover {
      background: #f1f5f9;
      transform: translateY(-1px);
    }
    .guide-search-toggle:active {
      transform: translateY(0);
    }
    .guide-search-toggle.is-popular {
      background: #fee2e2;
      border-color: #f97316;
      color: #b45309;
    }

    .guide-card mark {
      background-color: #fef08a;
      padding: 0 2px;
      border-radius: 2px;
    }

    /* 手機版：攻略卡片 2 欄排列，避免單欄太佔空間 */
    @media (max-width: 640px) {
      .guide-menu-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
      }
    }

    .guide-usage-flow-card {
      margin: 28px 0 10px;
      padding: 16px 18px;
      border-radius: 16px;
      background: #f8fafc;
      border: 1px solid #e2e8f0;
    }
    .guide-usage-flow-card h2 {
      margin: 0 0 10px;
      font-size: 1.05rem;
      display: flex;
      align-items: center;
      gap: 8px;
    }
    .guide-usage-flow-card h2 span.icon {
      font-size: 1.4rem;
    }
    .guide-flow-steps {
      list-style: none;
      margin: 0;
      padding: 0;
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
    }
    .guide-flow-step {
      display: flex;
      align-items: center;
      gap: 6px;
      font-size: 0.9rem;
      background: #ffffff;
      border-radius: 999px;
      padding: 6px 10px;
      box-shadow: 0 1px 2px rgba(15,23,42,0.06);
      border: 1px solid #e5e7eb;
    }
    .guide-flow-step span.icon {
      font-size: 1.2rem;
    }
    .guide-flow-step span.label {
      white-space: nowrap;
    }
    .guide-flow-arrow {
      font-size: 0.9rem;
      color: #94a3b8;
      display: flex;
      align-items: center;
    }
    @media (max-width: 640px) {
      .guide-flow-steps {
        flex-direction: column;
        align-items: flex-start;
      }
      .guide-flow-step {
        width: 100%;
      }
    }
    
    .guide-section-intro {
      margin: 12px 0 4px;
      font-size: 0.9rem;
      color: #6b7280;
    }

.guides-index-main .guides-hero {
      padding: clamp(26px, 4vw, 38px) clamp(18px, 4vw, 34px);
      border: 1px solid rgba(96, 165, 250, .28);
      border-radius: 16px;
      background:
        radial-gradient(circle at 20% 15%, rgba(255, 214, 102, .20), transparent 30%),
        linear-gradient(135deg, rgba(255, 255, 255, .98), rgba(239, 248, 255, .96));
      box-shadow: 0 12px 28px rgba(15, 79, 150, .10);
      overflow: hidden;
    }
    .guides-index-main .guides-hero h1 {
      color: #102a56;
      font-size: clamp(1.45rem, 3vw, 2rem);
      line-height: 1.25;
    }
    .guides-index-main .guides-hero p {
      max-width: 760px;
      margin-left: auto;
      margin-right: auto;
      color: #245579;
      font-size: clamp(.98rem, 2vw, 1.08rem);
    }
    .guides-index-main .guides-hero .google-auto-placed,
    .guides-index-main .guides-hero ins.adsbygoogle,
    .guides-index-main .guides-hero iframe[id^="aswift_"],
    .guides-index-main .guides-hero > :not(h1):not(p),
    .guides-index-main .guides-hero p > *,
    .guides-index-main .guide-search .google-auto-placed,
    .guides-index-main .guide-search ins.adsbygoogle,
    .guides-index-main .guide-search iframe[id^="aswift_"] {
      display: none !important;
      visibility: hidden !important;
      width: 0 !important;
      height: 0 !important;
      max-width: 0 !important;
      max-height: 0 !important;
      overflow: hidden !important;
    }
    .guides-index-main .guide-search {
      padding: clamp(16px, 2.5vw, 22px);
      border: 1px solid rgba(96, 165, 250, .30);
      border-radius: 16px;
      background: rgba(255, 255, 255, .96);
      box-shadow: 0 10px 24px rgba(15, 79, 150, .08);
    }
    .guides-index-main .guide-search-label {
      margin-bottom: 12px;
      color: #102a56;
      font-size: 1rem;
      font-weight: 850;
    }
    .guides-index-main .guide-search-row {
      align-items: stretch;
      gap: 10px;
    }
    .guides-index-main .guide-search-input-wrap input {
      min-height: 42px;
      padding: 10px 16px;
      border-color: rgba(96, 165, 250, .38);
      background: #fff;
      box-shadow: inset 0 1px 0 rgba(15, 23, 42, .03);
    }
    .guides-index-main .guide-search-input-wrap input:focus {
      border-color: #2563eb;
      box-shadow: 0 0 0 3px rgba(37, 99, 235, .13);
    }
    .guides-index-main .guide-search-tags {
      align-items: center;
      flex-wrap: wrap;
      gap: 7px;
      margin-top: 0;
      max-width: 100%;
      overflow: visible;
    }
    .guides-index-main .guide-search-tag,
    .guides-index-main .guide-search-toggle,
    .guides-index-main .guide-scope-toggle,
    .guides-index-main .guide-search-suggest-chip {
      appearance: none;
      -webkit-appearance: none;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 32px;
      border-radius: 999px;
      border: 1px solid rgba(96, 165, 250, .34);
      background: #f5f9ff;
      color: #17519b;
      font-size: .82rem;
      font-weight: 800;
      line-height: 1.15;
      text-decoration: none;
      cursor: pointer;
      box-shadow: none;
    }
    .guides-index-main .guide-search-tag,
    .guides-index-main .guide-search-suggest-chip {
      padding: 7px 11px;
    }
    .guides-index-main .guide-search-toggle,
    .guides-index-main .guide-scope-toggle {
      margin-top: 0;
      padding: 7px 12px;
      background: #fff;
      color: #102a56;
    }
    .guides-index-main .guide-search-tag:hover,
    .guides-index-main .guide-search-toggle:hover,
    .guides-index-main .guide-scope-toggle:hover,
    .guides-index-main .guide-search-suggest-chip:hover {
      transform: translateY(-1px);
      border-color: #2563eb;
      background: #eaf3ff;
      color: #0f4f96;
    }
    .guides-index-main .guide-search-toggle.is-popular {
      border-color: rgba(249, 115, 22, .38);
      background: #fff7ed;
      color: #b45309;
    }
    .guides-index-main .guide-quick-actions {
      gap: 10px;
      margin-top: 14px;
    }
    .guides-index-main .guide-quick-action {
      min-height: 42px;
      padding: 9px 14px;
      border-radius: 13px;
      border-color: rgba(148, 163, 184, .34);
      background: #fff;
      color: #102a56;
      font-weight: 800;
      box-shadow: 0 4px 10px rgba(15, 79, 150, .05);
    }
    .guides-index-main .guide-quick-action:hover {
      border-color: #60a5fa;
      background: #f8fbff;
    }
    .guides-index-main .guide-flow {
      margin-top: 8px;
      padding: 14px;
      border-color: rgba(96, 165, 250, .24);
      border-radius: 16px;
      background: linear-gradient(180deg, #ffffff, #f8fbff);
    }
    .guides-index-main .guide-flow-choice {
      min-height: 64px;
      border-radius: 14px;
      border-color: rgba(148, 163, 184, .28);
      background: #fff;
    }
    .guides-index-main .guide-flow-choice:hover {
      border-color: #60a5fa;
      background: #f8fbff;
    }
    .guides-index-main .guide-search-suggest {
      margin-top: 12px;
      padding-top: 12px;
      border-top: 1px dashed rgba(148, 163, 184, .38);
    }
    .guides-index-main .guide-search-suggest-title {
      margin-bottom: 8px;
      color: #245579;
      font-size: .9rem;
      font-weight: 800;
    }
    .guides-index-main .guide-search-suggest-list {
      display: flex;
      flex-wrap: wrap;
      gap: 7px;
    }
    .guides-index-main .guide-search-hint {
      color: #58708a;
    }
    .guides-index-main .guide-search-global {
      border-top-color: rgba(96, 165, 250, .26);
    }
    .guides-index-main .guide-search-global-item {
      border-color: rgba(96, 165, 250, .24);
      background: linear-gradient(180deg, #ffffff, #f8fbff);
      box-shadow: 0 4px 12px rgba(15, 79, 150, .04);
    }
    .guides-index-main .guide-card {
      border-color: rgba(148, 163, 184, .24);
      border-radius: 14px;
      box-shadow: 0 8px 20px rgba(15, 79, 150, .06);
    }
    .guides-index-main .guide-card:hover {
      box-shadow: 0 14px 26px rgba(15, 79, 150, .12);
    }
    .guides-index-main .guide-icon {
      width: 46px;
      height: 46px;
      border-radius: 14px;
      font-size: 1.55rem;
      margin-bottom: 14px;
      box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .75);
    }
    @media (max-width: 700px) {
      .guides-index-main {
        overflow-x: clip;
      }
      .guides-index-main,
      .guides-index-main * {
        box-sizing: border-box;
      }
      .guides-index-main .guides-hero,
      .guides-index-main .guide-search,
      .guides-index-main .guide-flow,
      .guides-index-main .guide-card {
        max-width: 100%;
      }
      .guides-index-main .guide-search-row {
        display: grid;
        grid-template-columns: 1fr;
      }
      .guides-index-main .guide-search-input-wrap,
      .guides-index-main .guide-search-tags,
      .guides-index-main .guide-quick-actions,
      .guides-index-main .guide-flow-cards,
      .guide-intent-panel {
        min-width: 0;
        width: 100%;
      }
      .guide-intent-links {
        grid-template-columns: 1fr;
      }
      .guides-index-main .guide-search-input-wrap input {
        min-width: 0;
        width: 100%;
        text-overflow: ellipsis;
      }
      .guides-index-main .guide-search-tags {
        margin-top: 0;
      }
      .guides-index-main .guide-search-tag,
      .guides-index-main .guide-search-toggle,
      .guides-index-main .guide-scope-toggle,
      .guides-index-main .guide-search-suggest-chip {
        min-height: 34px;
        white-space: normal;
        max-width: 100%;
        overflow-wrap: anywhere;
      }
      .guides-index-main .guide-quick-action {
        flex: 1 1 calc(50% - 10px);
        min-width: 0;
        white-space: normal;
      }
      .guides-index-main .guide-flow-cards {
        grid-template-columns: 1fr;
      }
    }

    /* 2026-07-11：攻略中心精簡版 UI */
    .guides-index-main .guide-search-input-wrap {
      position: relative;
    }
    .guides-index-main .guide-search-input-wrap input {
      padding-right: 46px;
    }
    .guide-search-clear {
      position: absolute;
      top: 50%;
      right: 7px;
      width: 32px;
      height: 32px;
      padding: 0;
      transform: translateY(-50%);
      border: 0;
      border-radius: 50%;
      background: #eaf2ff;
      color: #245579;
      font-size: 1.05rem;
      font-weight: 900;
      line-height: 1;
      cursor: pointer;
    }
    .guide-search-clear[hidden] { display: none; }
    .guide-search-clear:hover,
    .guide-search-clear:focus-visible {
      background: #dbeafe;
      color: #1d4ed8;
      outline: 3px solid rgba(37, 99, 235, .16);
    }
    .guides-index-main .guide-search-tag.is-active,
    .guides-index-main .guide-quick-action.is-active {
      border-color: #2563eb;
      background: #dbeafe;
      color: #1d4ed8;
      box-shadow: 0 0 0 2px rgba(37, 99, 235, .10);
    }

    .guide-featured-section {
      order: -27;
      margin: 0 0 24px;
    }
    .guide-featured-head {
      display: flex;
      align-items: end;
      justify-content: space-between;
      gap: 14px;
      margin-bottom: 12px;
    }
    .guide-featured-head h2 {
      margin: 0;
      color: #102a56;
      font-size: 1.15rem;
    }
    .guide-featured-head p {
      margin: 0;
      color: #64748b;
      font-size: .88rem;
    }
    .guide-featured-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 10px;
    }
    .guide-featured-link {
      display: grid;
      grid-template-columns: 42px minmax(0, 1fr);
      align-items: center;
      gap: 10px;
      min-height: 76px;
      padding: 12px;
      border: 1px solid rgba(96, 165, 250, .28);
      border-radius: 14px;
      background: linear-gradient(180deg, #fff, #f7fbff);
      color: #102a56;
      text-decoration: none;
      box-shadow: 0 5px 14px rgba(15, 79, 150, .05);
    }
    .guide-featured-link:hover,
    .guide-featured-link:focus-visible {
      transform: translateY(-2px);
      border-color: #60a5fa;
      box-shadow: 0 10px 20px rgba(15, 79, 150, .10);
      outline: none;
    }
    .guide-featured-icon {
      display: grid;
      place-items: center;
      width: 42px;
      height: 42px;
      border-radius: 12px;
      background: #eaf3ff;
      font-size: 1.35rem;
    }
    .guide-featured-copy strong,
    .guide-featured-copy span { display: block; }
    .guide-featured-copy strong { font-size: .96rem; }
    .guide-featured-copy span {
      margin-top: 3px;
      color: #64748b;
      font-size: .78rem;
      line-height: 1.35;
    }

    .guide-catalog-details {
      margin: 0 0 12px;
      border: 1px solid rgba(96, 165, 250, .25);
      border-radius: 15px;
      background: rgba(255, 255, 255, .94);
      overflow: clip;
      box-shadow: 0 6px 16px rgba(15, 79, 150, .05);
    }
    .guide-catalog-details[hidden] { display: none !important; }
    .guide-catalog-summary {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      min-height: 58px;
      padding: 14px 16px;
      color: #102a56;
      font-size: 1rem;
      font-weight: 850;
      cursor: pointer;
      list-style: none;
    }
    .guide-catalog-summary::-webkit-details-marker { display: none; }
    .guide-catalog-summary::after {
      content: '展開 ＋';
      flex: 0 0 auto;
      color: #2563eb;
      font-size: .8rem;
      font-weight: 800;
    }
    .guide-catalog-details[open] > .guide-catalog-summary::after { content: '收合 －'; }
    .guide-catalog-summary:hover { background: #f7fbff; }
    .guide-catalog-summary:focus-visible {
      outline: 3px solid rgba(37, 99, 235, .18);
      outline-offset: -3px;
    }
    .guide-catalog-count {
      margin-left: auto;
      padding: 4px 9px;
      border-radius: 999px;
      background: #eaf3ff;
      color: #245579;
      font-size: .75rem;
      font-weight: 800;
    }
    .guide-catalog-body {
      padding: 0 16px 16px;
    }
    .guide-catalog-body .category-title {
      margin-top: 8px;
    }
    .guide-catalog-details .guide-theme-entry { margin: 0; }
    .guide-catalog-details .guide-theme-entry + .guide-theme-entry {
      margin-top: 18px;
      padding-top: 4px;
      border-top: 1px dashed rgba(148, 163, 184, .34);
    }
    .guide-catalog-details .guide-theme-entry > .category-title {
      margin-top: 14px;
      font-size: 1.08rem;
    }
    .guide-catalog-details .guide-routes,
    .guide-catalog-details .guide-usage-flow-card { margin-top: 0; }

    body.guides-page.is-guide-searching .guide-featured-section,
    body.guides-page.is-guide-searching .guide-intent-panel,
    body.guides-page.is-guide-searching .guide-section-intro {
      display: none;
    }
    body.guides-page .guide-tip-bar { display: none; }
    body.guides-page { overflow-x: clip; }
    body.guides-page .bf-ad,
    body.guides-page ins.adsbygoogle {
      max-width: 100% !important;
      overflow: hidden !important;
    }
    body.guides-page div[id^="aswift_"][id$="_host"],
    body.guides-page iframe[id^="aswift_"] {
      max-width: 100% !important;
    }

    @media (max-width: 768px) {
      .guide-featured-head { align-items: flex-start; flex-direction: column; gap: 4px; }
      .guide-featured-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
      .guide-featured-link {
        grid-template-columns: 36px minmax(0, 1fr);
        min-height: 70px;
        padding: 10px;
      }
      .guide-featured-icon { width: 36px; height: 36px; font-size: 1.15rem; }
      .guide-featured-copy span { display: none; }
      .guide-catalog-summary { min-height: 54px; padding: 12px 14px; }
      .guide-catalog-body { padding: 0 12px 12px; }
      body.guides-page .line-float { display: none !important; }
      body.guides-page .bf-assistant {
        left: auto !important;
        right: 12px !important;
        bottom: 14px !important;
        max-width: calc(100vw - 24px) !important;
      }
      body.guides-page .bf-assistant-toggle {
        width: 48px;
        min-width: 48px;
        height: 48px;
        min-height: 48px;
        padding: 0;
        border-radius: 50%;
      }
      body.guides-page .bf-assistant-toggle-text { display: none; }
      body.guides-page .bf-assistant-panel {
        left: auto !important;
        right: 0 !important;
        bottom: 58px !important;
        width: calc(100vw - 24px) !important;
        max-width: 380px !important;
      }
      .guides-index-main { padding-bottom: 78px; }
    }
    @media (max-width: 430px) {
      .guide-featured-grid { grid-template-columns: 1fr; }
      .guide-featured-copy span { display: block; }
      .guides-index-main .guide-search-tags { gap: 6px; }
      .guides-index-main .guide-search-tag { flex: 1 1 calc(50% - 6px); }
    }
