/* 
 * ニュース投稿一覧（別ページ対応用）
 */

.styled-news-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.styled-news-item {
  display: flex;
  align-items: flex-start;
  border-bottom: 1px solid #eee;
  padding-bottom: 20px;
}
.news-thumb {
  width: 160px;
  height: 106px;
  overflow: hidden;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  flex-shrink: 0;
  margin-right: 20px;
}

.news-thumb img {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  display: block !important;
}
.news-thumb:hover {
  opacity:0.8 !important;
}
.news-content-area {
  flex-grow: 1;
}
.news-meta {
  font-size: 0.8rem;
  color: #888;
  margin-bottom: 14px;
}
.news-title a {
  font-size: 16px;
  color: #000 !important;
  line-height: 1.5;
}
.news-title a:hover {
  color: #45a6d6 !important;
}
.news-pagination {
  margin-top: 40px;
  text-align: center;
}
.news-pagination .page-numbers {
  display: inline-block;
  padding: 8px 12px;
  margin: 0 4px;
  border: 1px solid #ccc;
  text-decoration: none;
  color: #293335;
  font-size: 14px;
  border-radius: 4px;
  cursor: pointer;
}
.news-pagination .current {
  background-color: #293335;
  color: #fff;
  border-color: #293335;
}

/* スマホの時のレイアウト調整 */
@media screen and (max-width: 768px) {
  .news-thumb {
    width: 120px;
    height: 80px;
    margin-right: 16px;
  }
  .news-title a {
    font-size: 14px;
  }
}