/*!
 * Rahe Boushehr — Main Stylesheet
 * ساختار فایل: ۱) فونت و متغیرها ۲) ریست پایه ۳) تایپوگرافی عمومی
 * ۴) لایوت/کانتینر ۵) نوار بالا و هدر ۶) منو و مگامنو ۷) جست‌وجوی زنده
 * ۸) بخش‌های صفحه اصلی ۹) کارت‌های خبر عمومی ۱۰) تک‌پست ۱۱) دیدگاه‌ها
 * ۱۲) آرشیوها/جست‌وجو ۱۳) گالری/ویدئوی تکی ۱۴) درباره ما/تماس ۱۵) ۴۰۴
 * ۱۶) فوتر و ویجت‌ها ۱۷) دسترسی‌پذیری ۱۸) واکنش‌گرا
 *
 * توجه RTL/LTR: سایت به‌صورت پیش‌فرض RTL است (زبان فارسی)؛ در سراسر
 * این فایل تا حد امکان از ویژگی‌های منطقی CSS (margin-inline-start و
 * ...) استفاده شده تا در صورت تغییر زبان سایت به یک زبان LTR، چیدمان
 * بدون نیاز به فایل جداگانه به‌درستی معکوس شود.
 *
 * @package Rahe_Boushehr
 */

/* ==================================================================
   ۱) فونت (self-hosted) و متغیرهای پایه
   ================================================================== */

@font-face {
	font-family: 'Vazirmatn';
	src: url('../fonts/Vazirmatn-Variable.woff2') format('woff2-variations');
	font-weight: 100 900;
	font-style: normal;
	font-display: swap;
	unicode-range: U+0600-06FF, U+0750-077F, U+FB50-FDFF, U+FE70-FEFF, U+0000-00FF;
}

:root {
	/* رنگ‌های پایه (قابل override از طریق Customizer → inc/class-customizer.php) */
	--ink: #101827;
	--muted: #687386;
	--line: #e7eaf0;
	--bg: #f5f6f8;
	--card: #fff;
	--accent: #b51f2a;
	--accent2: #e9b949;

	/* تایپوگرافی */
	--font-base: 'Vazirmatn', Tahoma, 'Segoe UI', sans-serif;
	--radius-sm: 8px;
	--radius-md: 14px;
	--radius-lg: 18px;

	/* لایوت */
	--container-max: 1240px;
	--container-padding: 22px;

	/* انتقال‌ها */
	--transition-fast: 0.15s ease;
	--transition-base: 0.25s ease;
}

/* ==================================================================
   ۲) ریست پایه
   ================================================================== */

*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	-webkit-text-size-adjust: 100%;
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background: var(--bg);
	color: var(--ink);
	font-family: var(--font-base);
	line-height: 1.7;
	font-size: 15px;
	-webkit-font-smoothing: antialiased;
}

img,
svg {
	max-width: 100%;
	height: auto;
	display: block;
}

a {
	color: inherit;
	text-decoration: none;
}

button,
input,
select,
textarea {
	font-family: inherit;
	font-size: inherit;
	color: inherit;
}

button {
	cursor: pointer;
}

ul,
ol {
	margin: 0;
	padding: 0;
	list-style: none;
}

h1, h2, h3, h4, h5, h6 {
	margin: 0;
	font-weight: 800;
	line-height: 1.4;
}

p {
	margin: 0 0 1em;
}

/* ==================================================================
   ۳) تایپوگرافی عمومی / ابزارهای مشترک
   ================================================================== */

.screen-reader-text {
	position: absolute !important;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip: rect(1px, 1px, 1px, 1px);
	white-space: nowrap;
	border: 0;
}

.skip-link {
	position: fixed;
	top: -100px;
	right: 12px;
	z-index: 10000;
	background: var(--ink);
	color: #fff;
	padding: 12px 20px;
	border-radius: var(--radius-sm);
	transition: top var(--transition-base);
}

.skip-link:focus {
	top: 12px;
}

.tag {
	display: inline-flex;
	width: max-content;
	background: var(--accent);
	color: #fff;
	padding: 6px 10px;
	border-radius: 5px;
	font-size: 11px;
	font-weight: 800;
}

.tag.op {
	background: var(--accent2);
	color: #101827;
}

.btn-primary {
	display: inline-block;
	background: var(--ink);
	color: #fff;
	padding: 12px 26px;
	border: 0;
	border-radius: 10px;
	font-weight: 700;
	font-size: 13px;
	transition: background var(--transition-fast);
}

.btn-primary:hover {
	background: #1c2a3f;
}

.section {
	margin-top: 38px;
}

.section-title {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 15px;
	gap: 12px;
	flex-wrap: wrap;
}

.section-title h2 {
	font-size: 19px;
	margin: 0;
	display: flex;
	align-items: center;
	gap: 10px;
}

.section-title h2::before {
	content: '';
	width: 5px;
	height: 23px;
	background: var(--accent);
	border-radius: 5px;
	flex: none;
}

.section-title .more {
	font-size: 11px;
	color: var(--accent);
	font-weight: 800;
}

/* ==================================================================
   ۴) لایوت / کانتینر
   ================================================================== */

.wrap {
	max-width: var(--container-max);
	margin-inline: auto;
	padding-inline: var(--container-padding);
}

.content-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}

.content-rows,
.news-rows,
.results-list {
	display: flex;
	flex-direction: column;
	gap: 14px;
}

/* ==================================================================
   ۵) نوار بالا و هدر
   ================================================================== */

.top-bar {
	background: #111827;
	color: #dce2eb;
	font-size: 12px;
}

.top-bar-inner {
	height: 38px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
}

.top-bar-left {
	display: flex;
	align-items: center;
	gap: 16px;
}

.top-bar-links {
	display: flex;
	gap: 14px;
}

.dark-mode-toggle {
	background: transparent;
	border: 1px solid rgba(255, 255, 255, 0.2);
	color: #dce2eb;
	border-radius: 20px;
	width: 26px;
	height: 26px;
	display: grid;
	place-items: center;
}

.dark-mode-toggle .icon-moon {
	display: none;
}

html.dark-mode .dark-mode-toggle .icon-sun {
	display: none;
}

html.dark-mode .dark-mode-toggle .icon-moon {
	display: block;
}

.weather-widget {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	color: #ffb6bc;
}

.site-header {
	background: #fff;
	border-bottom: 1px solid var(--line);
	position: sticky;
	top: 0;
	z-index: 30;
	transition: box-shadow var(--transition-base);
}

.site-header.is-sticky {
	box-shadow: 0 4px 16px rgba(16, 24, 39, 0.08);
}

.head {
	height: 92px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 30px;
}

.site-branding {
	display: flex;
	align-items: center;
}

.site-logo img {
	max-height: 60px;
	width: auto;
}

.site-title-link {
	display: flex;
	align-items: center;
	gap: 11px;
}

.site-title-mark {
	width: 45px;
	height: 45px;
	background: var(--accent);
	color: #fff;
	border-radius: 12px 3px 12px 3px;
	display: grid;
	place-items: center;
	font-size: 22px;
	font-weight: 900;
	flex: none;
}

.site-title-text b {
	font-size: 24px;
	display: block;
	line-height: 1;
}

.site-title-text small {
	color: var(--muted);
	font-size: 10px;
}

/* ==================================================================
   ۶) منوی اصلی، مگامنو، دراپ‌داون
   ================================================================== */

.main-navigation {
	border-top: 1px solid #f1f2f5;
}

.nav-wrap {
	display: flex;
	align-items: center;
	gap: 12px;
	height: 49px;
	overflow: visible;
}

.mobile-menu-toggle {
	display: none;
	background: transparent;
	border: 0;
	width: 30px;
	height: 30px;
	position: relative;
}

.hamburger-icon,
.hamburger-icon::before,
.hamburger-icon::after {
	display: block;
	background: var(--ink);
	height: 2px;
	border-radius: 2px;
	transition: transform var(--transition-fast);
}

.hamburger-icon {
	width: 20px;
	margin: 0 auto;
}

.hamburger-icon::before,
.hamburger-icon::after {
	content: '';
	width: 20px;
	position: absolute;
}

.hamburger-icon::before {
	top: -6px;
}

.hamburger-icon::after {
	top: 6px;
}

.mega-menu-wrapper {
	position: relative;
	flex: none;
}

.mega-menu-toggle {
	display: flex;
	align-items: center;
	gap: 7px;
	background: transparent;
	border: 0;
	font-weight: 700;
	font-size: 13px;
	padding: 8px 4px;
	color: var(--ink);
}

.mega-menu-panel {
	position: absolute;
	top: calc(100% + 10px);
	right: 0;
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--radius-md);
	box-shadow: 0 12px 32px rgba(16, 24, 39, 0.14);
	padding: 20px;
	width: min(760px, 90vw);
	z-index: 40;
}

.mega-menu-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 18px;
}

.mega-menu-cat-title {
	font-weight: 800;
	font-size: 13.5px;
	color: var(--accent);
	display: block;
	margin-bottom: 8px;
}

.mega-menu-post-list li {
	padding: 5px 0;
	font-size: 12.5px;
}

.mega-menu-post-list a:hover {
	color: var(--accent);
}

.primary-menu {
	display: flex;
	align-items: center;
	gap: 4px;
	flex-wrap: wrap;
}

.primary-menu > li {
	position: relative;
}

.primary-menu .menu-link {
	display: flex;
	align-items: center;
	gap: 4px;
	padding: 8px 12px;
	font-size: 13px;
	font-weight: 700;
	border-radius: 8px;
}

.primary-menu .menu-link:hover,
.primary-menu > li.current-menu-item > .menu-link {
	color: var(--accent);
}

.primary-menu .sub-menu {
	display: none;
	position: absolute;
	top: 100%;
	right: 0;
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--radius-sm);
	box-shadow: 0 12px 28px rgba(16, 24, 39, 0.12);
	min-width: 200px;
	padding: 8px;
	z-index: 35;
}

.primary-menu > li.has-dropdown:hover > .sub-menu,
.primary-menu > li.has-dropdown:focus-within > .sub-menu,
.primary-menu > li.has-dropdown.is-open > .sub-menu {
	display: block;
}

.primary-menu .sub-menu .menu-link {
	padding: 8px 10px;
	border-radius: 6px;
}

.primary-menu .sub-menu li:hover > .menu-link {
	background: var(--bg);
}

.dropdown-toggle-icon {
	font-size: 9px;
}

.no-menu-notice {
	font-size: 12px;
	color: var(--muted);
}

/* ==================================================================
   ۷) جست‌وجوی زنده (Live Search)
   ================================================================== */

.header-search {
	position: relative;
}

.search-toggle {
	background: #f2f4f7;
	border: 0;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	display: grid;
	place-items: center;
	color: var(--ink);
}

.search-toggle:hover {
	background: var(--accent);
	color: #fff;
}

.live-search-panel {
	position: absolute;
	top: calc(100% + 12px);
	left: 0;
	width: min(380px, 90vw);
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--radius-md);
	box-shadow: 0 16px 40px rgba(16, 24, 39, 0.16);
	padding: 14px;
	z-index: 45;
}

.live-search-form {
	display: flex;
	border: 1px solid var(--line);
	border-radius: 10px;
	overflow: hidden;
}

.live-search-input {
	flex: 1;
	border: 0;
	padding: 10px 12px;
	outline: 0;
}

.live-search-submit {
	background: var(--accent);
	color: #fff;
	border: 0;
	padding: 0 16px;
	font-weight: 700;
	font-size: 12.5px;
}

.live-search-results {
	margin-top: 10px;
	max-height: 320px;
	overflow-y: auto;
}

.live-search-list li {
	border-bottom: 1px solid var(--line);
}

.live-search-list li:last-child {
	border-bottom: 0;
}

.live-search-list a {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 8px 4px;
	font-size: 12.5px;
}

.live-search-list img {
	width: 48px;
	height: 48px;
	border-radius: 8px;
	object-fit: cover;
	flex: none;
}

.live-search-empty {
	font-size: 12px;
	color: var(--muted);
	text-align: center;
	padding: 12px 0;
}

/* ==================================================================
   ۸) بخش‌های صفحه اصلی
   ================================================================== */

/* --- اخبار فوری --- */
.breaking-news {
	background: var(--accent);
	color: #fff;
}

.breaking-news-inner {
	display: flex;
	align-items: center;
	gap: 16px;
	height: 42px;
}

.breaking-news-label {
	background: rgba(0, 0, 0, 0.18);
	padding: 6px 14px;
	border-radius: 20px;
	font-size: 12px;
	font-weight: 800;
	flex: none;
}

.breaking-news-ticker {
	display: flex;
	gap: 34px;
	overflow-x: auto;
	white-space: nowrap;
	font-size: 12.5px;
	font-weight: 600;
}

/* --- هیرو اسلایدر --- */
.hero-slider {
	position: relative;
	margin-top: 24px;
}

.hero-slider-track {
	position: relative;
	aspect-ratio: 21 / 9;
	border-radius: var(--radius-lg);
	overflow: hidden;
	background: #111;
}

.hero-slide {
	position: absolute;
	inset: 0;
}

.hero-slide-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0.85;
}

.hero-slide-overlay {
	position: absolute;
	inset: 0;
	padding: 34px;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	background: linear-gradient(0deg, rgba(0, 0, 0, 0.85), transparent 60%);
	color: #fff;
}

.hero-slide-title {
	font-size: 26px;
	line-height: 1.6;
	margin: 10px 0;
	max-width: 70ch;
}

.hero-slide-meta {
	font-size: 12px;
	color: #dfe3ea;
}

.hero-slider-controls {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 14px;
	margin-top: 14px;
}

.hero-slider-prev,
.hero-slider-next {
	background: #fff;
	border: 1px solid var(--line);
	width: 36px;
	height: 36px;
	border-radius: 50%;
	font-size: 18px;
}

.hero-slider-dots {
	display: flex;
	gap: 8px;
}

.hero-slider-dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--line);
	border: 0;
}

.hero-slider-dot.is-active {
	background: var(--accent);
	width: 22px;
	border-radius: 5px;
	transition: width var(--transition-base);
}

/* --- ردیف‌های خبری (اخبار مهم) --- */
.news-row {
	display: flex;
	gap: 18px;
	background: var(--card);
	border: 1px solid var(--line);
	border-radius: 15px;
	overflow: hidden;
}

.news-row img {
	width: 220px;
	aspect-ratio: 16 / 9;
	object-fit: cover;
	flex: none;
}

.news-row .row-body {
	padding: 14px 18px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	min-width: 0;
}

.news-row h3 {
	font-size: 15.5px;
	line-height: 1.7;
	margin: 7px 0;
	font-weight: 700;
}

.news-row p {
	font-size: 12px;
	line-height: 1.9;
	color: var(--muted);
	margin: 0;
}

.news-row .meta {
	color: #8992a0;
	margin-top: 8px;
	font-size: 11px;
}

/* --- دسته‌بندی‌ها --- */
.categories-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 18px;
}

.category-card {
	background: var(--card);
	border: 1px solid var(--line);
	border-radius: var(--radius-md);
	padding: 16px;
}

.category-card-title {
	font-weight: 800;
	font-size: 14px;
	margin-bottom: 12px;
	display: block;
}

.category-card-post {
	display: block;
}

.category-card-post img {
	width: 100%;
	aspect-ratio: 16 / 9;
	object-fit: cover;
	border-radius: 10px;
	margin-bottom: 8px;
}

.category-card-post span {
	font-size: 12.5px;
	font-weight: 600;
	line-height: 1.7;
}

/* --- گرید رسانه (گزارش تصویری/فیلم) --- */
.media-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 18px;
}

.media-card {
	position: relative;
	aspect-ratio: 16 / 9;
	border-radius: var(--radius-md);
	overflow: hidden;
	background: #222;
	color: #fff;
	display: block;
}

.media-card img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0.75;
}

.media-card .m-overlay {
	position: absolute;
	inset: 0;
	padding: 16px;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	background: linear-gradient(0deg, rgba(0, 0, 0, 0.88), transparent 55%);
}

.media-card .m-icon {
	width: 38px;
	height: 38px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.18);
	border: 1px solid rgba(255, 255, 255, 0.35);
	display: grid;
	place-items: center;
	position: absolute;
	top: 14px;
	right: 14px;
}

.media-card h3 {
	font-size: 14px;
	line-height: 1.7;
	margin: 0 0 4px;
}

.media-card .count {
	font-size: 10.5px;
	color: #dfe3ea;
}

/* --- پربازدیدترین‌ها --- */
.rank-list {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.rank-card {
	display: flex;
	align-items: center;
	gap: 14px;
	background: var(--card);
	border: 1px solid var(--line);
	border-radius: 13px;
	padding: 14px 16px;
}

.rank-card .num {
	font-size: 20px;
	font-weight: 900;
	color: #c5cad3;
	flex: none;
}

.rank-card-body h4 {
	font-size: 13px;
	line-height: 1.7;
	font-weight: 700;
}

.rank-card-body small {
	font-size: 10.5px;
	color: var(--muted);
}

.widget-popular-list li {
	border-bottom: 1px solid var(--line);
}

.widget-popular-list a {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 9px 0;
	font-size: 12.5px;
}

.widget-popular-list .num {
	font-weight: 800;
	color: var(--accent);
	flex: none;
}

/* --- خبرنامه --- */
.newsletter-box {
	background: #fff;
	border: 1px solid var(--line);
	color: var(--ink);
	border-radius: var(--radius-md);
	padding: 30px;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	max-width: 560px;
	margin-inline: auto;
}

.newsletter-box .tag {
	margin-bottom: 12px;
}

.newsletter-box h3 {
	font-size: 19px;
	margin-bottom: 10px;
}

.newsletter-box p {
	font-size: 12.5px;
	color: var(--muted);
}

.newsletter-form {
	width: 100%;
	max-width: 360px;
}

.newsletter-form input[type="email"] {
	width: 100%;
	padding: 12px 14px;
	border: 1px solid var(--line);
	border-radius: 9px;
	margin-bottom: 12px;
	text-align: center;
}

.newsletter-form button {
	width: 100%;
	padding: 12px;
	border: 0;
	border-radius: 10px;
	background: #101827;
	color: #fff;
	font-weight: 700;
	font-size: 13.5px;
}

.newsletter-form button:hover {
	background: #1c2a3f;
}

.newsletter-response {
	font-size: 12px;
	margin-top: 10px;
	min-height: 1em;
}

.newsletter-response.is-success {
	color: #1a7a3f;
}

.load-more-wrapper {
	text-align: center;
	margin-top: 26px;
}

.infinite-scroll-sentinel {
	height: 1px;
}

/* ==================================================================
   ۹) کارت خبر عمومی (آرشیو/جست‌وجو/فال‌بک index.php)
   ================================================================== */

.news-card {
	background: var(--card);
	border: 1px solid var(--line);
	border-radius: var(--radius-md);
	overflow: hidden;
	transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.news-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 10px 24px rgba(16, 24, 39, 0.1);
}

.news-card-media img {
	width: 100%;
	aspect-ratio: 16 / 9;
	object-fit: cover;
}

.news-card-body {
	padding: 15px;
}

.news-card-tag {
	display: inline-block;
	font-size: 11px;
	font-weight: 700;
	color: var(--accent);
	margin-bottom: 8px;
}

.news-card-title {
	font-size: 15.5px;
	line-height: 1.7;
	margin-bottom: 8px;
}

.news-card-excerpt {
	font-size: 12.5px;
	color: var(--muted);
	line-height: 1.85;
	margin-bottom: 10px;
}

.news-card-meta {
	font-size: 11px;
	color: #8992a0;
	display: flex;
	align-items: center;
	gap: 6px;
}

/* ==================================================================
   ۱۰) تک‌پست (خبر / یادداشت / گزارش تصویری / گزارش فیلم)
   ================================================================== */

.reading-progress-bar {
	position: sticky;
	top: 0;
	z-index: 25;
	height: 3px;
	background: transparent;
}

.reading-progress-fill {
	display: block;
	height: 100%;
	width: 0;
	background: var(--accent);
	transition: width 0.1s linear;
}

.single-layout {
	display: grid;
	grid-template-columns: 1fr 320px;
	gap: 30px;
	align-items: start;
	padding-block: 6px 30px;
}

.single-main {
	min-width: 0;
}

.single-article .entry-header {
	margin-bottom: 22px;
}

.single-article .entry-title,
.entry-title {
	font-size: 28px;
	line-height: 1.6;
	font-weight: 800;
	margin: 14px 0 18px;
}

.entry-meta {
	display: flex;
	align-items: center;
	gap: 14px;
	flex-wrap: wrap;
	padding-bottom: 18px;
	border-bottom: 1px solid var(--line);
	font-size: 11.5px;
	color: var(--muted);
}

.entry-meta .avatar {
	width: 34px;
	height: 34px;
	border-radius: 50%;
	object-fit: cover;
}

.meta-sep {
	color: #c3c9d2;
}

.author-hero {
	display: flex;
	align-items: center;
	gap: 18px;
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--radius-md);
	padding: 20px 22px;
	flex-wrap: wrap;
}

.author-hero img {
	width: 70px;
	height: 70px;
	border-radius: 50%;
	object-fit: cover;
	flex: none;
}

.author-hero b {
	font-size: 15px;
	display: block;
	margin-bottom: 4px;
}

.author-hero .role {
	font-size: 11.5px;
	color: var(--accent);
	font-weight: 700;
}

.author-hero .bio {
	font-size: 12px;
	color: var(--muted);
	max-width: 50ch;
	margin: 6px 0 0;
}

.author-hero .meta-side {
	margin-inline-start: auto;
	font-size: 11px;
	color: var(--muted);
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.featured-img img {
	width: 100%;
	aspect-ratio: 16 / 9;
	object-fit: cover;
	border-radius: var(--radius-lg);
}

.img-caption {
	font-size: 11.5px;
	color: #9aa2af;
	text-align: center;
	margin: 10px 0 24px;
}

.entry-content {
	font-size: 15.5px;
	line-height: 2.05;
	color: #2c333e;
	margin: 22px 0;
}

.entry-content p {
	margin: 0 0 20px;
}

.entry-content h2 {
	font-size: 19px;
	font-weight: 800;
	margin: 32px 0 16px;
	display: flex;
	align-items: center;
	gap: 10px;
}

.entry-content h2::before {
	content: '';
	width: 5px;
	height: 22px;
	background: var(--accent);
	border-radius: 5px;
}

.entry-content img {
	border-radius: 14px;
}

.pull-quote {
	border-inline-start: 4px solid var(--accent);
	background: #faf4f4;
	border-radius: 0 12px 12px 0;
	padding: 20px 22px;
	margin: 26px 0;
	font-size: 17px;
	font-weight: 700;
	line-height: 1.85;
}

.single-article--opinion .pull-quote {
	border-inline-start-color: var(--accent2);
	background: #fdf8ea;
}

.tags-row {
	display: flex;
	flex-wrap: wrap;
	gap: 9px;
	margin: 28px 0;
}

.tags-row a {
	background: #f2f4f7;
	color: #4b5563;
	font-size: 11.5px;
	font-weight: 600;
	padding: 7px 14px;
	border-radius: 20px;
}

.tags-row a:hover {
	background: var(--accent);
	color: #fff;
}

.share-row {
	display: flex;
	gap: 8px;
}

.share-btn {
	width: 32px;
	height: 32px;
	border-radius: 50%;
	background: #f2f4f7;
	display: grid;
	place-items: center;
	color: #4b5563;
	border: 0;
}

.share-btn:hover {
	background: var(--accent);
	color: #fff;
}

.share-btn.is-copied {
	background: #1a7a3f;
	color: #fff;
}

.author-full {
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--radius-lg);
	padding: 26px;
	display: flex;
	gap: 20px;
	align-items: center;
	margin: 34px 0;
	flex-wrap: wrap;
}

.author-full--dark {
	background: linear-gradient(150deg, #101827, #1c2a3f);
	color: #fff;
	border-color: transparent;
}

.author-full img {
	width: 80px;
	height: 80px;
	border-radius: 50%;
	object-fit: cover;
	flex: none;
}

.author-full .role {
	font-size: 12px;
	color: var(--accent);
	font-weight: 700;
}

.author-full--dark .role {
	color: var(--accent2);
}

.author-full p {
	font-size: 12.5px;
	color: var(--muted);
	max-width: 60ch;
}

.author-full--dark p {
	color: #c3cad6;
}

.author-full .stats {
	display: flex;
	gap: 18px;
	font-size: 11.5px;
	color: var(--muted);
	margin-top: 8px;
}

.author-full--dark .stats {
	color: #9aa5b5;
}

.related-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
}

.related-card {
	background: #fff;
	border: 1px solid var(--line);
	border-radius: 14px;
	overflow: hidden;
}

.related-card img {
	width: 100%;
	aspect-ratio: 16 / 9;
	object-fit: cover;
}

.related-card .rc-body {
	padding: 12px 14px;
}

.related-card h4 {
	font-size: 13px;
	line-height: 1.7;
	margin-top: 8px;
}

/* ==================================================================
   ۱۱) دیدگاه‌ها
   ================================================================== */

.comments-area {
	margin-top: 40px;
}

.comments-title {
	font-size: 19px;
	margin-bottom: 18px;
}

.comment-list {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.rb-comment {
	border-bottom: 1px solid var(--line);
	padding: 16px 0;
}

.comment-body {
	display: flex;
	gap: 12px;
}

.comment-author-avatar img {
	width: 44px;
	height: 44px;
	border-radius: 50%;
}

.comment-meta {
	display: flex;
	gap: 12px;
	align-items: flex-start;
}

.comment-author {
	font-size: 13px;
}

.comment-date {
	font-size: 10.5px;
	color: var(--muted);
	margin-inline-start: 8px;
}

.comment-content {
	font-size: 13px;
	color: #3c4351;
	line-height: 1.9;
	margin: 8px 0 6px;
}

.comment-reply .comment-reply-link {
	font-size: 11.5px;
	color: var(--accent);
	font-weight: 700;
}

.comment-awaiting-moderation {
	font-size: 11.5px;
	color: var(--accent);
	font-style: italic;
}

.comment-form,
.rb-contact-form {
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--radius-md);
	padding: 24px;
	margin-top: 22px;
}

.comment-form h3 {
	font-size: 16px;
	margin-bottom: 16px;
}

.comment-form-comment textarea,
.rb-contact-form textarea,
.comment-form input {
	width: 100%;
	padding: 11px 13px;
	border: 1px solid var(--line);
	background: #fafbfc;
	border-radius: 9px;
	margin-top: 6px;
}

.comment-form-comment textarea,
.rb-contact-form textarea {
	min-height: 120px;
	resize: vertical;
}

.form-submit input,
.rb-contact-form button {
	padding: 12px 26px;
	border: 0;
	border-radius: 9px;
	background: var(--accent);
	color: #fff;
	font-weight: 700;
	font-size: 13px;
	margin-top: 8px;
}

.form-submit input:hover,
.rb-contact-form button:hover {
	background: #9a1a24;
}

/* ==================================================================
   ۱۲) آرشیوها / نتایج جست‌وجو
   ================================================================== */

.archive-layout {
	display: grid;
	grid-template-columns: 1fr 320px;
	gap: 26px;
	align-items: start;
	padding-block: 6px 30px;
}

.archive-header {
	padding-bottom: 20px;
	border-bottom: 1px solid var(--line);
	margin-bottom: 22px;
}

.archive-header h1 {
	font-size: 25px;
	display: flex;
	align-items: center;
	gap: 10px;
}

.archive-header h1::before {
	content: '';
	width: 6px;
	height: 24px;
	background: var(--accent);
	border-radius: 5px;
	flex: none;
}

.archive-header .hash {
	display: inline-flex;
	background: #f2f4f7;
	color: var(--accent);
	font-weight: 800;
	font-size: 12.5px;
	padding: 7px 15px;
	border-radius: 20px;
	margin-bottom: 12px;
}

.archive-count {
	font-size: 12px;
	color: var(--muted);
	margin-top: 6px;
}

.archive-header .profile-header {
	display: flex;
	align-items: center;
	gap: 18px;
}

.archive-header .profile-header img {
	width: 100px;
	height: 100px;
	border-radius: 50%;
	object-fit: cover;
}

.sort-tabs,
.filter-tabs {
	display: flex;
	gap: 8px;
	margin-bottom: 22px;
	flex-wrap: wrap;
}

.sort-tabs a,
.filter-tabs a {
	font-size: 12.5px;
	font-weight: 700;
	padding: 9px 16px;
	border-radius: 9px;
	background: #fff;
	border: 1px solid var(--line);
	color: var(--muted);
}

.sort-tabs a.active,
.filter-tabs a.active {
	background: var(--accent);
	color: #fff;
	border-color: var(--accent);
}

.related-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 9px;
	margin-bottom: 22px;
}

.related-tags a {
	background: #fff;
	border: 1px solid var(--line);
	color: #4b5563;
	font-size: 11.5px;
	font-weight: 600;
	padding: 8px 15px;
	border-radius: 20px;
}

.related-tags a:hover,
.related-tags a.active {
	background: var(--accent);
	color: #fff;
	border-color: var(--accent);
}

.pagination {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 8px;
	margin: 34px 0 10px;
	flex-wrap: wrap;
}

.pagination a,
.pagination span {
	min-width: 38px;
	height: 38px;
	padding: 0 10px;
	border-radius: 9px;
	display: grid;
	place-items: center;
	font-size: 13px;
	font-weight: 700;
	background: #fff;
	border: 1px solid var(--line);
	color: var(--muted);
}

.pagination .current,
.pagination a:hover {
	background: var(--accent);
	color: #fff;
	border-color: var(--accent);
}

.search-head h1 {
	font-size: 21px;
	margin-bottom: 14px;
}

.search-box-big {
	max-width: 560px;
	margin-bottom: 26px;
}

.search-box-big .search-form {
	display: flex;
	border: 1px solid var(--line);
	border-radius: 12px;
	overflow: hidden;
	background: #fff;
}

.result-row {
	display: flex;
	gap: 18px;
	background: #fff;
	border: 1px solid var(--line);
	border-radius: 15px;
	overflow: hidden;
}

.result-row img {
	width: 220px;
	aspect-ratio: 16 / 9;
	object-fit: cover;
	flex: none;
}

.result-row .row-body {
	padding: 16px 18px;
}

.result-row h3 {
	font-size: 16px;
	line-height: 1.7;
	margin: 8px 0;
}

.result-row mark,
h3 mark,
p mark {
	background: #fdf3d9;
	color: var(--ink);
	padding: 0 2px;
	border-radius: 3px;
}

.no-results-block {
	background: #fff;
	border: 1px dashed var(--line);
	border-radius: var(--radius-lg);
	padding: 44px;
	text-align: center;
}

.no-results-title {
	font-size: 19px;
	margin-bottom: 10px;
}

.no-results-text {
	color: var(--muted);
	font-size: 13px;
	margin-bottom: 22px;
}

/* ==================================================================
   ۱۳) گالری تکی / ویدئوی تکی
   ================================================================== */

.gallery-wrap,
.video-wrap {
	max-width: 900px;
	margin-inline: auto;
}

.gal-title,
.video-title {
	font-size: 24px;
	line-height: 1.6;
	margin: 14px 0;
}

.viewer {
	position: relative;
	aspect-ratio: 16 / 9;
	border-radius: var(--radius-lg);
	overflow: hidden;
	background: #111;
}

.viewer img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.viewer .counter {
	position: absolute;
	top: 14px;
	left: 14px;
	background: rgba(0, 0, 0, 0.55);
	color: #fff;
	font-size: 11.5px;
	font-weight: 700;
	padding: 6px 12px;
	border-radius: 20px;
}

.nav-arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: rgba(0, 0, 0, 0.45);
	color: #fff;
	border: 0;
	font-size: 18px;
}

.nav-arrow.prev {
	left: 14px;
}

.nav-arrow.next {
	right: 14px;
}

.thumb-strip {
	display: flex;
	gap: 10px;
	overflow-x: auto;
	padding: 12px 0;
}

.thumb-strip img {
	width: 96px;
	height: 64px;
	object-fit: cover;
	border-radius: 9px;
	flex: none;
	opacity: 0.55;
	cursor: pointer;
	border: 2px solid transparent;
}

.thumb-strip img.active {
	opacity: 1;
	border-color: var(--accent);
}

.full-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 14px;
	margin: 20px 0;
}

.full-grid figure {
	margin: 0;
	border-radius: 12px;
	overflow: hidden;
	background: #fff;
	border: 1px solid var(--line);
}

.full-grid img {
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
}

.full-grid figcaption {
	font-size: 11px;
	color: var(--muted);
	padding: 9px 11px;
}

.player-poster {
	position: relative;
	aspect-ratio: 16 / 9;
	border-radius: var(--radius-lg);
	overflow: hidden;
	margin: 20px 0;
}

.player-poster img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0.75;
}

.play-btn {
	position: absolute;
	top: 50%;
	right: 50%;
	transform: translate(50%, -50%);
	width: 68px;
	height: 68px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.18);
	border: 1px solid rgba(255, 255, 255, 0.4);
	display: grid;
	place-items: center;
	color: #fff;
}

.video-embed-wrapper iframe,
.video-embed-wrapper video {
	width: 100%;
	border-radius: 14px;
	aspect-ratio: 16 / 9;
}

/* ==================================================================
   ۱۴) صفحات درباره ما / تماس با ما
   ================================================================== */

.about-hero,
.contact-hero {
	text-align: center;
	max-width: 720px;
	margin: 20px auto 34px;
}

.about-hero h1,
.contact-hero h1 {
	font-size: 27px;
	margin: 14px 0 10px;
}

.about-hero p,
.contact-hero p {
	font-size: 13.5px;
	color: var(--muted);
}

.stats-row {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 18px;
	margin-bottom: 44px;
}

.stat-card {
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--radius-md);
	padding: 24px;
	text-align: center;
}

.stat-card b {
	font-size: 26px;
	color: var(--accent);
	display: block;
	margin-bottom: 6px;
}

.stat-card span {
	font-size: 11.5px;
	color: var(--muted);
}

.about-section {
	max-width: 820px;
	margin: 0 auto 40px;
	text-align: center;
}

.about-section p {
	font-size: 14.5px;
	line-height: 2.05;
	color: #2c333e;
}

.values-grid,
.team-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 18px;
	margin-bottom: 44px;
}

.value-card,
.team-card {
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--radius-md);
	padding: 24px 18px;
	text-align: center;
}

.value-card h3 {
	font-size: 15px;
	margin-bottom: 8px;
}

.value-card p {
	font-size: 12px;
	color: var(--muted);
}

.team-card img {
	width: 74px;
	height: 74px;
	border-radius: 50%;
	object-fit: cover;
	margin: 0 auto 12px;
}

.team-card b {
	font-size: 13.5px;
	display: block;
	margin-bottom: 4px;
}

.team-card span {
	font-size: 11px;
	color: var(--accent);
}

.timeline {
	max-width: 620px;
	margin: 0 auto 44px;
	position: relative;
	padding-right: 26px;
	border-right: 2px solid var(--line);
}

.timeline-item {
	position: relative;
	padding-bottom: 26px;
}

.timeline-item::before {
	content: '';
	position: absolute;
	right: -32px;
	top: 2px;
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: var(--accent);
	border: 3px solid #fff;
	box-shadow: 0 0 0 1px var(--line);
}

.timeline-item b {
	font-size: 12.5px;
	color: var(--accent);
	display: block;
	margin-bottom: 4px;
}

.cta-box {
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--radius-lg);
	padding: 36px;
	text-align: center;
}

.cta-box h2 {
	font-size: 18px;
	margin-bottom: 10px;
}

.cta-box p {
	font-size: 12.5px;
	color: var(--muted);
	margin-bottom: 20px;
}

.info-cards {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 16px;
	margin-bottom: 30px;
}

.info-card {
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--radius-md);
	padding: 20px;
	text-align: center;
}

.info-card h4 {
	font-size: 12.5px;
	margin-bottom: 8px;
}

.info-card p {
	font-size: 12px;
	color: var(--muted);
	margin: 0;
}

.contact-layout {
	display: grid;
	grid-template-columns: 1.3fr 1fr;
	gap: 24px;
	align-items: start;
}

.contact-form .sub {
	font-size: 12px;
	color: var(--muted);
	margin-bottom: 20px;
}

.form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 14px;
	margin-bottom: 14px;
}

.form-group label {
	display: block;
	font-size: 12px;
	font-weight: 700;
	margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
	width: 100%;
	padding: 11px 13px;
	border: 1px solid var(--line);
	background: #fafbfc;
	border-radius: 9px;
}

.form-notice {
	padding: 14px 18px;
	border-radius: 10px;
	font-size: 13px;
	margin-bottom: 20px;
}

.form-notice--success {
	background: #e9f7ef;
	color: #1a7a3f;
}

.side-col {
	display: flex;
	flex-direction: column;
	gap: 18px;
}

.map-box {
	aspect-ratio: 4 / 3;
	border-radius: var(--radius-md);
	overflow: hidden;
	position: relative;
	background: linear-gradient(150deg, #dbe3ec, #b9c6d6);
}

.map-box .pin {
	position: absolute;
	top: 50%;
	right: 50%;
	transform: translate(50%, -50%) rotate(-45deg);
	transform-origin: bottom;
	width: 42px;
	height: 42px;
	border-radius: 50% 50% 50% 0;
	background: var(--accent);
	display: grid;
	place-items: center;
	box-shadow: 0 6px 14px rgba(0, 0, 0, 0.25);
}

.map-box .pin svg {
	transform: rotate(45deg);
}

.map-box .grid-lines {
	position: absolute;
	inset: 0;
	background-image:
		repeating-linear-gradient(0deg, rgba(0, 43, 94, 0.08) 0 1px, transparent 1px 40px),
		repeating-linear-gradient(90deg, rgba(0, 43, 94, 0.08) 0 1px, transparent 1px 40px);
}

.hours-box {
	background: linear-gradient(150deg, #101827, #1c2a3f);
	color: #fff;
	border-radius: var(--radius-md);
	padding: 20px;
}

.hours-row {
	display: flex;
	justify-content: space-between;
	font-size: 12px;
	color: #c3cad6;
	padding: 8px 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.hours-row:last-child {
	border-bottom: 0;
}

.social-box {
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--radius-md);
	padding: 20px;
}

.social-list {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
}

.social-list a {
	width: 38px;
	height: 38px;
	border-radius: 50%;
	background: #f2f4f7;
	display: grid;
	place-items: center;
	font-weight: 700;
	color: #4b5563;
}

.social-list a:hover {
	background: var(--accent);
	color: #fff;
}

/* ==================================================================
   ۱۵) صفحه ۴۰۴
   ================================================================== */

.error-wrap {
	max-width: 640px;
	margin: 60px auto;
	text-align: center;
	padding-inline: 20px;
}

.error-icon {
	width: 70px;
	height: 70px;
	border-radius: 50%;
	background: #fdf3f2;
	color: var(--accent);
	display: grid;
	place-items: center;
	margin: 0 auto 20px;
}

.error-code {
	font-size: 90px;
	font-weight: 900;
	line-height: 1;
	background: linear-gradient(135deg, var(--accent), var(--accent2));
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	margin-bottom: 10px;
}

.error-wrap h1 {
	font-size: 20px;
	margin-bottom: 12px;
}

.error-wrap p {
	font-size: 13px;
	color: var(--muted);
	margin-bottom: 22px;
}

.error-search {
	max-width: 460px;
	margin: 0 auto 20px;
}

.error-actions {
	margin-bottom: 30px;
}

.suggest-title {
	font-size: 12px;
	color: var(--muted);
	margin-bottom: 12px;
}

.suggest-links {
	display: flex;
	justify-content: center;
	gap: 10px;
	flex-wrap: wrap;
}

.suggest-links a {
	background: #fff;
	border: 1px solid var(--line);
	color: #4b5563;
	font-size: 12px;
	font-weight: 600;
	padding: 9px 16px;
	border-radius: 20px;
}

.pop-title {
	text-align: center;
	font-size: 17px;
	margin: 40px 0 20px;
}

.pop-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 18px;
	margin-bottom: 50px;
}

.pop-card {
	background: #fff;
	border: 1px solid var(--line);
	border-radius: 15px;
	overflow: hidden;
}

.pop-card img {
	width: 100%;
	aspect-ratio: 16 / 9;
	object-fit: cover;
}

.pop-card .pc-body {
	padding: 14px;
}

/* ==================================================================
   ۱۶) فوتر و ویجت‌ها
   ================================================================== */

.site-footer {
	margin-top: 55px;
	background: #101827;
	color: #cbd3df;
	padding: 42px 0;
}

.footer-widgets-grid {
	display: grid;
	grid-template-columns: 1.4fr 1fr 1fr 1fr;
	gap: 35px;
	padding-bottom: 24px;
	border-bottom: 1px solid #263142;
	margin-bottom: 18px;
}

.footer-brand {
	margin-bottom: 10px;
}

.footer-brand img {
	max-height: 40px;
}

.footer-description {
	font-size: 11.5px;
	line-height: 2.1;
	color: #9da8b8;
}

.footer-widget-column .widget-title {
	color: #fff;
	font-size: 14px;
	margin-bottom: 12px;
}

.footer-widget-column a {
	color: #9da8b8;
	font-size: 11.5px;
	line-height: 2.2;
}

.footer-widget-column a:hover {
	color: #fff;
}

.footer-widget-column .widget {
	margin-bottom: 20px;
}

.footer-bottom {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 14px;
	flex-wrap: wrap;
	font-size: 11px;
	color: #778395;
}

.footer-nav-menu {
	display: flex;
	gap: 16px;
}

.footer-nav-menu a:hover {
	color: #fff;
}

/* ویجت‌های عمومی سایدبار */
.widget {
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--radius-md);
	padding: 18px;
	margin-bottom: 18px;
}

.widget-title {
	font-size: 15px;
	margin-bottom: 14px;
}

.widget ul {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

/* ==================================================================
   ۱۷) دسترسی‌پذیری
   ================================================================== */

body:not(.user-is-tabbing) a:focus,
body:not(.user-is-tabbing) button:focus,
body:not(.user-is-tabbing) input:focus,
body:not(.user-is-tabbing) textarea:focus,
body:not(.user-is-tabbing) select:focus {
	outline: none;
}

.user-is-tabbing a:focus,
.user-is-tabbing button:focus,
.user-is-tabbing input:focus,
.user-is-tabbing textarea:focus,
.user-is-tabbing select:focus,
.user-is-tabbing [tabindex]:focus {
	outline: 2px solid var(--accent);
	outline-offset: 2px;
	border-radius: 4px;
}

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}

	*,
	*::before,
	*::after {
		animation-duration: 0.001ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.001ms !important;
	}
}

/* جایگاه تبلیغات */
.ad-area {
	text-align: center;
	margin: 24px 0;
	overflow: hidden;
}

/* ==================================================================
   ۱۸) واکنش‌گرا (Responsive)
   ================================================================== */

@media (max-width: 1080px) {
	.single-layout,
	.archive-layout {
		grid-template-columns: 1fr;
	}

	.content-grid,
	.categories-grid,
	.media-grid,
	.related-grid,
	.full-grid,
	.pop-grid,
	.stats-row,
	.values-grid,
	.team-grid,
	.info-cards {
		grid-template-columns: repeat(2, 1fr);
	}

	.contact-layout {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 900px) {
	.head {
		height: 78px;
	}

	.mobile-menu-toggle {
		display: block;
	}

	.mega-menu-wrapper {
		order: 3;
	}

	.primary-menu {
		display: none;
		flex-direction: column;
		align-items: stretch;
		width: 100%;
		background: #fff;
		border-top: 1px solid var(--line);
		padding: 10px 0;
	}

	.primary-menu.is-open {
		display: flex;
	}

	.primary-menu .sub-menu {
		position: static;
		box-shadow: none;
		border: 0;
		display: none;
		padding-inline-start: 16px;
	}

	.primary-menu > li.is-open > .sub-menu {
		display: block;
	}

	.nav-wrap {
		flex-wrap: wrap;
		height: auto;
		padding-block: 8px;
	}

	.footer-widgets-grid {
		grid-template-columns: 1fr 1fr;
	}
}

@media (max-width: 720px) {
	.content-grid,
	.categories-grid,
	.media-grid,
	.related-grid,
	.full-grid,
	.pop-grid,
	.stats-row,
	.values-grid,
	.team-grid,
	.info-cards,
	.form-row {
		grid-template-columns: 1fr;
	}

	.hero-slide-title {
		font-size: 20px;
	}

	.hero-slider-track {
		aspect-ratio: 4 / 3;
	}

	.news-row,
	.result-row {
		flex-direction: column;
	}

	.news-row img,
	.result-row img {
		width: 100%;
	}

	.entry-title,
	.single-article .entry-title {
		font-size: 21px;
	}

	.error-code {
		font-size: 60px;
	}

	.footer-widgets-grid {
		grid-template-columns: 1fr;
	}

	.footer-bottom {
		flex-direction: column;
		text-align: center;
	}

	.author-full {
		flex-direction: column;
		text-align: center;
	}

	.author-full .stats {
		justify-content: center;
	}

	.mega-menu-panel {
		width: 92vw;
	}

	.mega-menu-grid {
		grid-template-columns: 1fr;
	}
}
