.guides-wrap {
      flex: 1 0 auto;
      width: 100%;
      max-width: 900px;
      margin: 0 auto;
      padding: 2.5rem 1.5rem 3rem;
      box-sizing: border-box;
    }
    .guides-crumbs {
      display: flex;
      align-items: center;
      gap: 0.45rem;
      margin-bottom: 0.5rem;
      color: var(--color-text-muted);
      font-size: 0.8rem;
    }
    .guides-crumbs a {
      color: var(--color-text-muted);
      text-decoration: none;
    }
    .guides-crumbs a:hover { color: var(--color-text); }
    .guides-crumbs i { font-size: 0.65rem; opacity: 0.55; }

    .guides-head {
      padding-bottom: 0.75rem;
      margin-bottom: 2rem;
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    .guides-kicker {
      margin: 0 0 0.5rem;
      color: var(--color-text-muted);
      font-size: 0.72rem;
      font-weight: 750;
      letter-spacing: 0.12em;
      text-transform: uppercase;
    }
    .guides-title {
      margin: 0;
      color: #ffffff;
      font-family: var(--font-display);
      font-size: clamp(2.1rem, 5vw, 3.2rem);
      font-weight: 650;
      line-height: 1.05;
      letter-spacing: 0;
    }
    .guides-subtitle {
      margin: 0.9rem 0 0;
      color: var(--color-text-muted);
      font-size: 0.95rem;
      line-height: 1.65;
    }

    .guide-grid {
      display: grid;
      gap: 1.25rem;
    }
    .guide-card {
      display: flex;
      flex-direction: column;
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 0.25rem;
      background: var(--color-bg-elevated);
      padding: 1.5rem 1.35rem 1.35rem;
    }
    .guide-card-head {
      display: flex;
      align-items: center;
      margin-bottom: 0.85rem;
    }
    .guide-card h2 {
      margin: 0;
      color: var(--color-text);
      font-size: 1.15rem;
      font-weight: 600;
      line-height: 1.2;
      letter-spacing: -0.01em;
    }
    .guide-card p {
      margin: 0;
      color: var(--color-text-muted);
      font-size: 0.88rem;
      line-height: 1.6;
    }
    .guide-card p + p { margin-top: 0.75rem; }
    .guide-list {
      display: grid;
      gap: 0.82rem;
      margin: 1.1rem 0 0;
      padding: 0;
      list-style: none;
    }
    .guide-list li {
      position: relative;
      padding-left: 1.05rem;
      color: rgba(255, 255, 255, 0.86);
      font-size: 0.86rem;
      line-height: 1.6;
    }
    .guide-list li::before {
      content: "";
      position: absolute;
      left: 0;
      top: 0.7em;
      width: 0.32rem;
      height: 0.32rem;
      border-radius: 999px;
      background: var(--color-icon);
    }
    .guide-list li > i {
      display: none;
    }
    .path-note {
      display: block;
      margin-top: 0.38rem;
      padding: 0.42rem 0.55rem;
      border-radius: 0.25rem;
      border: 1px solid rgba(255, 255, 255, 0.1);
      background: rgba(255, 255, 255, 0.04);
      color: rgba(255, 255, 255, 0.76);
      font-family: var(--font-mono);
      font-size: 0.78rem;
      line-height: 1.45;
      overflow-wrap: anywhere;
    }
    .path-helper {
      display: block;
      margin-top: 0.35rem;
      color: var(--color-text-muted);
      font-size: 0.8rem;
      line-height: 1.45;
    }
    .guide-note {
      display: flex;
      gap: 0.6rem;
      margin-top: 1.15rem;
      padding: 0.88rem 1rem;
      border-radius: 0.25rem;
      border: 1px solid rgba(98, 108, 255, 0.22);
      background: rgba(98, 108, 255, 0.08);
      color: rgba(255, 255, 255, 0.84);
      font-size: 0.86rem;
      line-height: 1.55;
    }
    .guide-note i {
      color: var(--color-icon);
      margin-top: 0.22rem;
      flex: 0 0 auto;
    }
    .guide-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 0.6rem;
      margin-top: 1.25rem;
    }
    .guide-button {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 0.5rem;
      min-height: 2.65rem;
      padding: 0 1rem;
      border: 1px solid #626cff;
      border-radius: 0.25rem;
      background: rgba(98, 108, 255, 0.28);
      color: #dfe1ff;
      font-size: 0.88rem;
      font-weight: 800;
      text-decoration: none;
      transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
    }
    .guide-button:hover {
      transform: translateY(-2px);
      background: rgba(98, 108, 255, 0.38);
      border-color: #9da3ff;
      color: #ffffff;
      box-shadow: none;
    }
    .guide-button.secondary {
      border-color: rgba(255, 255, 255, 0.14);
      background: rgba(255, 255, 255, 0.045);
      color: rgba(255, 255, 255, 0.82);
      box-shadow: none;
    }
    .guide-button.secondary:hover {
      box-shadow: none;
    }

    @media (max-width: 640px) {
      .guides-wrap { padding: 1.5rem 1rem 2.5rem; }
      .guide-card { padding: 1.1rem; }
      .guide-actions { flex-direction: column; }
      .guide-button { width: 100%; }
    }
