/* =========================================
   Static / Single Pages — Premium Design
   ========================================= */

/* Page Header */
.inStaticPage .static-header {
	text-align: center;
	padding: 2.5rem 0 2rem;
	margin-bottom: 2.5rem;
	border-bottom: 1px solid #e2e8f0;
	position: relative;
}

.static-header__title {
	font-size: 2.4rem;
	font-weight: 800;
	color: #0f172a;
	line-height: 1.35;
	letter-spacing: -0.03em;
	margin: 0;
	position: relative;
	display: inline-block;
}

.static-header__title::after {
	content: '';
	position: absolute;
	bottom: -1.25rem;
	left: 50%;
	transform: translateX(-50%);
	width: 60px;
	height: 4px;
	background: linear-gradient(135deg, #3b82f6, #06b6d4);
	border-radius: 4px;
}

/* Page Body */
.static-body {
	margin-bottom: 2.5rem;
	font-size: 1.05rem;
	line-height: 1.85;
	color: #334155;
}

.static-body h2 {
	font-size: 1.6rem;
	font-weight: 700;
	margin-top: 2.5rem;
	margin-bottom: 1rem;
	color: #0f172a;
	position: relative;
	padding-left: 1rem;
}

.static-body h2::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0.2em;
	bottom: 0.2em;
	width: 4px;
	background: linear-gradient(180deg, #3b82f6, #06b6d4);
	border-radius: 4px;
}

.static-body h3 {
	font-size: 1.3rem;
	font-weight: 700;
	margin-top: 2rem;
	margin-bottom: 0.8rem;
	color: #1e293b;
}

.static-body h4 {
	font-size: 1.1rem;
	font-weight: 600;
	margin-top: 1.5rem;
	margin-bottom: 0.6rem;
	color: #334155;
}

.static-body p {
	margin-bottom: 1.25rem;
}

.static-body img {
	max-width: 100%;
	height: auto;
	border-radius: 16px;
	margin: 1.5rem 0;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.static-body blockquote {
	border-left: 4px solid #3b82f6;
	background: #f8fafc;
	padding: 1.5rem 2rem;
	margin: 1.5rem 0;
	border-radius: 0 16px 16px 0;
	color: #475569;
	font-style: italic;
	font-size: 1.05rem;
}

.static-body ul, .static-body ol {
	padding-left: 1.5rem;
	margin-bottom: 1.25rem;
}

.static-body li {
	margin-bottom: 0.6rem;
	line-height: 1.7;
}

.static-body table {
	width: 100%;
	border-collapse: collapse;
	margin: 1.5rem 0;
	border-radius: 12px;
	overflow: hidden;
	border: 1px solid #e2e8f0;
}

.static-body table th {
	background: #f8fafc;
	font-weight: 600;
	color: #0f172a;
	padding: 12px 16px;
	text-align: left;
	border-bottom: 2px solid #e2e8f0;
}

.static-body table td {
	padding: 12px 16px;
	border-bottom: 1px solid #f1f5f9;
	color: #475569;
}

.static-body table tr:hover td {
	background: #f8fafc;
}

.static-body a {
	color: #2563eb;
	text-decoration: none;
	font-weight: 500;
	transition: color 0.2s;
}

.static-body a:hover {
	color: #1d4ed8;
	text-decoration: underline;
}

.static-body strong {
	color: #0f172a;
	font-weight: 700;
}

/* Share Bar */
.static-share {
	background: #f8fafc;
	border: 1px solid #e2e8f0;
	border-radius: 16px;
	padding: 1.25rem 2rem;
	display: flex;
	align-items: center;
	gap: 1.5rem;
	margin-bottom: 2rem;
}

.static-share__label {
	font-weight: 600;
	color: #475569;
	white-space: nowrap;
	display: flex;
	align-items: center;
}

.static-share__label i {
	color: #3b82f6;
}

/* Responsive */
@media (max-width: 768px) {
	.static-header__title {
		font-size: 1.75rem;
	}
	
	.static-body {
		font-size: 1rem;
	}
	
	.static-share {
		flex-direction: column;
		align-items: flex-start;
		gap: 0.75rem;
	}
}
