*,
*::before,
*::after {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  line-height: 1.6;
  color: #000;
  background-color: #fff;
}

/* PAGE WRAP */
.page {
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 40px 80px;
}

/* HEADER */
.site-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  border-bottom: 1px solid #000;
  padding-bottom: 20px;
  margin-bottom: 40px;
}

.logo img {
  display: block;
  max-width: 180px;
  height: auto;
}

.site-nav {
  display: flex;
  gap: 18px;
  font-size: 13px;
  text-transform: lowercase;
}

.site-nav a {
  text-decoration: none;
  color: #000;
}

.site-nav a.is-active {
  text-decoration: underline;
}

/* HEADER OF NEWS SECTION */
.news-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 40px;
}

.news-header h1 {
  font-size: 26px;
  font-weight: 600;
  margin: 0;
  text-transform: lowercase;
}

.news-intro {
  margin: 0;
  max-width: 360px;
  font-size: 12px;
  text-align: right;
}

/* NEWS LIST */
.news-list {
  border-top: 1px solid #000;
}

.news-item {
  display: grid;
  grid-template-columns: minmax(260px, 330px) minmax(0, 1fr);
  gap: 40px;
  padding: 24px 0 26px;
  border-bottom: 1px solid #000;
}

.news-image img {
  display: block;
  width: 100%;
  height: auto;
}

/* RIGHT COLUMN */
.news-body {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
}

.news-meta {
  font-size: 11px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.news-year::after {
  content: " · ";
}

.news-title {
  font-size: 16px;
  font-weight: 600;
  margin: 4px 0 10px;
}

.news-caption {
  font-size: 13px;
  margin: 4px 0 10px;
}

/* LINKS */
.news-links {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
  margin-top: 4px;
  margin-bottom: 10px;
}

.news-links a {
  font-size: 12px;
  color: #000;
}

/* SUB ITEMS (여러 기사 묶음) */
.news-subitems {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 4px;
}

.news-subitem {
  font-size: 12px;
}

.news-subtitle {
  margin-bottom: 2px;
}

/* FOOTER */
.site-footer {
  margin-top: 60px;
  border-top: 1px solid #000;
  padding-top: 20px;
  font-size: 11px;
  text-align: right;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .page {
    padding: 24px 16px 56px;
  }

  .site-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .site-nav {
    justify-content: flex-start;
  }

  .news-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .news-intro {
    text-align: left;
    max-width: none;
  }

  .news-item {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .news-body {
    align-items: flex-start;
    text-align: left;
  }

  .site-footer {
    text-align: left;
  }
}

/* 페이지 전체 좌우 여백 */
.content {
  max-width: 900px;
  margin: 100px auto 0;
  padding: 0 40px;
}

/* 화면이 작아질 때 반응형 처리 */
@media (max-width: 768px) {
  .content {
    margin-top: 60px;
    padding: 0 20px;
  }
}
.news-list .news-item:last-child {
  border-bottom: none;
}


/* NEWS 페이지 링크 기본 상태: 밑줄 없음 */
.news-links a,
.news-subitem a {
  text-decoration: none;
}

/* hover 시: 모두 밑줄 표시 (publication + article 둘 다) */
.news-links a:hover,
.news-subitem a:hover {
  text-decoration: underline;
  text-underline-offset: 2px;
}