/* arbah Pro — ads + ticker front-end styles.
   RTL-aware via logical properties. Loaded only on the front end. */

/* ---------- Ad units ---------- */
.arbah-pro-ad {
	display: block;
	text-align: center;
	margin: 15px auto;
	clear: both;
	overflow: hidden;
}

/* Optional "ad" label above the unit (set from the admin page). */
.arbah-pro-ad[data-label]::before {
	content: attr(data-label);
	display: block;
	font-size: 11px;
	color: #999;
	line-height: 1.6;
	text-align: center;
}

/* Device-specific units stay collapsed until JS injects them on a matching
   viewport — the ad code never loads on the wrong device. */
.arbah-pro-ad[data-device] {
	min-height: 0;
	margin: 0;
}
.arbah-pro-ad[data-device].is-active {
	margin: 15px auto;
}

/* CLS guard for the theme's legacy Customizer ad slots is printed inline
   from PHP (wp_head) using the value chosen in the admin page. */

/* ---------- Breaking-news ticker ---------- */
#arbah-pro-ticker {
	position: fixed;
	inset-inline: 0;
	inset-block-end: 0;
	z-index: 9980;
	display: flex;
	align-items: center;
	gap: 0;
	background: #111;
	color: #fff;
	font-size: 14px;
	line-height: 1;
	box-shadow: 0 -2px 10px rgba(0, 0, 0, .25);
}

#arbah-pro-ticker[hidden] {
	display: none;
}

.arbah-pro-ticker-label {
	flex: 0 0 auto;
	background: #d32f2f;
	color: #fff;
	font-weight: 700;
	padding: 12px 14px;
	white-space: nowrap;
}

.arbah-pro-ticker-track {
	flex: 1 1 auto;
	overflow: hidden;
	position: relative;
	height: 38px;
}

.arbah-pro-ticker-items {
	position: absolute;
	inset-block-start: 0;
	inset-inline-start: 0;
	display: flex;
	align-items: center;
	height: 100%;
	white-space: nowrap;
	will-change: transform;
	animation: arbah-pro-marquee 30s linear infinite;
}

.arbah-pro-ticker-track:hover .arbah-pro-ticker-items {
	animation-play-state: paused;
}

.arbah-pro-ticker-item {
	color: #fff;
	text-decoration: none;
	padding: 0 18px;
	position: relative;
}

a.arbah-pro-ticker-item:hover {
	color: #ffd54f;
}

.arbah-pro-ticker-item + .arbah-pro-ticker-item::before {
	content: "•";
	position: absolute;
	inset-inline-start: -4px;
	color: #d32f2f;
}

.arbah-pro-ticker-close {
	flex: 0 0 auto;
	background: transparent;
	border: 0;
	color: #bbb;
	font-size: 20px;
	line-height: 1;
	padding: 10px 12px;
	cursor: pointer;
}

.arbah-pro-ticker-close:hover {
	color: #fff;
}

/* RTL marquee direction: content flows right-to-left. */
@keyframes arbah-pro-marquee {
	from { transform: translateX(0); }
	to   { transform: translateX(100%); }
}

html[dir="ltr"] .arbah-pro-ticker-items {
	animation-name: arbah-pro-marquee-ltr;
}

@keyframes arbah-pro-marquee-ltr {
	from { transform: translateX(0); }
	to   { transform: translateX(-100%); }
}

@media (prefers-reduced-motion: reduce) {
	.arbah-pro-ticker-items {
		animation: none;
	}
	.arbah-pro-ticker-track {
		overflow-x: auto;
	}
}

/* ---------- Author box (end of article) ---------- */
.arbah-pro-author-box {
	display: flex;
	gap: 15px;
	align-items: flex-start;
	margin: 25px 0;
	padding: 18px;
	background: #f7f8fa;
	border: 1px solid #e7e9ee;
	border-radius: 10px;
}

.arbah-pro-author-avatar img {
	border-radius: 50%;
	display: block;
	width: 72px;
	height: 72px;
}

.arbah-pro-author-name {
	display: inline-block;
	font-size: 18px;
	font-weight: 700;
	color: #1a1a1a;
	text-decoration: none;
	margin-bottom: 6px;
}

.arbah-pro-author-name:hover {
	color: #d32f2f;
}

.arbah-pro-author-bio {
	margin: 0 0 8px;
	font-size: 14px;
	line-height: 1.8;
	color: #555;
}

.arbah-pro-author-link {
	font-size: 13px;
	font-weight: 600;
	color: #d32f2f;
	text-decoration: none;
}

.arbah-pro-author-link:hover {
	text-decoration: underline;
}

@media (max-width: 480px) {
	.arbah-pro-author-box {
		flex-direction: column;
		align-items: center;
		text-align: center;
	}
}

/* ---------- Autoload (archives + next article) ---------- */

/* Prev/next links stay VISIBLE (small and subtle) even with infinite scroll
   active — fully clean for Google: same links for users and crawlers, no
   hidden-link gray area. The autoload usually fires before the reader ever
   reaches them. */
.arbah-al-active .navigation.posts-navigation,
.arbah-al-active .navigation.pagination {
	margin: 10px 0 0;
	padding: 8px 0;
	text-align: center;
	font-size: 13px;
	opacity: .75;
}

.arbah-al-active .navigation .nav-links {
	display: flex;
	justify-content: center;
	gap: 24px;
}

.arbah-al-active .navigation a {
	color: #8a8f99;
	text-decoration: none;
}

.arbah-al-active .navigation a:hover {
	color: #d32f2f;
}

.arbah-pro-loader {
	display: flex;
	justify-content: center;
	gap: 8px;
	padding: 25px 0;
}

.arbah-pro-loader span {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: #d32f2f;
	animation: arbah-pro-bounce 0.7s infinite alternate;
}

.arbah-pro-loader span:nth-child(2) { animation-delay: 0.15s; }
.arbah-pro-loader span:nth-child(3) { animation-delay: 0.3s; }

@keyframes arbah-pro-bounce {
	to { transform: translateY(-9px); opacity: .4; }
}

.arbah-pro-al-divider {
	display: flex;
	align-items: center;
	gap: 12px;
	margin: 35px 0 25px;
	font-weight: 700;
	color: #d32f2f;
	font-size: 15px;
}

.arbah-pro-al-divider::before,
.arbah-pro-al-divider::after {
	content: "";
	flex: 1;
	height: 2px;
	background: #e7e9ee;
}

.arbah-pro-al-end {
	text-align: center;
	color: #888;
	padding: 20px 0;
	font-size: 14px;
}

/* ---------- Automatic menus + dark footer ---------- */

/* Category items produced by wp_list_categories inside header menus. */
.arbah-pro-auto-menu .cat-item {
	list-style: none;
}

/* Dark footer (like modern news sites): applies when enabled in settings. */
.arbah-pro-dark-footer .site-footer,
.arbah-pro-dark-footer .site-footer .footer-wrap {
	background: #101114;
	color: #cfd2d8;
}

.arbah-pro-dark-footer .site-footer a {
	color: #e8eaee;
	text-decoration: none;
}

.arbah-pro-dark-footer .site-footer a:hover {
	color: #ff5252;
}

.arbah-pro-dark-footer .footer-navigation ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 8px 22px;
	margin: 0 0 12px;
	padding: 14px 0;
	list-style: none;
	border-block: 1px solid rgba(255, 255, 255, .08);
}

.arbah-pro-dark-footer .footer-navigation li {
	margin: 0;
	list-style: none;
}

.arbah-pro-dark-footer .footer-navigation a {
	font-size: 14px;
	line-height: 1.6;
}

.arbah-pro-dark-footer #copyright {
	text-align: center;
	font-size: 13px;
	color: #9aa0aa;
	padding: 10px 0 18px;
}

.arbah-pro-dark-footer #copyright a {
	color: #ff5252;
}

/* ---------- Homepage category sections (Sahm-style cards) ---------- */
.arbah-pro-home-sec {
	margin: 0 0 22px;
	background: #fff;
	border: 1px solid #eceef2;
	border-radius: 12px;
	padding: 18px 16px;
	box-shadow: 0 1px 3px rgba(15, 20, 30, .04);
}

.arbah-pro-home-sec-title {
	margin: 0 0 18px;
	font-size: 21px;
	font-weight: 800;
}

.arbah-pro-home-sec-title a {
	display: flex;
	justify-content: space-between;
	align-items: center;
	color: #17181c;
	text-decoration: none;
}

.arbah-pro-home-sec-text {
	position: relative;
	padding-bottom: 10px;
}

/* Short red underline under the title text only. */
.arbah-pro-home-sec-text::after {
	content: "";
	position: absolute;
	inset-inline-start: 0;
	bottom: 0;
	width: 100%;
	height: 3px;
	border-radius: 3px;
	background: #d32f2f;
}

.arbah-pro-home-sec-arrow {
	color: #17181c;
	font-size: 22px;
	line-height: 1;
	transition: transform .2s ease;
}

.arbah-pro-home-sec-title a:hover .arbah-pro-home-sec-arrow {
	transform: translateX(-4px);
	color: #d32f2f;
}

/* One full-width card per row on mobile (like the reference), grid on larger screens. */
.arbah-pro-home-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 26px;
}

@media (min-width: 600px) {
	.arbah-pro-home-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 24px 18px;
	}
}

@media (min-width: 1100px) {
	.arbah-pro-home-grid {
		grid-template-columns: repeat(4, 1fr);
	}
}

.arbah-pro-card-thumb {
	display: block;
	overflow: hidden;
	border-radius: 12px;
	margin-bottom: 12px;
	aspect-ratio: 16 / 9;
	background: #eef0f3;
}

.arbah-pro-card-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform .3s ease;
}

.arbah-pro-card:hover .arbah-pro-card-thumb img {
	transform: scale(1.04);
}

.arbah-pro-card-title {
	margin: 0 0 8px;
	font-size: 18px;
	font-weight: 800;
	line-height: 1.75;
}

@media (min-width: 1100px) {
	.arbah-pro-card-title {
		font-size: 15px;
		line-height: 1.65;
	}
}

.arbah-pro-card-title a {
	color: #17181c;
	text-decoration: none;
}

.arbah-pro-card-title a:hover {
	color: #d32f2f;
}

.arbah-pro-card-meta {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 13px;
	color: #8a8f99;
}

.arbah-pro-card-cat {
	color: #6b7280;
	text-decoration: none;
	font-weight: 600;
}

.arbah-pro-card-cat:hover {
	color: #d32f2f;
}

.arbah-pro-card-dot {
	color: #c3c7cf;
}

/* ---------- Sahm-style byline (avatar + author + last update) ---------- */
.arbah-pro-byline {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 8px;
	margin: 14px 0 8px;
	font-size: 15px;
}

.arbah-pro-byline-avatar img {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	display: block;
	background: #eef0f3;
}

.arbah-pro-byline-by {
	color: #8a8f99;
}

.arbah-pro-byline-name {
	color: #17181c;
	font-weight: 700;
	text-decoration: none;
}

.arbah-pro-byline-name:hover {
	color: #d32f2f;
}

.arbah-pro-byline-label {
	color: #8a8f99;
	margin-inline-start: 10px;
	padding-inline-start: 14px;
	border-inline-start: 1px solid #e3e6eb;
}

.arbah-pro-byline-time {
	color: #17181c;
	font-weight: 700;
}

/* Machine-readable dates stay in the markup but never render. */
.arbah-pro-byline-time time {
	display: none !important;
}

@media (max-width: 420px) {
	.arbah-pro-byline {
		font-size: 14px;
		gap: 6px;
	}
	.arbah-pro-byline-avatar img {
		width: 38px;
		height: 38px;
	}
	.arbah-pro-byline-label {
		margin-inline-start: 6px;
		padding-inline-start: 10px;
	}
}

/* ---------- Arabic webfont (Tajawal) ---------- */
body.arbah-pro-font,
body.arbah-pro-font input,
body.arbah-pro-font textarea,
body.arbah-pro-font button,
body.arbah-pro-font select {
	font-family: "Tajawal", "Segoe UI", Tahoma, Arial, sans-serif;
}

body.arbah-pro-font h1,
body.arbah-pro-font h2,
body.arbah-pro-font h3,
body.arbah-pro-font h4 {
	font-family: "Tajawal", "Segoe UI", Tahoma, Arial, sans-serif;
	font-weight: 700;
}

/* ---------- Visible breadcrumbs ---------- */
.arbah-pro-crumbs {
	font-size: 13px;
	color: #8a8f99;
	margin: 0 0 10px;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 6px;
}

.arbah-pro-crumbs a {
	color: #6b7280;
	text-decoration: none;
}

.arbah-pro-crumbs a:hover {
	color: #d32f2f;
}

.arbah-pro-crumbs .separator,
.arbah-pro-crumbs-sep {
	color: #c3c7cf;
}

.arbah-pro-crumbs .last {
	color: #a0a5ae;
	max-width: 45ch;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

/* ---------- Floating back-to-top ---------- */
.arbah-pro-b2t {
	position: fixed;
	inset-inline-end: 18px;
	inset-block-end: 18px;
	z-index: 9985;
	width: 44px;
	height: 44px;
	border: 0;
	border-radius: 50%;
	background: #d32f2f;
	color: #fff;
	font-size: 20px;
	line-height: 44px;
	text-align: center;
	cursor: pointer;
	box-shadow: 0 4px 14px rgba(211, 47, 47, .35);
	opacity: 0;
	visibility: hidden;
	transform: translateY(8px);
	transition: opacity .25s ease, transform .25s ease, visibility .25s;
}

.arbah-pro-b2t.is-visible {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.arbah-pro-b2t.is-lifted {
	inset-block-end: 60px; /* clears the breaking-news ticker */
}

/* ---------- Reading progress bar ---------- */
.arbah-pro-progress {
	position: fixed;
	inset-block-start: 0;
	inset-inline-start: 0;
	z-index: 9990;
	width: 100%;
	height: 3px;
	background: transparent;
	pointer-events: none;
}

.arbah-pro-progress span {
	display: block;
	height: 100%;
	width: 0;
	background: #d32f2f;
	transition: width .1s linear;
}

/* ---------- Fly menu: native scrolling (niceScroll removed) ---------- */
.secondary-navigation {
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
	max-height: calc(100vh - 160px);
}

/* ========================================================================
 * 1.8.2 responsive hardening + article polish
 * Fixes horizontal clipping on narrow RTL screens without merely hiding the
 * offending element. Logical properties keep the same rules safe in LTR.
 * ===================================================================== */
html,
body,
#page,
.site {
	max-width: 100%;
}

.site-content,
.content-area,
.site-main,
.hentry,
.entry-header,
.article-content,
.entry-content,
.entry-footer,
.widget-area {
	min-width: 0;
}

.entry-content img,
.entry-content video,
.entry-content iframe,
.entry-content embed,
.entry-content object,
.entry-content svg,
.entry-thumbnail img,
.wp-caption {
	max-width: 100% !important;
}

.entry-content img,
.entry-thumbnail img {
	display: block;
}

.entry-content iframe,
.entry-content video,
.entry-content embed,
.entry-content object {
	width: 100%;
}

.entry-content pre,
.entry-content code,
.entry-content table {
	max-width: 100%;
}

.entry-content pre {
	overflow: auto;
	white-space: pre-wrap;
	word-break: break-word;
}

.entry-content table {
	display: block;
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
}

.entry-content p,
.entry-content li,
.entry-content h1,
.entry-content h2,
.entry-content h3,
.entry-content h4,
.entry-title,
.arbah-pro-byline {
	overflow-wrap: break-word;
	word-break: normal;
}

#fixed-adze {
	width: min(748px, 100%);
	max-width: 100%;
}

.arbah-pro-ad,
.arbah-pro-ad-inner,
.arbah-pro-ad iframe,
.hero-adze,
.header-bottom-adze,
.post-title-adze,
.first-post-adze,
.read-more-adze,
.prev-next-adze {
	max-width: 100%;
}

.secondary-navigation {
	overflow-y: auto;
	overflow-x: hidden;
	-webkit-overflow-scrolling: touch;
}

body.arbah-menu-open {
	overflow: hidden;
}

/* Cleaner article rhythm on all screens. */
.single .entry-thumbnail img {
	width: 100%;
	min-width: 0;
	border-radius: 6px;
}

.single .entry-thumbnail figcaption,
.entry-content .wp-caption-text,
.entry-content figcaption {
	margin: 0;
	padding: 7px 10px;
	background: #f4f5f7;
	color: #555;
	font-size: 13px;
	line-height: 1.7;
	text-align: center;
}

.entry-content p {
	margin-block: 0 1.15em;
}

.entry-content h2,
.entry-content h3,
.entry-content h4 {
	color: #202124;
	line-height: 1.5;
}

.entry-content h2 {
	margin-block: 1.55em .65em;
}

.entry-content h3,
.entry-content h4 {
	margin-block: 1.35em .55em;
}

@media (max-width: 991px) {
	body {
		overflow-x: clip;
	}

	.site-content {
		width: 100% !important;
		max-width: 100% !important;
		padding-inline-start: max(14px, env(safe-area-inset-right)) !important;
		padding-inline-end: max(14px, env(safe-area-inset-left)) !important;
		margin-inline: auto !important;
	}

	#primary,
	#secondary,
	.single .entry-header,
	.single .article-content,
	.single .entry-content,
	.single .entry-footer,
	.comments-area,
	.related-posts {
		width: 100% !important;
		max-width: 100% !important;
		margin-inline: 0 !important;
	}

	.single .entry-header,
	.single .article-content,
	.single .entry-footer {
		padding-inline: 0 !important;
	}

	.single .entry-title {
		font-size: clamp(26px, 7vw, 34px);
		line-height: 1.45;
		margin-block: 0 12px;
	}

	.page-content,
	.entry-content,
	.entry-summary {
		font-size: clamp(17px, 4.5vw, 19px);
		line-height: 1.95;
	}

	.entry-content h2 {
		font-size: clamp(24px, 6.2vw, 30px);
	}

	.entry-content h3 {
		font-size: clamp(21px, 5.4vw, 26px);
	}

	.single .entry-thumbnail {
		margin: 12px 0 18px;
	}

	.entry-content .alignleft,
	.entry-content .alignright,
	.entry-content .alignwide,
	.entry-content .alignfull {
		float: none;
		width: auto;
		max-width: 100%;
		margin-inline: 0;
	}

	.entry-content blockquote,
	.entry-content q {
		padding: 26px 18px 18px;
		margin-inline: 0;
	}

	.crunchify-social {
		margin-block: 18px 24px;
	}

	.crunchify-social .social-buttons {
		display: flex;
		align-items: center;
		justify-content: center;
		gap: 12px;
		flex-wrap: wrap;
	}

	a.crunchify-link {
		float: none !important;
		display: inline-flex !important;
		align-items: center;
		justify-content: center;
		width: 48px !important;
		height: 48px;
		padding: 0 !important;
		border-radius: 50%;
		line-height: 1;
	}

	a.crunchify-link .fa {
		float: none !important;
		font-size: 25px;
		line-height: 1;
	}

	a.crunchify-link span {
		display: none !important;
	}

	.tada {
		animation: none !important;
	}

	.arbah-pro-byline {
		gap: 7px;
		margin-block: 14px 18px;
		line-height: 1.7;
	}

	.arbah-pro-byline-label {
		margin-inline-start: 6px;
		padding-inline-start: 10px;
	}

	.comment-list .children {
		margin-inline-start: 14px !important;
		margin-inline-end: 0 !important;
	}

	.comment-author,
	.comment-meta,
	.comment-body .comment-content,
	.comment-body .reply {
		max-width: 100%;
	}
}

@media (max-width: 420px) {
	.site-content {
		padding-inline-start: max(12px, env(safe-area-inset-right)) !important;
		padding-inline-end: max(12px, env(safe-area-inset-left)) !important;
	}

	.arbah-pro-byline-avatar img {
		width: 40px;
		height: 40px;
	}

	.arbah-pro-byline-label {
		border-inline-start: 0;
		padding-inline-start: 0;
		margin-inline-start: 0;
	}
}

/* Button element reset for the accessible header controls. */
.nav-toggle,
.search-toggle,
#header-search .close-search {
	border: 0;
	padding: 0;
	font: inherit;
	-webkit-appearance: none;
	appearance: none;
}

.nav-toggle:focus-visible,
.search-toggle:focus-visible,
#header-search .close-search:focus-visible {
	outline: 3px solid rgba(241, 48, 13, .35);
	outline-offset: 3px;
}
.nav-toggle .bars {
	display: block;
	width: 100%;
	height: 100%;
}

.search-toggle,
#header-search .close-search {
	background: transparent;
}


/* ========================================================================
 * 1.8.3 related stories + single-post autoload layout
 * ===================================================================== */

/* The header search UI was removed. Keep old cached markup from flashing. */
.header-search-bar,
#header-search,
.search-toggle {
	display: none !important;
}

/* Server-rendered related links: semantic, crawlable and compact. */
.related-posts {
	clear: both;
	margin: 38px 0 22px;
	padding-top: 28px;
	border-top: 1px solid #e8ebef;
}

.related-posts-heading {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 18px;
}

.related-posts-heading::after {
	content: "";
	flex: 1;
	height: 1px;
	background: #e8ebef;
}

.related-posts .related-posts-title {
	margin: 0 !important;
	padding: 0;
	background: none !important;
	color: #202124;
	font-family: inherit;
	font-size: clamp(24px, 3vw, 30px) !important;
	line-height: 1.35;
	text-align: start;
	text-transform: none;
}

.related-posts .related-posts-title::before {
	content: "";
	display: inline-block;
	width: 5px;
	height: 1.1em;
	margin-inline-end: 9px;
	border-radius: 999px;
	background: #f1300d;
	vertical-align: -.15em;
}

.related-post-wrap {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
}

.related-posts .single-entry.related-card {
	display: flex;
	flex-direction: column;
	min-width: 0;
	margin: 0 !important;
	overflow: hidden;
	background: #fff;
	border: 1px solid #e7e9ee;
	border-radius: 12px;
	box-shadow: 0 3px 14px rgba(20, 27, 37, .05);
	transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.related-posts .single-entry.related-card::after {
	display: none !important;
}

.related-posts .single-entry.related-card:hover {
	transform: translateY(-2px);
	border-color: #d8dce3;
	box-shadow: 0 8px 24px rgba(20, 27, 37, .09);
}

.related-card-media {
	display: block;
	overflow: hidden;
	aspect-ratio: 16 / 9;
	background: #eef0f3;
	line-height: 0;
}

.related-card-media img {
	display: block;
	width: 100%;
	height: 100% !important;
	min-width: 0 !important;
	object-fit: cover;
	transition: transform .28s ease;
}

.related-card:hover .related-card-media img {
	transform: scale(1.035);
}

.related-card-content {
	display: flex;
	flex: 1;
	flex-direction: column;
	padding: 13px 14px 14px;
}

.related-posts .related-card-title {
	margin: 0 0 10px !important;
	font-size: 18px !important;
	font-weight: 700;
	line-height: 1.55;
}

.related-posts .related-card-title a {
	color: #202124;
	text-decoration: none;
}

.related-posts .related-card-title a:hover {
	color: #f1300d;
}

.related-card-date {
	margin-top: auto;
	color: #858b95;
	font-size: 12px;
	line-height: 1.4;
}

/* Keep appended articles inside the original content column. This fixes the
 * old float collision that placed them between #primary and the sidebar. */
.arbah-pro-autoload-host {
	overflow: visible;
}

.arbah-pro-next-article {
	clear: both;
	width: 100%;
	max-width: 100%;
	margin: 44px 0 0;
	padding: 0;
}

.arbah-pro-al-divider {
	display: flex;
	align-items: center;
	gap: 12px;
	margin: 0 0 18px;
	color: #f1300d;
	font-size: 14px;
	font-weight: 700;
}

.arbah-pro-al-divider span {
	display: inline-flex;
	align-items: center;
	min-height: 34px;
	padding: 6px 14px;
	border-radius: 999px;
	background: #fff2ef;
	white-space: nowrap;
}

.arbah-pro-al-divider::before,
.arbah-pro-al-divider::after {
	content: "";
	flex: 1;
	height: 1px;
	background: #e3e6eb;
}

.arbah-pro-next-article > article {
	margin: 0 !important;
	padding: 24px;
	overflow: hidden;
	background: #fff;
	border: 1px solid #e5e8ed;
	border-radius: 14px;
	box-shadow: 0 6px 22px rgba(20, 27, 37, .06);
}

.arbah-pro-next-article .entry-header {
	margin: 0 !important;
	padding: 0 !important;
}

.arbah-pro-next-article .arbah-pro-loaded-title {
	margin: 0 0 12px !important;
	font-size: clamp(27px, 3.2vw, 38px) !important;
	line-height: 1.45;
}

.arbah-pro-next-article .arbah-pro-loaded-title a {
	color: #202124;
	text-decoration: none;
}

.arbah-pro-next-article .arbah-pro-loaded-title a:hover {
	color: #f1300d;
}

.arbah-pro-next-article .entry-thumbnail {
	margin: 14px 0 20px !important;
}

.arbah-pro-next-article .entry-thumbnail img {
	width: 100%;
	border-radius: 10px;
}

/* Avoid repeating a large share row above every automatically loaded story.
 * The footer share row stays available after the story. */
.arbah-pro-next-article .entry-header > .crunchify-social {
	display: none;
}

.arbah-pro-next-article .arbah-pro-author-box {
	margin-bottom: 8px;
}

.arbah-pro-al-sentinel {
	clear: both;
	width: 100%;
	height: 1px;
}

.arbah-pro-al-end {
	clear: both;
	margin: 24px 0 4px;
	padding: 14px;
	border-radius: 10px;
	background: #f7f8fa;
	color: #7a808a;
	text-align: center;
	font-size: 13px;
}

@media (max-width: 991px) {
	.related-post-wrap {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.arbah-pro-next-article {
		margin-top: 34px;
	}

	.arbah-pro-next-article > article {
		padding: 18px;
	}
}

@media (max-width: 600px) {
	.related-posts {
		margin-top: 30px;
		padding-top: 22px;
	}

	.related-post-wrap {
		grid-template-columns: minmax(0, 1fr);
		gap: 12px;
	}

	.related-posts .single-entry.related-card {
		display: grid;
		grid-template-columns: minmax(112px, 38%) minmax(0, 1fr);
		align-items: stretch;
	}

	.related-card-media {
		height: 100%;
		min-height: 112px;
		aspect-ratio: auto;
	}

	.related-card-content {
		padding: 11px 12px;
	}

	.related-posts .related-card-title {
		margin-bottom: 7px !important;
		font-size: 16px !important;
		line-height: 1.55;
	}

	.related-card-date {
		font-size: 11px;
	}

	.arbah-pro-next-article {
		margin-top: 30px;
	}

	.arbah-pro-al-divider {
		margin-bottom: 14px;
	}

	.arbah-pro-al-divider span {
		min-height: 32px;
		padding: 5px 12px;
	}

	.arbah-pro-next-article > article {
		padding: 14px;
		border-radius: 12px;
		box-shadow: 0 4px 16px rgba(20, 27, 37, .05);
	}

	.arbah-pro-next-article .arbah-pro-loaded-title {
		font-size: clamp(25px, 7vw, 31px) !important;
		line-height: 1.5;
	}

	.arbah-pro-next-article .entry-meta {
		margin-top: 8px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.related-posts .single-entry.related-card,
	.related-card-media img {
		transition: none;
	}
}
