/* 뉴스 하단 위젯 전용 스타일 */
.news-bottom {
  --gap: 12px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr)); /* 모바일: 2열 */
  gap: var(--gap);
  padding: 16px 0;
}
@media (min-width: 900px) {
  .news-bottom { 
   max-width: 760px;   /* ✅ 원하는 최대 너비 */
   margin-left: auto;  /* 중앙 정렬 */
   margin-right: auto;
   grid-template-columns: repeat(4, 1fr); } /* PC: 4열 */
}

.news-card {
  display: block;
  text-decoration: none;
  color: inherit;
}

.news-thumb {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  border-radius: 10px;
  background: #ddd;
  display: block;
}

.news-title {
  margin-top: 8px;
  font-size: 14px;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;     /* 두 줄 말줄임 */
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* (선택) 다크 모드 텍스트 대비 */
html.dark .news-title { color: #e9eef7; }
