  .klondike-guide-large {
    background: transparent;
    max-width: 900px;
    margin: 40px auto;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    color: #444;
  }

  .klondike-guide-large h2 {
    margin: 0 0 26px;
    text-align: center;
    font-size: 1.9rem;
    line-height: 1.2;
    font-weight: 650;
    color: #111;
    letter-spacing: -0.02em;
  }

  .kgl-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px 40px;
    padding-top: 8px;
  }

  .kgl-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
  }

  .kgl-icon {
    width: 30px;
    height: 30px;
    flex-shrink: 0;
    stroke: #111;
    fill: none;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
    margin-top: 2px;
    opacity: 0.92;
  }

  .kgl-text-box {
    display: flex;
    flex-direction: column;
  }

  .kgl-text-box strong {
    font-size: 1.12rem;
    color: #111;
    margin-bottom: 6px;
    font-weight: 600;
    line-height: 1.25;
  }

  .kgl-text {
    font-size: 1.02rem;
    line-height: 1.58;
    color: #444;
  }

  .suit-red { color: #c94b47; font-weight: 600; }
  .suit-black { color: #111; font-weight: 600; }

  @media (max-width: 600px) {
    .klondike-guide-large {
      margin: 28px auto;
    }

    .klondike-guide-large h2 {
      font-size: 1.55rem;
      margin-bottom: 20px;
    }

    .kgl-grid {
      gap: 24px;
      grid-template-columns: 1fr;
    }

    .kgl-text-box strong {
      font-size: 1.04rem;
    }

    .kgl-text {
      font-size: 0.98rem;
    }
  }
