/* News Simple - 4칼럼 그리드, 좌측 여백 없음 */
.news-simple-page {
  min-height: 100vh;
  background: var(--color-background);
  position: relative;
}

.news-simple-root {
  position: relative;
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
}

.news-simple-container {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: calc(var(--space-8) + 3rem) 3rem 3rem;
  margin: 0;
}

.news-simple-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem;
  width: 100%;
  max-width: 100%;
}

.news-simple-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.news-simple-link {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  text-decoration: none;
  color: inherit;
}

.news-simple-thumbnail {
  width: 100%;
  aspect-ratio: 3/4;
  position: relative;
  overflow: hidden;
  border: none;
  flex-shrink: 0;
}

.news-simple-title {
  margin: 0;
  font-size: var(--mm-font-size-3, 0.875rem);
  font-weight: 500;
  line-height: 1.4;
  color: inherit;
}

.news-simple-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.news-simple-item:hover .news-simple-thumbnail img {
  transform: scale(1.05);
}

/* 반응형 */
@media (max-width: 1200px) {
  .news-simple-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .news-simple-container {
    padding: var(--header-height) 1rem 8rem;
  }

  .news-simple-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.25rem;
  }
}
