/* static/css/style.css — 창문학 아카이빙 공통 스타일 */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@400;600;700&display=swap');

body {
  font-family: "Noto Sans KR", sans-serif;
  background: #f5f6fa;
  margin: 0;
  color: #333;
}

section {
  max-width: 800px;
  margin: 3rem auto;
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

section.wide {
  max-width: 900px;
}

a {
  color: #0097e6;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

ul {
  padding-left: 20px;
}

hr {
  border: none;
  border-top: 1px solid #eee;
  margin: 1rem 0;
}

img.archive-img {
  width: 100%;
  max-width: 650px;
  margin-bottom: 1.2rem;
  border-radius: 8px;
  display: block;
}
