/* Product comparison table + featured product card */
.wsag-compare {
	margin: 2rem 0;
	overflow-x: auto;
}
.wsag-compare-table {
	width: 100%;
	border-collapse: collapse;
	background: #fff;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 4px 20px rgba(45, 93, 79, 0.06);
}
.wsag-compare-table th,
.wsag-compare-table td {
	padding: 1rem 1.2rem;
	border-bottom: 1px solid #EDEEF0;
	vertical-align: top;
	text-align: left;
}
.wsag-compare-table thead th {
	background: #FAF4ED;
	color: #1F2937;
	font-weight: 700;
	font-size: 1rem;
	border-bottom: 2px solid #E9B08C;
	text-align: center;
}
.wsag-compare-table .brand-link {
	color: #2D5D4F;
	font-weight: 800;
	font-size: 1.05rem;
	text-decoration: none;
}
.wsag-compare-table .brand-link:hover { text-decoration: underline; }
.wsag-compare-table td.spec-label,
.wsag-compare-table th.spec-label {
	background: #FAFAFA;
	font-weight: 700;
	color: #6B7280;
	min-width: 110px;
	width: 15%;
}
.wsag-compare-table tbody tr:last-child td {
	border-bottom: none;
}
.wsag-compare-table tbody tr:hover td:not(.spec-label) {
	background: #FAFAFA;
}

.wsag-compare-disclaimer {
	margin-top: 1rem;
	padding: 0.8rem 1rem;
	background: #FAF4ED;
	border-left: 3px solid #E9B08C;
	color: #6B7280;
	font-size: 0.88rem;
	line-height: 1.6;
	border-radius: 4px;
}

.wsag-compare-sources {
	margin-top: 1rem;
	background: #FAFAFA;
	padding: 0.8rem 1rem;
	border-radius: 8px;
}
.wsag-compare-sources summary {
	cursor: pointer;
	color: #2D5D4F;
	font-weight: 600;
}
.wsag-compare-sources ul {
	margin: 0.6rem 0 0;
	padding-left: 1.2rem;
}
.wsag-compare-sources li {
	font-size: 0.88rem;
	color: #6B7280;
	padding: 0.2rem 0;
}
.wsag-compare-sources a {
	color: #2D5D4F;
	text-decoration: none;
}

/* ── Selection criteria grid (educational) ─────── */
.wsag-criteria {
	margin: 2rem 0;
}
.wsag-criteria-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: 1rem;
}
.wsag-criteria-card {
	background: #fff;
	border: 1px solid #E5E7EB;
	border-radius: 12px;
	padding: 1.4rem 1.3rem;
	transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.wsag-criteria-card:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 24px rgba(45, 93, 79, 0.08);
	border-color: #2D5D4F;
}
.wsag-criteria-icon {
	font-size: 1.8rem;
	margin-bottom: 0.5rem;
	line-height: 1;
}
.wsag-criteria-card h3 {
	font-size: 1.05rem;
	font-weight: 800;
	color: #1F2937;
	margin: 0 0 0.5rem;
	letter-spacing: -0.02em;
}
.wsag-criteria-card p {
	margin: 0;
	color: #4B5563;
	line-height: 1.6;
	font-size: 0.92rem;
	word-break: keep-all;
}
.wsag-criteria-note {
	margin-top: 1.4rem;
	font-size: 0.82rem;
	color: #9CA3AF;
	text-align: center;
	font-style: normal;
}

@media (max-width: 640px) {
	.wsag-compare-table thead th,
	.wsag-compare-table td {
		padding: 0.7rem 0.8rem;
		font-size: 0.9rem;
	}
}

.wsag-empty {
	padding: 2rem;
	text-align: center;
	color: #6B7280;
	background: #FAFAFA;
	border-radius: 12px;
}
