/********************** 
레이아웃
**********************/
/* 컨테이너 사이즈 */
.container {
	max-width: 1024px;
	width: 100%;
	margin: auto;
}
#content {
	min-height: 600px;
}
#top {
	height: 30px;
}

/********************** 
기본설정
**********************/
h1 { font-size: 26px; }
h2 { font-size: 20px; }
h3 { font-size: 18px; }

a { 
	color:#0071fd;
	text-decoration: none; 
}
a:hover {
	text-decoration: none;
	color:#fa0303;
}
.post-thumb .image a:hover {
	opacity: 0.8;
	transition: opacity .5s ease-out;
    -moz-transition: opacity .5s ease-out;
    -webkit-transition: opacity .5s ease-out;
    -o-transition: opacity .5s ease-out;
}
body {
	margin: 0;
	font-family: "Pretendard", "Noto Sans KR", sans-serif;
	background: #fff;
	color: #333;
}

/********************** 
헤더
**********************/
header {
	background: #ffffff;
	padding: 16px;
	//position: sticky;
	top: 0;
	z-index: 99;
	border-bottom: 1px solid #eee;
}
#top ul {
	float: right;
	margin-top: 5px;
}
#top ul li {
	list-style: none;
	float: left;
}
#top a {
	margin-right: 10px;
	font-size:12px;
	color: #333;
}
#logo {
	text-align: center;
}
#logo img {
	max-width: 450px;
}

/* 메뉴 */
.menu-wrapper {
  position: relative;
}
#menuToggle {
  position: fixed;
  top: 1rem;
  left: 1rem;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1001;
}
#slideMenu {
  position: fixed;
  top: 0;
  left: 0;
  width: 260px;
  height: 100%;
  background: #f8f8f8;
  box-shadow: 2px 0 5px rgba(0,0,0,0.1);
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  z-index: 1000;
  padding: 100px 20px 20px 20px;
}
#slideMenu ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
#slideMenu ul li {
  margin-bottom: 1.1rem;
}
#slideMenu ul li a {
  text-decoration: none;
  color: #333;
  font-size: 1.1rem;
}
#menuClose {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  cursor: pointer;
}

/********************** 
블로그글 리스트
**********************/
.post-layout.post-list {
	padding: 10px;
	border: 1px solid #eee;
	margin-bottom: 20px;
}
.post-list .post-thumb .image {
	float:left;
	margin-right: 20px;
}
.post-list h2 {
	margin-top:0;
}

/********************** 
breadcrumb
**********************/
.breadcrumb {
	width:100%;
	padding-left: 0;
	display: inline-block;
}
.breadcrumb li {
	list-style: none;
	float: left;
	margin-right: 20px;
}
