@layer tmc-components {
  .camp-guides-page{
    background: var(--bg, #ffffff);
  }

  .camp-guides-sidebar{
    display: none;
    position: sticky;
    top: calc(var(--topbar-height, 72px) + 18px);
    max-height: calc(100vh - var(--topbar-height, 72px) - 34px);
    overflow: auto;
    width: 100%;
    padding: 14px;
    border: 1px solid rgba(0,0,0,0.045);
    border-radius: 0;
    background: rgba(241,244,249,0.58);
    box-shadow: none;
    font-family: var(--font-body, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif);
    text-align: left;
  }

  .camp-guides-sidebar h2{
    margin: 0 0 10px;
    color: var(--text, #111111);
    font-family: var(--font-body, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif);
    font-size: 1.1rem;
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: 0;
    text-transform: none;
  }

  .camp-guides-sidebar .catalogue-toc + h2{
    margin-top: 18px;
    padding-top: 14px;
    border-top: 1px solid var(--line, #e5e1da);
  }

  .camp-guides .catalogue-intro h1{
    max-width: 14ch;
  }

  .camp-guide-article .camp-guides .catalogue-intro h1{
    max-width: 20ch;
  }

  .camp-guides .catalogue-intro p{
    max-width: 76ch;
  }

  .camp-guide-breadcrumb{
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    color: var(--muted, #3d3d3d);
    font-size: 0.9rem;
    font-weight: 600;
    line-height: 1.3;
  }

  .camp-guide-breadcrumb a{
    color: inherit;
  }

  .camp-guide-card-list{
    display: grid;
    gap: 16px;
    margin-top: 8px;
  }

  .camp-guides .catalogue-card-title{
    margin: 0 0 8px 0;
    color: var(--text, #111111);
    font-family: var(--font-body, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif);
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: 0;
    text-transform: none;
  }

  .camp-guides .catalogue-card ul{
    display: grid;
    gap: 8px;
    margin: 0 0 8px 0;
    padding-left: 1.1rem;
    color: var(--muted, #3d3d3d);
    font-size: 20px;
    line-height: 1.6;
  }

  .camp-guides .catalogue-card li{
    padding-left: 4px;
  }

  .camp-guide-meta{
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 4px;
  }

  .camp-guide-figure{
    margin: 0;
    overflow: hidden;
    border: 1px solid var(--line, #e5e1da);
    border-radius: 8px;
    background: #ffffff;
  }

  .camp-guide-figure img{
    display: block;
    width: 100%;
    height: auto;
  }

  .camp-guide-figure figcaption{
    padding: 10px 12px;
    color: var(--muted, #3d3d3d);
    font-size: 0.86rem;
    line-height: 1.35;
  }

  .camp-guide-pill{
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 6px 12px;
    border-radius: 999px;
    background: #f7f8fb;
    color: var(--text, #111111);
    font-size: 0.92rem;
    font-weight: 700;
    line-height: 1.2;
  }

  .camp-guide-links{
    display: grid;
    gap: 10px;
    margin-top: 4px;
  }

  .camp-guide-links a{
    color: #0f3675;
    font-weight: 700;
  }

  .camp-disclosure{
    border-left: 4px solid var(--gold, #f0b43a);
    background: #fff8e8;
    padding: 14px 16px;
    color: var(--text, #111111);
    font-weight: 700;
  }

  .camp-guide-next-step{
    margin-top: 8px;
  }

  @media (min-width: 1024px){
    .camp-guides-sidebar{
      display: block;
      top: calc(var(--topbar-height, 72px) + 24px);
      max-height: calc(100vh - var(--topbar-height, 72px) - 48px);
      justify-self: start;
    }
  }

  @media (max-width: 640px){
    .camp-guides .catalogue-intro h1{
      max-width: 100%;
    }

    .camp-guides .catalogue-card ul{
      font-size: 18px;
    }
  }
}
