/*網站 header 加分隔線, padding 調整*/
.site-header {
	border-bottom: #aaa solid 1px;
	background-color: #eeeedd;
}
@media only screen and (min-width: 560px){
.site-header {
	padding: 32px 32px 16px 32px;
}
}

/*menu 子選單樣式調整*/
.main-navigation .sub-menu .menu-item a::before {
	counter-increment: nested-list;
	content: "" counters(nested-list, "", none);
}

/*小螢幕menu*/
@media only screen and (max-width: 560px){
.main-navigation .sub-menu .menu-item a::before {
	counter-increment: nested-list;
	content: "> " counters(nested-list, "> ", none);
}
.sub-menu .menu-item{
	padding-left:1rem;
}
.menu-item a{
	border-bottom: #ddd solid 1px;
	font-weight:normal;
}
}
/*寬螢幕menu*/
@media only screen and (min-width: 560px){
.sub-menu .menu-item a{
	border-bottom: #ddd solid 1px;
	max-width: 300px;
	font-weight:normal;
/* 	border-right: 1px solid #ccc;
	border-left: 1px solid #ccc; */
}
.main-navigation .sub-menu .menu-item a::before {
	counter-increment: nested-list;
	content: "" counters(nested-list, "　", none);
}
}

.main-navigation > div > ul > li > .sub-menu {
	background: rgba(0,0,0,0);
}
/*文章頁表頭*/
.page-title {
	font-size: 0.8rem;
	color: #20603C;
	border: #20603C 1px solid;
	padding: 20px
}
/*文章內容*/
.entry-content{
	word-wrap: break-word;
}
/*文章上下間隔*/
.site-main > article {
	padding-bottom: 32px;
	border-bottom: #ddd solid 1px;
}
.entry-footer {
	padding: 10px;
	background-color: #eee;
	border-radius: 10px;
}
/*文章內圖片*/
article img {
	max-width: 750px;
	width: 100%;
	border-radius: 0.6rem;
	/*box-shadow: #888 0px 0px 8px;*/
}

/*FOOTER*/
.site-main{
	padding-bottom: 0px;
}
.site-footer{
	border-top: #eeeedd solid 1px;
	background-color: #eeeedd;
}

/* 20230818國昊要求：移除文章作者標注 */
span.byline{
	display:none;
}
/* 20230818國昊要求：移除底下的作者及發佈日期區塊 */
footer.entry-footer {
	display:none;
}
/*20230818上一篇 下一篇文章的文字改為國昊指定文字*/
.nav-previous .meta-nav{
	color:transparent;
	font-size:0;
}
.nav-previous .meta-nav::before{
	content:"最新露營產業新知";
	color:#20603C;
	font-size:0.85rem;
}

.nav-next .meta-nav{
	color:transparent;
	font-size:0;
}
.nav-next .meta-nav::after{
	content:"最新露營產業趨勢";
	color:#20603C;
	font-size:0.85rem;
}

h3.jp-relatedposts-headline em::after{
	content:"露營場設置登記申請知識";
}

#Line-0-channel {
	margin-bottom: 30px;
}

/*H1:54 H2:32 H3:24 內文:20 */
h1.entry-title {
	font-size:54px;
}

h2.wp-block-heading{
	font-size:32px !important; 
}

h3.wp-block-heading{
	font-size:24px !important; 
}

.entry-content p {
	font-size:20px; 
}
