.ptw-verdict-summary {
	display: grid;
	gap: 1.25rem;
	padding: 1.75rem 2rem;
	border: 1px solid #e5e7eb;
	border-radius: 1rem;
	background: #fff;
	box-shadow: 0 1px 3px rgb(15 23 42 / 0.07);
}

.ptw-verdict-summary-header {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 0.75rem;
}

.ptw-verdict-summary-title {
	display: flex;
	gap: 0.75rem;
	align-items: center;
	margin: 0;
	color: #111827;
	font-size: 1.125rem;
	font-weight: 700;
	line-height: 1.35;
}

.ptw-verdict-summary-title::before {
	width: 0.375rem;
	height: 1.75rem;
	border-radius: 999px;
	background: var(--ptw-color-accent-primary);
	content: "";
	flex: 0 0 auto;
}

.ptw-verdict-summary-rating {
	color: #4b5563;
	font-size: 1rem;
}

.ptw-verdict-summary-rating strong {
	color: #111827;
	font-size: 1.125rem;
	font-weight: 700;
}

.ptw-verdict-summary-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(14rem, 1fr));
	gap: 1rem;
}

.ptw-verdict-summary-column {
	display: grid;
	gap: 0.5rem;
	padding: 1rem 1.25rem;
	border: 1px solid;
	border-radius: 0.75rem;
}

.ptw-verdict-summary-column-title {
	margin: 0;
	font-size: 0.75rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.02em;
}

.ptw-verdict-summary-column--positive {
	border-color: var(--ptw-color-positive-border);
	background: linear-gradient(145deg, #f0fdf4, #ecfdf5);
}

.ptw-verdict-summary-column--positive .ptw-verdict-summary-column-title {
	color: var(--ptw-color-positive);
}

.ptw-verdict-summary-column--negative {
	border-color: var(--ptw-color-negative-border);
	background: linear-gradient(145deg, #fef2f2, #fff1f2);
}

.ptw-verdict-summary-column--negative .ptw-verdict-summary-column-title {
	color: var(--ptw-color-negative);
}

.ptw-verdict-summary-column ul {
	display: grid;
	gap: 0.5rem;
	margin: 0;
	padding: 0;
	list-style: none;
}

.ptw-verdict-summary-column li {
	position: relative;
	padding-left: 1.25rem;
	color: #374151;
	font-size: 0.875rem;
	line-height: 1.5;
}

.ptw-verdict-summary-column--positive li::before {
	content: "\2713";
	position: absolute;
	left: 0;
	color: var(--ptw-color-positive);
	font-weight: 700;
}

.ptw-verdict-summary-column--negative li::before {
	content: "\2212";
	position: absolute;
	left: 0;
	color: var(--ptw-color-negative);
	font-weight: 700;
}

.ptw-verdict-summary-link {
	justify-self: start;
	color: var(--ptw-color-accent-primary-text);
	font-size: 0.875rem;
	font-weight: 600;
	text-decoration: underline;
}

.ptw-verdict-summary-link:hover {
	color: #9a3412;
}

.ptw-verdict-summary-link:focus-visible {
	outline: 2px solid var(--ptw-color-accent-primary);
	outline-offset: 2px;
}

@media (max-width: 40rem) {
	.ptw-verdict-summary {
		padding: 1.25rem 1.5rem;
	}
}
