/* 기본 리셋 */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #fafafa;
  color: #222;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.6;
}

.wrapper {
  max-width: 700px;
  margin: 0 auto;
  padding: 30px 20px;
}

/* 헤더 스타일 */
.site-header {
  text-align: center;
  margin-bottom: 50px;
}
.site-header h1 {
  font-size: 2.5em;
}
.site-header p {
  font-size: 1.1em;
  color: #555;
  margin-top: 0.3em;
}
.site-header nav {
  margin-top: 1em;
}
.site-header nav a {
  margin: 0 10px;
  color: #555;
  text-decoration: none;
  font-size: 0.9em;
}
.site-header nav a:hover {
  text-decoration: underline;
}

/* 포스트 스타일 */
.posts .post {
  margin-bottom: 60px;
  border-bottom: 1px solid #e0e0e0;
  padding-bottom: 40px;
}

.post-header h2 {
  font-size: 1.8em;
  margin-bottom: 0.2em;
  color: #111;
}

.post-meta {
  display: block;
  font-size: 0.9em;
  color: #888;
  margin-bottom: 1em;
}

.post-content img {
  max-width: 100%;
  height: auto;
  margin: 1em 0;
}

.post-content p {
  font-size: 1em;
  color: #333;
}

/* 디테일 박스 스타일 */

body {
  background-color: #fafafa;
  color: #333;
  font-family: Arial, sans-serif;
  padding: 20px;
}

.info-box {
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 30px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.info-box h3 {
  margin-top: 0;
  margin-bottom: 15px;
  font-size: 1.4em;
  color: #222;
}

.info-box ul {
  list-style: none;
  padding-left: 0;
}

.info-box ul li {
  margin-bottom: 8px;
  line-height: 1.4;
}

.info-box ul li strong {
  color: #555;
}


/* 푸터 스타일 */
.site-footer {
  text-align: center;
  margin-top: 80px;
  padding-top: 20px;
  border-top: 1px solid #e0e0e0;
  color: #777;
  font-size: 0.9em;
}
