/* Tokens: defined in assets/style.css :root (--pt-* aliases). Requires style.css to load first. */
.pt-hero-review__card {
	background: var(--pt-bg-card);
	border-radius: 24px;
	box-shadow:
		0 20px 40px -15px rgba(15, 23, 42, 0.06),
		0 0 0 1px rgba(15, 23, 42, 0.04);
	padding: 32px;
	transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.pt-hero-review__logo-wrap {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.pt-hero-review__logo-box {
	display: flex;
	background: var(--pt-bg-card);
	border: 1px solid var(--pt-border);
	border-radius: 20px;
	padding: 0;
	align-items: center;
	justify-content: center;
	box-shadow: 0 4px 12px rgba(15, 23, 42, 0.03);
	margin-bottom: 10px;
	height: 115px;
	transition: transform 0.2s ease;
	overflow: hidden;
}

.pt-hero-review__logo-box:hover {
	border-color: var(--line-muted);
}

.pt-hero-review__logo-box img {
	max-width: 140px;
	width: 100%;
	height: auto;
	object-fit: contain;
}

.pt-hero-review__licenses-box {
	background: var(--pt-bg-muted);
	border-radius: 20px;
	padding: 20px;
	border: 1px solid var(--pt-border);
}

.pt-hero-review__licenses {
	margin: 0;
	padding: 0;
	list-style: none;
	text-align: left;
}
.pt-hero-review__licenses li:before {
	content: "✓";
	margin-inline-end: 5px;
	color: var(--pt-success);
}
.pt-hero-review__licenses li a {
	color: var(--pt-primary);
	text-decoration: none;
	font-weight: 600;
	border-bottom: 1px dashed rgba(0, 94, 196, 0.3);
	transition: all 0.2s ease;
}

.pt-review-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	width: 100%;
	margin-top: 4px;
	padding: 8px 15px;
	border-radius: 10px;
	border: 1px solid rgba(0, 0, 0, .35);
	color: #111;
	text-decoration: none;
	background: #fff;
	white-space: nowrap;
}

.pt-review-btn:hover {
	text-decoration: none;
	box-shadow: 0 10px 20px rgba(0, 0, 0, .07);
	color: #111;
}

.pt-hero-review__content {
	padding-left: 18px;
}

.pt-hero-review__title {
	font-size: 30px;
	font-weight: 800;
	margin: 0 0 16px 0;
	text-align: center;
	margin-bottom: 28px;
	padding-bottom: 24px;
	border-bottom: 1px solid var(--pt-border);
}

.pt-hero-review__stat {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	background: var(--pt-bg-muted);
	border: 1px solid var(--pt-border);
	border-radius: 16px;
	padding: 16px 20px;
	transition: all 0.2s ease;
	width: 100%;
	height: 115px;
}

.pt-hero-review__stat--rating {
	background: var(--review-badge-gold);
}

.pt-hero-review__stat--score-link {
	display: block;
	text-decoration: none;
	color: inherit;
	cursor: pointer;
}

.pt-hero-review__stat--score-link:hover,
.pt-hero-review__stat--score-link:focus {
	text-decoration: none;
	color: inherit;
	filter: brightness(0.97);
}

.pt-hero-review__stat--score-link:focus {
	outline: 2px solid rgba(0, 0, 0, 0.25);
	outline-offset: 2px;
}

#pt-ranking-methodology-score {
	scroll-margin-top: 96px;
}

.pt-hero-review__stat-label {
	display: flex;
	font-size: 14px;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	color: var(--pt-text-muted);
	align-items: center;
	gap: 8px;
	line-height: 1;
	margin-bottom: 6px;
	overflow: visible;
}

.pt-hero-review__stat-label .pt-bt__heading-with-info {
	position: relative;
	text-transform: none;
	letter-spacing: normal;
}

.pt-bt__heading-with-info {
	position: relative;
}

.pt-bt__disclosure {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 1.25rem;
	height: 1.25rem;
	margin-top: -1px;
	color: rgba(0, 0, 0, 0.55);
	cursor: help;
	line-height: 1;
	flex: 0 0 auto;
}

.pt-bt__disclosure:focus {
	outline: none;
}

.pt-bt__disclosure:focus-visible .pt-bt__disclosure-icon {
	outline: 2px solid rgba(30, 102, 255, 0.45);
	outline-offset: 2px;
	border-radius: 50%;
}

.pt-bt__disclosure-icon {
	font-size: 1rem;
	font-weight: 600;
}

.pt-bt__disclosure-popover {
	position: absolute;
	top: 100%;
	right: 0;
	z-index: 30;
	padding-top: 8px;
	visibility: hidden;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.15s ease, visibility 0.15s ease;
}

.pt-bt__disclosure:hover .pt-bt__disclosure-popover,
.pt-bt__disclosure:focus-within .pt-bt__disclosure-popover {
	visibility: visible;
	opacity: 1;
	pointer-events: auto;
}

.pt-bt__disclosure-tooltip {
	display: block;
	width: max-content;
	max-width: min(320px, calc(100vw - 2rem));
	padding: 10px 12px;
	border-radius: 8px;
	border: 1px solid rgba(0, 0, 0, 0.1);
	background: #fff;
	box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
	color: rgba(0, 0, 0, 0.82);
	font-size: 13px;
	line-height: 1.45;
	font-weight: 400;
	text-align: left;
	text-transform: none;
	letter-spacing: normal;
}

.pt-bt__disclosure-link {
	color: inherit;
	font-weight: 600;
	text-decoration: underline;
	text-underline-offset: 2px;
}

.pt-bt__disclosure-link:hover,
.pt-bt__disclosure-link:focus {
	color: var(--primary, #1e66ff);
}

@media (max-width: 575.98px) {
	.pt-bt__disclosure-popover {
		right: auto;
		left: 50%;
		transform: translateX(-50%);
	}
}

.pt-hero-review__stat-value {
	font-size: 24px;
	font-weight: 700;
	line-height: 1.1;
	margin-top: 6px;
}

.pt-bt__our-score__scale {
	font-size: 0.72em;
	font-weight: 600;
	opacity: 0.8;
	margin-left: 1px;
}

.pt-hero-review__sparkline,
.pt-bt__sparkline {
	width: 110px;
	height: 38px;
	flex: 0 0 auto;
	border-radius: 7px;
	background: var(--primary-surface);
	border: 1px solid var(--primary-border);
	overflow: visible;
	position: relative;
	z-index: 1;
	transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.pt-hero-review__stat-value:has(.pt-bt__sparkline),
.pt-bt__value:has(.pt-bt__sparkline) {
	overflow: visible;
}

.pt-hero-review__sparkline:hover,
.pt-bt__sparkline:hover {
	border-color: var(--primary-border-light);
	box-shadow: 0 0 0 1px rgba(0, 94, 196, 0.08);
	z-index: 2;
}

.pt-hero-review__stat-value .fw-semibold {
	font-size: 24px;
	font-weight: 700;
}

.pt-hero-review__stat-value a {
	color: inherit;
}

.pt-hero-review__note {
	margin-top: 12px;
	font-style: italic;
	color: rgba(0, 0, 0, 0.55);
}

.pt-hero-review__question {
	margin-top: 16px;
	font-size: 24px;
	font-weight: 800;
}

.pt-hero-review__bar {
	background: linear-gradient(
		135deg,
		var(--gradient-title-blue-start) 0%,
		var(--gradient-title-blue-end) 100%
	);
	border-radius: 18px;
	padding: 10px 20px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	box-shadow: 0 12px 24px -10px rgba(13, 71, 161, 0.4);
	margin-bottom: 16px;
	color: var(--surface);
	border: 1px solid rgba(255, 255, 255, 0.1);
}

.pt-hero-review__bar-left {
	display: flex;
	align-items: center;
	gap: 14px;
	min-width: 0;
}

.pt-hero-review__bar-logo {
	width: 44px;
	height: 44px;
	border-radius: 8px;
	overflow: hidden;
	border: 2px solid rgba(255, 255, 255, 0.55);
	background: rgba(255, 255, 255, 1);
	display: flex;
	align-items: center;
	justify-content: center;
}

.pt-hero-review__bar-logo img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	display: block;
}

.pt-hero-review__bar-text {
	color: var(--surface);
	font-size: 18px;
	overflow: hidden;
	text-overflow: ellipsis;
}

.pt-hero-review__bar-label {
	opacity: 0.9;
	margin-right: 10px;
}

.pt-hero-review__bar-value {
	font-weight: 900;
}

.pt-hero-review-cta {
	background: var(--surface);
	color: var(--gradient-title-blue-start) !important;
	font-weight: 700;
	font-size: 1rem;
	padding: 8px 28px;
	border-radius: 30px;
	display: flex;
	align-items: center;
	gap: 10px;
	text-decoration: none !important;
	box-shadow: 0 4px 12px rgba(15, 23, 42, 0.15);
	transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
	cursor: pointer;
}

.pt-hero-review-cta:hover {
	background: var(--pt-bg-muted);
	transform: translateY(-1px) scale(1.02);
	box-shadow: 0 8px 16px rgba(15, 23, 42, 0.25);
}

.pt-hero-review-cta__icon {
	width: 30px;
	height: 30px;
	border-radius: 8px;
	background: var(--surface);
	color: var(--black);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-weight: 900;
}

.pt-hero-review-cta:hover .pt-hero-review-cta__icon {
	background: var(--pt-bg-muted);
}

@media (max-width: 767.98px) {
	.pt-hero-review__content {
		padding-left: 0;
		margin-top: 16px;
	}

	.pt-hero-review__logo-box {
		width: 100%;
		height: 150px;
	}

	.pt-hero-review__title {
		font-size: 26px;
		margin-bottom: 20px;
		padding-bottom: 0;
		border-bottom: 0;
	}

	.pt-hero-review__question {
		font-size: 20px;
	}

	.pt-hero-review__bar {
		flex-direction: column;
		align-items: stretch;
	}

	.pt-hero-review__bar-logo {
		display: none;
	}

	.pt-hero-review__bar-text {
		white-space: normal;
	}

	.pt-hero-review__bar-left,
	.pt-hero-review-cta {
		justify-content: center;
	}

	.pt-hero-review__question,
	.pt-hero-review__bar-right {
		text-align: center;
	}

	.pt-hero-review__stat {
		height: auto;
	}

	.pt-hero-review__stat-value {
		font-size: 22px;
	}

	.pt-hero-review__note {
		font-size: 14px;
	}
}

/*--------------------------------------------------------------
## Contacts
--------------------------------------------------------------*/
ul.pt-contact-details__lines {
	border-radius: 20px;
	background: var(--lightBlue);
	padding: 20px !important;
	box-shadow:
		0 20px 40px -15px rgba(15, 23, 42, 0.06),
		0 0 0 1px rgba(15, 23, 42, 0.04);
}

.pt-contact-details__map {
	border-radius: 20px;
	overflow: hidden;
}

/*--------------------------------------------------------------
## Jackpots
--------------------------------------------------------------*/
.pt-jackpots-grid__title {
	font-weight: 800;
	font-size: 2rem;
	letter-spacing: -0.5px;
	margin-bottom: 32px;
	position: relative;
	display: inline-block;
}

.pt-jackpots-grid__title:after {
	content: "";
	display: block;
	width: 45px;
	height: 4px;
	background: linear-gradient(
		90deg,
		var(--info-reputation-hover),
		var(--info-reputation)
	);
	border-radius: 2px;
	margin-top: 8px;
}

.pt-jackpots-grid__card {
	border: 1px solid rgba(226, 232, 240, 0.8);
	border-radius: 15px;
	background-color: var(--surface);
	box-shadow:
		0 20px 35px rgba(15, 23, 42, 0.1),
		0 10px 15px rgba(15, 23, 42, 0.05);
	overflow: hidden;
	transition:
		transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
		box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1),
		border-color 0.35s ease;
}

.pt-jackpots-grid__card:hover {
	transform: translateY(-8px);
	box-shadow:
		0 20px 35px rgba(15, 23, 42, 0.1),
		0 10px 15px rgba(15, 23, 42, 0.05);
	border-color: rgba(245, 158, 11, 0.3);
}

.pt-jackpots-grid__thumb {
	overflow: hidden;
	position: relative;
	background: var(--border);
}

.pt-jackpots-grid__thumb img {
	transition: transform 0.5s ease;
}

.pt-jackpots-grid__card:hover .pt-jackpots-grid__thumb img {
	transform: scale(1.05);
}

.pt-jackpots-grid__thumb:after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(
		180deg,
		rgba(0, 0, 0, 0) 60%,
		rgba(0, 0, 0, 0.03) 100%
	);
	pointer-events: none;
}

.pt-jackpots-grid__card .card-body {
	padding: 20px;
}

.pt-jackpots-grid__card .card-title {
	font-size: 1.05rem;
	font-weight: 700;
	line-height: 1.4;
	margin-bottom: 4px;
	transition: color 0.2s ease;
}

.pt-jackpots-grid__card:hover .card-title {
	color: var(--info-reputation);
}

.pt-jackpots-grid__card .card-text.text-muted {
	font-size: 0.8rem;
	font-weight: 500;
	letter-spacing: 0.2px;
	color: var(--info-reputation);
}

.pt-jackpots-grid__amount {
	font-size: 1.25rem;
	font-weight: 800;
	letter-spacing: -0.3px;
	background: linear-gradient(135deg, #1e293b 0%, var(--text) 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	display: flex;
	align-items: center;
	gap: 8px;
	margin-top: 12px;
	padding-top: 12px;
	border-top: 1px dashed var(--border);
}

.pt-jackpots-grid__amount:before {
	content: "";
	display: inline-block;
	width: 8px;
	height: 8px;
	background-color: var(--info-reputation-hover);
	border-radius: 50%;
	box-shadow: 0 0 0 0 var(--pulse-color);
	animation: pulse-live 1.8s infinite;
	flex-shrink: 0;
	-webkit-text-fill-color: initial;
}

@keyframes pulse-live {
	0% {
		transform: scale(0.95);
		box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.7);
	}
	70% {
		transform: scale(1);
		box-shadow: 0 0 0 6px rgba(245, 158, 11, 0);
	}
	100% {
		transform: scale(0.95);
		box-shadow: 0 0 0 0 rgba(245, 158, 11, 0);
	}
}

/*--------------------------------------------------------------
## Compact review (ported from TEST prototype; scoped to review template)
--------------------------------------------------------------*/
/* Compact editorial review layout, toolbar, drawers, and denser widgets. */

body.page-template-review {
  --ptx-blue: #2f66e8;
  --ptx-blue-dark: #1d4fc2;
  --ptx-blue-soft: #eaf3ff;
  --ptx-blue-pale: #f7faff;
  --ptx-red: #ef4058;
  --ptx-green: #16865f;
  --ptx-amber: #a86f00;
  --ptx-ink: #172033;
  --ptx-muted: #65748a;
  --ptx-border: #dbe5f0;
  --ptx-surface: #ffffff;
  --ptx-navy: #1c2940;
  background: #f7f9fc;
  color: var(--ptx-ink);
}

.page-template-review *,
.page-template-review *::before,
.page-template-review *::after {
  box-sizing: border-box;
}

.page-template-review html {
  scroll-behavior: smooth;
}

.page-template-review .site-main > .container,
.page-template-review .pt-hero-review > .container {
  width: min(1240px, calc(100% - 32px));
  max-width: none;
  margin-inline: auto;
  padding-inline: 0;
}

.page-template-review .entry-content > *,
.page-template-review .entry-content [id^="h2-"],
.page-template-review #quick-verdict-title {
  scroll-margin-top: 92px;
}

/* ------------------------------
   Existing review hero
------------------------------ */
.page-template-review .pt-hero-review {
  padding: 18px 0 12px;
  background: linear-gradient(180deg, #f1f7ff 0%, #f7f9fc 100%);
}

.page-template-review .pt-hero-review .container.py-4 {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.page-template-review .pt-hero-review__card {
  overflow: hidden;
  border: 1px solid #d7e4f3;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 8px 26px rgba(23, 32, 51, 0.06);
}

.page-template-review .pt-hero-review__card > .row {
  display: grid;
  grid-template-columns: 185px minmax(0, 1fr);
  margin: 0;
}

.page-template-review .pt-hero-review__card > .row > .col-md-3,
.page-template-review .pt-hero-review__card > .row > .col-md-9 {
  width: auto;
  max-width: none;
  flex: none;
  padding: 0;
}

.page-template-review .pt-hero-review__logo-wrap {
  display: grid;
  align-content: start;
  gap: 12px;
  min-height: 100%;
  padding: 18px;
  border-right: 1px solid #d9e6f6;
  background: var(--ptx-blue-soft);
}

.page-template-review .pt-hero-review__logo-box {
  display: grid;
  place-items: center;
  width: 96px;
  aspect-ratio: 1;
  margin-inline: auto;
  padding: 10px;
  border: 1px solid #dce5ef;
  border-radius: 14px;
  background: #fff;
}

.page-template-review .pt-hero-review__logo-box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 9px;
}

.page-template-review .pt-hero-review__licenses-box {
  padding: 0;
  border: 0;
  background: transparent;
}

.page-template-review .pt-hero-review__licenses {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: #4e6077;
  font-size: 12px;
  line-height: 1.42;
}

.page-template-review .pt-hero-review__licenses li {
  position: relative;
  padding: 0 0 10px 14px;
  border-bottom: 1px solid rgba(119, 151, 190, 0.22);
}

.page-template-review .pt-hero-review__licenses li:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.page-template-review .pt-hero-review__licenses li:before {
  content: "";
  display: block;
  position: absolute;
  top: 0.7em;
  left: 0;
  width: 6px;
  height: 6px;
  margin: 0;
  border-radius: 50%;
  background: #1a9d64;
  transform: translateY(-50%);
}

.page-template-review .pt-review-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  width: 100%;
  min-height: 39px;
  margin-top: 2px;
  padding: 8px 11px;
  border-radius: 10px;
  background: var(--ptx-red);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  text-decoration: none;
}

.page-template-review .pt-hero-review__content {
  padding: 20px 24px 18px;
}

.page-template-review .pt-hero-review__title {
  margin: 0 0 12px;
  color: var(--ptx-ink);
  font-size: clamp(30px, 3.1vw, 44px);
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.page-template-review .pt-hero-review__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin: 0 0 10px;
}

.page-template-review .pt-hero-review__stats > [class*="col-"] {
  width: auto;
  max-width: none;
  margin: 0 !important;
  padding: 0;
}

.page-template-review .pt-hero-review__stat {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 66px;
  padding: 10px 12px;
  border: 1px solid #dce6f1;
  border-radius: 11px;
  background: #f9fbfe;
  color: inherit;
  text-decoration: none;
}

.page-template-review .pt-hero-review__stat-label {
  min-height: 0;
  margin-bottom: 5px;
  color: #6b798c;
  font-size: 11px;
  font-weight: 800;
}

.page-template-review .pt-hero-review__stat-value {
  min-height: 0;
  color: var(--ptx-ink);
  font-size: 19px;
  line-height: 1.1;
}

.page-template-review .pt-hero-review__stat .trust-pilot-rating__score,
.page-template-review .pt-hero-review__stat .pt-bt__our-score__value {
  font-size: 19px;
}

.page-template-review .pt-hero-review__stat .trust-pilot-rating__meta {
  font-size: 10px;
  line-height: 1.35;
}

.page-template-review .pt-hero-review__note {
  margin: 7px 0;
  color: #7a889b;
  font-size: 11px;
  line-height: 1.45;
}

.page-template-review .pt-hero-review__question {
  display: none;
}

.page-template-review .pt-hero-review__bar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  min-height: 0;
  margin-top: 9px;
  padding: 10px 12px;
  border: 1px solid #d6e4f5;
  border-radius: 11px;
  background: var(--ptx-blue-soft);
}

.page-template-review .pt-hero-review__bar-logo {
  width: 34px;
  height: 34px;
  border-radius: 8px;
}

.page-template-review .pt-hero-review__bar-value {
  font-size: 13px;
  font-weight: 800;
}

.page-template-review .pt-hero-review-cta {
  min-height: 36px;
  padding: 7px 12px;
  border-radius: 9px;
  background: var(--ptx-blue);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  text-decoration: none;
}

/* ------------------------------
   Author strip and generated toolbar
------------------------------ */
.page-template-review .pt-wh-editorial-meta {
  width: min(1240px, 100%);
  margin: 10px auto 20px auto !important;
  padding: 0;
  border: 0;
  background: transparent;
}

.page-template-review.pt-compact-review-ready .scroll-to-widget {
  display: none !important;
}

.page-template-review .pt-compact-toolbar {
  position: sticky;
  top: var(--pt-compact-fixed-top, calc(var(--pt-admin-bar-height, 0px) + var(--pt-reading-progress-height, 3px) + 72px));
  z-index: 85;
  min-height: 48px;
  margin: 0 calc(50% - 50vw) 0;
  border-top: 1px solid rgba(219, 229, 240, 0.7);
  border-bottom: 1px solid rgba(219, 229, 240, 0.95);
  background: rgba(247, 249, 252, 0.97);
  backdrop-filter: blur(12px);
}

.page-template-review .pt-compact-toolbar__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  width: min(1240px, calc(100% - 32px));
  min-height: 48px;
  margin-inline: auto;
}

.page-template-review .pt-compact-current {
  display: flex;
  align-items: center;
  gap: 9px;
  min-width: 0;
  color: #3f5068;
}

.page-template-review .pt-compact-current__dot {
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--ptx-blue);
}

.page-template-review .pt-compact-current__label {
  display: block;
  color: #7a899b;
  font-size: 11px;
}

.page-template-review .pt-compact-current__title {
  display: block;
  overflow: hidden;
  color: #3f5068;
  font-size: 13px;
  font-weight: 800;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.page-template-review .pt-compact-tools {
  display: flex;
  align-items: center;
  gap: 6px;
}

.page-template-review .pt-compact-tool {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 34px;
  padding: 6px 10px;
  border: 1px solid var(--ptx-border);
  border-radius: 9px;
  background: #fff;
  color: #314157;
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
}

.page-template-review .pt-compact-tool:hover {
  border-color: #b9cbe0;
  background: #f9fbff;
}

.page-template-review .pt-compact-density {
  margin: 0;
}

.page-template-review .pt-compact-density input {
  accent-color: var(--ptx-blue);
}

/* ------------------------------
   Main article flow
------------------------------ */
.page-template-review .entry-content {
  width: min(1040px, 100%);
  margin: 18px auto 58px;
  color: #243247;
  font-size: 16px;
  line-height: 1.65;
}

.page-template-review .entry-content p {
  margin: 0 0 11px;
}

.page-template-review .entry-content ul,
.page-template-review .entry-content ol {
  margin-top: 8px;
  margin-bottom: 11px;
  padding-left: 1.28rem;
}

.page-template-review .entry-content li {
  margin: 4px 0;
}

.page-template-review .entry-content h2 {
  margin: 0 0 11px;
  color: var(--ptx-ink);
  font-size: 22px;
  line-height: 1.25;
  letter-spacing: -0.018em;
}

.page-template-review .entry-content h3 {
  margin: 19px 0 8px;
  color: #22314a;
  font-size: 17px;
  line-height: 1.35;
}

.page-template-review .entry-content strong {
  color: var(--ptx-ink);
}

.page-template-review .pt-opening-copy,
.page-template-review .pt-quick-verdict,
.page-template-review .pt-testing-card,
.page-template-review .pt-overview-card,
.page-template-review .pt-review-section,
.page-template-review .pt-related-pages {
  overflow: hidden;
  margin: 0 0 10px !important;
  padding: 19px 21px !important;
  border: 1px solid var(--ptx-border) !important;
  border-radius: 13px !important;
  background: #fff !important;
  box-shadow: none !important;
}

.page-template-review .pt-opening-copy p:last-child,
.page-template-review .pt-review-section > :last-child {
  margin-bottom: 0;
}

.page-template-review .pt-review-section {
  position: relative;
  border-left: 4px solid #dbe8fb !important;
  transition: border-color 0.16s ease;
}

.page-template-review .pt-review-section:hover {
  border-left-color: var(--ptx-blue) !important;
}

.page-template-review .pt-testing-card {
  background: var(--ptx-blue-soft) !important;
}

.page-template-review .pt-testing-card > .mb-4,
.page-template-review .pt-testing-card > div:first-child {
  margin-bottom: 10px !important;
}

.page-template-review .pt-testing-card ul {
  columns: 2;
  column-gap: 24px;
}

.page-template-review .pt-testing-card li {
  break-inside: avoid;
  margin-bottom: 7px;
}

.page-template-review .pt-overview-card > h2,
.page-template-review .pt-brand-info--general > h2 {
  margin-bottom: 12px;
}

.page-template-review .pt-section-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 31px;
  height: 22px;
  margin-right: 8px;
  padding: 0 7px;
  border-radius: 999px;
  background: var(--ptx-blue-soft);
  color: var(--ptx-blue-dark);
  font-size: 11px;
  font-weight: 850;
  vertical-align: middle;
}

/* ------------------------------
   New at-a-glance and evidence blocks
------------------------------ */
.page-template-review .pt-kicker {
  display: inline-block;
  margin-bottom: 4px;
  color: var(--ptx-blue-dark);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.page-template-review .pt-quick-verdict__lead p {
  margin-bottom: 12px;
}

.page-template-review .pt-quick-verdict__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.page-template-review .pt-summary-panel {
  padding: 12px 13px;
  border: 1px solid var(--ptx-border);
  border-radius: 10px;
  background: #fbfcfe;
}

.page-template-review .pt-summary-panel h3 {
  margin: 0 0 7px !important;
  font-size: 14px !important;
}

.page-template-review .pt-summary-panel p,
.page-template-review .pt-summary-panel li {
  font-size: 13px;
  line-height: 1.48;
}

.page-template-review .pt-summary-panel ul {
  margin: 0 !important;
  padding-left: 1.05rem !important;
}

.page-template-review .pt-summary-panel--good {
  border-top: 3px solid var(--ptx-green);
}

.page-template-review .pt-summary-panel--caution {
  border-top: 3px solid var(--ptx-amber);
}

.page-template-review .pt-summary-panel--evidence {
  border-top: 3px solid var(--ptx-blue);
}

.page-template-review .pt-review-evidence-summary {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 7px;
  margin: 0 0 10px;
}

.page-template-review .pt-evidence-chip {
  padding: 9px 11px;
  border: 1px solid var(--ptx-border);
  border-radius: 10px;
  background: #fff;
  text-align: left;
}

.page-template-review .pt-evidence-chip strong {
  display: block;
  margin-bottom: 2px;
  font-size: 13px;
}

.page-template-review .pt-evidence-chip span {
  display: block;
  color: #6d7b8e;
  font-size: 11px;
  line-height: 1.38;
}

.page-template-review .pt-evidence-chip--warning {
  border-color: #ecd7a1;
  background: #fffaf0;
}

/* ------------------------------
   Existing tables and shortcodes
------------------------------ */
.page-template-review .pt-bt__affiliate-disclosure-wrap {
  margin-bottom: 10px !important;
  padding: 11px 13px !important;
  border-radius: 10px !important;
}

.page-template-review .pt-bt__affiliate-disclosure,
.page-template-review .pt-bt__methodology-disclosure {
  font-size: 13px;
  line-height: 1.5;
}

.page-template-review .pt-brands-table {
  font-size: 13px;
}

.page-template-review .pt-bt__row {
  min-height: 0 !important;
}

.page-template-review .pt-bt__cell {
  padding: 9px 10px !important;
}

.page-template-review .table-responsive,
.page-template-review .pt-table-scroll {
  overflow-x: auto;
  max-width: 100%;
  border-radius: 10px;
  -webkit-overflow-scrolling: touch;
}

.page-template-review .entry-content table {
  margin-bottom: 0;
  font-size: 13px;
}

.page-template-review .entry-content th,
.page-template-review .entry-content td {
  padding: 8px 10px !important;
  vertical-align: top;
}

.page-template-review .entry-content blockquote {
  margin: 13px 0;
  padding: 12px 14px;
  border-left: 3px solid var(--ptx-blue);
  border-radius: 0 10px 10px 0;
  background: #f7faff;
}

/* Pros and cons */
.page-template-review .section-pros-cons .row {
  row-gap: 10px;
}

.page-template-review .section-pros-cons .pt-card-wrapper,
.page-template-review .section-pros-cons .main-card {
  min-height: 100%;
  border-radius: 11px;
  box-shadow: none;
}

.page-template-review .section-pros-cons .main-card {
  padding: 15px 16px;
}

.page-template-review .section-pros-cons .list-content {
  margin-bottom: 0;
}

/* Screenshots */
.page-template-review .entry-content figure,
.page-template-review .entry-content .wp-block-image {
  margin: 13px 0 !important;
  padding: 8px;
  border: 1px solid var(--ptx-border);
  border-radius: 11px;
  background: #f8fafc;
}

.page-template-review .entry-content figure img,
.page-template-review .entry-content .wp-block-image img {
  display: block;
  max-height: 680px;
  margin: auto;
  border-radius: 7px;
  object-fit: contain;
}

.page-template-review .entry-content figcaption {
  margin-top: 7px !important;
  color: #6f7e90 !important;
  font-size: 12px !important;
  line-height: 1.42 !important;
}

/* FAQ and related reviews */
.page-template-review .pt-faq .accordion-item {
  overflow: hidden;
  margin-bottom: 7px !important;
  border: 1px solid var(--ptx-border) !important;
  border-radius: 10px !important;
}

.page-template-review .pt-faq .accordion-button {
  padding: 11px 13px !important;
  background: #fff !important;
  font-size: 14px !important;
}

.page-template-review .pt-faq .accordion-body {
  padding: 11px 13px !important;
  font-size: 14px;
}

.page-template-review .pt-related-pages .card {
  border-color: var(--ptx-border) !important;
  border-radius: 10px !important;
  box-shadow: none !important;
}

.page-template-review .pt-related-pages .card-body {
  padding: 12px 13px !important;
}

/* ------------------------------
   Contents and key-facts drawers
------------------------------ */
.page-template-review.pt-compact-drawer-open {
  overflow: hidden;
}

.page-template-review .pt-compact-drawer {
  position: fixed;
  top: var(--pt-admin-bar-height, 0px);
  bottom: 0;
  z-index: 100002;
  width: min(370px, 92vw);
  overflow: auto;
  padding: 22px 18px;
  background: #fff;
  box-shadow: 0 18px 60px rgba(23, 32, 51, 0.24);
  visibility: hidden;
  transition: transform 0.22s ease, visibility 0.22s ease;
}

.page-template-review .pt-compact-drawer--left {
  left: 0;
  transform: translateX(-105%);
}

.page-template-review .pt-compact-drawer--right {
  right: 0;
  transform: translateX(105%);
}

.page-template-review .pt-compact-drawer.is-open {
  transform: translateX(0);
  visibility: visible;
}

.page-template-review .pt-compact-drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 12px;
}

.page-template-review .pt-compact-drawer-head h2 {
  margin: 0;
  font-size: 17px;
}

.page-template-review .pt-compact-drawer-close {
  width: 34px;
  height: 34px;
  border: 1px solid var(--ptx-border);
  border-radius: 9px;
  background: #fff;
  cursor: pointer;
  padding: 0 0 3px 0;
  line-height: 1;
}

.page-template-review .pt-compact-backdrop {
  position: fixed;
  inset: 0;
  z-index: 100001;
  background: rgba(17, 27, 42, 0.44);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

.page-template-review .pt-compact-backdrop.is-open {
  opacity: 1;
  visibility: visible;
}

.page-template-review .pt-compact-toc-search {
  width: 100%;
  margin-bottom: 10px;
  padding: 9px 10px;
  border: 1px solid var(--ptx-border);
  border-radius: 10px;
  font-size: 13px;
}

.page-template-review .pt-compact-toc-links {
  display: grid;
  gap: 2px;
}

.page-template-review .pt-compact-toc-link {
  display: block;
  padding: 7px 8px;
  border-radius: 8px;
  color: #65758a;
  font-size: 13px;
  line-height: 1.3;
  text-decoration: none;
}

.page-template-review .pt-compact-toc-link:hover,
.page-template-review .pt-compact-toc-link.is-active {
  background: var(--ptx-blue-soft);
  color: var(--ptx-blue-dark);
  font-weight: 800;
}

.page-template-review .pt-compact-side-card {
  margin-bottom: 10px;
  padding: 14px;
  border: 1px solid var(--ptx-border);
  border-radius: 12px;
  background: #fff;
}

.page-template-review .pt-compact-side-card h3 {
  margin: 0 0 9px;
  font-size: 15px;
}

.page-template-review .pt-compact-side-score {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  margin-bottom: 10px;
}

.page-template-review .pt-compact-side-score strong {
  color: var(--ptx-blue);
  font-size: 28px;
  line-height: 1;
}

.page-template-review .pt-compact-side-score span {
  color: #718196;
  font-size: 12px;
}

.page-template-review .pt-compact-fact-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 7px 0;
  border-bottom: 1px solid #edf1f5;
  font-size: 12px;
}

.page-template-review .pt-compact-fact-row:last-child {
  border-bottom: 0;
}

.page-template-review .pt-compact-fact-row b {
  max-width: 58%;
  text-align: right;
}

.page-template-review .pt-compact-side-alert {
  border-left: 3px solid var(--ptx-amber);
}

.page-template-review .pt-compact-side-note {
  margin: 0 0 7px;
  color: #718196;
  font-size: 12px;
}

.page-template-review .pt-compact-side-actions {
  display: grid;
  gap: 7px;
}

.page-template-review .pt-compact-side-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 8px 11px;
  border: 1px solid var(--ptx-border);
  border-radius: 9px;
  background: #fff;
  color: var(--ptx-ink);
  font-size: 12px;
  font-weight: 800;
  text-decoration: none;
}

.page-template-review .pt-compact-side-actions .is-primary {
  border-color: var(--ptx-blue);
  background: var(--ptx-blue);
  color: #fff;
}

.page-template-review .pt-compact-side-actions .is-danger {
  border-color: var(--ptx-red);
  background: var(--ptx-red);
  color: #fff;
}

/* Progress, back to top and mobile actions */
.page-template-review .pt-compact-mobile-actions {
  display: none;
}

/* Reading mode remains optional and intentionally narrower. */
.page-template-review.pt-compact-reading-mode .entry-content {
  width: min(880px, 100%);
  font-size: 16.5px;
  line-height: 1.72;
}

.page-template-review.pt-compact-reading-mode .pt-opening-copy,
.page-template-review.pt-compact-reading-mode .pt-quick-verdict,
.page-template-review.pt-compact-reading-mode .pt-testing-card,
.page-template-review.pt-compact-reading-mode .pt-overview-card,
.page-template-review.pt-compact-reading-mode .pt-review-section {
  margin-bottom: 14px !important;
  padding: 24px 27px !important;
}

.page-template-review.pt-compact-reading-mode .pt-testing-card ul {
  columns: 1;
}

/* Visible keyboard focus */
.page-template-review a:focus-visible,
.page-template-review button:focus-visible,
.page-template-review input:focus-visible {
  outline: 3px solid rgba(47, 102, 232, 0.32);
  outline-offset: 3px;
}

@media (min-width: 1600px) {
  .page-template-review .entry-content {
    width: min(1380px, 100%);
    font-size: 16.25px;
  }
}

@media (max-width: 980px) {
  .page-template-review .pt-hero-review__card > .row {
    grid-template-columns: 155px minmax(0, 1fr);
  }

  .page-template-review .pt-hero-review__logo-wrap {
    padding: 15px;
  }

  .page-template-review .pt-hero-review__logo-box {
    width: 80px;
  }

  .page-template-review .pt-quick-verdict__grid {
    grid-template-columns: 1fr 1fr;
  }

  .page-template-review .pt-summary-panel--evidence {
    grid-column: 1 / -1;
  }

  .page-template-review .pt-review-evidence-summary {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 760px) {
  body.page-template-review {
    background: #fff;
  }

  .page-template-review .site-main > .container,
  .page-template-review .pt-hero-review > .container,
  .page-template-review .pt-compact-toolbar__inner {
    width: min(100% - 20px, 1240px);
  }

  .page-template-review .pt-hero-review {
    padding: 10px 0 7px;
    background: #f7f9fc;
  }

  .page-template-review .pt-hero-review__card {
    border-radius: 13px;
  }

  .page-template-review .pt-hero-review__card > .row {
    grid-template-columns: 1fr;
  }

  .page-template-review .pt-hero-review__logo-wrap {
    grid-template-columns: 66px 1fr;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-right: 0;
    border-bottom: 1px solid #d9e6f6;
  }

  .page-template-review .pt-hero-review__logo-box {
    width: 66px;
    grid-row: 1 / 3;
    margin: 0;
  }

  .page-template-review .pt-hero-review__licenses {
    grid-template-columns: 1fr 1fr;
    gap: 8px 12px;
    font-size: 10px;
  }

  .page-template-review .pt-hero-review__licenses li {
    padding: 0 0 0 12px;
    border: 0;
  }

  .page-template-review .pt-review-btn {
    display: none;
  }

  .page-template-review .pt-hero-review__content {
    padding: 14px 13px 12px;
  }

  .page-template-review .pt-hero-review__title {
    margin-bottom: 8px;
    font-size: 27px;
  }

  .page-template-review .pt-hero-review__stats {
    gap: 5px;
  }

  .page-template-review .pt-hero-review__stat {
    min-height: 58px;
    padding: 8px;
    border-radius: 9px;
  }

  .page-template-review .pt-hero-review__stat-label {
    font-size: 9px;
  }

  .page-template-review .pt-hero-review__stat-value,
  .page-template-review .pt-hero-review__stat .trust-pilot-rating__score,
  .page-template-review .pt-hero-review__stat .pt-bt__our-score__value {
    font-size: 16px;
  }

  .page-template-review .pt-hero-review__stat .trust-pilot-rating__meta,
  .page-template-review .pt-hero-review__sparkline {
    display: none;
  }

  .page-template-review .pt-hero-review__bar {
    grid-template-columns: 1fr;
    gap: 7px;
    padding: 8px 9px;
  }

  .page-template-review .pt-hero-review__bar-right,
  .page-template-review .pt-hero-review-cta {
    width: 100%;
  }

  .page-template-review .pt-hero-review-cta {
    justify-content: center;
  }

  .page-template-review .pt-compact-toolbar__inner {
    min-height: 44px;
  }

  .page-template-review .pt-compact-current__label,
  .page-template-review .pt-compact-density {
    display: none;
  }

  .page-template-review .pt-compact-tool {
    min-height: 32px;
    padding: 5px 8px;
    font-size: 11px;
  }

  .page-template-review .entry-content {
    width: 100%;
    margin-top: 10px;
    margin-bottom: 74px;
    font-size: 15.5px;
    line-height: 1.62;
  }

  .page-template-review .entry-content h2 {
    font-size: 19px;
  }

  .page-template-review .entry-content h3 {
    margin-top: 15px;
    font-size: 16px;
  }

  .page-template-review .pt-opening-copy,
  .page-template-review .pt-quick-verdict,
  .page-template-review .pt-testing-card,
  .page-template-review .pt-overview-card,
  .page-template-review .pt-review-section,
  .page-template-review .pt-related-pages {
    margin-bottom: 7px !important;
    padding: 15px 12px !important;
    border-radius: 11px !important;
  }

  .page-template-review .pt-review-section {
    border-left-width: 3px !important;
  }

  .page-template-review .pt-testing-card ul {
    columns: 1;
  }

  .page-template-review .pt-quick-verdict__grid,
  .page-template-review .pt-review-evidence-summary {
    grid-template-columns: 1fr;
  }

  .page-template-review .pt-summary-panel--evidence {
    grid-column: auto;
  }

  .page-template-review .pt-review-evidence-summary {
    display: flex;
    overflow-x: auto;
    gap: 6px;
    padding-bottom: 3px;
  }

  .page-template-review .pt-evidence-chip {
    min-width: 165px;
    flex: 0 0 auto;
    padding: 8px 9px;
  }

  .page-template-review .section-pros-cons .row > [class*="col-"] {
    width: 100%;
    max-width: 100%;
    flex: 0 0 100%;
  }

  .page-template-review .entry-content table,
  .page-template-review .pt-brands-table {
    font-size: 12px;
  }

  .page-template-review .entry-content th,
  .page-template-review .entry-content td,
  .page-template-review .pt-bt__cell {
    padding: 7px 8px !important;
  }

  .page-template-review .entry-content figure,
  .page-template-review .entry-content .wp-block-image {
    margin: 9px 0 !important;
    padding: 5px;
  }

  .page-template-review .entry-content figure img,
  .page-template-review .entry-content .wp-block-image img {
    max-height: none;
  }

  .page-template-review .pt-compact-mobile-actions {
    position: fixed;
    right: 8px;
    bottom: 8px;
    left: 8px;
    z-index: 1000;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px;
    padding: 6px;
    border: 1px solid var(--ptx-border);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.97);
    box-shadow: 0 10px 30px rgba(23, 32, 51, 0.17);
    backdrop-filter: blur(12px);
  }

  .page-template-review .pt-compact-mobile-actions a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 7px 8px;
    border: 1px solid var(--ptx-border);
    border-radius: 9px;
    color: var(--ptx-ink);
    font-size: 12px;
    font-weight: 800;
    text-decoration: none;
  }

  .page-template-review .pt-compact-mobile-actions .is-danger {
    border-color: var(--ptx-red);
    background: var(--ptx-red);
    color: #fff;
  }

  .page-template-review .pt-back-top {
    right: 12px;
    bottom: 70px;
    width: 36px;
    height: 36px;
  }

  .page-template-review.pt-compact-reading-mode .entry-content {
    font-size: 15.8px;
  }

  .page-template-review.pt-compact-reading-mode .pt-opening-copy,
  .page-template-review.pt-compact-reading-mode .pt-quick-verdict,
  .page-template-review.pt-compact-reading-mode .pt-testing-card,
  .page-template-review.pt-compact-reading-mode .pt-overview-card,
  .page-template-review.pt-compact-reading-mode .pt-review-section {
    margin-bottom: 9px !important;
    padding: 18px 15px !important;
  }
}

@media (max-width: 430px) {
  .page-template-review .pt-hero-review__stats {
    grid-template-columns: 1fr 1fr;
  }

  .page-template-review .pt-hero-review__stats > [class*="col-"]:last-child {
    grid-column: 1 / -1;
  }

  .page-template-review .pt-hero-review__licenses {
    grid-template-columns: 1fr;
  }

  .page-template-review .pt-compact-current__title {
    max-width: 150px;
  }

  .page-template-review .pt-compact-tool span {
    display: none;
  }
}

/* ==========================================================
   V2 LIVE-PAGE CORRECTIONS
   These rules intentionally come last so they override the
   existing review.css and the earlier prototype declarations.
========================================================== */

/* Remove the unused pale strip below the generated hero. */
.page-template-review .pt-hero-review {
  padding-bottom: 0 !important;
}

/* Keep the left rail aligned with the main column; licenses scroll inside. */
.page-template-review .pt-hero-review__card > .row {
  align-items: stretch !important;
}

.page-template-review .pt-hero-review__card > .row > .col-md-3,
.page-template-review .pt-hero-review__card > .row > .col-md-9 {
  min-width: 0 !important;
}

.page-template-review .pt-hero-review__logo-wrap {
  height: 100% !important;
  min-height: 100% !important;
}

.page-template-review .pt-hero-review__licenses-box {
  width: 100% !important;
  max-width: none !important;
  min-width: 0;
}

.page-template-review .pt-hero-review__licenses {
  width: 100% !important;
  max-width: none !important;
  max-height: 180px;
  height: auto !important;
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  padding-right: 4px;
  scrollbar-width: thin;
  scrollbar-color: #9bb4d0 transparent;
}

.page-template-review .pt-hero-review__licenses::-webkit-scrollbar {
  width: 6px;
}

.page-template-review .pt-hero-review__licenses::-webkit-scrollbar-track {
  background: transparent;
}

.page-template-review .pt-hero-review__licenses::-webkit-scrollbar-thumb {
  background: #9bb4d0;
  border-radius: 99px;
}

.page-template-review .pt-hero-review__licenses li {
  display: block !important;
  width: 100% !important;
}

/* Keep the real template hero compact and aligned like the approved prototype. */
.page-template-review .pt-hero-review__title {
  max-width: 100%;
  font-size: clamp(30px, 2.65vw, 40px) !important;
  overflow-wrap: anywhere;
}

.page-template-review .pt-hero-review__stats {
  align-items: stretch;
}

.page-template-review .pt-hero-review__stat {
  height: 100%;
}

.page-template-review .pt-hero-review__stat-label,
.page-template-review .pt-hero-review__stat-value {
  width: 100%;
}

.page-template-review .pt-hero-review__stat-value {
  justify-content: center !important;
}

/* Correct colours inherited from the original dark offer bar. */
.page-template-review .pt-hero-review__bar-left {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  min-width: 0;
}

.page-template-review .pt-hero-review__bar-text {
  min-width: 0;
}

.page-template-review .pt-hero-review__bar-value {
  color: var(--ptx-ink) !important;
  opacity: 1 !important;
  overflow-wrap: anywhere;
}

.page-template-review .pt-hero-review-cta {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 7px !important;
  min-width: 88px;
  border: 0 !important;
  background: var(--ptx-blue) !important;
  color: #fff !important;
}

.page-template-review .pt-hero-review-cta,
.page-template-review .pt-hero-review-cta:hover,
.page-template-review .pt-hero-review-cta:focus,
.page-template-review .pt-hero-review-cta__text,
.page-template-review .pt-hero-review-cta__icon {
  color: #fff !important;
  text-decoration: none !important;
}

.page-template-review .pt-hero-review-cta__icon {
  display: inline-grid !important;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 7px;
  background: rgba(255,255,255,.18) !important;
}

/* Make toolbar controls reliably clickable over all theme layers. */
.page-template-review .pt-compact-toolbar {
  isolation: isolate;
  pointer-events: auto !important;
}

.page-template-review .pt-compact-toolbar__inner,
.page-template-review .pt-compact-tools,
.page-template-review .pt-compact-tool {
  pointer-events: auto !important;
}

.page-template-review .pt-compact-tool {
  position: relative;
  z-index: 2;
}

/* Drawers are appended directly to body, so force predictable visibility. */
.page-template-review .pt-compact-drawer,
.page-template-review .pt-compact-backdrop {
  display: block !important;
  pointer-events: none;
}

.page-template-review .pt-compact-drawer.is-open,
.page-template-review .pt-compact-backdrop.is-open {
  pointer-events: auto;
}

.page-template-review .pt-compact-drawer.is-open {
  opacity: 1;
}

.page-template-review .pt-compact-drawer a,
.page-template-review .pt-compact-drawer button,
.page-template-review .pt-compact-drawer input {
  pointer-events: auto;
}

/* Clean up empty paragraphs that WordPress may add around the inserted block. */
.page-template-review .entry-content > p:empty,
.page-template-review .pt-quick-verdict p:empty,
.page-template-review .pt-review-evidence-summary p:empty {
  display: none !important;
  margin: 0 !important;
}

/* More stable desktop proportions. */
@media (min-width: 992px) {
  .page-template-review .pt-hero-review__card > .row {
    grid-template-columns: 178px minmax(0, 1fr) !important;
  }

  .page-template-review .pt-hero-review__logo-wrap {
    padding: 16px !important;
  }

  .page-template-review .pt-hero-review__content {
    padding: 20px 22px 17px !important;
  }
}

/* Preserve the existing compact mobile direction. */
@media (max-width: 767.98px) {
  .page-template-review .pt-hero-review {
    padding-top: 9px !important;
  }

  .page-template-review .pt-hero-review__licenses-box {
    min-width: 0;
  }

  .page-template-review .pt-hero-review__licenses {
    max-height: 88px;
    overflow-x: hidden;
    overflow-y: auto;
  }

  .page-template-review .pt-hero-review__bar-left {
    width: 100%;
  }

  .page-template-review .pt-hero-review-cta {
    width: 100%;
  }
}

/*
 * Players Time review test review template
 * Fixed-position fallback for the compact reading toolbar.
 *
 * ADD this at the very END of the existing Carbon Custom CSS field.
 * Do not remove the existing CSS and do not add <style> tags.
 */

.page-template-review .pt-compact-toolbar-placeholder {
  display: block;
  width: 100%;
  height: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

.page-template-review .pt-compact-toolbar.is-fixed-fallback {
  position: fixed !important;
  top: var(--pt-compact-fixed-top) !important;
  right: 0 !important;
  left: 0 !important;
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  z-index: 9990 !important;
  transform: none !important;
}

.page-template-review .pt-compact-toolbar.is-fixed-fallback .pt-compact-toolbar__inner {
  width: min(1240px, calc(100% - 32px));
  margin-inline: auto;
}

@media (max-width: 760px) {
  .page-template-review .pt-compact-toolbar.is-fixed-fallback .pt-compact-toolbar__inner {
    width: min(100% - 20px, 1240px);
  }
}
/*
 * Players Time review test review template
 * V4: template-hero enhancement matching the approved prototype.
 *
 * APPEND this at the END of the existing Carbon Custom CSS.
 * Keep the existing CSS and do not add <style> tags.
 */

/* Visual breadcrumb used by the approved prototype. */
.page-template-review .pt-live-breadcrumbs {
  border-top: 1px solid #edf2f7;
  border-bottom: 1px solid #dbe5f0;
  background: #fff;
}

.page-template-review .pt-live-breadcrumbs__inner {
  display: flex;
  align-items: center;
  gap: 7px;
  width: min(1240px, calc(100% - 32px));
  min-height: 40px;
  margin-inline: auto;
  color: #718096;
  font-size: 12px;
}

.page-template-review .pt-live-breadcrumbs a {
  color: #536883;
  text-decoration: none;
}

.page-template-review .pt-live-breadcrumbs strong {
  color: #40516a;
}

/* Match the approved hero proportions. */
@media (min-width: 992px) {
  .page-template-review .pt-hero-review__card > .row {
    grid-template-columns: 185px minmax(0, 1fr) !important;
  }

  .page-template-review .pt-hero-review__logo-wrap {
    padding: 18px !important;
  }

  .page-template-review .pt-hero-review__content {
    padding: 20px 24px 18px !important;
  }
}

.page-template-review .pt-hero-review__title {
  margin: 0 0 6px !important;
  padding: 0 !important;
  border: 0 !important;
  text-align: left !important;
  font-size: clamp(32px, 3.1vw, 44px) !important;
  line-height: 1.08 !important;
  letter-spacing: -0.035em !important;
}

/* Status badges above the H1. */
.page-template-review .pt-live-hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 0 0 10px;
}

.page-template-review .pt-live-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 8px;
  border: 1px solid #cfe1f7;
  border-radius: 999px;
  background: #f8fbff;
  color: #355b8d;
  font-size: 10px;
  font-weight: 800;
  line-height: 1.25;
}

.page-template-review .pt-live-hero-badge--green {
  border-color: #c8e7d9;
  background: #f2fbf7;
  color: #0f704b;
}

.page-template-review .pt-live-hero-badge--amber {
  border-color: #efd9a4;
  background: #fff9e8;
  color: #7a5800;
}

.page-template-review .pt-live-hero-badge--red {
  border-color: #f0c4c4;
  background: #fff5f5;
  color: #9b1c1c;
}

.page-template-review .pt-live-hero-badge a {
  color: inherit;
  text-decoration: none;
}

/* Introductory deck below the H1. */
.page-template-review .pt-live-hero-deck {
  max-width: 930px;
  margin: 0 0 14px;
  color: #54657b;
  font-size: 15px;
  line-height: 1.45;
}

/* Rating cards rebuilt from the existing dynamic values. */
.page-template-review .pt-hero-review__stats {
  gap: 8px !important;
  margin-bottom: 10px !important;
}

.page-template-review .pt-hero-review__stat.pt-live-stat-enhanced {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) auto !important;
  grid-template-rows: auto auto !important;
  align-items: center !important;
  gap: 2px 10px !important;
  min-height: 66px !important;
  padding: 10px 12px !important;
  text-align: left !important;
}

.page-template-review .pt-live-stat-enhanced > .pt-hero-review__stat-label,
.page-template-review .pt-live-stat-enhanced > .pt-hero-review__stat-value {
  display: none !important;
}

.page-template-review .pt-live-stat-label {
  grid-column: 1;
  grid-row: 1;
  color: #6b798c;
  font-size: 11px;
  font-weight: 800;
  line-height: 1.3;
}

.page-template-review .pt-live-stat-meta {
  grid-column: 1;
  grid-row: 2;
  color: #8190a2;
  font-size: 10px;
  line-height: 1.3;
}

.page-template-review .pt-live-stat-value {
  grid-column: 2;
  grid-row: 1 / 3;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ptx-ink);
  font-size: 20px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.025em;
  white-space: nowrap;
}

.page-template-review .pt-live-stat-label .pt-bt__heading-with-info {
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  text-transform: none;
  letter-spacing: normal;
}

.page-template-review .pt-live-stat-value a,
.page-template-review .pt-live-stat-value .pt-bt__our-score {
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  text-decoration: none;
}

.page-template-review .pt-live-stat-value .pt-bt__our-score__value {
  font-size: inherit !important;
}

.page-template-review .pt-live-stat-value:has(.pt-hero-review__sparkline) {
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  gap: 4px;
  white-space: normal;
}

.page-template-review .pt-live-stat-value .pt-hero-review__sparkline {
  width: 72px;
  height: 28px;
}

/* Offer bar: text left, two actions right. */
.page-template-review .pt-hero-review__bar {
  margin-top: 0 !important;
  padding: 10px 12px !important;
}

.page-template-review .pt-hero-review__bar-logo {
  display: none !important;
}

.page-template-review .pt-hero-review__bar-left {
  display: grid !important;
  gap: 2px !important;
}

.page-template-review .pt-hero-review__bar-value {
  color: var(--ptx-ink) !important;
  font-size: 13px !important;
  font-weight: 800 !important;
}

.page-template-review .pt-live-offer-note {
  display: block;
  color: #65768b;
  font-size: 11px;
  line-height: 1.4;
}

.page-template-review .pt-hero-review__bar-right {
  display: flex !important;
  align-items: center;
  justify-content: flex-end;
  gap: 7px;
}

.page-template-review .pt-live-bonus-link,
.page-template-review .pt-hero-review-cta {
  min-height: 36px !important;
  padding: 7px 12px !important;
  border-radius: 9px !important;
  font-size: 12px !important;
  font-weight: 800 !important;
  white-space: nowrap;
}

.page-template-review .pt-live-bonus-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #dbe5f0;
  background: #fff;
  color: var(--ptx-ink);
  text-decoration: none;
}

.page-template-review .pt-live-bonus-link:hover {
  border-color: #b9cbe0;
  color: var(--ptx-blue-dark);
}

.page-template-review .pt-hero-review__note.pt-live-method-note {
  margin: 7px 0 0 !important;
}

.page-template-review .pt-live-editorial-strip {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 11px;
  align-items: start;
  width: 100%;
  padding: 10px 13px;
  border: 1px solid var(--ptx-border);
  border-radius: 12px;
  background: #fff;
}

.page-template-review .pt-live-editorial-strip:not(:has(.pt-live-editorial-avatar)) {
  grid-template-columns: minmax(0, 1fr) auto;
}

.page-template-review .pt-live-editorial-strip:not(:has(.pt-live-editorial-links)) {
  grid-template-columns: auto minmax(0, 1fr);
}

.page-template-review .pt-live-editorial-strip:not(:has(.pt-live-editorial-avatar)):not(:has(.pt-live-editorial-links)) {
  grid-template-columns: minmax(0, 1fr);
}

.page-template-review .pt-live-editorial-avatar {
  width: 40px;
  height: 40px;
  margin-top: 1px;
  border-radius: 50%;
  object-fit: cover;
}

.page-template-review .pt-live-editorial-copy strong {
  display: block;
  color: var(--ptx-ink);
  font-size: 13px;
  line-height: 1.35;
}

.page-template-review .pt-live-editorial-copy span {
  display: block;
  color: #69788c;
  font-size: 11px;
  line-height: 1.4;
}

.page-template-review .pt-live-editorial-copy a {
  color: inherit;
  font-weight: 700;
  text-decoration: none;
}

.page-template-review .pt-live-editorial-copy a:hover {
  text-decoration: underline;
}

.page-template-review .pt-live-editorial-role {
  margin-top: 2px;
}

.page-template-review .pt-live-editorial-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 6px;
}

.page-template-review .pt-live-editorial-links a {
  padding: 4px 7px;
  border: 1px solid var(--ptx-border);
  border-radius: 999px;
  background: #fafcff;
  color: var(--ptx-blue);
  font-size: 10px;
  font-weight: 800;
  text-decoration: none;
}

/* Move the existing evidence cards to the top, as in the prototype. */
.page-template-review .pt-review-evidence-summary.pt-live-evidence-top {
  width: 100%;
  margin: 9px 0 10px !important;
}

/* Remove the old external small note after it is copied into the offer bar. */
.page-template-review .pt-hero-review__note.small.pt-live-note-moved {
  display: none !important;
}

@media (max-width: 767.98px) {
  .page-template-review .pt-live-breadcrumbs__inner {
    width: min(100% - 20px, 1240px);
    min-height: 34px;
    overflow-x: auto;
    white-space: nowrap;
    font-size: 10px;
  }

  .page-template-review .pt-live-hero-badges {
    gap: 4px;
    margin-bottom: 7px;
  }

  .page-template-review .pt-live-hero-badge {
    padding: 3px 6px;
    font-size: 9px;
  }

  .page-template-review .pt-hero-review__title {
    font-size: 27px !important;
  }

  .page-template-review .pt-live-hero-deck {
    margin-bottom: 9px;
    font-size: 12px;
  }

  .page-template-review .pt-hero-review__stat.pt-live-stat-enhanced {
    grid-template-columns: 1fr !important;
    grid-template-rows: auto auto auto !important;
    gap: 2px !important;
    padding: 8px !important;
  }

  .page-template-review .pt-live-stat-label,
  .page-template-review .pt-live-stat-meta,
  .page-template-review .pt-live-stat-value {
    grid-column: 1;
    grid-row: auto;
  }

  .page-template-review .pt-live-stat-meta {
    display: none;
  }

  .page-template-review .pt-live-stat-value {
    font-size: 16px;
  }

  .page-template-review .pt-live-stat-value:has(.pt-hero-review__sparkline) {
    align-items: flex-start;
  }

  .page-template-review .pt-hero-review__bar-right {
    display: grid !important;
    grid-template-columns: 1fr;
    width: 100%;
  }

  .page-template-review .pt-hero-review__bar-right:has(.pt-live-bonus-link) {
    grid-template-columns: 1fr 1fr;
  }

  .page-template-review .pt-live-bonus-link,
  .page-template-review .pt-hero-review-cta {
    width: 100%;
  }

  .page-template-review .pt-live-editorial-strip {
    grid-template-columns: 36px minmax(0, 1fr);
    padding: 8px 9px;
    gap: 8px;
  }

  .page-template-review .pt-live-editorial-strip:not(:has(.pt-live-editorial-avatar)) {
    grid-template-columns: minmax(0, 1fr);
  }

  .page-template-review .pt-live-editorial-avatar {
    width: 36px;
    height: 36px;
  }

  .page-template-review .pt-live-editorial-copy strong {
    font-size: 12px;
  }

  .page-template-review .pt-live-editorial-copy span {
    font-size: 10px;
  }

  .page-template-review .pt-live-editorial-links {
    grid-column: 1 / -1;
    justify-content: flex-start;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .page-template-review .pt-live-editorial-links a {
    flex: 0 0 auto;
  }
}

@media (max-width: 420px) {
  .page-template-review .pt-hero-review__bar-right {
    grid-template-columns: 1fr;
  }
}

/*
 * Players Time review test review template
 * V6: font clarity, cleaner hero shadow and toolbar polish.
 *
 * APPEND this at the END of the existing Carbon Custom CSS.
 * Keep all existing CSS. Do not add <style> tags.
 */

/* ----------------------------------------------------------
   1. Font clarity
   The theme already supplies the typeface. The problem is mainly
   very small 10–11px UI text, low-contrast greys and synthetic
   800/850 weights, not a competing font-family declaration.
---------------------------------------------------------- */

.page-template-review {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

.page-template-review .entry-content,
.page-template-review .pt-hero-review,
.page-template-review .pt-wh-editorial-meta,
.page-template-review .pt-compact-toolbar,
.page-template-review .pt-compact-drawer {
  font-family: inherit !important;
  font-kerning: normal;
  font-variant-ligatures: common-ligatures;
}

/* Avoid unsupported synthetic ultra-heavy weights in small text. */
.page-template-review .pt-section-index,
.page-template-review .pt-kicker,
.page-template-review .pt-live-hero-badge,
.page-template-review .pt-live-stat-label,
.page-template-review .pt-live-editorial-links a,
.page-template-review .pt-compact-tool,
.page-template-review .pt-evidence-chip strong {
  font-weight: 700 !important;
}

/* Raise microcopy to a safer desktop reading size and increase contrast. */
.page-template-review .pt-live-hero-badge {
  font-size: 11px !important;
}

.page-template-review .pt-live-stat-label {
  color: #536176 !important;
  font-size: 12px !important;
}

.page-template-review .pt-live-stat-meta {
  color: #68778b !important;
  font-size: 11.5px !important;
}

.page-template-review .pt-live-offer-note,
.page-template-review .pt-hero-review__note {
  color: #5f6f84 !important;
  font-size: 12px !important;
}

.page-template-review .pt-live-editorial-copy span {
  color: #536176 !important;
  font-size: 12px !important;
}

.page-template-review .pt-live-editorial-links a {
  font-size: 11px !important;
}

.page-template-review .pt-evidence-chip span {
  color: #536176 !important;
  font-size: 12px !important;
  line-height: 1.42 !important;
}

.page-template-review .pt-compact-current__label,
.page-template-review .pt-section-index,
.page-template-review .pt-kicker {
  font-size: 11.5px !important;
}

.page-template-review .pt-compact-tool {
  font-size: 12px !important;
}

/* Keep the main article comfortably readable. */
.page-template-review .entry-content {
  color: #1f2d42 !important;
  font-size: 16.25px !important;
  line-height: 1.68 !important;
}

.page-template-review .entry-content p,
.page-template-review .entry-content li,
.page-template-review .entry-content td,
.page-template-review .entry-content th {
  -webkit-font-smoothing: auto;
  -moz-osx-font-smoothing: auto;
}

/* Solid surfaces render more crisply than backdrop-filter layers in Chrome. */
.page-template-review .pt-compact-toolbar {
  background: #f7f9fc !important;
  -webkit-backdrop-filter: none !important;
  backdrop-filter: none !important;
}

.page-template-review .pt-compact-mobile-actions {
  background: #fff !important;
  -webkit-backdrop-filter: none !important;
  backdrop-filter: none !important;
}

/* ----------------------------------------------------------
   2. Clean hero shadow
   Remove the theme-level strip/pseudo-shadow and keep one subtle
   shadow on the actual white hero card.
---------------------------------------------------------- */

.page-template-review .pt-hero-review,
.page-template-review .pt-hero-review > .container {
  box-shadow: none !important;
  filter: none !important;
  overflow: visible !important;
}

.page-template-review .pt-hero-review::before,
.page-template-review .pt-hero-review::after,
.page-template-review .pt-hero-review > .container::before,
.page-template-review .pt-hero-review > .container::after {
  display: none !important;
  content: none !important;
  box-shadow: none !important;
}

.page-template-review .pt-hero-review__card {
  box-shadow: 0 10px 28px rgba(31, 45, 66, 0.08) !important;
}

/* Avoid the lower card shadow being visually clipped by the hero region. */
.page-template-review .pt-hero-review {
  padding-bottom: 14px !important;
}

/* ----------------------------------------------------------
   3. Replacement for Reading mode
---------------------------------------------------------- */

.page-template-review .pt-jump-verdict {
  border-color: #cddbea !important;
  background: #fff !important;
}

.page-template-review .pt-jump-verdict:hover {
  border-color: #8eb2df !important;
  background: #f5f9ff !important;
  color: #1657b8 !important;
}

@media (max-width: 767.98px) {
  .page-template-review .entry-content {
    font-size: 16px !important;
    line-height: 1.64 !important;
  }

  .page-template-review .pt-live-stat-meta {
    font-size: 11px !important;
  }

  .page-template-review .pt-live-editorial-copy span,
  .page-template-review .pt-evidence-chip span {
    font-size: 11.5px !important;
  }
}

.page-template-review .scroll-to-widget {
  display: none !important;
}

.page-template-review .pt-hero-review__licenses li:before {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  margin: 0;
}

.page-template-review .pt-bt__score-panel,
.page-template-review .pt-bt__score-panel-inner {
  padding: 10px 12px;
}

.page-template-review .pt-bt__score-panel-title {
  margin: 0 0 8px;
  font-size: 14px;
}

.page-template-review .pt-bt__score-panel-table th,
.page-template-review .pt-bt__score-panel-table td,
.page-template-review #pt-ranking-methodology-score td,
.page-template-review #pt-ranking-methodology-score th {
  padding: 7px 9px !important;
  font-size: 13px;
}

.page-template-review #pt-ranking-methodology-score {
  margin-top: 8px;
  scroll-margin-top: 120px;
}

.page-template-review .pt-compact-side-card img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  border-radius: 10px;
  background: #fff;
  border: 1px solid var(--ptx-border, #dbe5f0);
  margin-bottom: 10px;
}
