/* ==============================================
   BOLD REVIEW HEADER
   ============================================== */

.review-post > .site-container {
	padding-top: 24px;
	padding-bottom: 1.5rem !important;
}

.review-post,
body.logged-in .review-post,
body .review-post {
	padding: 0 !important;
	margin: 0;
}

.bold-card {
	background: #fff;
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08), 0 1px 3px rgba(0, 0, 0, 0.06);
	margin-bottom: 20px;
	border: 1px solid #e8e5e0;
}

/* --- Top bar --- */

.bold-topbar {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 16px;
	padding: 12px 32px;
	font-size: 14px;
	color: #666;
	background: #f7f6fb;
	border-bottom: 1px solid #eee;
}

.bold-topbar a {
	color: #e67a0e;
	text-decoration: none;
	font-weight: 600;
}

.bold-topbar a:hover {
	text-decoration: underline;
}

.bold-breadcrumbs .rank-math-breadcrumb p {
	margin: 0;
}

.bold-date {
	display: flex;
	align-items: center;
	gap: 8px;
	white-space: nowrap;
}

.bold-date time {
	color: #777;
}

.bold-updated {
	color: #059669;
	font-weight: 700;
}

.bold-updated::before {
	content: '·';
	margin-right: 8px;
	color: #ccc;
	font-weight: 400;
}

/* --- Hero grid --- */

.bold-hero {
	display: grid;
	grid-template-columns: 1fr 180px;
	gap: 28px;
	padding: 28px 32px 22px;
	align-items: start;
}

.bold-left {
	display: flex;
	gap: 20px;
	align-items: flex-start;
}

.bold-logo {
	width: 160px;
	height: 160px;
	border-radius: 24px;
	background: linear-gradient(135deg, #fff5eb, #ffedd5);
	border: 2px solid #ffd9b3;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	overflow: hidden;
}

.bold-logo img {
	max-width: 140px;
	max-height: 140px;
	object-fit: contain;
}

.bold-meta {
	flex: 1;
	min-width: 0;
}

.bold-meta h1 {
	font-size: 30px;
	font-weight: 800;
	color: #0f0a26;
	letter-spacing: -0.5px;
	line-height: 1.2;
	margin: 0 0 10px;
}

/* --- Stars & review link --- */

.bold-rating-row {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 16px;
}

.bold-stars {
	display: flex;
	gap: 2px;
}

.bold-star {
	width: 20px;
	height: 20px;
}

.bold-review-link {
	font-size: 14px;
	font-weight: 700;
	color: #e67a0e;
	text-decoration: none;
	border-bottom: 1.5px dashed #ffc48a;
	padding-bottom: 1px;
}

.bold-review-link:hover {
	border-bottom-style: solid;
	color: #d46d05;
}

/* --- Category pills with dynamic colors --- */

.bold-categories {
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
	margin-bottom: 20px;
}

.bold-cat {
	display: flex;
	align-items: center;
	gap: 6px;
	padding: 6px 14px;
	border-radius: 10px;
	font-size: 14px;
	font-weight: 600;
	color: #333;
	transition: all 0.15s ease;
}

.bold-cat .cat-score {
	font-weight: 800;
	font-size: 14px;
}

.bold-cat--outstanding {
	background: #ecfdf5;
	border: 1.5px solid #a7f3d0;
}
.bold-cat--outstanding .cat-score { color: #059669; }
.bold-cat--outstanding:hover { background: #d1fae5; border-color: #6ee7b7; }

.bold-cat--good {
	background: #f0ecff;
	border: 1.5px solid #ddd8f5;
}
.bold-cat--good .cat-score { color: #6c5ce7; }
.bold-cat--good:hover { background: #e5dfff; border-color: #b0a4e3; }

.bold-cat--average {
	background: #fffbeb;
	border: 1.5px solid #fde68a;
}
.bold-cat--average .cat-score { color: #d97706; }
.bold-cat--average:hover { background: #fef3c7; border-color: #fcd34d; }

.bold-cat--poor {
	background: #fef2f2;
	border: 1.5px solid #fecaca;
}
.bold-cat--poor .cat-score { color: #dc2626; }
.bold-cat--poor:hover { background: #fee2e2; border-color: #fca5a5; }

/* --- CTA buttons --- */

.bold-cta-row {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
}

.bold-cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 12px 28px;
	border-radius: 12px;
	font-size: 16px;
	font-weight: 700;
	text-align: center;
	cursor: pointer;
	text-decoration: none;
	transition: all 0.2s ease;
	line-height: 1.3;
	min-height: 48px;
}

.bold-cta.primary {
	background: #ff8a17;
	color: #fff;
	border: none;
	box-shadow: 0 4px 14px rgba(255, 138, 23, 0.4);
}

.bold-cta.primary:hover {
	transform: translateY(-1px);
	background: #e67a0e;
	box-shadow: 0 6px 20px rgba(255, 138, 23, 0.5);
}

.bold-cta.primary .arrow {
	font-size: 16px;
}

.bold-cta.secondary {
	background: #fff;
	color: #e67a0e;
	border: 2px solid #ffd9b3;
}

.bold-cta.secondary:hover {
	background: #fff7ef;
	border-color: #ff8a17;
}

/* --- Score ring with dynamic color --- */

.bold-right {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 8px;
}

/* --- Score widget (pill + swoosh) --- */

.bold-score-widget {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 6px;
	padding: 8px 0;
}

.score-pill {
	position: relative;
	z-index: 1;
	display: inline-flex;
	align-items: baseline;
	gap: 2px;
	padding: 14px 28px;
	border-radius: 18px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
	transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
}

.score-pill:hover {
	transform: scale(1.05);
	box-shadow: 0 6px 28px rgba(0, 0, 0, 0.16);
}

.score-num {
	font-size: 40px;
	font-weight: 900;
	color: #fff;
	line-height: 1;
	letter-spacing: -1.5px;
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
}

.score-of {
	font-size: 20px;
	font-weight: 600;
	color: rgba(255, 255, 255, 0.7);
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
}

.score-verdict {
	font-size: 13px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 1.5px;
	margin-top: 2px;
}

.score-verdict--outstanding { color: #059669; }
.score-verdict--good { color: #6c5ce7; }
.score-verdict--average { color: #d97706; }
.score-verdict--poor { color: #dc2626; }

.bold-score-basis {
	font-size: 11px;
	color: #999;
	text-align: center;
	line-height: 1.3;
	max-width: 160px;
}

.bold-score-basis a {
	color: #e67a0e;
	font-weight: 700;
	text-decoration: none;
	border-bottom: 1px dashed #ffc48a;
}

.bold-score-basis a:hover {
	color: #d46d05;
	border-bottom-style: solid;
}

/* --- Quick Stats & Feature Pills --- */

.bold-quick-stats {
	padding: 0 32px 16px;
}

.quick-stats-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
	gap: 0;
	border: 1px solid #eee;
	border-radius: 12px;
	overflow: hidden;
	background: #fff;
}

.quick-stat {
	padding: 16px 18px;
	border-right: 1px solid #eee;
	position: relative;
}

.quick-stat:last-child {
	border-right: none;
}

.quick-stat-label {
	font-size: 11px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 1.2px;
	color: #888;
	margin-bottom: 5px;
}

.quick-stat-value {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 26px;
	font-weight: 900;
	color: #0f0a26;
	line-height: 1.1;
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
}

.quick-stat-value .stat-icon {
	width: 22px;
	height: 22px;
	flex-shrink: 0;
}

.quick-stat-note {
	font-size: 12px;
	color: #999;
	margin-top: 4px;
}

.quick-pills {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 12px;
}

.quick-pill {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 13px;
	font-weight: 400;
	color: #1a1a2e;
	padding: 8px 16px;
	border: 1px solid #e8e5e0;
	border-radius: 8px;
	background: #fafaf8;
	white-space: nowrap;
	transition: all 0.2s ease;
}

.quick-pill:hover {
	border-color: #d0cdc8;
	background: #f5f4f1;
	transform: translateY(-1px);
}

.quick-pill .pill-check {
	width: 14px;
	height: 14px;
	flex-shrink: 0;
}

/* --- Actions strip (buttons + awards) --- */

.bold-actions-strip {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	padding: 16px 32px;
	border-top: 1px solid #eee;
	background: #fafafa;
}

.bold-actions-strip .bold-cta-row {
	display: flex;
	gap: 10px;
	flex-shrink: 0;
}

.bold-awards-group {
	display: flex;
	align-items: center;
	gap: 10px;
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: none;
}

.bold-awards-group::-webkit-scrollbar {
	display: none;
}

.bold-awards-label {
	font-size: 12px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 1.5px;
	color: #999;
	white-space: nowrap;
	flex-shrink: 0;
}

.bold-award-pill {
	display: inline-flex;
	flex-direction: column;
	align-items: center;
	gap: 6px;
	padding: 10px 14px;
	border-radius: 12px;
	background: linear-gradient(135deg, #fffbeb, #fef3c7);
	border: 1.5px solid #fcd34d;
	font-size: 13px;
	font-weight: 700;
	color: #78350f;
	text-align: center;
	line-height: 1.3;
	max-width: 140px;
	transition: all 0.15s ease;
	flex-shrink: 0;
}

.bold-award-pill:hover {
	border-color: #f59e0b;
	box-shadow: 0 2px 8px rgba(245, 158, 11, 0.2);
}

.bold-award-pill img {
	border-radius: 8px;
	width: 100px;
	height: 100px;
	object-fit: cover;
}

.bold-award-pill .award-yr {
	font-size: 10px;
	font-weight: 700;
	color: #92400e;
	background: rgba(180, 83, 9, 0.12);
	padding: 2px 6px;
	border-radius: 4px;
}

/* --- Disclosure bar --- */

.bold-disclosure {
	display: flex;
	align-items: center;
	gap: 24px;
	padding: 14px 32px;
	background: #f5f4f8;
	border-top: 1px solid #e8e5f0;
	font-size: 14px;
	color: #666;
	line-height: 1.5;
}

.bold-disclosure .disc-text {
	flex: 1;
}

.bold-disclosure .disc-text a {
	color: #e67a0e;
	font-weight: 700;
	text-decoration: none;
	border-bottom: 1.5px solid #ffc48a;
}

.bold-disclosure .disc-text a:hover {
	border-bottom-color: #ff8a17;
}

.bold-authors {
	display: flex;
	gap: 20px;
	flex-shrink: 0;
}

.bold-auth {
	display: flex;
	align-items: center;
	gap: 10px;
}

.bold-auth-avatar {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 14px;
	font-weight: 700;
	color: #fff;
	overflow: hidden;
	flex-shrink: 0;
}

.bold-auth-avatar.reviewer {
	background: linear-gradient(135deg, #ff8a17, #ffad5c);
	box-shadow: 0 2px 6px rgba(255, 138, 23, 0.3);
}

.bold-auth-avatar.checker {
	background: linear-gradient(135deg, #f59e0b, #f97316);
	box-shadow: 0 2px 6px rgba(245, 158, 11, 0.3);
}

.bold-auth-avatar img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 50%;
}

a.bold-auth-name {
	font-size: 14px;
	font-weight: 700;
	color: #1a1a2e;
	text-decoration: none;
}

a.bold-auth-name:hover {
	color: #e67a0e;
}

.bold-auth-role {
	font-size: 12px;
	color: #777;
	font-weight: 600;
}

/* ==============================================
   REVIEWS MARQUEE
   ============================================== */

.bold-reviews-marquee {
	border-top: 1px solid #eee;
	padding: 16px 0;
	overflow: hidden;
	position: relative;
	background: #fafafa;
}

.bold-reviews-marquee::before,
.bold-reviews-marquee::after {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	width: 60px;
	z-index: 2;
	pointer-events: none;
}

.bold-reviews-marquee::before {
	left: 0;
	background: linear-gradient(90deg, #fafafa 0%, transparent 100%);
}

.bold-reviews-marquee::after {
	right: 0;
	background: linear-gradient(270deg, #fafafa 0%, transparent 100%);
}

.marquee-track {
	display: flex;
	gap: 14px;
	animation: marquee-scroll 40s linear infinite;
	width: max-content;
}

.marquee-track:hover {
	animation-play-state: paused;
}

@keyframes marquee-scroll {
	0% { transform: translateX(0); }
	100% { transform: translateX(-50%); }
}

.marquee-card {
	flex-shrink: 0;
	width: 280px;
	padding: 14px 16px;
	border-radius: 12px;
	background: #fff;
	border: 1px solid #eee;
	transition: border-color 0.15s ease;
}

.marquee-card:hover {
	border-color: #ffd9b3;
}

.marquee-card-head {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 8px;
}

.marquee-initial {
	width: 32px;
	height: 32px;
	border-radius: 50%;
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 14px;
	font-weight: 800;
	color: #fff;
	line-height: 1;
}

.marquee-initial--outstanding { background: linear-gradient(135deg, #059669, #10b981); }
.marquee-initial--good { background: linear-gradient(135deg, #6c5ce7, #8b7cf7); }
.marquee-initial--average { background: linear-gradient(135deg, #d97706, #f59e0b); }
.marquee-initial--poor { background: linear-gradient(135deg, #dc2626, #ef4444); }

.marquee-author {
	flex: 1;
	min-width: 0;
	display: flex;
	flex-direction: column;
}

.marquee-name {
	font-size: 14px;
	font-weight: 700;
	color: #1a1a2e;
	line-height: 1.2;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.marquee-date {
	font-size: 12px;
	color: #999;
	font-weight: 500;
}

.marquee-score {
	flex-shrink: 0;
	font-size: 14px;
	font-weight: 800;
	padding: 3px 8px;
	border-radius: 6px;
	line-height: 1;
}

.marquee-score--outstanding {
	color: #059669;
	background: #ecfdf5;
}

.marquee-score--good {
	color: #6c5ce7;
	background: #f0ecff;
}

.marquee-score--average {
	color: #d97706;
	background: #fffbeb;
}

.marquee-score--poor {
	color: #dc2626;
	background: #fef2f2;
}

.marquee-title {
	font-size: 14px;
	font-weight: 700;
	color: #1a1a2e;
	margin-bottom: 4px;
	line-height: 1.3;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.marquee-text {
	font-size: 13px;
	color: #666;
	line-height: 1.45;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

/* Tier accent on left border */
.marquee-card--outstanding { border-left: 3px solid #10b981; }
.marquee-card--good { border-left: 3px solid #8b7cf7; }
.marquee-card--average { border-left: 3px solid #f59e0b; }
.marquee-card--poor { border-left: 3px solid #ef4444; }

/* ==============================================
   RESPONSIVE — Tablet (max-width: 992px)
   ============================================== */

@media (max-width: 992px) {
	.bold-hero {
		grid-template-columns: 1fr;
		gap: 24px;
		padding: 24px 24px 20px;
	}

	.bold-right {
		flex-direction: row;
		justify-content: flex-start;
		align-items: center;
		gap: 16px;
		padding-left: 100px;
	}

	.bold-topbar,
	.bold-actions-strip,
	.bold-disclosure {
		padding-left: 24px;
		padding-right: 24px;
	}

	.bold-disclosure {
		flex-direction: column;
		align-items: flex-start;
		gap: 16px;
	}

	.bold-authors {
		width: 100%;
	}
}

/* ==============================================
   RESPONSIVE — Small tablet (max-width: 768px)
   ============================================== */

@media (max-width: 768px) {
	.bold-card {
		border-radius: 14px;
	}

	.bold-left {
		flex-direction: column;
		gap: 16px;
	}

	.bold-right {
		padding-left: 0;
	}

	.bold-logo {
		width: 100px;
		height: 100px;
		border-radius: 18px;
	}

	.bold-logo img {
		max-width: 84px;
		max-height: 84px;
	}

	.bold-meta h1 {
		font-size: 24px;
	}

	.bold-categories {
		gap: 6px;
	}

	.bold-cat {
		padding: 5px 10px;
		font-size: 12px;
		border-radius: 8px;
	}

	.bold-actions-strip {
		flex-direction: column;
		align-items: stretch;
		gap: 16px;
	}

	.bold-actions-strip .bold-cta-row {
		flex-direction: column;
	}

	.bold-cta {
		width: 100%;
		padding: 14px 20px;
	}

	.bold-awards-group {
		flex-wrap: wrap;
		gap: 8px;
	}

	.bold-authors {
		flex-direction: column;
		gap: 12px;
	}

	.marquee-card {
		width: 240px;
		padding: 12px 14px;
	}

	.marquee-track {
		animation-duration: 30s;
	}

	.bold-quick-stats {
		padding: 0 24px 20px;
	}

	.quick-stats-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.quick-stat {
		border-bottom: 1px solid #eee;
	}

	.quick-stat:nth-child(even) {
		border-right: none;
	}

	.quick-stat:nth-last-child(-n+2) {
		border-bottom: none;
	}

	.quick-stat-value {
		font-size: 22px;
	}

	.quick-pills {
		gap: 6px;
	}

	.quick-pill {
		font-size: 12px;
		padding: 6px 12px;
	}
}

/* ==============================================
   RESPONSIVE — Mobile (max-width: 544px)
   ============================================== */

@media (max-width: 544px) {
	.bold-card {
		border-radius: 12px;
	}

	.bold-hero {
		padding: 20px 16px 16px;
	}

	.bold-topbar {
		flex-direction: column;
		align-items: flex-start;
		gap: 4px;
		padding: 10px 16px;
	}

	.bold-topbar,
	.bold-actions-strip,
	.bold-disclosure {
		padding-left: 16px;
		padding-right: 16px;
	}

	.bold-meta h1 {
		font-size: 22px;
	}

	.bold-rating-row {
		flex-wrap: wrap;
	}

	.bold-categories {
		margin-bottom: 16px;
	}

	.score-num {
		font-size: 32px;
	}

	.score-pill {
		padding: 10px 22px;
		border-radius: 14px;
	}

	.score-of {
		font-size: 16px;
	}

	.score-verdict {
		font-size: 11px;
	}

	.bold-disclosure {
		padding: 12px 16px;
		font-size: 12px;
	}

	.bold-award-pill {
		padding: 6px;
	}

	.bold-award-pill img {
		width: 64px;
		height: 64px;
	}

	.marquee-card {
		width: 220px;
		padding: 10px 12px;
	}

	.bold-reviews-marquee::before,
	.bold-reviews-marquee::after {
		width: 30px;
	}

	.bold-quick-stats {
		padding: 0 16px 16px;
	}

	.quick-stats-grid {
		grid-template-columns: 1fr 1fr;
	}

	.quick-stat {
		padding: 14px 16px;
	}

	.quick-stat-value {
		font-size: 20px;
	}

	.quick-stat-value .stat-icon {
		width: 18px;
		height: 18px;
	}

	.quick-stat-label {
		font-size: 10px;
	}

	.quick-pills {
		margin-top: 12px;
		gap: 5px;
	}

	.quick-pill {
		font-size: 11px;
		padding: 5px 10px;
	}
}

/* ==============================================
   REDUCED MOTION
   ============================================== */

/* ==============================================
   INTERACTIVE ELEMENTS & ANIMATIONS
   ============================================== */

/* --- Hero entrance stagger --- */

.bold-card {
	animation: card-entrance 0.6s ease-out both;
}

@keyframes card-entrance {
	from { opacity: 0; transform: translateY(12px); }
	to { opacity: 1; transform: translateY(0); }
}

.bold-logo {
	animation: logo-pop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) 0.2s both;
}

@keyframes logo-pop {
	from { opacity: 0; transform: scale(0.8); }
	to { opacity: 1; transform: scale(1); }
}

.bold-meta h1 {
	animation: slide-in 0.5s ease-out 0.15s both;
}

.bold-rating-row {
	animation: slide-in 0.5s ease-out 0.25s both;
}

.bold-categories {
	animation: slide-in 0.5s ease-out 0.3s both;
}

.bold-actions-strip {
	animation: slide-in 0.5s ease-out 0.35s both;
}

@keyframes slide-in {
	from { opacity: 0; transform: translateX(-10px); }
	to { opacity: 1; transform: translateX(0); }
}

/* --- Score widget animations --- */

.score-pill {
	animation: pill-pop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) 0.3s both;
}

@keyframes pill-pop {
	from { opacity: 0; transform: scale(0.7); }
	to { opacity: 1; transform: scale(1); }
}

.score-verdict {
	animation: verdict-in 0.4s ease-out 0.8s both;
}

@keyframes verdict-in {
	from { opacity: 0; transform: translateY(6px); }
	to { opacity: 1; transform: translateY(0); }
}

/* --- Star shimmer on hover --- */

.bold-stars:hover .bold-star {
	animation: star-shimmer 0.4s ease;
}

.bold-stars:hover .bold-star:nth-child(2) { animation-delay: 0.05s; }
.bold-stars:hover .bold-star:nth-child(3) { animation-delay: 0.1s; }
.bold-stars:hover .bold-star:nth-child(4) { animation-delay: 0.15s; }
.bold-stars:hover .bold-star:nth-child(5) { animation-delay: 0.2s; }

@keyframes star-shimmer {
	0% { transform: scale(1); }
	50% { transform: scale(1.25) rotate(8deg); }
	100% { transform: scale(1); }
}

/* --- Category pills interactive hover --- */

.bold-cat {
	cursor: default;
	transition: all 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.bold-cat:hover {
	transform: translateY(-2px) scale(1.04);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.bold-cat:active {
	transform: translateY(0) scale(0.98);
}

/* --- Primary CTA pulse glow --- */

.bold-cta.primary {
	position: relative;
	overflow: hidden;
}

.bold-cta.primary::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(105deg, transparent 40%, rgba(255, 255, 255, 0.3) 45%, rgba(255, 255, 255, 0.3) 55%, transparent 60%);
	transform: translateX(-100%);
	animation: cta-shine 3s ease-in-out 1.5s infinite;
}

@keyframes cta-shine {
	0% { transform: translateX(-100%); }
	30% { transform: translateX(100%); }
	100% { transform: translateX(100%); }
}

/* --- Score widget hover --- */

/* --- Award pills --- */

/* --- Author avatars hover --- */

.bold-auth-avatar {
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.bold-auth-avatar:hover {
	transform: scale(1.12);
	box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
}

/* --- Marquee card hover lift --- */

.marquee-card {
	transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.marquee-card:hover {
	transform: translateY(-3px);
	box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
}

/* --- Review link animated underline --- */

.bold-review-link {
	position: relative;
	border-bottom: none;
	padding-bottom: 2px;
}

.bold-review-link::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	width: 0;
	height: 1.5px;
	background: #ff8a17;
	transition: width 0.3s ease;
}

.bold-review-link:hover::after {
	width: 100%;
}

/* ==============================================
   REDUCED MOTION
   ============================================== */

@media (prefers-reduced-motion: reduce) {
	.marquee-track {
		animation: none;
		overflow-x: auto;
		scrollbar-width: thin;
	}

	.bold-reviews-marquee::before,
	.bold-reviews-marquee::after {
		display: none;
	}

	.bold-card,
	.bold-logo,
	.bold-meta h1,
	.bold-rating-row,
	.bold-categories,
	.bold-actions-strip,
	.score-pill,
	.score-verdict {
		animation: none;
		opacity: 1;
		transform: none;
	}

	.bold-cta.primary::after {
		animation: none;
		display: none;
	}
}
