/*
 * page.css — Static Pages (من نحن, اتصل بنا, سياسة الخصوصية, شروط الاستخدام)
 * 60-minutes.ma | RTL | Arabic
 */

.static-page {
	direction: rtl;
	background: #F8FAFC;
	padding: 2.5rem 1rem 4rem;
	font-family: 'Noto Sans Arabic', 'Segoe UI', Tahoma, Arial, sans-serif;
	color: #1E293B;
}

.static-container {
	max-width: 820px;
	margin: 0 auto;
}

/* Breadcrumb */
.static-breadcrumb {
	font-size: 0.85rem;
	color: #64748B;
	margin-bottom: 1.5rem;
	display: flex;
	align-items: center;
	gap: 0.4rem;
	flex-wrap: wrap;
}

.static-breadcrumb__link {
	color: #F97316;
	text-decoration: none;
	transition: color 200ms ease;
}

.static-breadcrumb__link:hover {
	color: #EA580C;
	text-decoration: underline;
}

.static-breadcrumb__sep {
	color: #94A3B8;
}

.static-breadcrumb__current {
	color: #1E293B;
	font-weight: 500;
}

/* Article */
.static-article {
	background: #fff;
	border-radius: 16px;
	box-shadow: 0 4px 24px rgba(15, 23, 42, 0.07);
	overflow: hidden;
	border-top: 4px solid #F97316;
}

/* Featured Image */
.static-featured-img {
	width: 100%;
	max-height: 380px;
	overflow: hidden;
}

.static-featured-img__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

/* Title */
.static-title {
	font-family: 'Noto Naskh Arabic', Georgia, serif;
	font-size: 2rem;
	font-weight: 700;
	color: #1E293B;
	margin: 0;
	padding: 2rem 2.5rem 0.85rem;
	line-height: 1.5;
	border-bottom: 2px solid #F1F5F9;
}

/* Content */
.static-content {
	padding: 1.75rem 2.5rem 2.5rem;
	font-size: 1.05rem;
	color: #334155;
	line-height: 1.9;
}

.static-content p {
	margin: 0 0 1.25rem;
}

.static-content h2 {
	font-family: 'Noto Naskh Arabic', Georgia, serif;
	font-size: 1.45rem;
	font-weight: 700;
	color: #1E293B;
	margin: 2rem 0 0.75rem;
	padding-right: 0.85rem;
	border-right: 4px solid #F97316;
}

.static-content h3 {
	font-family: 'Noto Naskh Arabic', Georgia, serif;
	font-size: 1.15rem;
	font-weight: 700;
	color: #1E293B;
	margin: 1.5rem 0 0.5rem;
}

.static-content ul,
.static-content ol {
	padding-right: 1.5rem;
	padding-left: 0;
	margin: 0 0 1.25rem;
}

.static-content li {
	margin-bottom: 0.55rem;
	line-height: 1.75;
}

.static-content a {
	color: #F97316;
	text-decoration: none;
	transition: color 200ms ease;
}

.static-content a:hover {
	color: #EA580C;
	text-decoration: underline;
}

.static-content blockquote {
	border-right: 4px solid #F97316;
	border-left: none;
	padding: 1rem 1.25rem;
	margin: 1.5rem 0;
	background: #FFF7ED;
	color: #64748B;
	border-radius: 0 10px 10px 0;
	font-style: italic;
	line-height: 1.8;
}

.static-content img {
	max-width: 100%;
	border-radius: 10px;
	height: auto;
	box-shadow: 0 2px 12px rgba(15, 23, 42, 0.08);
}

@media (max-width: 600px) {
	.static-title {
		font-size: 1.5rem;
		padding: 1.5rem 1.25rem 0.65rem;
	}

	.static-content {
		padding: 1.25rem 1.25rem 2rem;
		font-size: 1rem;
	}
}
