/* 워드프레스 GeneratePress 테마 소제목 헤딩 태그 스타일 */

.single .entry-content h2 {
 font-size: 1.3em;
    margin: 1.15em 0 0.6em 0;
    font-weight: normal;
    position: relative;
    text-shadow: 0 -1px rgba(0,0,0,0.6);
    line-height: 40px;
    background: #355681;
    background: rgba(53,86,129, 0.8);
    border: 1px solid #fff;
    padding: 5px 15px;
    color: white;
    border-radius: 0 10px 0 10px;
    box-shadow: inset 0 0 5px rgba(53,86,129, 0.5);
    font-family: 'Muli', sans-serif;
}

.single .entry-content h3 {
 margin: 1em 0 0.65em 0;
    font-weight: 600;
    font-family: 'Titillium Web', sans-serif;
    position: relative;
    text-shadow: 0 -1px 1px rgba(0,0,0,0.4);
    font-size: 22px;
    line-height: 40px;
    color: #355681;
    text-transform: uppercase;
    border-bottom: 1px solid rgba(53,86,129, 0.3);
}

.single .entry-content h4 {
padding: 3px 9px;
border-left: 5px solid #eeeeee;
border-bottom: 1px solid #eeeeee;
margin-bottom: 15px;
}

/*애드센스 하단 마진-애드센스 광고 삽입 시 광고 하단이랑 텍스트가 너무 붙어있을 때 사용하는 코드*/

.google-auto-placed {
	margin-bottom:30px !important;
}
 &:active {
}


/* GeneratePress Site CSS */ .inside-article,
.sidebar .widget,
.comments-area, .gb-query-loop-item:not(.sidebar .gb-query-loop-item),.container-widget {
	border-right: 2px solid rgba(0, 0, 0, 0.07);
	border-bottom: 2px solid rgba(0, 0, 0, 0.07);
	box-shadow: 0 0 10px rgba(232, 234, 237, 0.5);
}
 /* End GeneratePress Site CSS */


/* 버튼 그림자 */
.gb-button {
  box-shadow:0px 10px 20px 1px rgb(200 200 200);
}

/* 버튼 확대 */
.gb-button {
      color: #ffffff !important; /* 버튼 텍스트 색상 */
      transition: all 0.15s ease-in-out; /* 버튼 축소 속도 */
}
.gb-button:hover {
      cursor: pointer; /* 마우스 위치 시 포인터로 표시 */
      transform: scale(1.05); /* 마우스 위치 시 버튼 확대 크기*/
      transition: all 0.20s ease-in-out; /* 버튼 확대 속도 */
}