/* ===== 横長カード2枚のレイアウト ===== */
.rel-wrap{
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 18px;
  margin-top: 4px; /* 🟦 見出しとの余白を少し詰めた */
}

/* 各カード */
.rel-card{
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 20px;
  align-items: center;
  background: #f8fafc;
  border-radius: 14px;
  padding: 18px;
  position: relative;
  overflow: hidden;
  text-decoration: none;
}

/* サムネイル */
.rel-thumb{
  width: 220px;
  height: 140px;
  overflow: hidden;
  border-radius: 10px;
}
.rel-thumb img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.rel-thumb__ph{
  width: 100%; height: 100%;
  display: grid; place-items: center;
  background: #e9eef4; color:#6b7280;
  font-size: 12px; border-radius: 10px;
}

/* テキスト */
.rel-post-title{
  margin: 0 0 6px;
  font-size: 20px; line-height: 1.35; color:#111827;
}
.rel-excerpt{
  margin: 0;
  font-size: 14px; color:#4b5563; line-height: 1.6;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}

/* 💠 リボン（ブランドカラーに変更） */
.rel-ribbon{
  position: absolute; right: -54px; top: 18px;
  transform: rotate(45deg);
  background: #00a0e9; /* ← ブランドカラー（AI Media Plus ブルー） */
  color:#fff;
  font-size: 12px; padding: 6px 80px;
  letter-spacing: .3px;
  opacity: .95;
}

/* 色バリエーション（任意） */
.rel-card--pink  { background:#fff5f7; }
.rel-card--mint  { background:#ecfdf5; }

/* 📱 モバイル調整 */
@media (max-width: 720px){
  .rel-wrap{
    grid-template-columns: 1fr;
    row-gap: 14px;
  }
  .rel-card{
    grid-template-columns: 1fr; /* 📱 サムネイルを上、テキストを下に */
    gap: 10px;
    padding: 14px;
    border-radius: 12px;
    width: 100%; /* ← スマホで100%表示に */
  }
  .rel-thumb{
    width: 100%;
    height: 180px;
    border-radius: 8px;
  }
  .rel-post-title{
    font-size: 17px;
  }
  .rel-excerpt{
    font-size: 13px;
  }
  .rel-ribbon{
    display: none; /* モバイルではリボン非表示（任意） */
  }
}