@charset "utf-8";

/* [1] 기본 리셋 및 시스템 폰트 스택 (네트워크 폰트 로딩 0ms) */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Apple SD Gothic Neo", "Pretendard Variable", "Pretendard", "Malgun Gothic", "맑은 고딕", sans-serif;
  line-height: 1.65;
  color: #1a1a1a;
  background-color: #ffffff;
  word-break: keep-all;
  overflow-wrap: break-word;
  -webkit-font-smoothing: antialiased;
}

/* [2] 레이아웃 컨테이너 */
.wrap {
  width: 100%;
  max-width: 740px;
  margin: 0 auto;
  padding: 0 20px;
}

/* [3] 헤더 */
.site-header {
  border-bottom: 1px solid #eeeeee;
  background: #ffffff;
  position: sticky;
  top: 0;
  z-index: 10;
}

.header-inner {
  height: 60px;
  display: flex;
  align-items: center;
}

.logo {
  font-size: 1.25rem;
  font-weight: 800;
  color: #111111;
  text-decoration: none;
  letter-spacing: -0.5px;
}

/* [4] 히어로 섹션 */
.hero {
  padding: 40px 0 24px 0;
}

.hero-title {
  font-size: 1.6rem;
  font-weight: 700;
  color: #111111;
  letter-spacing: -0.5px;
  margin-bottom: 8px;
}

.hero-desc {
  font-size: 1rem;
  color: #666666;
  line-height: 1.5;
}

/* [5] 콘텐츠 리스트 */
.content-section {
  padding-bottom: 60px;
}

.section-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: #222222;
  margin-bottom: 16px;
  border-bottom: 2px solid #111111;
  padding-bottom: 8px;
}

.post-list {
  display: flex;
  flex-direction: column;
}

.post-item {
  display: block;
  text-decoration: none;
  padding: 18px 0;
  border-bottom: 1px solid #f0f0f0;
  transition: background-color 0.15s ease;
}

.post-item:active {
  background-color: #fafafa;
}

.post-title {
  font-size: 1.15rem;
  font-weight: 600;
  color: #111111;
  margin-bottom: 6px;
  line-height: 1.4;
  letter-spacing: -0.3px;
}

.post-item:hover .post-title {
  color: #0056b3;
}

.post-summary {
  font-size: 0.95rem;
  color: #555555;
  line-height: 1.5;
  margin-bottom: 8px;
}

/* [6] 분류 태그 스타일 (전쟁, 문명, 인물, 미스터리, 과학, 우주) */
.meta-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 4px;
  margin-bottom: 8px;
}

.tag-war     { background-color: #fbeae8; color: #c93b2b; }
.tag-civ     { background-color: #fdf3e7; color: #c47600; }
.tag-person  { background-color: #f1f6ea; color: #4e8020; }
.tag-mystery { background-color: #f2edf8; color: #6f42c1; }
.tag-science { background-color: #e8f4fd; color: #1877f2; }
.tag-space   { background-color: #e8eaed; color: #3c4043; }

/* [7] 본문 글 상세 페이지 (articles/x.htm) 공통 스타일 */
.article-header {
  padding: 36px 0 20px 0;
  border-bottom: 1px solid #eeeeee;
  margin-bottom: 28px;
}

.article-title {
  font-size: 1.7rem;
  font-weight: 700;
  color: #111111;
  line-height: 1.35;
  letter-spacing: -0.5px;
  margin-top: 10px;
}

.article-body {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: #2b2b2b;
}

.article-body p {
  margin-bottom: 24px;
}

.article-body h2 {
  font-size: 1.35rem;
  font-weight: 700;
  color: #111111;
  margin: 40px 0 16px 0;
  letter-spacing: -0.4px;
}

.article-body h3 {
  font-size: 1.15rem;
  font-weight: 600;
  color: #222222;
  margin: 32px 0 12px 0;
}

.article-nav {
  margin-top: 50px;
  padding-top: 20px;
  border-top: 1px solid #eeeeee;
  display: flex;
  justify-content: space-between;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 600;
  color: #444444;
  text-decoration: none;
}

.nav-link:hover {
  text-decoration: underline;
}

/* [8] 푸터 */
.site-footer {
  border-top: 1px solid #eeeeee;
  background-color: #fafafa;
  padding: 30px 0;
  margin-top: 40px;
  font-size: 0.875rem;
  color: #777777;
}

.footer-inner {
  text-align: center;
}

.footer-links {
  margin-bottom: 12px;
}

.footer-links a {
  color: #555555;
  text-decoration: none;
}

.footer-links a:hover {
  text-decoration: underline;
}

.footer-links .sep {
  margin: 0 6px;
  color: #cccccc;
}

.copyright {
  font-size: 0.8125rem;
  color: #888888;
}

/* [9] 미디어 쿼리 (모바일 화면 최적화) */
@media (max-width: 600px) {
  .wrap {
    padding: 0 16px;
  }
  .hero-title {
    font-size: 1.4rem;
  }
  .article-title {
    font-size: 1.45rem;
  }
  .article-body {
    font-size: 1rem;
    line-height: 1.75;
  }
}

/* [이미지 기본 최적화] */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* [본문 내 이미지 레이아웃 및 캡션] */
.article-body img {
  border-radius: 6px;       /* 부드러운 모서리 마감 */
  margin: 28px auto 8px auto; /* 위아래 여백 및 가운데 정렬 */
}

/* 이미지 설명 캡션 (선택 사용) */
figcaption, .img-caption {
  font-size: 0.85rem;
  color: #666666;
  text-align: center;
  margin-bottom: 24px;
  line-height: 1.4;
}

/* [10] 카테고리 네비게이션 링크 */
.category-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 12px 0 24px 0;
  border-bottom: 1px solid #eeeeee;
  margin-bottom: 24px;
}

.cat-link {
  font-size: 0.9rem;
  font-weight: 600;
  color: #333333;
  text-decoration: none;
  padding: 6px 12px;
  background-color: #f5f5f5;
  border-radius: 6px;
}

.cat-link:hover {
  background-color: #e5e5e5;
  color: #000000;
}

.category-header {
  margin-bottom: 8px;
}