.site-header {
  position: fixed; top: 0; left: 0; right: 0;
  background: #000; color: #fff;
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px 40px; z-index: 1000;
}
.hero-banner img { width: 100%; display: block; }
.highlight { padding: 80px 40px; background: #f8f8f8; }
.show-card { margin: 20px; display: inline-block; text-align: center; }
.site-footer { background: #222; color: #fff; text-align: center; padding: 40px 0; }
/*
Theme Name: BlueSquare Clone
Author: Your Name
Version: 1.0
Description: BlueSquare.kr 스타일 워드프레스 테마
*/

body { margin: 0; font-family: 'Pretendard', sans-serif; }
a { text-decoration: none; color: inherit; }

/* 단일 게시글 보기 스타일 */
.single-post {
  max-width: 800px;
  margin: 100px auto;
  padding: 0 20px;
  font-family: 'Pretendard', sans-serif;
  line-height: 1.8;
}

.single-post h1 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
}

.single-post .post-meta {
  font-size: 14px;
  color: #888;
  margin-bottom: 40px;
}

.single-post .post-content {
  font-size: 18px;
  color: #333;
  margin-bottom: 60px;
}

/* 댓글 영역 */
#comments {
  margin-top: 60px;
  border-top: 1px solid #ddd;
  padding-top: 40px;
}

#comments h2 {
  font-size: 24px;
  margin-bottom: 20px;
}

.comment-list li {
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.comment-form textarea,
.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"] {
  width: 100%;
  padding: 12px;
  margin-bottom: 20px;
  border: 1px solid #ccc;
  font-size: 16px;
}

.comment-form input[type="submit"] {
  background: #000;
  color: #fff;
  padding: 12px 24px;
  border: none;
  font-size: 16px;
  cursor: pointer;
}

.comment-form input[type="submit"]:hover {
  background: #333;
}