/* =========================================================
  categories.css

  公開側カテゴリー一覧ページ
  01. ヒーロー
  02. カテゴリーグリッド
  03. カテゴリーカード
  04. 子カテゴリーリンク
  05. スマホ対応
========================================================= */


/* =========================================================
  01. ヒーロー
========================================================= */

.category-list-hero {
  max-width: 900px;
}

.category-list-hero h1 {
  margin: 0 0 14px;
  font-size: 34px;
  line-height: 1.4;
}

.category-list-hero p {
  margin: 0;
  color: #555;
}


/* =========================================================
  02. カテゴリーグリッド
========================================================= */

.public-category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}


/* =========================================================
  03. カテゴリーカード
========================================================= */

.public-category-card {
  background: #fff;
}

.public-category-card > a {
  display: block;
}

.public-category-card__image {
  aspect-ratio: 1 / 1;
  background: #f5f5f5;
  overflow: hidden;
}

.public-category-card__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.public-category-card__body {
  padding: 14px 0 0;
}

.public-category-card__body h2 {
  margin: 0 0 8px;
  font-size: 20px;
  line-height: 1.5;
}

.public-category-card__body p {
  margin: 0;
  color: #555;
  font-size: 14px;
}


/* =========================================================
  04. 子カテゴリーリンク
========================================================= */

.public-category-children {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.public-category-children a {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 5px 12px;
  border-radius: 999px;
  background: #f5f5f5;
  color: #333;
  font-size: 13px;
  font-weight: 700;
}

.public-category-children a:hover {
  background: #111;
  color: #fff;
}


/* =========================================================
  05. スマホ対応
========================================================= */

@media (max-width: 900px) {
  .public-category-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
  }
}

@media (max-width: 520px) {
  .category-list-hero h1 {
    font-size: 28px;
  }

  .public-category-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .public-category-card__body h2 {
    font-size: 16px;
  }

  .public-category-card__body p {
    font-size: 13px;
  }
}