/* news/detail.html 専用スタイル */
.column-detail__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  font-size: 14px;
}
.column-detail__date {
  color: #1A73E8;
  font-weight: 500;
}
.column-detail__tag {
  display: inline-block;
  background: #1967D2;
  color: #fff;
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
}

/* お知らせ詳細：入社式など 1 ブロック内改行で段落風に見せる（p 間の余白をなくす） */
.column-detail__body--news-compact p {
  margin: 0;
  line-height: 1.85;
}

/* お知らせ詳細：求人ページへのインラインリンク */
a.column-detail__body-news-link {
  color: #1967d2;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}
a.column-detail__body-news-link:hover {
  opacity: 0.85;
}
