/* ─── お知らせ／フォントマガジン 共通の一覧セクション（参考サイトNEWSセクションの表現を踏襲） ─── */
.news-feed-section {
  padding: 60px 15px;
  background: var(--color-black);
}

@media (min-width: 768px) {
  .news-feed-section {
    padding: 60px 45px;
  }
}

.news-feed-container {
  max-width: 900px;
  margin: 0 auto;
}

.news-feed-list {
  margin: 0 auto 40px;
  border-bottom: 1px solid #666;
}

.news-feed-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 15px 20px;
  border-top: 1px solid #666;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.3s ease;
}

.news-feed-item:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-6px);
}

.news-feed-date {
  flex-shrink: 0;
  width: 80px;
  font-size: 14px;
  color: #89939f;
}

.news-feed-tag {
  flex-shrink: 0;
  width: 130px;
  text-align: center;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 11px;
  color: #ccc;
  background: rgba(255, 255, 255, 0.08);
  padding: 3px 10px;
  border-radius: var(--radius-s);	/*4px;*/
}

.news-feed-title {
  flex: 1;
  font-size: 16px;
  color: var(--color-white);
}

.news-feed-icon {
  flex-shrink: 0;
  font-size: 16px;
  color: #c0cce0;
}

.news-feed-empty {
  padding: 24px 20px;
  text-align: center;
  color: #89939f;
  font-size: 14px;
}

@media (max-width: 640px) {
  .news-feed-item {
    flex-wrap: wrap;
  }

  .news-feed-title {
    flex-basis: 100%;
    width: 100%;
    order: 3;
  }
}

/* ─── お知らせ一覧ページ（TOPページのNEWSセクションと同じ黒背景・罫線区切りの表現。幅は.article-mainの1200pxを継承） ─── */
.news-list-feed {
  border-bottom: 1px solid #666;
}

.news-list-item {
  display: block;
  padding: 24px 4px;
  border-top: 1px solid #666;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.3s ease;
}

.news-list-item:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-6px);
}

.news-list-item-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.news-list-item-meta time {
  font-size: 14px;
  color: #89939f;
}

.news-list-item-tag {
  font-size: 11px;
  color: #ccc;
  background: rgba(255, 255, 255, 0.08);
  padding: 3px 10px;
  border-radius: var(--radius-s);	/*4px;*/
}

.news-list-item-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--color-white);
  margin-bottom: 8px;
  line-height: 1.5;
}

.news-list-item-excerpt {
  font-size: 14px;
  color: #ccc;
  line-height: 1.7;
}
