/* ============================
   ラシーヌラボ NEWコーナー
   （news-topview.php 用）
   ============================ */

.rl-news-section {
  background: #f9f5ee;
  padding: 20px 20px 10px;
}

.rl-news-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.rl-news-header {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 10px;
}

.rl-news-label {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #a48362;
}

.rl-news-heading {
  margin: 0;
  padding-left: 12px;
  border-left: 4px solid #a48362;
  font-size: 20px;
  font-weight: 700;
  color: #3b2b1c;
}

/* 一覧部分 */
.rl-news-list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid #e0d6c8;
}

.rl-news-item {
  border-bottom: 1px solid #e0d6c8;
}

.rl-news-item-link {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 6px 4px;
  text-decoration: none;
  color: #333;
  transition: background 0.2s ease, transform 0.1s ease;
}

.rl-news-item-link:hover {
  background: rgba(164, 131, 98, 0.06);
  transform: translateY(-1px);
}

.rl-news-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: #666;
}

.rl-news-date {
  font-family: "Noto Sans JP","Hiragino Kaku Gothic ProN",
               "Hiragino Sans","Yu Gothic Medium","Yu Gothic",Meiryo,sans-serif;
}

.rl-news-cat {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 999px;
  border: 1px solid #a48362;
  font-size: 11px;
  color: #a48362;
  background: #fff;
}

.rl-news-title {
  font-size: 14px;
  line-height: 1.6;
  margin: 0; 
}

/* フッター（一覧ボタン） */
.rl-news-footer {
  margin-top: 4px;            /* 上余白 少なめ */
  text-align: right;
}

.rl-news-archive-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 160px;
  padding: 6px 14px;
  font-size: 13px;
  text-decoration: none;
  border-radius: 999px;
  border: 1px solid #a48362;
  color: #fff;
  background: #a48362;
  letter-spacing: 0.05em;
  transition: background 0.2s ease, color 0.2s ease, transform 0.1s ease;
}

.rl-news-archive-btn:hover {
  background: #c59a6b;
  border-color: #c59a6b;
  transform: translateY(-1px);
}

/* スマホ調整 */
@media (max-width: 767px) {
  .rl-news-section {
    padding: 20px 15px 10px;
  }
  .rl-news-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
}
