/* assets/css/components/footer.css
   CryptoDepth footer layout
   依存: base.css の変数（--cd-bg, --cd-fg, --cd-muted, --cd-accent など）
===================================================== */
@layer comp {

  .site-footer{
    border-top: 1px solid rgba(255,255,255,.08);
    background: #0b1016; /* サイト全体のBGトーンに合わせる */
  }

  /* コンテナ：中央寄せ＋フレックスレイアウト */
  .footer-inner{
    max-width: min(1200px, 96vw);
    margin-inline: auto;
    padding: 18px clamp(12px, 3vw, 24px) 22px;

    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  /* メニュー */
  .footer-nav{
    margin: 0;
    text-align: center;
  }

  .footer-menu{
    list-style: none;
    margin: 0;
    padding: 0;

    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px 18px;

    font-size: .85rem;
    color: var(--cd-muted);
  }

  .footer-menu li{
    display: inline-flex;
  }

  .footer-menu a{
    text-decoration: none;
    color: var(--cd-muted);
    letter-spacing: .03em;
  }

  .footer-menu a:hover{
    text-decoration: underline;
    color: var(--cd-accent);
  }

  /* コピーライト */
  .site-copyright,
  .site-footer .creds{
    margin: 0;
    padding: 0;

    text-align: center;
    font-size: .8rem;
    color: var(--cd-muted);
    opacity: .85;
  }

  /* ===== PC幅（横並びレイアウト） ===== */
  @media (min-width: 768px){
    .footer-inner{
      flex-direction: row;
      justify-content: space-between;
      align-items: center;
      gap: 16px;
    }

    .footer-nav{
      text-align: left;
    }

    .site-copyright,
    .site-footer .creds{
      text-align: right;
    }
  }

}
