/**
 * Zexers — Blog post content blocks (single posts only)
 * Scoped to .inner-content--post .post-content to beat plugin/prose overrides.
 */

.inner-content--post .post-content .tip-box {
	background: #eef5ff;
	border-left: 4px solid #0057ff;
	border-radius: 0 8px 8px 0;
	padding: 16px 20px;
	margin: 24px 0;
}

.inner-content--post .post-content .warn-box {
	background: #fffbeb;
	border-left: 4px solid #d97706;
	border-radius: 0 8px 8px 0;
	padding: 16px 20px;
	margin: 24px 0;
}

.inner-content--post .post-content .card {
	border: 1px solid #e2e6f0;
	border-radius: 10px;
	padding: 24px;
	margin: 28px 0;
	position: relative;
}

.inner-content--post .post-content .card-num {
	position: absolute;
	top: -13px;
	left: 20px;
	background: #0057ff;
	color: #fff;
	font-size: 12px;
	font-weight: 600;
	padding: 3px 12px;
	border-radius: 20px;
}

.inner-content--post .post-content .stats-bar {
	background: #f4f6fb;
	border-left: 4px solid #0057ff;
	border-radius: 0 8px 8px 0;
	padding: 20px 24px;
	margin-bottom: 36px;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
	gap: 16px;
}

.inner-content--post .post-content .stat-num {
	font-size: 26px;
	font-weight: 700;
	color: #0057ff;
	display: block;
}

.inner-content--post .post-content .stat-label {
	display: block;
	margin-top: 2px;
}

.inner-content--post .post-content table {
	width: 100%;
	border-collapse: collapse;
	margin: 24px 0;
}

.inner-content--post .post-content table th {
	background: #1a1a2e;
	color: #fff;
	text-align: left;
	padding: 10px 14px;
	font-size: 13px;
	text-transform: uppercase;
	letter-spacing: 0.3px;
}

.inner-content--post .post-content table td {
	padding: 10px 14px;
	border-bottom: 1px solid #e2e6f0;
}

.inner-content--post .post-content table tr:last-child td {
	border-bottom: none;
}

.inner-content--post .post-content table tr:nth-child(even) td {
	background: #f4f6fb;
}

.inner-content--post .post-content .badge-good {
	background: #d1fae5;
	color: #065f46;
	padding: 2px 8px;
	border-radius: 4px;
	font-size: 12px;
	font-weight: 600;
}

.inner-content--post .post-content .badge-bad {
	background: #fee2e2;
	color: #991b1b;
	padding: 2px 8px;
	border-radius: 4px;
	font-size: 12px;
	font-weight: 600;
}

.inner-content--post .post-content .toc {
	background: #f4f6fb;
	border: 1px solid #e2e6f0;
	border-radius: 10px;
	padding: 20px 24px;
	margin-bottom: 40px;
}

.inner-content--post .post-content .toc a {
	color: #0057ff;
	text-decoration: none;
}

.inner-content--post .post-content .toc a:hover {
	text-decoration: underline;
}

.inner-content--post .post-content .cta-box {
	background: linear-gradient(135deg, #0057ff 0%, #0040cc 100%);
	border-radius: 14px;
	padding: 40px 36px;
	text-align: center;
	margin: 48px 0;
}

.inner-content--post .post-content .cta-box h2 {
	color: #fff;
	margin-top: 0;
}

.inner-content--post .post-content .cta-box p {
	color: rgba(255, 255, 255, 0.85);
}

.inner-content--post .post-content .cta-btn,
.inner-content--post .post-content .cta-box a.cta-btn {
	display: inline-block;
	background: #fff;
	color: #0057ff;
	font-weight: 600;
	padding: 14px 32px;
	border-radius: 8px;
	text-decoration: none;
}

.inner-content--post .post-content .faq-item {
	border: 1px solid #e2e6f0;
	border-radius: 10px;
	margin-bottom: 12px;
	overflow: hidden;
}

.inner-content--post .post-content .faq-q {
	padding: 16px 20px;
	font-weight: 600;
	cursor: pointer;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.inner-content--post .post-content .faq-q:hover {
	background: #f4f6fb;
}

.inner-content--post .post-content .faq-a {
	padding: 0 20px 16px;
	display: none;
	line-height: 1.7;
}

.inner-content--post .post-content .faq-item.open .faq-a {
	display: block;
}

.inner-content--post .post-content .faq-item.open .faq-q {
	background: #f4f6fb;
}

.inner-content--post .post-content .faq-arrow {
	font-size: 18px;
	transition: transform 0.2s;
}

.inner-content--post .post-content .faq-item.open .faq-arrow {
	transform: rotate(180deg);
}

.inner-content--post .post-content .author-box {
	display: flex;
	gap: 16px;
	align-items: flex-start;
	background: #f4f6fb;
	border-radius: 10px;
	padding: 20px;
	margin: 40px 0;
}

.inner-content--post .post-content .author-avatar {
	width: 52px;
	height: 52px;
	border-radius: 50%;
	background: #0057ff;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 600;
	font-size: 18px;
	flex-shrink: 0;
}
