body { margin: 0; background: #fff; color: #222; }
body header { background: rgba(0,0,0,0.7); }

/* 목록 */
.eso-news-section { padding: 18rem 4rem 10rem; min-height: 100vh; }
.eso-news-inner { max-width: 1440px; margin: 0 auto; }
.eso-news-heading { font-size: 4.8rem; font-weight: 600; font-family: var(--font-en); color: #222; margin: 0 0 6rem; text-align: center; }
.eso-news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2.4rem; }
.eso-news-card { display: block; text-decoration: none; color: inherit; background: none; overflow: hidden; transition: transform 0.25s ease; }
.eso-news-card:hover { transform: translateY(-4px); }
.eso-news-thumb { width: 100%; aspect-ratio: 16 / 10; overflow: hidden; border-radius: 12px; }
.eso-news-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.4s ease; }
.eso-news-card:hover .eso-news-thumb img { transform: none; }
.eso-news-info { padding: 1.8rem 0 2rem; }
.eso-news-card-title { font-size: clamp(1.8rem, 2.1vw, 2.4rem); font-weight: 600; line-height: 1.4; color: #222; margin-bottom: 0.6rem; }
.eso-news-card-sub { font-size: clamp(1.6rem, 1.7vw, 1.8rem); color: #888; line-height: 1.5; margin-bottom: 0.8rem;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.eso-news-card-link { font-size: 1.3rem; color: #aaa; margin-top: 0.4rem; }
.eso-news-empty { color: #999; font-size: 1.6rem; text-align: center; margin-top: 8rem; }

/* 상세 */
.eso-news-view-section { padding: 18rem 2rem 10rem; min-height: 100vh; }
.eso-news-view-inner { max-width: 800px; margin: 0 auto; }
.eso-news-view-back a { color: #888; font-size: 1.5rem; text-decoration: none; display: inline-block; margin-bottom: 3rem; }
.eso-news-view-back a:hover { color: #000; }
.eso-news-view-back-bottom { margin-top: 5rem; }
.eso-news-view-title { font-size: 3.6rem; font-weight: 700; line-height: 1.3; color: #222; margin: 0 0 1.2rem; }
.eso-news-view-sub { font-size: 1.8rem; color: #888; margin: 0 0 3.6rem; line-height: 1.5; }
.eso-news-view-thumb { width: 100%; border-radius: 12px; overflow: hidden; margin-bottom: 4rem; }
.eso-news-view-thumb img { width: 100%; display: block; }
.eso-news-view-content { font-size: 1.6rem; color: #444; line-height: 1.8; }
.eso-news-view-content img { max-width: 100%; border-radius: 8px; margin: 1rem 0; }
.eso-news-view-content a { color: #666; }

@media (max-width: 1024px) {
  .eso-news-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
}
@media (max-width: 768px) {
  .eso-news-section { padding: 14rem 2.4rem 8rem; }
  .eso-news-heading { font-size: 3.2rem; }
  .eso-news-view-title { font-size: 2.6rem; }
}
@media (max-width: 480px) {
  .eso-news-section { padding: 9rem 2rem 4rem; }
  .eso-news-grid { grid-template-columns: 1fr; gap: 1.6rem; }
}
