/* ===========================================================================
   CHOPPY landing — content pages (comparisons, guides)
   Loaded on top of styles.css; uses the same design tokens.
=========================================================================== */

.article {
	max-width: 780px;
	margin: 0 auto;
	padding: 72px 24px 40px;
}

.article__hero {
	padding: 24px 0 8px;
}

.article__hero h1 {
	margin: 14px 0 18px;
	font-size: clamp(32px, 5vw, 46px);
	line-height: 1.08;
	letter-spacing: -0.03em;
	font-weight: 700;
}

.article__hero h1 .accent { color: var(--accent); }

.article__intro {
	font-size: 18px;
	line-height: 1.65;
	color: var(--text-2);
	margin: 0 0 10px;
}

.article__meta {
	font-size: 13px;
	color: var(--text-3);
	margin: 0 0 8px;
}

.article__section {
	margin: 40px 0;
}

.article__section h2 {
	font-size: clamp(22px, 3vw, 28px);
	letter-spacing: -0.02em;
	margin: 0 0 14px;
	font-weight: 650;
}

.article__section p {
	font-size: 16.5px;
	line-height: 1.7;
	color: var(--text-2);
	margin: 0 0 16px;
}

.article__section p strong { color: var(--text); }

/* Callout card (verdict / bottom-line) */
.callout {
	background: var(--surface);
	border: 1px solid var(--hairline);
	border-radius: var(--radius-card);
	box-shadow: var(--shadow-card);
	padding: 26px 28px;
}

.callout h2 { margin-top: 0; }
.callout p:last-of-type { margin-bottom: 0; }
.callout .btn { margin-top: 18px; }

/* Comparison table */
.cmp__scroll {
	overflow-x: auto;
	border: 1px solid var(--hairline);
	border-radius: var(--radius-card);
	background: var(--surface);
	box-shadow: var(--shadow-card);
}

table.cmp {
	width: 100%;
	border-collapse: collapse;
	font-size: 15px;
	min-width: 560px;
}

table.cmp th,
table.cmp td {
	padding: 13px 16px;
	text-align: left;
	vertical-align: top;
	border-bottom: 1px solid var(--divider);
	line-height: 1.45;
}

table.cmp thead th {
	font-size: 13px;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--text-3);
	background: var(--surface-alt);
	font-weight: 600;
}

table.cmp thead th:nth-child(2) { color: var(--accent); }

table.cmp tbody tr:last-child th,
table.cmp tbody tr:last-child td { border-bottom: none; }

table.cmp .cmp__label {
	font-weight: 600;
	color: var(--text);
	white-space: nowrap;
}

table.cmp td { color: var(--text-2); }

/* Checklist (when-Choppy-wins) */
.article__checklist {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 14px;
}

.article__checklist li {
	display: flex;
	gap: 12px;
	align-items: flex-start;
	background: var(--surface);
	border: 1px solid var(--hairline);
	border-radius: var(--radius-card);
	padding: 16px 18px;
	font-size: 15.5px;
	line-height: 1.6;
	color: var(--text-2);
}

.article__checklist li svg {
	flex: none;
	margin-top: 3px;
	color: var(--success);
}

.article__checklist li strong { color: var(--text); }

/* Numbered steps (guides) */
.steps {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 14px;
	counter-reset: step;
}

.steps li {
	display: flex;
	gap: 14px;
	align-items: flex-start;
	background: var(--surface);
	border: 1px solid var(--hairline);
	border-radius: var(--radius-card);
	padding: 16px 18px;
	font-size: 15.5px;
	line-height: 1.6;
	color: var(--text-2);
}

.steps li strong { color: var(--text); }

.steps__num {
	flex: none;
	width: 26px;
	height: 26px;
	border-radius: 50%;
	background: var(--accent-soft);
	color: var(--accent);
	font-size: 13px;
	font-weight: 700;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-top: 2px;
}

/* Ranked app list (best-of page) */
.rank {
	display: flex;
	gap: 18px;
	align-items: flex-start;
	padding: 22px 0;
	border-bottom: 1px solid var(--divider);
}

.rank:last-child { border-bottom: none; }

.rank__num {
	flex: none;
	width: 34px;
	height: 34px;
	border-radius: 10px;
	background: var(--accent-soft);
	color: var(--accent);
	font-weight: 700;
	font-size: 16px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-top: 2px;
}

.rank__body h3 {
	margin: 0 0 4px;
	font-size: 19px;
	letter-spacing: -0.01em;
}

.rank__best {
	font-size: 13.5px;
	font-weight: 600;
	color: var(--accent);
	margin: 0 0 10px !important;
}

/* FAQ */
.faq { margin: 48px 0 8px; }

.faq h2 {
	font-size: clamp(22px, 3vw, 28px);
	letter-spacing: -0.02em;
	margin: 0 0 16px;
	font-weight: 650;
}

.faq__item {
	background: var(--surface);
	border: 1px solid var(--hairline);
	border-radius: var(--radius-card);
	padding: 0 20px;
	margin-bottom: 10px;
}

.faq__item summary {
	cursor: pointer;
	font-weight: 600;
	font-size: 15.5px;
	padding: 16px 0;
	list-style: none;
	position: relative;
	padding-right: 28px;
}

.faq__item summary::-webkit-details-marker { display: none; }

.faq__item summary::after {
	content: '+';
	position: absolute;
	right: 2px;
	top: 50%;
	transform: translateY(-50%);
	color: var(--text-3);
	font-size: 20px;
	font-weight: 400;
}

.faq__item[open] summary::after { content: '–'; }

.faq__item p {
	font-size: 15px;
	line-height: 1.65;
	color: var(--text-2);
	margin: 0 0 16px;
}

.article__disclaimer {
	font-size: 12.5px;
	color: var(--text-3);
	margin: 24px 0 0;
	line-height: 1.5;
}

/* Bottom CTA */
.article__cta {
	margin: 40px 0 8px;
	display: flex;
	justify-content: center;
}

.article__cta .final__ctas {
	display: flex;
	align-items: center;
	gap: 16px;
	flex-wrap: wrap;
	justify-content: center;
}

@media (max-width: 560px) {
	.article { padding-top: 56px; }
	.rank { flex-direction: column; gap: 10px; }
}
