/**
 * 商品カテゴリページ ヘッダー（見出し＋画像）
 */

.tbt-cat-header {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 0 24px;
  border-bottom: 2px solid var(--wp--preset--color--kachiiro, #181b39);
  margin-bottom: 24px;
}

.tbt-cat-header__image-wrap {
  flex: 0 0 auto;
}

.tbt-cat-header__img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 8px;
  display: block;
}

.tbt-cat-header__body {
  flex: 1 1 auto;
}

.tbt-cat-header__title {
  font-size: clamp(1.2rem, 3vw, 1.6rem);
  font-weight: bold;
  margin: 0 0 6px;
  color: var(--wp--preset--color--kachiiro, #181b39);
  line-height: 1.3;
}

.tbt-cat-header__desc {
  font-size: 0.85rem;
  color: #666;
  margin: 0;
  line-height: 1.6;
}

/* モバイル（781px以下） */
@media (max-width: 781px) {
  .tbt-cat-header {
    gap: 14px;
    padding: 14px 0 18px;
    margin-bottom: 16px;
  }

  .tbt-cat-header__img {
    width: 72px;
    height: 72px;
    border-radius: 6px;
  }

  .tbt-cat-header__title {
    font-size: 1.1rem;
  }
}
