@charset "utf-8";

/* ==========================================================================
   ANINEWING board location (breadcrumb) + title card
   Moved from the layout into the board skin so it only ever renders
   on board module pages, without needing a module-type check.
   ========================================================================== */

#board_location {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 8px;
	width: 100%;
	box-sizing: border-box;
	margin: 0 auto;
	padding: 16px 0 14px;
	font-size: 13px;
	color: #888888;
}

.board_location_item a {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	color: #888888;
}

.board_location_home a {
	color: #999999;
}

.board_location_item a:hover {
	color: #336edc;
}

.board_location_sep {
	font-size: 11px;
	color: #cccccc;
}

.board_location_current {
	color: #333333;
	font-weight: bold;
}

/* -------------------- Board title card -------------------- */

#board_title {
	position: relative;
	box-sizing: border-box;
	display: flex;
	align-items: center;
	gap: 18px;
	width: 100%;
	margin: 0 auto 24px;
	padding: 22px 28px;
	background-color: #ffffff;
	border: 1px solid #eeeeee;
	border-radius: 4px;
	border-bottom: 3px solid #336edc;
	overflow: hidden;
}

#board_title_icon {
	flex: none;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 56px;
	height: 56px;
	border-radius: 50%;
	background-color: #336edc;
	color: #ffffff;
	font-size: 24px;
}

#board_title_text h2 {
	margin: 0;
	font-size: 26px;
	font-weight: 700;
	color: #222222;
}

#board_title_text p {
	margin: 6px 0 0;
	font-size: 14px;
	color: #666666;
}

@media screen and (max-width: 720px) {
	#board_location {
		padding: 12px 0 10px;
		font-size: 12px;
	}

	#board_title {
		margin: 0 0 16px;
		padding: 16px 18px;
		gap: 12px;
	}

	#board_title_icon {
		width: 44px;
		height: 44px;
		font-size: 19px;
	}

	#board_title_text h2 {
		font-size: 20px;
	}

	#board_title_text p {
		font-size: 13px;
	}
}
