/**
 * Post-specific styles for "Why AI Detection Tools Are a Waste of Time".
 *
 * @package AgenticWP
 */

/* ==========================================================================
   Stop / Start Comparison Table
   ========================================================================== */

.ai-detection-comparison-table {
	margin: 40px 0;
	border-radius: 12px;
	overflow: hidden;
	border: 1px solid var(--line);
}

.ai-detection-comparison-table table {
	width: 100%;
	border-collapse: collapse;
	font-size: 16px;
	margin: 0;
}

.ai-detection-comparison-table thead tr {
	background: var(--ink);
}

.ai-detection-comparison-table th {
	padding: 16px 20px;
	text-align: left;
	font-size: 13px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	color: var(--bg);
	border: none;
	background: transparent;
}

.ai-detection-comparison-table th:first-child {
	color: #f87171;
}

.ai-detection-comparison-table th:last-child {
	color: #86efac;
}

.ai-detection-comparison-table td {
	padding: 14px 20px;
	font-size: 15px;
	line-height: 1.5;
	color: var(--ink);
	border: none;
	border-bottom: 1px solid var(--line);
	vertical-align: top;
}

.ai-detection-comparison-table tr:last-child td {
	border-bottom: none;
}

.ai-detection-comparison-table tbody tr:nth-child(odd) {
	background: #fafafa;
}

.ai-detection-comparison-table tbody tr:nth-child(even) {
	background: var(--bg);
}

.ai-detection-comparison-table td:first-child {
	color: var(--muted);
	text-decoration: line-through;
	text-decoration-color: #fca5a5;
}

.ai-detection-comparison-table td:last-child {
	font-weight: 500;
}

/* ==========================================================================
   Responsive: Mobile (max-width: 640px)
   ========================================================================== */

@media (max-width: 640px) {
	.ai-detection-comparison-table {
		margin: 28px 0;
		border-radius: 8px;
	}

	.ai-detection-comparison-table th,
	.ai-detection-comparison-table td {
		padding: 12px 14px;
		font-size: 14px;
	}

	.ai-detection-comparison-table th {
		font-size: 11px;
	}
}
