/**
 * CM17 お知らせ詳細画面専用スタイル
 */

/* お知らせ詳細情報 */
.newsDetailInfo {
  background: #f8f9fa;
  border: 1px solid #dee2e6;
  border-radius: 4px;
  padding: 1.25rem;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.75rem 1.5rem;
}

.newsDetailInfo dt {
  font-weight: bold;
  color: #2c3e50;
}

.newsDetailInfo dd {
  margin: 0;
  color: #444;
}

/* 添付画像 */
.cm-news-images {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 1rem;
}

.cm-news-image-item {
  text-align: center;
}

.cm-news-image-title {
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  color: #555;
}

.cm-news-image-item a {
  display: block;
  text-decoration: none;
  transition: transform 0.2s;
}

.cm-news-image-item a:hover {
  transform: scale(1.05);
}

.cm-news-image-item img {
  max-width: 200px;
  max-height: 200px;
  border: 1px solid #dee2e6;
  border-radius: 4px;
  cursor: pointer;
  display: block;
}

/* 添付ファイル */
.cm-news-files {
  margin-top: 0.5rem;
}

.cm-news-file-item {
  margin-bottom: 0.5rem;
  padding: 0.625rem;
  background: #f8f9fa;
  border-radius: 4px;
}

.cm-news-file-item a {
  color: #3498db;
  text-decoration: underline;
}
