/* =========================
   BREEDING STRATEGY HUB
   ========================= */

/* ===== 現在地 ===== */
.page-context {
  font-size: 0.85rem;
  color: #9ca3af;
  text-align: center;
  margin: 24px 0 12px;
  letter-spacing: 0.08em;
}

/* ===== ゲート全体 ===== */
.breeding-gateway {
  margin: 48px 0;
  padding: 56px 0;
  background: rgba(11, 15, 26, 0.05); /* INDEXとの差別化 */
}

.breeding-inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== 宣言文 ===== */
.breeding-gateway h2 {
  text-align: center;
  margin-bottom: 16px;
}

.breeding-gateway p {
  text-align: center;
  line-height: 1.9;
  color: #374151;
}

/* ===== 配合戦略エントリー（共通） ===== */
.bl-entry {
  display: flex;
  align-items: center;
  gap: 18px;

  max-width: 480px;          /* ← 追加 */
  margin: 24px auto 0;      /* ← 中央寄せ */

  padding: 26px 28px;

  background: rgba(11, 15, 26, 0.88);
  border-radius: 10px;
  border: 1px solid transparent;

  justify-content: center;
  text-align: center;

  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.bl-entry-text {
  text-align: center;
}

.bl-entry:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(0,0,0,0.35);
}

/* 馬アイコン */
.bl-entry-icon {
  width: 64px;
  height: auto;
  flex-shrink: 0;
}

/* テキスト */
.bl-entry-text h3 {
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  margin-bottom: 6px;
}

.bl-entry-text p {
  font-size: 0.9rem;
  color: #cbd5f5;
  opacity: 0.85;
}

/* ===== 金馬：主導線 ===== */
.bl-entry-gold {
  border-color: #d4af37;
}

.bl-entry-gold h3 {
  background: linear-gradient(90deg, #d4af37, #f5e7a3, #d4af37);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ===== 銀馬：補助導線 ===== */
.bl-entry-silver {
  border-color: #bfc4cc;
}

.bl-entry-silver h3 {
  color: #e5e7eb;
}

/* ===== レスポンシブ ===== */
@media (max-width: 640px) {
  .bl-entry {
    flex-direction: column;
    text-align: center;
    margin: 32px auto; /* 上下の間隔を大きめに */
    padding: 28px;     /* 触れやすさを強化 */
  }
}
