/* =============================
   背景1つの外枠
============================= */
.rlm-wrapper {
  background: #fff7e6;
  border-radius: 8px;
  padding: 16px 18px;
  margin-top: 30px;
}

/* -----------------------------
   「関連記事」ラベル
----------------------------- */
.rlm-header {
  background: #ff811a;
  color: #fff;
  padding: 4px 12px;
  border-radius: 14px;
  font-size: 14px;
  font-weight: bold;
  display: inline-block;
  margin-bottom: 10px;
}

/* -----------------------------
   複数リンクの一覧
----------------------------- */
.rlm-items {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

/* -----------------------------
   個別リンク
----------------------------- */
/* 個別リンク（先頭に中黒を追加） */
.rlm-item {
  position: relative;
  padding-left: 1em; /* 左に余白 */
  color: #333;
  text-decoration: none;
  font-weight: 600;
  line-height: 1.4;
}

.rlm-item::before {
  content: "・";
  position: absolute;
  left: 0;
  top: 0;
}


.rlm-item:hover {
  text-decoration: underline;
}

/* =============================
   スマホ対応
============================= */
@media (max-width: 600px) {
  .rlm-wrapper {
    padding: 14px 16px;
  }
  .rlm-header {
    font-size: 12px;
  }
  .rlm-items {
    gap: 8px;
  }
  .rlm-item {
    font-size: 14px;
  }
}
