/* =========================================================
   Related Posts Box - Styles
   Box viền trái + nền tuỳ chỉnh màu, chỉ hiển thị tiêu đề bài viết.
   Màu viền / nền được set trực tiếp qua inline style (do người dùng chọn trong Settings).
   ========================================================= */

.rpb-box {
	margin: 32px 0;
	clear: both;
	border-left-width: 4px;
	border-left-style: solid;
	border-top: 0;
	border-right: 0;
	border-bottom: 0;
	border-radius: 8px;
	padding: 16px 20px 21px;
}

.rpb-inner {
	display: flex;
	flex-direction: column;
	row-gap: 6px;
	margin: 0;
	padding: 0;
}

.rpb-label {
	font-weight: 700;
	color: #1a1a1a;
	margin: 0 0 2px;
	padding: 0;
}

/* !important để tránh bị theme ghi đè margin/padding mặc định của thẻ ul/li, gây dư khoảng trống dưới box. */
.rpb-list {
	margin: 0 !important;
	padding: 0 !important;
	list-style: none !important;
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.rpb-list li {
	line-height: 1.5;
	margin: 0 !important;
	padding: 0 !important;
}

/* Không đặt màu link ở đây để tự động lấy màu link mặc định của theme (kế thừa từ style "a" chung của website). */
.rpb-list a {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	text-decoration: none;
}

.rpb-list a:hover .rpb-link-text {
	text-decoration: none;
}

.rpb-link-text {
	text-decoration: none;
}

/* Icon dùng currentColor để tự động cùng màu với link (không ép màu riêng). */
.rpb-icon {
	color: currentColor;
	font-weight: 700;
	line-height: 1;
	flex-shrink: 0;
}

/* =========================================================
   Đổ bóng box (tuỳ chọn trong Settings)
   ========================================================= */
.rpb-shadow-none {
	box-shadow: none;
}

.rpb-shadow-light {
	box-shadow: 0 1px 4px rgba( 0, 0, 0, 0.08 );
}

.rpb-shadow-medium {
	box-shadow: 0 4px 12px rgba( 0, 0, 0, 0.12 );
}

.rpb-shadow-strong {
	box-shadow: 0 10px 24px rgba( 0, 0, 0, 0.18 );
}
