/*
	Theme Name:   Jannah Child
	Theme URI:    http://jannah.tielabs.com/
	Description:  Jannh Child Theme
	Author:       TieLabs
	Author URI:   https://tielabs.com
	Template:     jannah
	Version:      1.0.2
	License:      license purchased
	License URI:  http://themeforest.net/licenses/regular_extended
	Tags:         Tags: two-columns, buddypress, left-sidebar, right-sidebar, custom-menu, editor-style, featured-images, full-width-template, microformats, rtl-language-support, sticky-post, threaded-comments, translation-ready
	Text Domain:  jannah-child
*/

/* =====================================================
   أقسام التصنيفات داخل صفحة الوسم
   ===================================================== */

.tag-categories-archive {
	display: flex;
	flex-direction: column;
	gap: 35px;
}

/* القسم كاملًا */
.tag-category-section {
	position: relative;
	margin: 0;
}

/* رأس التصنيف */
.tag-category-heading {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
	gap: 3px;
	margin: 0 0 18px;
	padding: 16px 22px;
	overflow: hidden;
	border: 1px solid rgba(0, 0, 0, 0.08);
	border-radius: 3px;
	background: #fff;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
	text-align: start;
}

/* الخط الجانبي بلون القالب */
.tag-category-heading::before {
	position: absolute;
	inset-block: 0;
	inset-inline-start: 0;
	width: 5px;
	background: var(--brand-color, #7d4549);
	content: "";
}

/* خط زخرفي خفيف أسفل الرأس */
.tag-category-heading::after {
	position: absolute;
	inset-inline-start: 22px;
	inset-block-end: 0;
	width: 55px;
	height: 2px;
	background: var(--brand-color, #7d4549);
	content: "";
}

/* اسم التصنيف */
.tag-category-title {
	margin: 0;
	padding: 0;
	font-size: 24px;
	font-weight: 800;
	line-height: 1.45;
	letter-spacing: -0.3px;
}

.tag-category-title a {
	color: #202020;
	text-decoration: none;
	transition:
		color 0.2s ease,
		transform 0.2s ease;
}

.tag-category-title a:hover {
	color: var(--brand-color, #7d4549);
}

/* عدد الموضوعات تحت اسم التصنيف */
.tag-category-count {
	display: block;
	margin: 1px 0 0;
	padding: 0;
	border: 0;
	background: transparent;
	color: #888;
	font-size: 13px;
	font-weight: 500;
	line-height: 1.6;
}

/* نقطة صغيرة قبل العدد */
.tag-category-count::before {
	display: inline-block;
	width: 6px;
	height: 6px;
	margin-inline-end: 7px;
	border-radius: 50%;
	background: var(--brand-color, #7d4549);
	vertical-align: middle;
	content: "";
}

/* ربط رأس التصنيف بصندوق المقالات بصريًا */
.tag-category-heading + .mag-box,
.tag-category-heading + .masonry-grid-wrapper {
	margin-top: 0;
}

/* رسالة عدم وجود موضوعات */
.tag-no-posts {
	padding: 30px 20px;
	border: 1px solid rgba(0, 0, 0, 0.08);
	background: #fff;
	color: #777;
	text-align: center;
}

/* الوضع الليلي في قالب جنة */
.dark-skin .tag-category-heading,
.dark-skin .tag-no-posts {
	border-color: rgba(255, 255, 255, 0.09);
	background: #1f2024;
}

.dark-skin .tag-category-title a {
	color: #fff;
}

.dark-skin .tag-category-count {
	color: #aaa;
}

/* الجوال */
@media (max-width: 767px) {

	.tag-categories-archive {
		gap: 25px;
	}

	.tag-category-heading {
		margin-bottom: 12px;
		padding: 13px 17px;
	}

	.tag-category-heading::after {
		inset-inline-start: 17px;
		width: 42px;
	}

	.tag-category-title {
		font-size: 20px;
	}

	.tag-category-count {
		font-size: 12px;
	}
}

