/* ============================================================
   Naat Lexicon — premium frontend styles
   (Farhang card, Dictionary, Radeef/Qafiya, Bahr card)
   Apple-inspired editorial glassmorphism. Additive only.
   ============================================================ */

:root {
	--lex-emerald: #047857;
	--lex-emerald-2: #10b981;
	--lex-ink: #0f2a22;
	--lex-glass: rgba(255, 255, 255, 0.72);
	--lex-line: rgba(15, 42, 34, 0.08);
	--lex-shadow: 0 10px 40px -12px rgba(6, 78, 59, 0.22);
	--lex-radius: 22px;
}

/* ---------- Per-Kalam Farhang premium card ---------- */
.naat-farhang-card {
	position: relative;
	border-radius: var(--lex-radius);
	padding: clamp(18px, 3vw, 28px);
	background: linear-gradient(135deg, rgba(236, 253, 245, 0.9), rgba(255, 255, 255, 0.86));
	-webkit-backdrop-filter: blur(16px);
	backdrop-filter: blur(16px);
	border: 1px solid var(--lex-line);
	box-shadow: var(--lex-shadow);
	overflow: hidden;
}
.naat-farhang-card::before {
	content: "";
	position: absolute;
	inset: 0 0 auto 0;
	height: 4px;
	background: linear-gradient(90deg, var(--lex-emerald), var(--lex-emerald-2), #34d399);
}

.naat-farhang-head {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 14px;
	margin-bottom: 18px;
	flex-wrap: wrap;
}
.naat-farhang-kicker {
	display: block;
	font-size: 11px;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--lex-emerald);
	font-weight: 700;
	margin-bottom: 2px;
}
.naat-farhang-title h3 {
	margin: 0;
	font-size: clamp(20px, 3vw, 26px);
	font-weight: 800;
	color: var(--lex-ink);
	letter-spacing: -0.01em;
}
.naat-farhang-badge {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 6px 14px;
	border-radius: 999px;
	font-size: 13px;
	font-weight: 700;
	color: #065f46;
	background: rgba(16, 185, 129, 0.12);
	border: 1px solid rgba(16, 185, 129, 0.22);
}

/* ---------- Chips ---------- */
.naat-farhang-chips {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}
.naat-chip {
	flex: 0 1 auto;
	background: rgba(255, 255, 255, 0.9);
	border: 1px solid var(--lex-line);
	border-radius: 16px;
	box-shadow: 0 1px 2px rgba(6, 78, 59, 0.05);
	transition: box-shadow 0.25s ease, transform 0.25s ease, border-color 0.25s;
	overflow: hidden;
	animation: lex-pop 0.4s ease backwards;
}
.naat-farhang-chips .naat-chip:nth-child(2) { animation-delay: 0.03s; }
.naat-farhang-chips .naat-chip:nth-child(3) { animation-delay: 0.06s; }
.naat-farhang-chips .naat-chip:nth-child(4) { animation-delay: 0.09s; }
.naat-farhang-chips .naat-chip:nth-child(5) { animation-delay: 0.12s; }
.naat-chip:hover {
	transform: translateY(-2px);
	box-shadow: 0 12px 28px -14px rgba(6, 78, 59, 0.4);
	border-color: rgba(16, 185, 129, 0.4);
}
.naat-chip.is-open {
	flex-basis: 100%;
	border-color: rgba(16, 185, 129, 0.5);
}
.naat-chip-btn {
	display: flex;
	align-items: center;
	gap: 10px;
	width: 100%;
	padding: 11px 16px;
	background: transparent;
	border: 0;
	cursor: pointer;
	font: inherit;
	text-align: left;
}
.naat-chip-word {
	font-family: var(--font-urdu, "Noto Nastaliq Urdu", serif);
	font-size: 19px;
	color: var(--lex-emerald);
	line-height: 1.9;
	font-weight: 600;
}
.naat-chip-roman {
	font-size: 13px;
	color: #475569;
	font-weight: 600;
}
.naat-chip-caret {
	width: 8px;
	height: 8px;
	margin-left: auto;
	border-right: 2px solid #94a3b8;
	border-bottom: 2px solid #94a3b8;
	transform: rotate(45deg);
	transition: transform 0.25s ease;
}
.naat-chip.is-open .naat-chip-caret { transform: rotate(-135deg); }

.naat-chip-panel {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.28s ease;
	padding: 0 16px;
}
.naat-chip.is-open .naat-chip-panel { padding-bottom: 14px; }
.naat-chip-rows {
	border: 1px solid #f1f5f9;
	border-radius: 14px;
	overflow: hidden;
	background: #fff;
}
.naat-chip-row {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	margin: 0;
	padding: 9px 14px;
	font-size: 14px;
	color: #0f172a;
	border-bottom: 1px solid #f1f5f9;
}
.naat-chip-rows .naat-chip-row:last-child { border-bottom: 0; }
.naat-chip-row .naat-chip-v { flex: 1 1 auto; line-height: 1.55; }
.naat-chip-row .naat-chip-v[dir="rtl"] { font-family: var(--font-urdu,"Noto Nastaliq Urdu",serif); font-size: 17px; line-height: 1.9; }
.naat-chip-key {
	flex: 0 0 118px;
	font-size: 10.5px;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	color: var(--lex-emerald);
	font-weight: 800;
	padding-top: 3px;
}
@media (max-width: 480px) {
	.naat-chip-row { flex-direction: column; gap: 2px; }
	.naat-chip-key { flex-basis: auto; }
}
.naat-chip-related { margin-top: 8px; }
.naat-chip-related-list {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	margin-top: 4px;
}
.naat-mini-chip {
	font-size: 13px;
	padding: 3px 10px;
	border-radius: 999px;
	background: rgba(16, 185, 129, 0.1);
	color: #065f46;
	text-decoration: none;
	border: 1px solid rgba(16, 185, 129, 0.18);
	transition: background 0.2s;
}
.naat-mini-chip:hover { background: rgba(16, 185, 129, 0.2); }
.naat-chip-more {
	display: inline-block;
	margin-top: 10px;
	font-size: 13px;
	font-weight: 700;
	color: var(--lex-emerald);
	text-decoration: none;
}
.naat-chip-more:hover { text-decoration: underline; }

@keyframes lex-pop {
	from { opacity: 0; transform: translateY(8px) scale(0.97); }
	to   { opacity: 1; transform: none; }
}

@media (prefers-reduced-motion: reduce) {
	.naat-chip, .naat-chip-panel, .naat-chip-caret { animation: none !important; transition: none !important; }
}

@media (max-width: 640px) {
	.naat-chip { flex-basis: 100%; }
}

/* ============================================================
   Dictionary / Radeef-Qafiya shared layout
   ============================================================ */
.naat-lex-main { padding: clamp(120px,12vw,150px) 0 64px; }
.naat-lex-alpha { top: 104px; }
.naat-lex-wrap { max-width: 1180px; margin: 0 auto; padding: 0 18px; }
.naat-lex-narrow { max-width: 820px; }

.naat-lex-hero { text-align: center; margin-bottom: 26px; }
.naat-lex-kicker { display:inline-block; font-size:11px; letter-spacing:.22em; text-transform:uppercase; color:var(--lex-emerald); font-weight:800; margin-bottom:8px; }
.naat-lex-h1 { font-size: clamp(30px,6vw,52px); font-weight:900; letter-spacing:-.02em; color:var(--lex-ink); margin:0 0 8px; }
.naat-lex-sub { color:#475569; font-size: clamp(14px,2vw,17px); max-width:640px; margin:0 auto; }

.naat-lex-searchbar {
	position: relative; max-width: 620px; margin: 22px auto 0;
}
.naat-lex-searchbar input {
	width:100%; padding:16px 18px 16px 48px; font-size:16px; border-radius:18px;
	border:1px solid var(--lex-line); background:var(--lex-glass);
	-webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px);
	box-shadow: var(--lex-shadow); transition: box-shadow .2s, border-color .2s;
}
.naat-lex-searchbar input:focus { outline:none; border-color:var(--lex-emerald-2); box-shadow:0 0 0 4px rgba(16,185,129,.14); }
.naat-lex-search-ic {
	position:absolute; left:18px; top:50%; width:16px; height:16px; transform:translateY(-50%) rotate(-45deg);
	border:2px solid #94a3b8; border-radius:50%;
}
.naat-lex-search-ic::after { content:""; position:absolute; left:50%; top:100%; width:2px; height:7px; background:#94a3b8; }

/* Alphabet bar */
.naat-lex-alpha {
	position: sticky; top: 0; z-index: 30;
	display:flex; gap:6px; overflow-x:auto; padding:12px 4px; margin-bottom:14px;
	background: rgba(255,255,255,.7); -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
	border-radius:16px; scrollbar-width:thin;
}
.naat-alpha-btn {
	flex:0 0 auto; min-width:38px; padding:8px 12px; border:0; cursor:pointer;
	background:transparent; border-radius:11px; font-size:17px; font-weight:700; color:#334155;
	transition: background .18s, color .18s, transform .18s;
}
.naat-alpha-btn:hover { background:rgba(16,185,129,.1); color:var(--lex-emerald); }
.naat-alpha-btn.is-active { background:var(--lex-emerald); color:#fff; }

/* Toolbar */
.naat-lex-toolbar { display:flex; align-items:center; justify-content:space-between; gap:14px; margin-bottom:18px; flex-wrap:wrap; }
.naat-lex-sort { display:flex; align-items:center; gap:8px; }
.naat-lex-sort label { font-size:12px; text-transform:uppercase; letter-spacing:.06em; color:#64748b; font-weight:700; }
.naat-lex-sort select { padding:8px 12px; border-radius:11px; border:1px solid var(--lex-line); background:#fff; font-weight:600; }
.naat-lex-count { font-size:13px; color:#64748b; font-weight:600; }
.naat-lex-count strong, #naat-dict-count { color:var(--lex-emerald); }

/* Cards grid */
.naat-dword-grid { display:grid; grid-template-columns:repeat(auto-fill,minmax(220px,1fr)); gap:14px; }
.naat-dword {
	display:flex; flex-direction:column; gap:6px; padding:18px; border-radius:18px; text-decoration:none;
	background:var(--lex-glass); border:1px solid var(--lex-line); box-shadow:0 2px 10px -4px rgba(6,78,59,.12);
	transition: transform .22s ease, box-shadow .22s ease, border-color .22s;
}
.naat-dword:hover { transform:translateY(-3px); box-shadow:0 18px 36px -16px rgba(6,78,59,.4); border-color:rgba(16,185,129,.4); }
.naat-dword-top { display:flex; align-items:flex-start; justify-content:space-between; gap:8px; }
.naat-dword-urdu { font-family:var(--font-urdu,"Noto Nastaliq Urdu",serif); font-size:24px; color:var(--lex-emerald); line-height:2; font-weight:600; }
.naat-dword-uses { font-size:12px; font-weight:800; color:#065f46; background:rgba(16,185,129,.12); border-radius:999px; padding:2px 9px; }
.naat-dword-roman { font-size:13px; font-weight:700; color:#334155; }
.naat-dword-mean { font-size:13px; color:#64748b; line-height:1.5; }
.naat-dword-foot { display:flex; align-items:center; justify-content:space-between; margin-top:6px; padding-top:10px; border-top:1px solid var(--lex-line); }
.naat-dword-root { font-family:var(--font-urdu,"Noto Nastaliq Urdu",serif); font-size:15px; color:#94a3b8; }
.naat-dword-cta { font-size:12px; font-weight:800; color:var(--lex-emerald); }
.naat-lex-empty { text-align:center; padding:48px 0; color:#64748b; }

@media (prefers-reduced-motion: reduce) {
	.naat-dword, .naat-alpha-btn { transition:none !important; }
}

/* ---------- Dictionary detail ---------- */
.naat-lex-crumb { display:flex; gap:8px; align-items:center; font-size:13px; color:#64748b; margin-bottom:18px; flex-wrap:wrap; }
.naat-lex-crumb a { color:var(--lex-emerald); text-decoration:none; font-weight:600; }
.naat-lex-crumb strong { color:var(--lex-ink); }
/* ---------- Dictionary single — premium white editorial redesign ---------- */
.naat-dword-detail {
	border-radius:20px; overflow:hidden; border:1px solid #eef1f5;
	background:#fff; box-shadow:0 10px 40px -12px rgba(15,23,42,.08);
}
.naat-dword-hero { padding:clamp(32px,6vw,56px) clamp(24px,5vw,48px); text-align:center; background:#fff; border-bottom:1px solid #f1f5f9; }
.naat-dword-title { font-family:var(--font-urdu,"Noto Nastaliq Urdu",serif); font-size:clamp(40px,8vw,68px); color:#0f172a; margin:0; line-height:1.7; }
.naat-dword-roman-lg { font-size:18px; font-weight:700; color:#64748b; margin:6px 0 0; letter-spacing:.01em; }
.naat-dword-herometa { display:flex; gap:8px; justify-content:center; flex-wrap:wrap; margin-top:16px; }
.naat-dword-pill { display:inline-flex; align-items:center; gap:5px; padding:6px 15px; border-radius:999px; background:#ecfdf5; color:#047857; font-size:12px; font-weight:800; letter-spacing:.02em; }
.naat-dword-pill-ghost { background:#f8fafc; color:#475569; border:1px solid #eef1f5; }
.naat-dword-pill-ghost strong { color:#0f172a; }
.naat-dword-shortmean { margin:18px auto 0; max-width:560px; font-size:17px; line-height:1.6; color:#334155; }
.naat-dword-h2 { font-size:13px; font-weight:800; text-transform:uppercase; letter-spacing:.08em; color:#94a3b8; margin:0 0 16px; }
.naat-dword-body { padding:0; display:flex; flex-direction:column; gap:0; border:1px solid #f1f5f9; border-radius:16px; overflow:hidden; }
.naat-dword-defrow { display:flex; gap:16px; padding:14px 18px; border-bottom:1px solid #f1f5f9; align-items:flex-start; }
.naat-dword-defrow:last-child { border-bottom:0; }
.naat-dword-deflabel { flex:0 0 160px; font-size:10.5px; text-transform:uppercase; letter-spacing:.05em; color:#94a3b8; font-weight:800; padding-top:4px; }
.naat-dword-defval { color:#0f172a; font-size:16px; line-height:1.6; flex:1; }
.naat-dword-defval.is-urdu { font-family:var(--font-urdu,"Noto Nastaliq Urdu",serif); font-size:22px; line-height:2; }
.naat-dword-section { padding:clamp(22px,4vw,34px) clamp(24px,5vw,48px); border-top:1px solid #f1f5f9; }
.naat-dword-section h2 { font-size:13px; font-weight:800; color:#94a3b8; text-transform:uppercase; letter-spacing:.08em; margin:0 0 16px; }
.naat-dword-relsub { margin:-8px 0 16px; font-size:14px; color:#64748b; }
/* Section 3 — related Kalam cards */
.naat-dword-kgrid { display:grid; grid-template-columns:repeat(auto-fill,minmax(250px,1fr)); gap:14px; }
.naat-dword-kcard { background:#fff; border:1px solid #eef1f5; border-radius:16px; padding:18px; display:flex; flex-direction:column; transition:box-shadow .2s, transform .2s, border-color .2s; }
.naat-dword-kcard:hover { transform:translateY(-3px); box-shadow:0 14px 30px -14px rgba(15,23,42,.18); border-color:#d1fae5; }
.naat-dword-kctitle { font-family:var(--font-urdu,"Noto Nastaliq Urdu",serif); font-size:22px; color:#0f172a; margin:0 0 10px; line-height:1.8; }
.naat-dword-kmeta { display:flex; flex-wrap:wrap; gap:8px; margin-bottom:10px; }
.naat-dword-kwriter { font-size:12px; font-weight:700; color:#047857; display:inline-flex; align-items:center; gap:5px; }
.naat-dword-kcat { font-size:11px; font-weight:800; text-transform:uppercase; letter-spacing:.04em; color:#64748b; background:#f1f5f9; padding:3px 10px; border-radius:999px; }
.naat-dword-kexcerpt { font-size:13.5px; color:#64748b; line-height:1.6; margin:0 0 14px; flex:1; }
.naat-dword-kbtn { display:inline-flex; align-items:center; gap:6px; align-self:flex-start; padding:8px 16px; border-radius:11px; background:#059669; color:#fff; font-size:13px; font-weight:800; text-decoration:none; transition:gap .18s,background .18s; }
.naat-dword-kbtn:hover { gap:9px; background:#047857; }
.naat-dword-related { display:flex; flex-wrap:wrap; gap:8px; }
.naat-dword-related .naat-mini-chip { font-size:16px; padding:6px 14px; }
.naat-dword-share { display:flex; align-items:center; gap:12px; padding:18px clamp(18px,3vw,28px); border-top:1px solid var(--lex-line); flex-wrap:wrap; }
.naat-dword-share span { font-size:12px; text-transform:uppercase; letter-spacing:.06em; color:#64748b; font-weight:700; }
.naat-dword-share a { font-size:13px; font-weight:700; color:var(--lex-emerald); text-decoration:none; padding:6px 14px; border-radius:999px; background:rgba(16,185,129,.1); }
.naat-dword-share a:hover { background:rgba(16,185,129,.2); }
.naat-lex-btn { display:inline-flex; align-items:center; gap:6px; padding:11px 20px; border-radius:14px; background:var(--lex-emerald); color:#fff; text-decoration:none; font-weight:700; }
.naat-lex-btn:hover { background:#065f46; }
.naat-lex-back { margin-top:22px; background:#fff; color:var(--lex-emerald); border:1px solid var(--lex-line); }

/* ---------- Radeef & Qafiya ---------- */
.naat-rq-stats { display:flex; gap:14px; justify-content:center; margin-bottom:22px; }
.naat-rq-stat { display:flex; flex-direction:column; align-items:center; padding:14px 28px; border-radius:18px; background:var(--lex-glass); border:1px solid var(--lex-line); box-shadow:0 2px 10px -4px rgba(6,78,59,.12); }
.naat-rq-stat strong { font-size:28px; font-weight:900; color:var(--lex-emerald); line-height:1; }
.naat-rq-stat span { font-size:12px; text-transform:uppercase; letter-spacing:.08em; color:#64748b; font-weight:700; margin-top:4px; }
.naat-rq-tabs { display:flex; align-items:center; gap:8px; margin-bottom:18px; flex-wrap:wrap; }
.naat-rq-tab { padding:9px 22px; border:1px solid var(--lex-line); border-radius:999px; background:#fff; font-weight:700; color:#334155; cursor:pointer; transition:all .18s; }
.naat-rq-tab:hover { border-color:rgba(16,185,129,.4); }
.naat-rq-tab.is-active { background:var(--lex-emerald); color:#fff; border-color:var(--lex-emerald); }
.naat-rq-tag { font-size:11px; text-transform:uppercase; letter-spacing:.05em; color:#94a3b8; font-weight:700; }
.naat-rqcard .naat-dword-urdu { font-size:22px; }
.naat-rq-pill { display:inline-block; font-size:11px; text-transform:uppercase; letter-spacing:.12em; font-weight:800; color:#065f46; background:rgba(16,185,129,.14); border-radius:999px; padding:5px 14px; margin-bottom:10px; }
.naat-dword-stats span + span { margin-left:18px; }

/* ---------- Bahr & Arkan merged widget (white sidebar knowledge card) ---------- */
.naat-bahr-widget {
	background:#fff; border:1px solid #eef1f5; border-radius:20px; padding:18px;
	box-shadow:0 8px 30px rgba(15,23,42,.05); margin-bottom:24px;
}
/* When merged into the one big Kalam Details card, drop inner card chrome. */
.naat-merged-card .naat-bahr-widget {
	background:transparent; border:0; border-radius:0; padding:0; box-shadow:none; margin:0;
}
.naat-merged-card .naat-merged-details { margin-top:0; }
.naat-bahr-w-head { display:flex; align-items:center; gap:12px; margin-bottom:14px; }
.naat-bahr-w-ic {
	width:38px; height:38px; flex:0 0 38px; border-radius:12px; display:inline-flex; align-items:center; justify-content:center;
	background:#ecfdf5; color:#059669; font-size:17px;
}
.naat-bahr-w-kicker { display:block; font-size:10px; letter-spacing:.16em; text-transform:uppercase; font-weight:800; color:#94a3b8; }
.naat-bahr-w-title { margin:1px 0 0; font-size:16px; font-weight:800; color:#0f172a; line-height:1.2; }
.naat-bahr-w-copy {
	margin-left:auto; width:34px; height:34px; flex:0 0 34px; border-radius:10px; border:1px solid #eef1f5; background:#f8fafc;
	color:#475569; display:inline-flex; align-items:center; justify-content:center; cursor:pointer; transition:all .18s; font-size:14px;
}
.naat-bahr-w-copy:hover { background:#059669; color:#fff; border-color:#059669; }
.naat-bahr-w-copy.is-done { background:#059669; color:#fff; border-color:#059669; }
.naat-bahr-w-list { margin:0; }
.naat-bahr-w-row { padding:11px 0; border-bottom:1px solid #f4f6f9; display:flex; flex-direction:column; gap:3px; }
.naat-bahr-w-list .naat-bahr-w-row:last-child { border-bottom:0; padding-bottom:0; }
.naat-bahr-w-row dt { font-size:10.5px; letter-spacing:.05em; text-transform:uppercase; font-weight:800; color:#94a3b8; margin:0; }
.naat-bahr-w-row dd { margin:0; font-size:14px; color:#1e293b; line-height:1.5; }
.naat-bahr-w-row dd.naat-bahr-w-ur { font-family:var(--font-urdu,"Noto Nastaliq Urdu",serif); font-size:18px; line-height:2; color:#0f172a; }
.naat-bahr-w-row dd.naat-bahr-w-arkan { color:#047857; }
.naat-bahr-w-row dd.naat-bahr-w-taqtee { color:#0369a1; font-size:16px; }
.naat-bahr-w-formula { font-style:italic; color:#64748b; font-size:13px; }
.naat-bahr-w-desc { color:#475569; font-size:13px; line-height:1.65; }
.naat-bahr-w-learn {
	display:inline-flex; align-items:center; gap:6px; margin-top:14px; font-size:13px; font-weight:800;
	color:#059669; text-decoration:none;
}
.naat-bahr-w-learn:hover { gap:9px; }
.naat-bahr-copy.is-done i::before { content:"\f26a"; }
@media (prefers-reduced-motion: reduce) { .naat-bahr-w-copy, .naat-bahr-w-learn { transition:none; } }

/* ---------- Dictionary language filter tabs ---------- */
.naat-lex-langtabs {
	display:flex; flex-wrap:wrap; gap:8px; margin:0 0 18px;
	padding:6px; background:#fff; border:1px solid #eef1f5; border-radius:16px;
	box-shadow:0 4px 18px rgba(15,23,42,.04);
}
.naat-lang-btn {
	border:0; background:transparent; cursor:pointer;
	padding:9px 16px; border-radius:11px; font-size:13px; font-weight:700; color:#64748b;
	transition:all .18s; white-space:nowrap;
}
.naat-lang-btn:hover { background:#f1f5f9; color:#0f172a; }
.naat-lang-btn.is-active { background:#059669; color:#fff; box-shadow:0 4px 12px rgba(5,150,105,.25); }
@media (prefers-reduced-motion: reduce) { .naat-lang-btn { transition:none; } }

/* ============================================================
   DICTIONARY ARCHIVE REDESIGN (Item 3) — wider editorial layout
   ============================================================ */
.naat-dict-wrap { max-width: 1500px; }
.naat-dict-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 320px;
	gap: 34px;
	align-items: start;
}
.naat-dict-content { min-width: 0; }

/* Sticky search/filter toolbar */
.naat-dict-stickybar {
	position: sticky; top: 84px; z-index: 30;
	background: rgba(255,255,255,.82);
	-webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
	border: 1px solid var(--lex-line);
	border-radius: 20px;
	padding: 12px 14px;
	box-shadow: 0 8px 30px -16px rgba(6,78,59,.25);
	margin-bottom: 20px;
}
.naat-dict-stickybar .naat-lex-alpha { position: static; top: auto; margin: 0 0 10px; box-shadow: none; border: none; padding: 0; background: transparent; }
.naat-dict-stickybar .naat-lex-langtabs { margin: 0; }

/* Right sidebar */
.naat-dsb { position: sticky; top: 84px; display: flex; flex-direction: column; gap: 16px; }
.naat-dsb-card {
	background: #fff;
	border: 1px solid #eef1f5;
	border-radius: 18px;
	padding: 18px;
	box-shadow: 0 6px 24px -16px rgba(6,78,59,.18);
}
.naat-dsb-kicker {
	display: block; font-size: 11px; letter-spacing: .14em; text-transform: uppercase;
	color: var(--lex-emerald); font-weight: 800; margin-bottom: 12px;
}
/* Word of the Day */
.naat-dsb-wotd { background: linear-gradient(135deg,#ecfdf5,#fff); border-color: rgba(16,185,129,.2); }
.naat-dsb-wotd-word { display: block; font-size: 30px; line-height: 1.9; color: var(--lex-ink); text-decoration: none; }
.naat-dsb-wotd-roman { display: block; color: var(--lex-emerald); font-weight: 700; font-size: 14px; margin-top: 2px; }
.naat-dsb-wotd-mean { margin: 8px 0 0; color: #475569; font-size: 14px; line-height: 1.6; }
/* Lists */
.naat-dsb-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 2px; }
.naat-dsb-list li { display: flex; align-items: center; justify-content: space-between; gap: 8px; padding: 7px 8px; border-radius: 10px; transition: background .15s; }
.naat-dsb-list li:hover { background: #f8fafc; }
.naat-dsb-list a { display: flex; align-items: baseline; gap: 8px; text-decoration: none; color: #0f172a; min-width: 0; }
.naat-dsb-list a span { font-size: 19px; line-height: 1.8; }
.naat-dsb-list a em { font-style: normal; color: #94a3b8; font-size: 12px; }
.naat-dsb-count { font-size: 11px; font-weight: 700; color: var(--lex-emerald); background: rgba(16,185,129,.1); border-radius: 999px; padding: 2px 9px; flex: none; }
/* Chips */
.naat-dsb-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.naat-dsb-chip { font-size: 17px; line-height: 1.7; padding: 4px 12px; border-radius: 999px; background: #f1f5f9; color: #0f172a; text-decoration: none; transition: all .15s; }
.naat-dsb-chip:hover { background: var(--lex-emerald); color: #fff; }
/* Random */
.naat-dsb-random-word { display: block; font-size: 26px; line-height: 1.9; color: var(--lex-ink); text-decoration: none; }
.naat-dsb-random p { margin: 6px 0 12px; color: #475569; font-size: 14px; }
.naat-dsb-shuffle { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 700; color: var(--lex-emerald); background: rgba(16,185,129,.1); border: none; border-radius: 999px; padding: 7px 16px; cursor: pointer; transition: all .15s; }
.naat-dsb-shuffle:hover { background: var(--lex-emerald); color: #fff; }
/* WhatsApp */
.naat-dsb-wa { text-align: center; background: linear-gradient(135deg,#dcfce7,#fff); border-color: rgba(37,211,102,.25); }
.naat-dsb-wa-ic { font-size: 34px; color: #25D366; }
.naat-dsb-wa strong { display: block; margin: 8px 0 4px; color: #0f172a; font-size: 15px; }
.naat-dsb-wa p { margin: 0 0 12px; color: #475569; font-size: 13px; }
.naat-dsb-wa-btn { display: inline-block; background: #25D366; color: #fff; font-weight: 700; font-size: 14px; padding: 10px 22px; border-radius: 999px; text-decoration: none; transition: transform .15s; }
.naat-dsb-wa-btn:hover { transform: translateY(-2px); }
/* Ad */
.naat-dsb-ad { text-align: center; }
.naat-dsb-ad-label { display: block; font-size: 10px; letter-spacing: .12em; text-transform: uppercase; color: #cbd5e1; margin-bottom: 8px; }
.naat-dsb-ad-ph { border: 1px dashed #e2e8f0; border-radius: 12px; padding: 40px 10px; color: #cbd5e1; font-size: 13px; }

@media (max-width: 1024px) {
	.naat-dict-layout { grid-template-columns: 1fr; }
	.naat-dsb { position: static; flex-direction: row; flex-wrap: wrap; }
	.naat-dsb-card { flex: 1 1 260px; }
}
@media (max-width: 640px) {
	.naat-dict-stickybar { top: 70px; }
	.naat-dsb { flex-direction: column; }
	.naat-dsb-card { flex: 1 1 100%; }
}
@media (prefers-reduced-motion: reduce) {
	.naat-dsb-chip, .naat-dsb-shuffle, .naat-dsb-wa-btn, .naat-dsb-list li { transition: none; }
}

/* ============================================================
   DICTIONARY SINGLE REDESIGN (Item 4) — premium dictionary
   ============================================================ */
.naat-dword-detailwrap { max-width: 1180px; }
.naat-dword-detailgrid { display: grid; grid-template-columns: minmax(0,1fr) 300px; gap: 36px; align-items: start; }
.naat-dword-maincol { min-width: 0; }

/* Bigger hero heading */
.naat-dword-detailgrid .naat-dword-title { font-size: clamp(48px, 9vw, 88px); }
.naat-dword-roman-lg { font-size: clamp(18px,3vw,24px); color: var(--lex-emerald); font-weight: 700; margin: 6px 0 0; }

/* Hero action buttons */
.naat-dword-heroactions { display: flex; gap: 10px; margin: 18px 0 14px; }
.naat-dword-act {
	display: inline-flex; align-items: center; gap: 7px; font-size: 14px; font-weight: 700;
	color: #0f172a; background: #f1f5f9; border: 1px solid #e2e8f0; border-radius: 999px;
	padding: 9px 18px; cursor: pointer; transition: all .15s;
}
.naat-dword-act:hover { background: var(--lex-emerald); color: #fff; border-color: var(--lex-emerald); }
.naat-dword-act.is-copied { background: var(--lex-emerald); color: #fff; }

/* Sticky action panel */
.naat-dword-actionpanel { position: sticky; top: 90px; display: flex; flex-direction: column; gap: 16px; }
.naat-dword-ap-card { background: #fff; border: 1px solid #eef1f5; border-radius: 18px; padding: 22px; text-align: center; box-shadow: 0 8px 30px -18px rgba(6,78,59,.2); }
.naat-dword-ap-word { display: block; font-size: 40px; line-height: 1.8; color: var(--lex-ink); }
.naat-dword-ap-roman { display: block; color: var(--lex-emerald); font-weight: 700; margin: 4px 0 16px; }
.naat-dword-ap-btn { display: flex; align-items: center; justify-content: center; gap: 8px; width: 100%; font-size: 14px; font-weight: 700; border-radius: 12px; padding: 11px; cursor: pointer; transition: all .15s; margin-top: 8px; }
.naat-dword-ap-btn.naat-dword-audio { background: rgba(16,185,129,.1); color: var(--lex-emerald); border: 1px solid rgba(16,185,129,.2); }
.naat-dword-ap-btn.naat-dword-copy { background: var(--lex-emerald); color: #fff; border: 1px solid var(--lex-emerald); }
.naat-dword-ap-btn:hover { transform: translateY(-1px); }
.naat-dword-ap-btn.is-copied { background: #059669; color: #fff; }
.naat-dword-ap-share { background: #fff; border: 1px solid #eef1f5; border-radius: 18px; padding: 18px; text-align: center; }
.naat-dword-ap-sharelabel { display: block; font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: #94a3b8; font-weight: 700; margin-bottom: 12px; }
.naat-dword-ap-share .naat-dword-share { display: flex; justify-content: center; gap: 10px; border: none; padding: 0; margin: 0; }
.naat-dword-ap-share .naat-dword-share a { width: 40px; height: 40px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; background: #f1f5f9; color: #334155; font-size: 17px; transition: all .15s; }
.naat-dword-ap-share .naat-dword-share a:hover { background: var(--lex-emerald); color: #fff; transform: translateY(-2px); }

@media (max-width: 1024px) {
	.naat-dword-detailgrid { grid-template-columns: 1fr; }
	.naat-dword-actionpanel { position: static; flex-direction: row; flex-wrap: wrap; }
	.naat-dword-actionpanel > * { flex: 1 1 240px; }
}
@media (prefers-reduced-motion: reduce) {
	.naat-dword-act, .naat-dword-ap-btn, .naat-dword-ap-share .naat-dword-share a { transition: none; }
}

/* ============================================================
   SINGLE KALAM SIDEBAR — compact Naat Farhang card (Item 7)
   ============================================================ */
.naat-fsb {
	background: #fff;
	border: 1px solid #eef1f5;
	border-radius: 20px;
	padding: 18px;
	box-shadow: 0 8px 30px -18px rgba(6,78,59,.18);
}
.naat-fsb-head { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.naat-fsb-ic { width: 36px; height: 36px; border-radius: 11px; background: linear-gradient(135deg,#10b981,#047857); color: #fff; display: inline-flex; align-items: center; justify-content: center; font-size: 17px; flex: none; }
.naat-fsb-kicker { display: block; font-size: 10px; letter-spacing: .14em; text-transform: uppercase; color: var(--lex-emerald); font-weight: 800; }
.naat-fsb-title { margin: 0; font-size: 16px; font-weight: 800; color: var(--lex-ink); }
.naat-fsb-badge { margin-left: auto; font-size: 12px; font-weight: 800; color: var(--lex-emerald); background: rgba(16,185,129,.1); border-radius: 999px; padding: 3px 11px; }
.naat-fsb-list { list-style: none; margin: 0 0 14px; padding: 0; display: flex; flex-direction: column; }
.naat-fsb-row { display: flex; align-items: baseline; justify-content: space-between; gap: 10px; padding: 8px 4px; border-bottom: 1px dashed #f1f5f9; }
.naat-fsb-row:last-child { border-bottom: none; }
.naat-fsb-word { display: flex; align-items: baseline; gap: 8px; text-decoration: none; min-width: 0; }
.naat-fsb-ur { font-size: 19px; line-height: 1.7; color: #0f172a; }
.naat-fsb-roman { font-size: 12px; color: var(--lex-emerald); font-weight: 600; }
.naat-fsb-mean { font-size: 12px; color: #94a3b8; text-align: right; flex: 1 1 auto; min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.naat-fsb-actions { display: flex; flex-direction: column; gap: 8px; }
.naat-fsb-btn { display: block; text-align: center; font-size: 13px; font-weight: 700; border-radius: 11px; padding: 10px; text-decoration: none; transition: all .15s; }
.naat-fsb-btn-primary { background: var(--lex-emerald); color: #fff; }
.naat-fsb-btn-primary:hover { background: #065f46; }
.naat-fsb-btn-ghost { background: #f1f5f9; color: #0f172a; }
.naat-fsb-btn-ghost:hover { background: #e2e8f0; }
@media (prefers-reduced-motion: reduce) { .naat-fsb-btn { transition: none; } }

/* ============================================================
   Glossary / Naat Farhang — bidirectional language alignment
   (UI improvement 3). Urdu values read RTL/right; Roman Urdu &
   Latin values read LTR/left. Blocks stay visually connected in
   the same row while honouring each language's natural direction.
   Scoped to the Farhang chip rows + sidebar card only.
   ============================================================ */

/* Urdu value: right-to-left, right-aligned. */
.naat-chip-row .naat-chip-v[dir="rtl"] {
	direction: rtl;
	text-align: right;
	unicode-bidi: plaintext;
}

/* Roman Urdu / English value: left-to-right, left-aligned. */
.naat-chip-row .naat-chip-v:not([dir="rtl"]) {
	direction: ltr;
	text-align: left;
	unicode-bidi: plaintext;
}

/* Keep both language blocks visually connected: label stays put,
   value fills the remaining width and aligns per its own direction. */
.naat-chip-row { align-items: baseline; }
.naat-chip-row .naat-chip-v { flex: 1 1 auto; min-width: 0; }

/* Sidebar Farhang card: Urdu word RTL/right, Roman LTR/left, meaning LTR/left. */
.naat-fsb-word { flex-wrap: wrap; }
.naat-fsb-ur { direction: rtl; text-align: right; unicode-bidi: plaintext; }
.naat-fsb-roman { direction: ltr; text-align: left; unicode-bidi: plaintext; }
.naat-fsb-mean { direction: ltr; text-align: left; unicode-bidi: plaintext; }

@media (max-width: 480px) {
	/* On stacked layout keep each block aligned to its reading edge. */
	.naat-chip-row .naat-chip-v[dir="rtl"] { text-align: right; width: 100%; }
	.naat-chip-row .naat-chip-v:not([dir="rtl"]) { text-align: left; width: 100%; }
}

/* ============================================================
   #5 Single Kalaam — compact premium WHITE glossary redesign.
   Scoped to the inline #farhang card. White surface, tighter
   footprint, refined typography, brand-green accents.
   Urdu -> Naat Font; Roman -> standard body font.
   ============================================================ */
#farhang .naat-farhang-card {
	background: #ffffff;
	border: 1px solid #eef2f1;
	border-radius: 18px;
	padding: clamp(16px, 2.4vw, 22px);
	box-shadow: 0 10px 30px -18px rgba(6, 78, 59, 0.22);
	-webkit-backdrop-filter: none;
	backdrop-filter: none;
}
#farhang .naat-farhang-card::before {
	height: 3px;
	background: linear-gradient(90deg, #047857, #10b981);
}
#farhang .naat-farhang-head { margin-bottom: 14px; align-items: center; }
#farhang .naat-farhang-kicker { font-size: 10px; color: #059669; }
#farhang .naat-farhang-title h3 { font-size: clamp(17px, 2.4vw, 21px); color: #0f2a22; }
#farhang .naat-farhang-badge {
	padding: 4px 11px; font-size: 12px; color: #047857;
	background: #ecfdf5; border-color: #a7f3d0;
}
#farhang .naat-farhang-chips { gap: 8px; }
#farhang .naat-chip {
	background: #fff;
	border: 1px solid #eef2f1;
	border-radius: 13px;
	box-shadow: 0 1px 2px rgba(6, 78, 59, 0.04);
}
#farhang .naat-chip:hover {
	transform: translateY(-1px);
	box-shadow: 0 8px 20px -12px rgba(6, 78, 59, 0.3);
	border-color: #6ee7b7;
}
#farhang .naat-chip.is-open { border-color: #34d399; }
#farhang .naat-chip-btn { gap: 8px; padding: 9px 13px; }
#farhang .naat-chip-word {
	font-family: "NaatFont", var(--naat-font-urdu, "Noto Nastaliq Urdu"), serif;
	font-size: 20px; line-height: 1.7; color: #047857; font-weight: 600;
}
#farhang .naat-chip-roman {
	font-family: var(--naat-font-body, "Barlow Semi Condensed", system-ui, sans-serif);
	font-size: 12.5px; color: #64748b; font-weight: 600;
}
/* Glossary panel values: Urdu rows -> Naat Font; everything else standard. */
#farhang .naat-chip-v[dir="rtl"] {
	font-family: "NaatFont", var(--naat-font-urdu, "Noto Nastaliq Urdu"), serif;
}
#farhang .naat-chip-v:not([dir="rtl"]),
#farhang .naat-chip-key {
	font-family: var(--naat-font-body, "Barlow Semi Condensed", system-ui, sans-serif);
}
#farhang .naat-chip-panel { padding: 0 13px 12px; }

/* ============================================================
   Aruuz page — Bahar cards + minimal toolbar (premium white).
   ============================================================ */
.naat-aruuz-main { padding: 7rem 1rem 4rem; }
@media (min-width: 1024px) { .naat-aruuz-main { padding: 8rem 1.5rem 5rem; } }
.naat-aruuz-wrap { max-width: 80rem; margin: 0 auto; }
.naat-aruuz-head { text-align: center; margin-bottom: 2rem; }
.naat-aruuz-eyebrow { font-family: var(--naat-font-ui, sans-serif); font-size: 11px; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; color: #059669; }
.naat-aruuz-title { font-family: var(--naat-font-ui, "Bricolage Grotesque", sans-serif); font-size: clamp(28px, 5vw, 44px); font-weight: 800; color: #0f172a; margin: .35rem 0 .5rem; line-height: 1.1; }
.naat-aruuz-lead { max-width: 42rem; margin: 0 auto; font-family: var(--naat-font-ui, sans-serif); font-size: 14px; color: #64748b; line-height: 1.6; }

.naat-aruuz-toolbar {
	display: flex; flex-wrap: wrap; align-items: center; gap: 10px; justify-content: center;
	background: rgba(255,255,255,.85); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
	border: 1px solid #eef2f6; border-radius: 999px; padding: 8px 12px; margin: 0 auto 2rem; max-width: 44rem;
	box-shadow: 0 4px 16px -12px rgba(15,23,42,.14);
}
.naat-aruuz-search { position: relative; flex: 1 1 220px; min-width: 180px; display: flex; align-items: center; }
.naat-aruuz-search i { position: absolute; left: 14px; color: #94a3b8; font-size: 13px; pointer-events: none; }
#naat-aruuz-search {
	width: 100%; padding: 8px 14px 8px 36px; border: 1px solid #e2e8f0; border-radius: 999px;
	font-size: 12.5px; font-weight: 600; color: #475569; background: #fff; transition: border-color .15s, box-shadow .15s;
}
#naat-aruuz-search:focus { outline: none; border-color: #34d399; box-shadow: 0 0 0 3px rgba(16,185,129,.12); color: #047857; }
.naat-aruuz-fs {
	appearance: none; -webkit-appearance: none; flex: 0 0 auto;
	padding: 8px 30px 8px 14px; border: 1px solid #e2e8f0; border-radius: 999px;
	font-size: 12px; font-weight: 600; color: #475569; background: #fff;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' fill='%2394a3b8' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
	background-repeat: no-repeat; background-position: right 12px center; cursor: pointer; transition: border-color .15s, color .15s;
}
.naat-aruuz-fs:hover { border-color: #34d399; color: #047857; }
.naat-aruuz-empty { text-align: center; color: #94a3b8; padding: 3rem 0; }

.naat-aruuz-grid { display: grid; grid-template-columns: repeat(1, 1fr); gap: 1rem; align-items: stretch; }
@media (min-width: 640px) { .naat-aruuz-grid { grid-template-columns: repeat(2, 1fr); gap: 1.25rem; } }
@media (min-width: 1024px) { .naat-aruuz-grid { grid-template-columns: repeat(3, 1fr); } }

.naat-aruuz-card {
	display: flex; flex-direction: column; background: #fff; border: 1px solid #f1f5f9;
	border-radius: 20px; padding: 18px 18px 14px; box-shadow: 0 4px 20px -8px rgba(6,78,59,.08);
	transition: transform .25s cubic-bezier(.16,1,.3,1), box-shadow .25s ease, border-color .25s ease;
}
.naat-aruuz-card:hover { transform: translateY(-3px); box-shadow: 0 18px 34px -18px rgba(6,78,59,.28); border-color: #d1fae5; }
.naat-aruuz-card[hidden] { display: none; }

.naat-aruuz-card-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 10px; text-decoration: none; }
.naat-aruuz-card-titles { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.naat-aruuz-bahr-name { font-family: var(--naat-font-ui, sans-serif); font-size: 16px; font-weight: 800; color: #0f172a; line-height: 1.3; }
.naat-aruuz-bahr-name.font-urdu { font-family: var(--naat-font-urdu-tax, "Lateef", serif); font-size: 20px; font-weight: 700; }
.naat-aruuz-bahr-ar { font-family: var(--naat-font-urdu-tax, "Lateef", serif); font-size: 13px; color: #94a3b8; }
.naat-aruuz-count { flex-shrink: 0; display: inline-flex; align-items: center; gap: 5px; font-family: var(--naat-font-ui, sans-serif); font-size: 11px; font-weight: 800; color: #047857; background: #ecfdf5; border: 1px solid #a7f3d0; padding: 3px 10px; border-radius: 999px; white-space: nowrap; }

.naat-aruuz-arkaan { margin-top: 12px; padding: 10px 12px; background: #f8fafc; border: 1px dashed #e2e8f0; border-radius: 14px; }
.naat-aruuz-arkaan-label { display: block; font-family: var(--naat-font-ui, sans-serif); font-size: 9px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; color: #94a3b8; margin-bottom: 3px; }
.naat-aruuz-arkaan-val { font-family: var(--naat-font-urdu, "NaatFont"); font-size: 18px; color: #0f766e; line-height: 1.7; display: block; }

.naat-aruuz-previews { list-style: none; margin: 12px 0 0; padding: 0; display: flex; flex-direction: column; gap: 2px; flex: 1 1 auto; }
.naat-aruuz-pv a { display: flex; align-items: center; gap: 4px; padding: 5px 6px; border-radius: 10px; text-decoration: none; transition: background .12s; }
.naat-aruuz-pv a:hover { background: #f0fdf4; }
.naat-aruuz-pv i { color: #34d399; font-size: 16px; flex-shrink: 0; }
.naat-aruuz-pv-line { font-family: var(--naat-font-ui, sans-serif); font-size: 12.5px; color: #475569; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.naat-aruuz-pv-line.font-urdu { font-family: var(--naat-font-urdu-tax, "Lateef", serif); font-size: 15px; }

.naat-aruuz-cta {
	margin-top: 14px; display: inline-flex; align-items: center; justify-content: center; gap: 6px;
	padding: 8px 14px; border-radius: 999px; background: #ecfdf5; border: 1px solid #a7f3d0;
	font-family: var(--naat-font-ui, sans-serif); font-size: 12px; font-weight: 700; color: #047857;
	text-decoration: none; transition: background .15s, gap .15s;
}
.naat-aruuz-cta:hover { background: #d1fae5; gap: 9px; }
@media (prefers-reduced-motion: reduce) { .naat-aruuz-card, .naat-aruuz-cta { transition: none; } }

/* Bahar taxonomy archive (from Aruuz) */
.naat-bahr-back { display: inline-flex; align-items: center; gap: 6px; font-family: var(--naat-font-ui, sans-serif); font-size: 12px; font-weight: 700; color: #047857; text-decoration: none; margin-bottom: 12px; transition: gap .15s; }
.naat-bahr-back:hover { gap: 9px; }
.naat-bahr-arkaan { font-family: var(--naat-font-urdu, "NaatFont"); font-size: 20px; color: #0f766e; margin: 6px 0 4px; line-height: 1.8; }
.naat-bahr-headcount { margin-top: 10px; }
.naat-bahr-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; align-items: stretch; }
@media (min-width: 640px) { .naat-bahr-grid { gap: 1.5rem; } }
@media (min-width: 1024px) { .naat-bahr-grid { grid-template-columns: repeat(4, 1fr); } }
.naat-bahr-pagination { margin-top: 2rem; text-align: center; }
.naat-bahr-pagination .page-numbers { display: inline-flex; align-items: center; justify-content: center; min-width: 36px; height: 36px; padding: 0 10px; margin: 0 3px; border-radius: 999px; border: 1px solid #e2e8f0; background: #fff; color: #475569; font-size: 13px; font-weight: 700; text-decoration: none; }
.naat-bahr-pagination .page-numbers.current, .naat-bahr-pagination .page-numbers:hover { background: #047857; color: #fff; border-color: #047857; }

/* Aruuz card: Roman name, Roman arkan, About, featured star, load-more. */
.naat-aruuz-bahr-roman { display: block; font-family: var(--naat-font-ui, sans-serif); font-size: 13px; font-weight: 700; color: #64748b; margin-top: 2px; }
.naat-aruuz-arkaan-roman { display: block; font-family: var(--naat-font-ui, sans-serif); font-size: 12.5px; color: #0f766e; margin-top: 3px; }
.naat-aruuz-about { font-family: var(--naat-font-ui, sans-serif); font-size: 12.5px; line-height: 1.6; color: #64748b; margin: 12px 0 4px; }
.naat-aruuz-card.is-featured { border-color: #fcd34d; box-shadow: 0 10px 30px -14px rgba(217,164,55,.35); }
.naat-aruuz-star { color: #f59e0b; font-size: 13px; margin-left: auto; }
.naat-aruuz-card-head { position: relative; }
.naat-aruuz-count { margin-top: 12px; text-align: center; }
.naat-aruuz-more-wrap { display: flex; justify-content: center; margin-top: 32px; }
.naat-aruuz-more {
	display: inline-flex; align-items: center; gap: 8px; padding: 12px 28px; border-radius: 999px; cursor: pointer;
	background: #047857; color: #fff; border: none; font-family: var(--naat-font-ui, sans-serif); font-size: 13.5px; font-weight: 700;
	transition: background .18s ease, transform .18s ease;
}
.naat-aruuz-more:hover { background: #065f46; transform: translateY(-2px); }
@media (prefers-reduced-motion: reduce) { .naat-aruuz-more { transition: none; } }
