:root {
	--sv-navy: #061a36;
	--sv-navy-2: #092b58;
	--sv-blue: #0051c3;
	--sv-blue-2: #00a3ff;
	--sv-gold: #ffbd1f;
	--sv-orange: #ff7a18;
	--sv-green: #0bbf72;
	--sv-red: #dc2f3f;
	--sv-ink: #102033;
	--sv-muted: #5f6f86;
	--sv-soft: #eef5ff;
	--sv-panel: #ffffff;
	--sv-panel-2: #f7fbff;
	--sv-border: #d9e5f4;
	--sv-shadow: 0 18px 42px rgba(6, 26, 54, 0.12);
	--sv-radius: 8px;
	--sv-max: 1180px;
}

*,
*::before,
*::after {
	box-sizing: border-box;
	letter-spacing: 0;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background: linear-gradient(180deg, #071a35 0, #eef5ff 420px, #f8fbff 100%);
	color: var(--sv-ink);
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
	line-height: 1.6;
}

body,
button,
input,
select,
textarea {
	font: 16px/1.6 -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
}

a {
	color: var(--sv-blue);
	text-decoration: none;
}

a:hover,
a:focus-visible {
	color: #003b90;
	text-decoration: underline;
	text-underline-offset: 3px;
}

img {
	max-width: 100%;
	height: auto;
}

.sv-visually-hidden,
.sv-skip {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.sv-skip:focus {
	z-index: 9999;
	top: 1rem;
	left: 1rem;
	width: auto;
	height: auto;
	padding: 0.75rem 1rem;
	clip: auto;
	border-radius: var(--sv-radius);
	background: var(--sv-gold);
	color: #201000;
	font-weight: 800;
}

.sv-wrap,
.sv-template {
	width: min(100% - 2rem, var(--sv-max));
	margin-inline: auto;
}

.sv-header {
	position: sticky;
	top: 0;
	z-index: 50;
	border-bottom: 1px solid rgba(255, 255, 255, 0.14);
	background: rgba(6, 26, 54, 0.95);
	backdrop-filter: blur(10px);
}

.sv-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	width: min(100% - 1.25rem, 1280px);
	min-height: 76px;
	margin-inline: auto;
}

.sv-brand {
	display: inline-flex;
	align-items: center;
	gap: 0.7rem;
	min-width: 0;
	color: #fff;
	text-decoration: none;
}

.sv-brand:hover,
.sv-brand:focus-visible {
	color: #fff;
	text-decoration: none;
}

.sv-brand__mark {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	border: 2px solid rgba(255, 189, 31, 0.92);
	border-radius: var(--sv-radius);
	background: linear-gradient(135deg, var(--sv-blue), #06234b);
	color: var(--sv-gold);
	font-size: 1.35rem;
	font-weight: 950;
	box-shadow: 0 10px 22px rgba(0, 81, 195, 0.24);
}

.sv-brand__logo {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 54px;
	height: 42px;
	overflow: hidden;
}

.sv-brand__logo img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.sv-brand__copy {
	display: grid;
	min-width: 0;
	line-height: 1.2;
}

.sv-brand__name {
	color: #fff;
	font-size: 1.15rem;
	font-weight: 900;
}

.sv-brand__tagline {
	color: #bcd0eb;
	font-size: 0.88rem;
	font-weight: 700;
}

.sv-nav__list {
	display: flex;
	align-items: center;
	gap: 0.25rem;
	margin: 0;
	padding: 0;
	list-style: none;
}

.sv-nav__list a {
	display: inline-flex;
	align-items: center;
	min-height: 42px;
	padding: 0.52rem 0.76rem;
	border-radius: var(--sv-radius);
	color: #e9f3ff;
	font-weight: 800;
	text-decoration: none;
}

.sv-nav__list a:hover,
.sv-nav__list a:focus-visible,
.sv-nav__list .current-menu-item > a {
	background: rgba(255, 255, 255, 0.1);
	color: #fff;
}

.sv-menu-toggle {
	display: none;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	gap: 0.22rem;
	width: 44px;
	height: 44px;
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: var(--sv-radius);
	background: rgba(255, 255, 255, 0.06);
	color: #fff;
	cursor: pointer;
}

.sv-menu-toggle__bar {
	width: 20px;
	height: 2px;
	border-radius: 999px;
	background: currentColor;
}

.sv-main {
	min-height: 60vh;
}

.sv-template {
	display: grid;
	gap: 1.4rem;
	padding: 1.6rem 0 3.2rem;
}

.sv-hero {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(260px, 360px);
	gap: 1.1rem;
	align-items: stretch;
	padding: 1rem;
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: var(--sv-radius);
	background: linear-gradient(135deg, #072147 0%, #0b3670 58%, #0051c3 100%);
	color: #fff;
	box-shadow: var(--sv-shadow);
}

.sv-hero__copy {
	display: grid;
	gap: 1rem;
	padding: 2.2rem;
}

.sv-eyebrow {
	display: inline-flex;
	align-items: center;
	width: fit-content;
	min-height: 32px;
	margin: 0;
	padding: 0.34rem 0.7rem;
	border: 1px solid rgba(255, 189, 31, 0.65);
	border-radius: 999px;
	background: rgba(255, 189, 31, 0.16);
	color: #ffe49a;
	font-size: 0.82rem;
	font-weight: 900;
	line-height: 1;
}

.sv-hero h1 {
	max-width: 820px;
	margin: 0;
	color: #fff;
	font-size: 4.4rem;
	line-height: 0.98;
	text-wrap: balance;
}

.sv-author-line {
	display: grid;
	grid-template-columns: auto minmax(0, 1fr) auto;
	gap: 0.8rem;
	align-items: center;
	width: min(100%, 720px);
	padding: 0.75rem;
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: var(--sv-radius);
	background: rgba(4, 17, 36, 0.34);
}

.sv-author-line img {
	display: block;
	width: 64px;
	height: 64px;
	border-radius: var(--sv-radius);
	object-fit: cover;
}

.sv-author-line__name,
.sv-author-line__meta,
.sv-hero__intro p {
	margin: 0;
}

.sv-author-line__name {
	color: #fff;
	font-size: 1.05rem;
	font-weight: 900;
}

.sv-author-line__name a {
	color: inherit;
	text-decoration: none;
}

.sv-author-line__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 0.35rem 0.75rem;
	color: #cce0f7;
	font-size: 0.92rem;
	font-weight: 750;
}

.sv-live-pill {
	display: inline-flex;
	align-items: center;
	gap: 0.38rem;
	min-height: 34px;
	padding: 0.36rem 0.68rem;
	border: 1px solid rgba(11, 191, 114, 0.58);
	border-radius: 999px;
	background: rgba(11, 191, 114, 0.14);
	color: #bfffe1;
	font-size: 0.82rem;
	font-weight: 900;
}

.sv-live-pill span {
	width: 0.52rem;
	height: 0.52rem;
	border-radius: 999px;
	background: var(--sv-green);
	box-shadow: 0 0 0 4px rgba(11, 191, 114, 0.16);
}

.sv-hero__intro {
	max-width: 780px;
	color: #d9e9fb;
	font-size: 1.05rem;
}

.sv-anchor-nav {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
}

.sv-anchor-nav a,
.sv-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 44px;
	padding: 0.62rem 0.88rem;
	border: 1px solid rgba(255, 255, 255, 0.42);
	border-radius: var(--sv-radius);
	background: #00586c;
	color: #fff;
	font-weight: 850;
	line-height: 1.1;
	text-align: center;
	text-decoration: none;
}

.sv-anchor-nav a:hover,
.sv-anchor-nav a:focus-visible {
	background: #006f8d;
	color: #fff;
	text-decoration: none;
}

.sv-button--primary {
	border-color: #dd9400;
	background: linear-gradient(135deg, var(--sv-gold), var(--sv-orange));
	color: #211000;
	box-shadow: 0 12px 24px rgba(255, 122, 24, 0.25);
}

.sv-hero__panel {
	display: grid;
	gap: 0.75rem;
	align-self: stretch;
	margin: 0;
	padding: 1rem;
	border: 1px solid rgba(255, 255, 255, 0.16);
	border-radius: var(--sv-radius);
	background: rgba(255, 255, 255, 0.1);
	list-style: none;
}

.sv-hero__panel .sv-promo-card {
	display: grid;
	gap: 0.18rem;
	padding: 0.85rem;
	border-radius: var(--sv-radius);
	background: rgba(255, 255, 255, 0.12);
}

.sv-hero__panel strong {
	color: #fff;
	font-size: 1.2rem;
	font-weight: 950;
}

.sv-hero__panel span {
	color: #cfe2f8;
	font-weight: 750;
}

.sv-notice {
	padding: 0.95rem 1rem;
	border: 1px solid #ffd36c;
	border-radius: var(--sv-radius);
	background: #fff5d7;
	color: #5d3b00;
	font-weight: 800;
}

.sv-section,
.sv-trust-row,
.sv-content-page,
.sv-archive,
.sv-author {
	padding: 1.8rem 0;
}

.sv-section__head,
.sv-page-head {
	display: grid;
	gap: 0.45rem;
	margin-bottom: 1rem;
}

.sv-section__head h2,
.sv-page-head h1 {
	margin: 0;
	color: var(--sv-navy);
	font-size: 2.35rem;
	line-height: 1.12;
	text-wrap: balance;
}

.sv-section__head p,
.sv-page-head p {
	max-width: 820px;
	margin: 0;
	color: var(--sv-muted);
	font-size: 1.02rem;
}

.sv-method-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1rem;
	margin: 0;
	padding: 0;
	list-style: none;
	counter-reset: sv-method;
}

.sv-method-grid li {
	position: relative;
	display: grid;
	gap: 0.6rem;
	padding: 1rem;
	border: 1px solid var(--sv-border);
	border-radius: var(--sv-radius);
	background: var(--sv-panel);
	box-shadow: 0 10px 24px rgba(6, 26, 54, 0.08);
	counter-increment: sv-method;
}

.sv-method-grid li::before {
	content: counter(sv-method);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2rem;
	height: 2rem;
	border-radius: 999px;
	background: var(--sv-blue);
	color: #fff;
	font-weight: 900;
}

.sv-method-grid h3,
.sv-method-grid p {
	margin: 0;
}

.sv-method-grid h3 {
	color: var(--sv-navy);
	font-size: 1.08rem;
	line-height: 1.25;
}

.sv-method-grid p {
	color: var(--sv-muted);
}

.sv-guide-layout,
.sv-copy,
.sv-article,
.sv-post-card,
.sv-author-card,
.sv-reviewer-card,
.sv-compliance-card {
	border-radius: var(--sv-radius);
}

.sv-copy,
.sv-article {
	max-width: 920px;
	padding: 1.2rem;
	border: 1px solid var(--sv-border);
	background: var(--sv-panel);
	box-shadow: 0 12px 28px rgba(6, 26, 54, 0.07);
}

.sv-copy h2,
.sv-copy h3,
.sv-copy h4 {
	margin-top: 1.25rem;
	margin-bottom: 0.5rem;
	color: var(--sv-navy);
	line-height: 1.2;
}

.sv-copy p,
.sv-copy li {
	color: #26384e;
}

.sv-copy table {
	display: block;
	width: 100%;
	overflow-x: auto;
	border: 1px solid var(--sv-border);
	border-radius: var(--sv-radius);
	border-collapse: collapse;
	background: #fff;
}

.sv-copy th,
.sv-copy td {
	min-width: 9rem;
	padding: 0.75rem;
	border-bottom: 1px solid var(--sv-border);
	text-align: left;
	vertical-align: top;
}

.sv-copy th {
	background: #eaf3ff;
	color: var(--sv-navy);
}

.sv-table-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1rem;
	width: 100%;
	margin-top: 1.25rem;
}

.sv-data-table {
	display: grid;
	gap: 0.9rem;
	min-width: 0;
	padding: 1rem;
	border: 1px solid var(--sv-border);
	border-radius: var(--sv-radius);
	background: #ffffff;
	box-shadow: 0 12px 28px rgba(6, 26, 54, 0.07);
}

.sv-data-table__head {
	display: grid;
	gap: 0.35rem;
}

.sv-data-table__head h3,
.sv-data-table__head p {
	margin: 0;
}

.sv-data-table__head h3 {
	color: var(--sv-navy);
	font-size: 1.18rem;
	line-height: 1.2;
}

.sv-data-table__head p {
	color: var(--sv-muted);
}

.sv-data-table__scroll {
	min-width: 0;
	overflow-x: auto;
}

.sv-data-table table {
	width: 100%;
	min-width: 0;
	border: 1px solid var(--sv-border);
	border-collapse: separate;
	border-spacing: 0;
	border-radius: var(--sv-radius);
	background: #ffffff;
	table-layout: fixed;
	overflow: hidden;
}

.sv-data-table caption {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.sv-data-table th,
.sv-data-table td {
	padding: 0.72rem;
	border-bottom: 1px solid var(--sv-border);
	color: #243447;
	text-align: left;
	vertical-align: top;
	overflow-wrap: anywhere;
}

.sv-data-table thead th {
	background: var(--sv-teal-dark);
	color: #ffffff;
	font-size: 0.84rem;
	font-weight: 900;
	line-height: 1.25;
}

.sv-data-table tbody th {
	background: #f3fbfd;
	color: #111827;
	font-weight: 900;
}

.sv-data-table tbody tr:last-child th,
.sv-data-table tbody tr:last-child td {
	border-bottom: 0;
}

.sv-faq-list {
	display: grid;
	gap: 0.75rem;
	max-width: 920px;
}

.sv-faq-list details {
	border: 1px solid var(--sv-border);
	border-radius: var(--sv-radius);
	background: var(--sv-panel);
	box-shadow: 0 8px 22px rgba(6, 26, 54, 0.06);
	overflow: hidden;
}

.sv-faq-list summary {
	min-height: 54px;
	padding: 0.9rem 1rem;
	color: var(--sv-navy);
	font-weight: 900;
	cursor: pointer;
}

.sv-faq-list p {
	margin: 0;
	padding: 0 1rem 1rem;
	color: var(--sv-muted);
}

.sv-trust-row {
	display: grid;
	grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
	gap: 1rem;
}

.sv-reviewer-card,
.sv-compliance-card,
.sv-author-card {
	padding: 1.15rem;
	border: 1px solid var(--sv-border);
	background: var(--sv-panel);
	box-shadow: 0 12px 28px rgba(6, 26, 54, 0.07);
}

.sv-reviewer-card h3,
.sv-compliance-card h3 {
	margin: 0 0 0.85rem;
	color: var(--sv-navy);
	font-size: 1.35rem;
	line-height: 1.2;
}

.sv-reviewer-card__body,
.sv-author-card {
	display: grid;
	grid-template-columns: auto minmax(0, 1fr);
	gap: 1rem;
	align-items: start;
}

.sv-reviewer-card img,
.sv-author-card img {
	width: 88px;
	height: 88px;
	border-radius: var(--sv-radius);
	object-fit: cover;
}

.sv-reviewer-card h3,
.sv-reviewer-card__name,
.sv-reviewer-card p,
.sv-compliance-card p,
.sv-author-card h1,
.sv-author-card p {
	margin: 0;
}

.sv-reviewer-card__role,
.sv-author-card__role {
	color: var(--sv-blue);
	font-weight: 900;
}

.sv-reviewer-card__name {
	color: var(--sv-navy);
	font-size: 1.05rem;
	font-weight: 900;
	line-height: 1.25;
}

.sv-compliance-card {
	background: linear-gradient(180deg, #ffffff, #f3f8ff);
}

.sv-compliance-card__links,
.sv-footer__links {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	margin: 0.9rem 0 0;
	padding: 0;
	list-style: none;
}

.sv-compliance-card__links a,
.sv-footer__links a {
	display: inline-flex;
	align-items: center;
	min-height: 38px;
	padding: 0.42rem 0.62rem;
	border: 1px solid rgba(0, 81, 195, 0.22);
	border-radius: var(--sv-radius);
	background: #eef5ff;
	color: var(--sv-blue);
	font-weight: 800;
	text-decoration: none;
}

.sv-post-list {
	display: grid;
	gap: 1rem;
}

.sv-post-card {
	padding: 1rem;
	border: 1px solid var(--sv-border);
	background: var(--sv-panel);
	box-shadow: 0 10px 22px rgba(6, 26, 54, 0.06);
}

.sv-post-card h2,
.sv-post-card p {
	margin: 0;
}

.sv-post-card h2 {
	font-size: 1.3rem;
}

.sv-post-card__meta {
	color: var(--sv-muted);
	font-size: 0.92rem;
}

.sv-article--center {
	text-align: center;
}

.sv-footer {
	margin-top: 2rem;
	background: #061a36;
	color: #dbeaff;
}

.sv-footer__inner {
	display: grid;
	grid-template-columns: 1.1fr 0.8fr 1.1fr 0.8fr;
	gap: 1rem;
	width: min(100% - 2rem, var(--sv-max));
	margin-inline: auto;
	padding: 2rem 0;
}

.sv-footer__panel {
	display: grid;
	align-content: start;
	gap: 0.6rem;
}

.sv-footer__panel h2,
.sv-footer__brand,
.sv-footer__panel p {
	margin: 0;
}

.sv-footer__panel h2 {
	color: #fff;
	font-size: 1rem;
	text-transform: uppercase;
}

.sv-footer__brand {
	color: #fff;
	font-size: 1.25rem;
	font-weight: 950;
}

.sv-footer__warning {
	display: inline-flex;
	width: fit-content;
	min-height: 34px;
	padding: 0.34rem 0.62rem;
	border-radius: 999px;
	background: rgba(255, 189, 31, 0.16);
	color: #ffe29a;
	font-weight: 900;
}

.sv-chip-list {
	display: flex;
	flex-wrap: wrap;
	gap: 0.45rem;
	margin: 0;
	padding: 0;
	list-style: none;
}

.sv-chip-list li {
	display: inline-flex;
	align-items: center;
	min-height: 34px;
	padding: 0.32rem 0.55rem;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.1);
	color: #e7f2ff;
	font-weight: 750;
}

.sv-footer .sv-footer__links a {
	border-color: rgba(255, 255, 255, 0.16);
	background: rgba(255, 255, 255, 0.08);
	color: #eaf5ff;
}

.sv-footer__copy {
	width: min(100% - 2rem, var(--sv-max));
	margin: 0 auto;
	padding: 1rem 0 1.3rem;
	border-top: 1px solid rgba(255, 255, 255, 0.12);
	color: #adc4df;
	font-size: 0.92rem;
}

@media (max-width: 980px) {
	.sv-hero,
	.sv-trust-row,
	.sv-footer__inner {
		grid-template-columns: 1fr;
	}

	.sv-method-grid {
		grid-template-columns: 1fr;
	}

	.sv-hero h1 {
		font-size: 3.25rem;
	}

	.sv-section__head h2,
	.sv-page-head h1 {
		font-size: 2rem;
	}

	.sv-hero__panel {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 760px) {
	body {
		background: linear-gradient(180deg, #071a35 0, #eef5ff 360px, #f8fbff 100%);
	}

	.sv-header__inner {
		flex-wrap: wrap;
		min-height: 68px;
		padding: 0.55rem 0;
	}

	.sv-menu-toggle {
		display: inline-flex;
	}

	.sv-nav {
		display: none;
		width: 100%;
	}

	body.sv-menu-open .sv-nav {
		display: block;
	}

	.sv-nav__list {
		display: grid;
		gap: 0.35rem;
		padding: 0.4rem 0 0.2rem;
	}

	.sv-nav__list a {
		width: 100%;
		background: rgba(255, 255, 255, 0.07);
	}

	.sv-template {
		width: min(100% - 1rem, var(--sv-max));
		padding-top: 0.8rem;
	}

	.sv-hero {
		padding: 0.75rem;
	}

	.sv-hero__copy {
		padding: 0.85rem;
	}

	.sv-author-line {
		grid-template-columns: auto minmax(0, 1fr);
	}

	.sv-live-pill {
		grid-column: 1 / -1;
		justify-self: start;
	}

	.sv-hero__panel {
		grid-template-columns: 1fr;
	}

	.sv-anchor-nav a {
		flex: 1 1 calc(50% - 0.5rem);
	}

	.sv-copy,
	.sv-article,
	.sv-reviewer-card,
	.sv-compliance-card,
	.sv-author-card {
		padding: 1rem;
	}
}

@media (max-width: 460px) {
	.sv-wrap {
		width: min(100% - 1rem, var(--sv-max));
	}

	.sv-brand__tagline {
		display: none;
	}

	.sv-hero h1 {
		font-size: 2.15rem;
	}

	.sv-section__head h2,
	.sv-page-head h1 {
		font-size: 1.7rem;
	}

	.sv-anchor-nav a,
	.sv-button {
		width: 100%;
	}
}

/* Svenska 2026 visual refresh: teal editorial header, payment hero, white comparison area. */
:root {
	--sv-teal: #006f8d;
	--sv-teal-dark: #003f4e;
	--sv-teal-card: #057896;
	--sv-teal-soft: #e8f8fb;
	--sv-gold: #ffc75a;
	--sv-gold-2: #ffb23f;
	--sv-ink: #111827;
	--sv-muted: #566071;
	--sv-border: #d8e3e8;
	--sv-shadow: 0 16px 36px rgba(17, 24, 39, 0.14);
}

body {
	background: #ffffff;
	color: var(--sv-ink);
}

a {
	color: var(--sv-teal);
}

a:hover,
a:focus-visible {
	color: #004f65;
}

.sv-template {
	display: block;
	width: 100%;
	max-width: none;
	padding: 0;
	background: #ffffff;
}

.sv-header {
	border-bottom: 0;
	background: var(--sv-teal);
	box-shadow: 0 1px 0 rgba(255, 255, 255, 0.2);
	backdrop-filter: none;
}

.sv-header__inner {
	width: min(100% - 2rem, 1440px);
	min-height: 84px;
	gap: 1.2rem;
}

.sv-brand {
	gap: 0.7rem;
}

.sv-brand__mark {
	position: relative;
	display: inline-flex;
	width: 48px;
	height: 40px;
	border: 0;
	border-radius: 8px;
	background: #004b5d;
	box-shadow: inset 0 0 0 2px rgba(255, 199, 90, 0.36), 0 8px 18px rgba(0, 38, 47, 0.22);
	color: transparent;
}

.sv-brand__mark::before {
	content: "";
	position: absolute;
	inset: 7px 5px 8px;
	border-radius: 3px 3px 5px 5px;
	background: linear-gradient(180deg, #ffe48f 0%, var(--sv-gold) 100%);
	clip-path: polygon(0 28%, 18% 0, 37% 30%, 50% 4%, 63% 30%, 82% 0, 100% 28%, 88% 100%, 12% 100%);
}

.sv-brand__mark::after {
	content: "";
	position: absolute;
	left: 13px;
	right: 13px;
	bottom: 8px;
	height: 5px;
	border-radius: 999px;
	background: #ffe190;
}

.sv-brand__mark span {
	display: none;
}

.sv-brand__name {
	color: #ffffff;
	font-size: 1.78rem;
	font-weight: 950;
	line-height: 1;
	text-transform: uppercase;
}

.sv-brand__tagline {
	color: #d1eef5;
	font-size: 0.78rem;
	font-weight: 800;
}

.sv-nav {
	flex: 1 1 auto;
}

.sv-nav__list {
	justify-content: center;
	gap: 0.35rem;
}

.sv-nav__list a {
	gap: 0.42rem;
	min-height: 48px;
	padding: 0.5rem 0.72rem;
	border-radius: 8px;
	color: #ffffff;
	font-size: 0.96rem;
	font-weight: 850;
}

.sv-nav__list a::before {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 1.45rem;
	height: 1.45rem;
	border: 2px solid rgba(255, 255, 255, 0.78);
	border-radius: 6px;
	color: #ffffff;
	font-size: 0.78rem;
	font-weight: 900;
	line-height: 1;
}

.sv-nav__list li:nth-child(1) a::before {
	content: "+";
}

.sv-nav__list li:nth-child(2) a::before {
	content: "☆";
}

.sv-nav__list li:nth-child(3) a::before {
	content: "◇";
}

.sv-nav__list li:nth-child(4) a::before {
	content: "777";
	width: 1.9rem;
	font-size: 0.62rem;
}

.sv-nav__list li:nth-child(5) a::before {
	content: "▭";
}

.sv-nav__list a:hover,
.sv-nav__list a:focus-visible,
.sv-nav__list .current-menu-item > a {
	background: rgba(255, 255, 255, 0.13);
	color: #ffffff;
	text-decoration: none;
}

.sv-header__actions {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 0.65rem;
	white-space: nowrap;
}

.sv-header__search {
	position: relative;
	display: inline-flex;
	width: 44px;
	height: 44px;
	border-radius: 999px;
}

.sv-header__search::before {
	content: "";
	position: absolute;
	top: 10px;
	left: 9px;
	width: 18px;
	height: 18px;
	border: 3px solid #ffffff;
	border-radius: 999px;
}

.sv-header__search::after {
	content: "";
	position: absolute;
	top: 28px;
	left: 27px;
	width: 13px;
	height: 3px;
	border-radius: 999px;
	background: #ffffff;
	transform: rotate(45deg);
	transform-origin: left center;
}

.sv-header__link,
.sv-header__cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 46px;
	padding: 0.55rem 1rem;
	border-radius: 999px;
	font-weight: 900;
	line-height: 1;
	text-decoration: none;
}

.sv-header__link {
	border: 2px solid rgba(255, 255, 255, 0.82);
	color: #ffffff;
}

.sv-header__cta {
	background: #ffffff;
	color: var(--sv-teal);
	box-shadow: 0 6px 14px rgba(0, 63, 78, 0.18);
}

.sv-header__link:hover,
.sv-header__link:focus-visible,
.sv-header__cta:hover,
.sv-header__cta:focus-visible {
	color: var(--sv-teal-dark);
	text-decoration: none;
	transform: translateY(-1px);
}

.sv-menu-toggle {
	border-color: rgba(255, 255, 255, 0.45);
	background: rgba(255, 255, 255, 0.1);
}

.sv-main {
	min-height: 60vh;
	background: #ffffff;
}

.sv-hero,
.sv-section,
.sv-trust-row {
	scroll-margin-top: 96px;
}

.sv-hero {
	display: grid;
	grid-template-columns: 1fr;
	gap: 2rem;
	align-items: center;
	min-height: 620px;
	padding: 3rem max(1rem, calc((100% - var(--sv-max)) / 2)) 3.7rem;
	border: 0;
	border-radius: 0;
	background: var(--sv-teal-dark);
	color: #ffffff;
	box-shadow: none;
}

.sv-hero__copy {
	display: grid;
	justify-items: center;
	gap: 0.72rem;
	width: 100%;
	max-width: 1060px;
	margin-inline: auto;
	padding: 0;
	text-align: center;
}

.sv-breadcrumbs {
	justify-self: stretch;
	margin-bottom: 1.1rem;
	color: #c6d7dc;
	font-size: 1rem;
	font-weight: 700;
	text-align: left;
}

.sv-breadcrumbs ol {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.5rem;
	margin: 0;
	padding: 0;
	list-style: none;
}

.sv-breadcrumbs li + li::before {
	content: "/";
	margin-right: 0.5rem;
	color: #c6d7dc;
}

.sv-breadcrumbs a {
	color: #c6d7dc;
	text-decoration: underline;
	text-underline-offset: 4px;
}

.sv-breadcrumbs [aria-current="page"] {
	color: #ffffff;
}

.sv-hero__eyebrow {
	display: none;
}

.sv-hero h1 {
	max-width: 900px;
	margin: 0;
	color: #ffffff;
	font-size: 3.45rem;
	line-height: 1.08;
	text-align: center;
	text-wrap: balance;
}

.sv-hero__subtitle {
	margin: -0.1rem 0 0.2rem;
	color: #d9eef4;
	font-size: 1.55rem;
	font-weight: 850;
	line-height: 1.25;
}

.sv-author-line {
	display: grid;
	grid-template-columns: repeat(2, minmax(150px, auto));
	justify-content: center;
	gap: 2.8rem;
	width: fit-content;
	margin-top: 0.5rem;
	padding: 0.7rem 0 0.45rem;
	border: 0;
	border-radius: 0;
	background: transparent;
	text-align: left;
}

.sv-author-line img,
.sv-live-pill,
.sv-author-line__role {
	display: none;
}

.sv-author-line__body {
	display: contents;
}

.sv-author-line__name,
.sv-author-line__meta,
.sv-author-line__updated {
	display: grid;
	gap: 0.2rem;
	color: #ffffff;
	font-size: 1rem;
	font-weight: 900;
	line-height: 1.25;
}

.sv-author-line__label {
	color: #d5ebf2;
	font-weight: 800;
}

.sv-author-line__name a {
	color: #ffffff;
	text-decoration: none;
}

.sv-author-line__updated strong {
	color: #ffffff;
	font-weight: 900;
}

.sv-hero__intro {
	max-width: 980px;
	margin-top: 0.55rem;
	color: #d7e6eb;
	font-size: 1.08rem;
	font-weight: 650;
}

.sv-hero__intro p {
	margin: 0;
}

.sv-anchor-nav {
	justify-content: center;
	gap: 0.55rem;
	margin-top: 0.45rem;
}

.sv-anchor-nav a,
.sv-button {
	min-height: 40px;
	padding: 0.48rem 0.72rem;
	border: 1px solid rgba(255, 255, 255, 0.42);
	border-radius: 8px;
	background: #00586c;
	color: #ffffff;
	font-weight: 850;
}

.sv-hero__panel {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1rem;
	align-self: center;
	width: min(100%, 980px);
	margin-inline: auto;
	padding: 0;
	border: 0;
	border-radius: 0;
	background: transparent;
	list-style: none;
}

.sv-hero__panel .sv-promo-card {
	display: grid;
	grid-template-columns: auto minmax(0, 1fr);
	align-items: center;
	gap: 1rem;
	min-height: 92px;
	padding: 0.95rem 1.05rem;
	border: 3px solid var(--sv-gold);
	border-radius: 8px;
	background: var(--sv-teal-card);
	box-shadow: 0 10px 22px rgba(0, 20, 26, 0.16);
	text-align: left;
}

.sv-promo-card__mark {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 58px;
	height: 58px;
	border-radius: 999px;
	background: #111827;
	color: var(--sv-gold);
	font-size: 1.12rem;
	font-weight: 950;
}

.sv-promo-card p {
	display: grid;
	gap: 0.12rem;
	margin: 0;
}

.sv-promo-card span:not(.sv-promo-card__mark) {
	color: #e5f7fb;
	font-size: 0.95rem;
	font-weight: 800;
	line-height: 1.15;
}

.sv-promo-card strong {
	color: #ffffff;
	font-size: 1.02rem;
	font-weight: 950;
	line-height: 1.22;
}

.sv-notice {
	width: min(100% - 2rem, var(--sv-max));
	margin: 1.5rem auto;
	padding: 0.95rem 1.1rem;
	border: 1px solid #f1bd54;
	border-radius: 8px;
	background: #fff4d5;
	color: #4c3500;
	font-weight: 850;
}

.sv-section,
.sv-trust-row,
.sv-content-page,
.sv-archive,
.sv-author {
	width: min(100% - 2rem, var(--sv-max));
	margin-inline: auto;
	padding: 2.8rem 0;
}

.sv-section--rankings {
	width: 100%;
	max-width: none;
	margin: 0;
	padding: 2.9rem max(1rem, calc((100% - var(--sv-max)) / 2)) 3.4rem;
	background: #ffffff;
	text-align: center;
}

.sv-section--rankings .sv-section__head {
	justify-items: center;
	margin-bottom: 1.25rem;
	text-align: center;
}

.sv-section__head h2,
.sv-page-head h1 {
	color: #111111;
	font-size: 2.35rem;
	font-weight: 950;
}

.sv-section--rankings .sv-section__head h2 {
	font-size: 2.65rem;
}

.sv-section__head p,
.sv-page-head p {
	margin-inline: auto;
	color: #202020;
	font-size: 1.06rem;
}

.sv-rank-tabs {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 2rem;
	margin: 0.6rem 0 2rem;
}

.sv-rank-tabs a {
	display: grid;
	justify-items: center;
	gap: 0.42rem;
	min-width: 150px;
	padding: 0 0 0.65rem;
	border-bottom: 4px solid transparent;
	color: #111111;
	font-weight: 950;
	text-decoration: none;
}

.sv-rank-tabs a.is-active {
	border-color: #111111;
}

.sv-rank-tabs__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	border-radius: 999px;
	background: conic-gradient(from 140deg, #10a6de, #89db58, #ffd14d, #f05c42, #10a6de);
	color: #ffffff;
	font-size: 1.1rem;
	font-weight: 950;
	box-shadow: 0 5px 12px rgba(17, 24, 39, 0.16);
}

.sv-rank-tabs a:nth-child(2) .sv-rank-tabs__icon {
	background: #22d3ee;
	color: #003f4e;
}

.sv-section--rankings .rg-ops-listing {
	--rg-ops-list-title: #111111;
	--rg-ops-list-muted: #202020;
	--rg-ops-card-bg: #ffffff;
	--rg-ops-card-ink: #111111;
	--rg-ops-card-muted: #5b6472;
	--rg-ops-card-border: #e2e8ee;
	--rg-ops-logo-bg: #090909;
	--rg-ops-logo-border: transparent;
	--rg-ops-rank-bg: #ffffff;
	--rg-ops-rank-ink: #111111;
	--rg-ops-score-bg: var(--sv-teal);
	--rg-ops-score-ink: #ffffff;
	--rg-ops-accent: #ffb13d;
	--rg-ops-accent-bright: var(--sv-gold);
	--rg-ops-accent-ink: #1b1300;
	--rg-ops-star-box: var(--sv-teal);
	--rg-ops-star-box-off: #cfd8df;
	--rg-ops-shadow: 0 12px 28px rgba(17, 24, 39, 0.14);
	margin: 0;
}

.sv-section--rankings .rg-ops-listing__header {
	display: none;
}

.sv-section--rankings .rg-ops-listing ol.rg-ops-list,
.sv-section--rankings .rg-ops-listing ul.rg-ops-list,
.sv-section--rankings .rg-ops-list {
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 1.35rem !important;
	align-items: stretch;
}

.sv-section--rankings .rg-ops-card {
	position: relative;
	display: grid;
	grid-template-columns: 1fr;
	grid-template-areas:
		"intro"
		"offer"
		"cta";
	align-content: start;
	gap: 0.9rem;
	min-height: 100%;
	padding: 0 0 1rem;
	border: 1px solid var(--rg-ops-card-border);
	border-radius: 8px;
	background: #ffffff;
	box-shadow: var(--rg-ops-shadow);
	overflow: visible;
	text-align: left;
}

.sv-section--rankings .rg-ops-card__rank {
	position: absolute;
	top: -0.55rem;
	left: 0.7rem;
	z-index: 2;
	width: 2.05rem;
	min-width: 2.05rem;
	height: 2.05rem;
	border: 1px solid var(--rg-ops-card-border);
	border-radius: 0 0 8px 0;
	background: #ffffff;
	color: #111111;
	font-size: 0.9rem;
	font-weight: 950;
	box-shadow: 0 6px 14px rgba(17, 24, 39, 0.12);
}

.sv-section--rankings .rg-ops-card__rank--top {
	background: #ffffff;
	color: #111111;
	box-shadow: 0 6px 14px rgba(17, 24, 39, 0.12);
}

.sv-section--rankings .rg-ops-card__rank-crown {
	display: none;
}

.sv-section--rankings .rg-ops-card__rank--top::after {
	content: "1";
}

.sv-section--rankings .rg-ops-card__intro {
	display: grid;
	grid-template-columns: 1fr;
	grid-template-areas:
		"logo"
		"rating"
		"brand";
	gap: 0;
}

.sv-section--rankings .rg-ops-card__logo-shell {
	width: 100%;
	padding: 0;
}

.sv-section--rankings .rg-ops-card__logo,
.sv-section--rankings .rg-ops-card__logo a {
	width: 100%;
}

.sv-section--rankings .rg-ops-card__logo {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 142px;
	padding: 1.2rem 1rem;
	border: 0;
	border-bottom: 1px solid var(--rg-ops-card-border);
	border-radius: 8px 8px 0 0;
	background: #090909;
	color: var(--sv-gold);
}

.sv-section--rankings .rg-ops-card__logo-img {
	max-width: min(82%, var(--rg-ops-logo-size, 160px)) !important;
	max-height: 96px !important;
	object-fit: contain;
}

.sv-section--rankings .rg-ops-card__logo-fallback {
	width: 74px;
	height: 74px;
	border-radius: 999px;
	background: linear-gradient(135deg, #090909, var(--sv-teal-dark));
	color: var(--sv-gold);
	font-size: 2.4rem;
}

.sv-section--rankings .rg-ops-stars {
	position: absolute;
	top: 0.72rem;
	right: 0.72rem;
	z-index: 2;
	display: grid;
	justify-items: end;
	gap: 0;
}

.sv-section--rankings .rg-ops-stars__icons,
.sv-section--rankings .rg-ops-stars__label {
	display: none;
}

.sv-section--rankings .rg-ops-card__score {
	min-width: 3.35rem;
	min-height: 2rem;
	justify-content: center;
	padding: 0.35rem 0.62rem;
	border: 1px solid rgba(255, 255, 255, 0.35);
	border-radius: 999px;
	background: var(--sv-teal);
	color: #ffffff;
	font-size: 0.95rem;
	font-weight: 950;
}

.sv-section--rankings .rg-ops-card__brand {
	padding: 0.95rem 1rem 0;
	gap: 0.35rem;
}

.sv-section--rankings .rg-ops-card__brand-name {
	color: #111111;
	font-size: 1.2rem;
	font-weight: 950;
	line-height: 1.15;
}

.sv-section--rankings .rg-ops-card__feature {
	color: #5b6472;
	font-size: 0.92rem;
	line-height: 1.42;
}

.sv-section--rankings .rg-ops-card__offer {
	display: grid;
	gap: 0.38rem;
	padding: 0 1rem;
}

.sv-section--rankings .rg-ops-card__eyebrow {
	width: fit-content;
	min-height: 24px;
	margin: 0;
	padding: 0.22rem 0.5rem;
	border-radius: 999px;
	background: #fff1ca;
	color: #624200;
	font-size: 0.74rem;
	font-weight: 900;
	line-height: 1;
}

.sv-section--rankings .rg-ops-card__bonus {
	padding: 0.62rem 0.68rem;
	border: 1px solid var(--rg-ops-card-border);
	border-radius: 8px;
	background: #f7fbfc;
	color: #111111;
	font-size: 0.92rem;
	font-weight: 850;
	line-height: 1.32;
}

.sv-section--rankings .rg-ops-card__terms-note {
	color: #5b6472;
	font-size: 0.76rem;
	line-height: 1.35;
}

.sv-section--rankings .rg-ops-card__promo {
	margin-top: 0;
}

.sv-section--rankings .rg-ops-card__promo-code {
	background: #fff1ca;
	color: #111111;
}

.sv-section--rankings .rg-ops-card__cta {
	width: 100%;
	padding: 0 1rem;
	justify-self: stretch;
}

.sv-section--rankings .rg-ops-card__cta:empty {
	display: none;
}

.sv-section--rankings .rg-ops-card__cta a {
	width: 100%;
	min-width: 0;
	min-height: 44px;
	border: 0;
	border-radius: 8px;
	background: linear-gradient(180deg, var(--sv-gold), #ffb13d);
	color: #1b1300;
	box-shadow: 0 10px 20px rgba(255, 177, 61, 0.22);
}

.sv-section--rankings .rg-ops-card__cta a:hover,
.sv-section--rankings .rg-ops-card__cta a:focus-visible {
	background: linear-gradient(180deg, #ffcf70, #ffb13d);
	color: #1b1300;
	text-decoration: none;
}

.sv-method-grid li,
.sv-faq-list details,
.sv-copy,
.sv-article,
.sv-reviewer-card,
.sv-compliance-card,
.sv-post-card,
.sv-author-card {
	border-color: var(--sv-border);
	border-radius: 8px;
	background: #ffffff;
	box-shadow: 0 10px 26px rgba(17, 24, 39, 0.08);
}

.sv-method-grid li::before {
	background: var(--sv-teal);
}

.sv-reviewer-card__role,
.sv-author-card__role {
	color: var(--sv-teal);
}

.sv-compliance-card {
	background: linear-gradient(180deg, #ffffff, #f1fbfd);
}

.sv-compliance-card__links a,
.sv-footer__links a {
	border-color: rgba(0, 111, 141, 0.22);
	background: var(--sv-teal-soft);
	color: var(--sv-teal);
}

.sv-footer {
	margin-top: 0;
	background: var(--sv-teal-dark);
}

.sv-footer__warning {
	background: #003f4e;
	color: #ffffff;
	box-shadow: inset 0 0 0 2px var(--sv-gold);
}

@media (max-width: 1180px) {
	.sv-header__actions {
		display: none;
	}
}

@media (max-width: 980px) {
	.sv-header__inner {
		width: min(100% - 1.25rem, 1440px);
	}

	.sv-nav__list a {
		font-size: 0.92rem;
	}

	.sv-hero {
		min-height: 0;
		padding-top: 2.2rem;
		padding-bottom: 3rem;
	}

	.sv-hero h1 {
		font-size: 2.9rem;
	}

	.sv-hero__subtitle {
		font-size: 1.28rem;
	}

	.sv-hero__panel {
		grid-template-columns: 1fr;
		max-width: 620px;
	}

	.sv-section--rankings .sv-section__head h2 {
		font-size: 2.2rem;
	}

	.sv-section--rankings .rg-ops-listing ol.rg-ops-list,
	.sv-section--rankings .rg-ops-listing ul.rg-ops-list,
	.sv-section--rankings .rg-ops-list {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

@media (max-width: 900px) {
	.sv-header__inner {
		flex-wrap: wrap;
		min-height: 70px;
		padding: 0.55rem 0;
	}

	.sv-brand {
		min-width: 0;
	}

	.sv-brand__copy {
		min-width: 0;
	}

	.sv-menu-toggle {
		display: inline-flex;
		margin-left: auto;
	}

	.sv-nav {
		display: none;
		flex-basis: 100%;
		width: 100%;
	}

	body.sv-menu-open .sv-nav {
		display: block;
	}

	.sv-nav__list {
		display: grid;
		grid-template-columns: 1fr;
		justify-content: stretch;
		gap: 0.35rem;
		padding: 0.55rem 0 0.2rem;
	}

	.sv-nav__list a {
		width: 100%;
		background: rgba(255, 255, 255, 0.08);
	}
}

@media (max-width: 760px) {
	body {
		background: #ffffff;
	}

	.sv-header__inner {
		min-height: 70px;
	}

	.sv-brand__name {
		font-size: 1.35rem;
	}

	.sv-brand__tagline {
		display: none;
	}

	body.sv-menu-open .sv-nav {
		display: block;
	}

	.sv-nav__list {
		justify-content: stretch;
		padding: 0.55rem 0 0.2rem;
	}

	.sv-hero {
		padding-right: 1rem;
		padding-left: 1rem;
	}

	.sv-breadcrumbs {
		margin-bottom: 0.7rem;
		font-size: 0.92rem;
	}

	.sv-hero h1 {
		font-size: 2.25rem;
	}

	.sv-author-line {
		grid-template-columns: 1fr;
		gap: 0.8rem;
		width: 100%;
		max-width: 320px;
		text-align: center;
	}

	.sv-anchor-nav a {
		flex: 1 1 calc(50% - 0.55rem);
	}

	.sv-section,
	.sv-trust-row,
	.sv-content-page,
	.sv-archive,
	.sv-author {
		width: min(100% - 1rem, var(--sv-max));
		padding: 2.2rem 0;
	}

	.sv-section--rankings {
		width: 100%;
		padding-right: 1rem;
		padding-left: 1rem;
	}

	.sv-section--rankings .rg-ops-listing ol.rg-ops-list,
	.sv-section--rankings .rg-ops-listing ul.rg-ops-list,
	.sv-section--rankings .rg-ops-list {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 1rem !important;
	}
}

@media (max-width: 460px) {
	.sv-brand__mark {
		width: 40px;
		height: 32px;
	}

	.sv-hero h1 {
		font-size: 1.95rem;
	}

	.sv-hero__subtitle {
		font-size: 1.12rem;
	}

	.sv-rank-tabs {
		gap: 1rem;
	}

	.sv-rank-tabs a {
		min-width: 132px;
	}

	.sv-section--rankings .rg-ops-listing ol.rg-ops-list,
	.sv-section--rankings .rg-ops-listing ul.rg-ops-list,
	.sv-section--rankings .rg-ops-list {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 760px) {
	.sv-table-grid {
		grid-template-columns: 1fr;
	}

	.sv-data-table {
		padding: 0.85rem;
	}

	.sv-data-table__scroll {
		overflow: visible;
	}

	.sv-data-table table,
	.sv-data-table thead,
	.sv-data-table tbody,
	.sv-data-table tr,
	.sv-data-table th,
	.sv-data-table td {
		display: block;
		width: 100%;
	}

	.sv-data-table thead {
		position: absolute;
		width: 1px;
		height: 1px;
		padding: 0;
		margin: -1px;
		overflow: hidden;
		clip: rect(0, 0, 0, 0);
		white-space: nowrap;
		border: 0;
	}

	.sv-data-table table {
		border: 0;
		background: transparent;
	}

	.sv-data-table tbody tr {
		display: grid;
		gap: 0.5rem;
		margin-bottom: 0.75rem;
		padding: 0.85rem;
		border: 1px solid var(--sv-border);
		border-radius: 8px;
		background: #ffffff;
		box-shadow: 0 6px 16px rgba(17, 24, 39, 0.06);
	}

	.sv-data-table tbody tr:last-child {
		margin-bottom: 0;
	}

	.sv-data-table tbody th,
	.sv-data-table tbody td {
		padding: 0;
		border: 0;
		background: transparent;
	}

	.sv-data-table tbody th::before,
	.sv-data-table tbody td::before {
		content: attr(data-label);
		display: block;
		margin-bottom: 0.08rem;
		color: var(--sv-teal);
		font-size: 0.72rem;
		font-weight: 950;
		line-height: 1.2;
		text-transform: uppercase;
	}
}

/* Casinofeber-inspired 2026 visual layer: light editorial base, red CTAs, green safety cues. */
:root {
	--sv-red: #b12a24;
	--sv-red-bright: #d3362f;
	--sv-red-dark: #420f0d;
	--sv-red-soft: #fdf3f3;
	--sv-red-cream: #fde4e3;
	--sv-green: #2f7415;
	--sv-green-bright: #7cd348;
	--sv-green-soft: #f1fce9;
	--sv-blue: #1f6fab;
	--sv-blue-soft: #e4effa;
	--sv-ink: #0a0a0a;
	--sv-muted: #656565;
	--sv-border: #dcdcdc;
	--sv-surface: #ffffff;
	--sv-page: #f5f5f5;
	--sv-teal: #1f6fab;
	--sv-teal-dark: #420f0d;
	--sv-teal-soft: #e4effa;
	--sv-gold: #ffdb47;
	--sv-shadow: 0 18px 42px rgba(10, 10, 10, 0.1);
}

html {
	background: var(--sv-page);
}

body {
	background: var(--sv-page);
	color: var(--sv-ink);
	font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

a {
	color: var(--sv-red);
}

a:hover,
a:focus-visible {
	color: var(--sv-red-dark);
}

.sv-template,
.sv-main {
	background: var(--sv-page);
	color: var(--sv-ink);
}

.sv-header {
	position: sticky;
	top: 0;
	z-index: 30;
	border-bottom: 1px solid var(--sv-border);
	background: rgba(255, 255, 255, 0.96);
	box-shadow: 0 2px 14px rgba(10, 10, 10, 0.08);
}

.sv-header__inner {
	width: min(100% - 2rem, 1440px);
	min-height: 78px;
}

.sv-brand {
	color: var(--sv-ink);
}

.sv-brand__mark {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 52px;
	height: 52px;
	border: 2px solid var(--sv-red);
	border-radius: 8px;
	background: linear-gradient(180deg, var(--sv-red-bright), var(--sv-red));
	color: #ffffff;
	box-shadow: 0 10px 20px rgba(177, 42, 36, 0.24);
}

.sv-brand__mark::before {
	content: "S";
	position: static;
	inset: auto;
	width: auto;
	height: auto;
	border: 0;
	border-radius: 0;
	background: transparent;
	clip-path: none;
	color: #ffffff;
	font-size: 1.8rem;
	font-weight: 950;
	line-height: 1;
}

.sv-brand__mark::after {
	content: "";
	position: absolute;
	right: 7px;
	bottom: 8px;
	left: auto;
	width: 16px;
	height: 8px;
	border-bottom: 3px solid var(--sv-green-bright);
	border-left: 3px solid var(--sv-green-bright);
	border-radius: 0;
	background: transparent;
	transform: rotate(-45deg);
}

.sv-brand__mark span {
	display: none;
}

.sv-brand__logo {
	display: inline-grid;
	place-items: center;
	width: 56px;
	height: 56px;
	padding: 0.28rem;
	border: 2px solid var(--sv-red);
	border-radius: 8px;
	background: #ffffff;
	box-shadow: 0 10px 20px rgba(10, 10, 10, 0.08);
}

.sv-brand__logo .custom-logo {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.sv-brand__name {
	color: var(--sv-ink);
	font-size: 1.55rem;
	font-weight: 950;
	letter-spacing: 0;
	text-transform: none;
}

.sv-brand__tagline {
	color: var(--sv-muted);
	font-size: 0.82rem;
	font-weight: 760;
}

.sv-nav__list {
	gap: 0.2rem;
}

.sv-nav__list a {
	min-height: 42px;
	padding: 0.48rem 0.72rem;
	border-radius: 8px;
	color: var(--sv-ink);
	font-size: 0.94rem;
	font-weight: 850;
}

.sv-nav__list a::before {
	border-color: var(--sv-red);
	color: var(--sv-red);
}

.sv-nav__list a:hover,
.sv-nav__list a:focus-visible,
.sv-nav__list .current-menu-item > a {
	background: var(--sv-red-soft);
	color: var(--sv-red);
	text-decoration: none;
}

.sv-header__search::before {
	border-color: var(--sv-ink);
}

.sv-header__search::after {
	background: var(--sv-ink);
}

.sv-header__search:hover,
.sv-header__search:focus-visible {
	background: var(--sv-red-soft);
}

.sv-header__link,
.sv-header__cta {
	min-height: 44px;
	border-radius: 999px;
	font-weight: 900;
}

.sv-header__link {
	border: 2px solid var(--sv-red);
	color: var(--sv-red);
}

.sv-header__cta {
	background: var(--sv-red);
	color: #ffffff;
	box-shadow: 0 8px 18px rgba(177, 42, 36, 0.24);
}

.sv-header__link:hover,
.sv-header__link:focus-visible {
	background: var(--sv-red-soft);
	color: var(--sv-red-dark);
}

.sv-header__cta:hover,
.sv-header__cta:focus-visible {
	background: var(--sv-red-dark);
	color: #ffffff;
}

.sv-menu-toggle {
	border-color: var(--sv-red);
	background: var(--sv-red);
	color: #ffffff;
}

.sv-menu-toggle__bar {
	background: #ffffff;
}

.sv-hero,
.sv-section,
.sv-trust-row {
	scroll-margin-top: 92px;
}

.sv-hero {
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	gap: 2rem;
	min-height: 0;
	padding: 3.2rem max(1rem, calc((100% - var(--sv-max)) / 2)) 2.8rem;
	border-bottom: 1px solid var(--sv-border);
	background:
		linear-gradient(90deg, rgba(253, 228, 227, 0.78), rgba(245, 245, 245, 0.95) 38%, rgba(241, 252, 233, 0.7)),
		var(--sv-page);
	color: var(--sv-ink);
	box-shadow: none;
}

.sv-hero__copy {
	justify-items: center;
	max-width: 1040px;
	color: var(--sv-ink);
	text-align: center;
}

.sv-hero__eyebrow {
	display: inline-flex;
	margin: 0 0 0.25rem;
	padding: 0.45rem 0.75rem;
	border: 1px solid #fbcfcd;
	border-radius: 999px;
	background: var(--sv-red-soft);
	color: var(--sv-red);
	font-size: 0.86rem;
	font-weight: 950;
	line-height: 1;
}

.sv-hero h1 {
	max-width: 940px;
	color: var(--sv-ink);
	font-size: clamp(2.2rem, 5vw, 4rem);
	line-height: 1.04;
}

.sv-hero__subtitle {
	color: var(--sv-red-dark);
	font-size: 1.35rem;
	font-weight: 900;
}

.sv-author-line {
	display: inline-grid;
	grid-template-columns: auto minmax(0, 1fr) auto;
	align-items: center;
	gap: 0.9rem;
	width: min(100%, 620px);
	margin-top: 0.7rem;
	padding: 0.75rem;
	border: 1px solid var(--sv-border);
	border-radius: 8px;
	background: #ffffff;
	box-shadow: 0 12px 24px rgba(10, 10, 10, 0.08);
	text-align: left;
}

.sv-author-line img {
	display: block;
	width: 58px;
	height: 58px;
	border-radius: 8px;
	object-fit: cover;
}

.sv-author-line__body {
	display: grid;
	gap: 0.18rem;
}

.sv-author-line__name,
.sv-author-line__meta,
.sv-author-line__updated {
	color: var(--sv-ink);
	font-size: 0.98rem;
}

.sv-author-line__label {
	color: var(--sv-muted);
	font-weight: 800;
}

.sv-author-line__name a,
.sv-author-line__updated strong {
	color: var(--sv-ink);
}

.sv-author-line__role {
	display: inline;
	color: var(--sv-muted);
	font-weight: 760;
}

.sv-live-pill {
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	min-height: 34px;
	padding: 0.35rem 0.62rem;
	border: 1px solid #cbeebe;
	border-radius: 999px;
	background: var(--sv-green-soft);
	color: var(--sv-green);
	font-size: 0.85rem;
	font-weight: 950;
}

.sv-live-pill span {
	width: 0.58rem;
	height: 0.58rem;
	border-radius: 999px;
	background: var(--sv-green-bright);
	box-shadow: 0 0 0 4px rgba(124, 211, 72, 0.18);
}

.sv-hero__intro {
	max-width: 900px;
	color: #292929;
	font-size: 1.08rem;
	font-weight: 620;
}

.sv-anchor-nav {
	gap: 0.5rem;
}

.sv-anchor-nav a,
.sv-button {
	min-height: 42px;
	border: 0;
	border-radius: 8px;
	background: var(--sv-red);
	color: #ffffff;
	box-shadow: 0 8px 16px rgba(177, 42, 36, 0.18);
}

.sv-anchor-nav a:nth-child(2) {
	background: var(--sv-red-dark);
}

.sv-anchor-nav a:nth-child(3) {
	background: var(--sv-blue);
}

.sv-anchor-nav a:nth-child(4) {
	background: var(--sv-green);
}

.sv-anchor-nav a:hover,
.sv-anchor-nav a:focus-visible,
.sv-button:hover,
.sv-button:focus-visible {
	background: var(--sv-red-dark);
	color: #ffffff;
	text-decoration: none;
}

.sv-hero__panel {
	grid-template-columns: repeat(3, minmax(0, 1fr));
	width: min(100%, 1040px);
	gap: 1rem;
}

.sv-hero__panel .sv-promo-card {
	min-height: 96px;
	border: 2px solid #fbcfcd;
	border-radius: 8px;
	background: #ffffff;
	box-shadow: 0 12px 26px rgba(10, 10, 10, 0.08);
}

.sv-hero__panel .sv-promo-card:nth-child(2) {
	border-color: #cbeebe;
	background: var(--sv-green-soft);
}

.sv-hero__panel .sv-promo-card:nth-child(3) {
	border-color: #d3e5f8;
	background: var(--sv-blue-soft);
}

.sv-promo-card__mark {
	width: 54px;
	height: 54px;
	border-radius: 8px;
	background: var(--sv-red);
	color: #ffffff;
	font-size: 1rem;
}

.sv-hero__panel .sv-promo-card:nth-child(2) .sv-promo-card__mark {
	background: var(--sv-green);
}

.sv-hero__panel .sv-promo-card:nth-child(3) .sv-promo-card__mark {
	background: var(--sv-blue);
}

.sv-promo-card span:not(.sv-promo-card__mark) {
	color: var(--sv-muted);
}

.sv-promo-card strong {
	color: var(--sv-ink);
}

.sv-notice {
	width: min(100% - 2rem, var(--sv-max));
	margin: 1.2rem auto 0;
	border: 1px solid #fbcfcd;
	background: var(--sv-red-soft);
	color: var(--sv-red-dark);
	box-shadow: 0 10px 24px rgba(177, 42, 36, 0.08);
}

.sv-section,
.sv-trust-row,
.sv-content-page,
.sv-archive,
.sv-author {
	width: min(100% - 2rem, var(--sv-max));
	padding: 2.8rem 0;
}

.sv-section--rankings {
	width: 100%;
	padding: 3rem max(1rem, calc((100% - var(--sv-max)) / 2));
	background: #ffffff;
	text-align: center;
}

.sv-section__head h2,
.sv-page-head h1 {
	color: var(--sv-ink);
	font-weight: 950;
}

.sv-section__head p,
.sv-page-head p {
	color: #292929;
}

.sv-rank-tabs {
	margin-bottom: 1.6rem;
}

.sv-rank-tabs a {
	min-width: 160px;
	border-bottom: 4px solid transparent;
	color: var(--sv-ink);
}

.sv-rank-tabs a.is-active {
	border-color: var(--sv-red);
	color: var(--sv-red);
}

.sv-rank-tabs__icon {
	border: 2px solid #fbcfcd;
	background: var(--sv-red-soft);
	color: var(--sv-red);
	box-shadow: none;
}

.sv-rank-tabs a:nth-child(2) .sv-rank-tabs__icon {
	border-color: #cbeebe;
	background: var(--sv-green-soft);
	color: var(--sv-green);
}

.sv-section--rankings .rg-ops-listing {
	--rg-ops-list-title: var(--sv-ink);
	--rg-ops-list-muted: var(--sv-muted);
	--rg-ops-card-bg: #ffffff;
	--rg-ops-card-ink: var(--sv-ink);
	--rg-ops-card-muted: var(--sv-muted);
	--rg-ops-card-border: var(--sv-border);
	--rg-ops-logo-bg: #111111;
	--rg-ops-logo-border: #111111;
	--rg-ops-rank-bg: var(--sv-red);
	--rg-ops-rank-ink: #ffffff;
	--rg-ops-score-bg: var(--sv-blue);
	--rg-ops-score-ink: #ffffff;
	--rg-ops-accent: var(--sv-red);
	--rg-ops-accent-bright: var(--sv-red-bright);
	--rg-ops-accent-ink: #ffffff;
	--rg-ops-star-box: var(--sv-green);
	--rg-ops-star-box-off: #cfd5dc;
	--rg-ops-shadow: 0 10px 24px rgba(10, 10, 10, 0.08);
	width: min(100%, 1120px);
	margin: 0 auto;
	text-align: left;
}

.sv-section--rankings .rg-ops-listing ol.rg-ops-list,
.sv-section--rankings .rg-ops-listing ul.rg-ops-list,
.sv-section--rankings .rg-ops-list {
	display: grid !important;
	grid-template-columns: 1fr !important;
	gap: 1rem !important;
}

.sv-section--rankings .rg-ops-card {
	position: relative;
	display: grid;
	grid-template-columns: 42px minmax(280px, 1.1fr) minmax(260px, 0.95fr) minmax(150px, 0.42fr);
	grid-template-areas: "rank intro offer cta";
	gap: 0;
	align-items: stretch;
	min-height: 168px;
	padding: 0;
	border: 1px solid var(--sv-border);
	border-radius: 8px;
	background: #ffffff;
	box-shadow: var(--rg-ops-shadow);
	overflow: hidden;
	text-align: left;
}

.sv-section--rankings .rg-ops-card--no-rank {
	grid-template-columns: minmax(280px, 1.1fr) minmax(260px, 0.95fr) minmax(150px, 0.42fr);
	grid-template-areas: "intro offer cta";
}

.sv-section--rankings .rg-ops-card__rank {
	position: static;
	grid-area: rank;
	align-self: stretch;
	width: auto;
	min-width: 0;
	height: auto;
	border: 0;
	border-radius: 0;
	background: var(--sv-red);
	color: #ffffff;
	box-shadow: none;
	font-size: 0.95rem;
	font-weight: 950;
}

.sv-section--rankings .rg-ops-card__rank--top {
	background: linear-gradient(180deg, var(--sv-red-bright), var(--sv-red));
	color: #ffffff;
	box-shadow: none;
}

.sv-section--rankings .rg-ops-card__rank--top::after {
	content: "1";
}

.sv-section--rankings .rg-ops-card__rank-crown {
	display: none;
}

.sv-section--rankings .rg-ops-card__intro {
	grid-area: intro;
	display: grid;
	grid-template-columns: 150px minmax(0, 1fr);
	grid-template-areas:
		"logo brand"
		"logo rating";
	gap: 0.65rem 1rem;
	align-items: center;
	padding: 1rem;
	background: #ffffff;
}

.sv-section--rankings .rg-ops-card__logo-shell {
	width: auto;
}

.sv-section--rankings .rg-ops-card__logo,
.sv-section--rankings .rg-ops-card__logo a {
	width: 100%;
	height: 100%;
}

.sv-section--rankings .rg-ops-card__logo {
	min-height: 112px;
	padding: 0.82rem;
	border: 1px solid #111111;
	border-radius: 8px;
	background: #111111;
	color: #ffffff;
}

.sv-section--rankings .rg-ops-card__logo-img {
	max-width: min(128px, var(--rg-ops-logo-size, 160px)) !important;
	max-height: 82px !important;
}

.sv-section--rankings .rg-ops-card__logo-fallback {
	width: 70px;
	height: 70px;
	border-radius: 8px;
	background: var(--sv-red);
	color: #ffffff;
	font-size: 2rem;
}

.sv-section--rankings .rg-ops-card__brand {
	gap: 0.35rem;
	padding: 0;
}

.sv-section--rankings .rg-ops-card__brand-name {
	color: var(--sv-ink);
	font-size: 1.28rem;
	font-weight: 950;
	line-height: 1.12;
}

.sv-section--rankings .rg-ops-card__feature {
	color: var(--sv-muted);
	font-size: 0.92rem;
	line-height: 1.38;
}

.sv-section--rankings .rg-ops-stars {
	position: static;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-items: start;
	justify-content: flex-start;
	gap: 0.34rem;
}

.sv-section--rankings .rg-ops-stars__icons {
	display: inline-flex;
}

.sv-section--rankings .rg-ops-stars__label {
	display: inline;
	color: var(--sv-muted);
	font-size: 0.8rem;
}

.sv-section--rankings .rg-ops-star {
	width: 18px;
	height: 18px;
	border-radius: 4px;
}

.sv-section--rankings .rg-ops-card__score {
	min-width: 3.2rem;
	min-height: 1.9rem;
	border: 0;
	border-radius: 999px;
	background: var(--sv-blue);
	color: #ffffff;
	font-size: 0.95rem;
}

.sv-section--rankings .rg-ops-card__offer {
	grid-area: offer;
	display: grid;
	align-content: center;
	gap: 0.45rem;
	padding: 1rem;
	border-left: 1px solid var(--sv-border);
	background: var(--sv-red-soft);
	text-align: left;
}

.sv-section--rankings .rg-ops-card__eyebrow {
	width: fit-content;
	min-height: 24px;
	padding: 0.24rem 0.55rem;
	border-radius: 999px;
	background: #ffffff;
	color: var(--sv-red);
	font-size: 0.75rem;
	font-weight: 950;
}

.sv-section--rankings .rg-ops-card__bonus {
	display: block;
	padding: 0;
	border: 0;
	border-radius: 0;
	background: transparent;
	color: var(--sv-ink);
	font-size: 0.92rem;
	font-weight: 680;
	line-height: 1.42;
}

.sv-section--rankings .rg-ops-card__bonus strong {
	color: var(--sv-red-dark);
	font-weight: 950;
}

.sv-section--rankings .rg-ops-card__terms-note {
	padding-top: 0.35rem;
	border-top: 1px solid #fbcfcd;
	color: var(--sv-muted);
	font-size: 0.76rem;
}

.sv-section--rankings .rg-ops-card__cta {
	grid-area: cta;
	display: grid;
	align-items: center;
	justify-items: stretch;
	width: auto;
	padding: 1rem;
	border-left: 1px solid var(--sv-border);
	background: #ffffff;
}

.sv-section--rankings .rg-ops-card__cta:empty {
	display: none;
}

.sv-section--rankings .rg-ops-card__cta a {
	width: 100%;
	min-height: 46px;
	border: 0;
	border-radius: 8px;
	background: var(--sv-red);
	color: #ffffff;
	box-shadow: 0 10px 20px rgba(177, 42, 36, 0.22);
	font-weight: 950;
	text-align: center;
}

.sv-section--rankings .rg-ops-card__cta a:hover,
.sv-section--rankings .rg-ops-card__cta a:focus-visible {
	background: var(--sv-red-dark);
	color: #ffffff;
	text-decoration: none;
}

.sv-method-grid li,
.sv-faq-list details,
.sv-copy,
.sv-article,
.sv-reviewer-card,
.sv-compliance-card,
.sv-post-card,
.sv-author-card {
	border: 1px solid var(--sv-border);
	border-radius: 8px;
	background: #ffffff;
	box-shadow: 0 10px 24px rgba(10, 10, 10, 0.07);
}

.sv-method-grid li:nth-child(3n + 1) {
	background: var(--sv-red-soft);
}

.sv-method-grid li:nth-child(3n + 2) {
	background: var(--sv-green-soft);
}

.sv-method-grid li:nth-child(3n) {
	background: var(--sv-blue-soft);
}

.sv-method-grid li::before {
	background: var(--sv-red);
	color: #ffffff;
}

.sv-method-grid li:nth-child(3n + 2)::before {
	background: var(--sv-green);
}

.sv-method-grid li:nth-child(3n)::before {
	background: var(--sv-blue);
}

.sv-table-grid {
	gap: 1rem;
}

.sv-data-table {
	border: 1px solid var(--sv-border);
	border-radius: 8px;
	background: #ffffff;
	box-shadow: 0 10px 24px rgba(10, 10, 10, 0.07);
}

.sv-data-table__head {
	border-bottom: 1px solid var(--sv-border);
}

.sv-data-table__head h3 {
	color: var(--sv-ink);
}

.sv-data-table__head p {
	color: var(--sv-muted);
}

.sv-data-table table {
	border-color: var(--sv-border);
	background: #ffffff;
}

.sv-data-table caption {
	color: var(--sv-muted);
}

.sv-data-table th,
.sv-data-table td {
	border-color: var(--sv-border);
	color: #292929;
}

.sv-data-table thead th {
	background: var(--sv-blue);
	color: #ffffff;
}

.sv-data-table tbody th {
	background: var(--sv-blue-soft);
	color: var(--sv-ink);
}

.sv-data-table tbody tr:nth-child(even) td,
.sv-data-table tbody tr:nth-child(even) th {
	background: #fafafa;
}

.sv-data-table tbody tr:nth-child(even) th {
	background: #edf5fc;
}

.sv-copy h2,
.sv-copy h3 {
	color: var(--sv-ink);
}

.sv-copy a,
.sv-reviewer-card__role,
.sv-author-card__role {
	color: var(--sv-red);
}

.sv-compliance-card {
	background: linear-gradient(180deg, #ffffff, var(--sv-green-soft));
}

.sv-compliance-card__links a,
.sv-footer__links a {
	border-color: rgba(177, 42, 36, 0.24);
	background: #ffffff;
	color: var(--sv-red);
}

.sv-compliance-card__links a:hover,
.sv-compliance-card__links a:focus-visible,
.sv-footer__links a:hover,
.sv-footer__links a:focus-visible {
	background: var(--sv-red-soft);
	color: var(--sv-red-dark);
}

.sv-footer {
	margin-top: 0;
	background: var(--sv-red-dark);
	color: #ffffff;
}

.sv-footer__panel {
	border-color: rgba(255, 255, 255, 0.16);
}

.sv-footer__brand-text,
.sv-footer h2 {
	color: #ffffff;
}

.sv-footer__disclaimer,
.sv-footer__rg-text,
.sv-footer__copy {
	color: #f7d9d7;
}

.sv-footer__warning {
	background: #ffffff;
	color: var(--sv-red-dark);
	box-shadow: inset 0 0 0 2px var(--sv-green-bright);
}

.sv-chip-list li,
.sv-footer__payments-list li {
	border-color: rgba(255, 255, 255, 0.22);
	background: rgba(255, 255, 255, 0.1);
	color: #ffffff;
}

.svenska-ops {
	color: var(--sv-ink);
}

.svenska-ops-card {
	border-color: var(--sv-border);
	background: #ffffff;
	box-shadow: 0 10px 24px rgba(10, 10, 10, 0.08);
}

.svenska-ops-card__rank,
.svenska-ops-card__cta {
	background: var(--sv-red);
	color: #ffffff;
}

.svenska-ops-card__badge {
	background: var(--sv-red-soft);
	color: var(--sv-red);
}

@media (max-width: 1100px) {
	.sv-header__actions {
		display: none;
	}

	.sv-section--rankings .rg-ops-card {
		grid-template-columns: 38px minmax(0, 1fr) minmax(220px, 0.82fr);
		grid-template-areas:
			"rank intro offer"
			"rank cta cta";
	}

	.sv-section--rankings .rg-ops-card--no-rank {
		grid-template-columns: minmax(0, 1fr) minmax(220px, 0.82fr);
		grid-template-areas:
			"intro offer"
			"cta cta";
	}

	.sv-section--rankings .rg-ops-card__cta {
		border-top: 1px solid var(--sv-border);
		border-left: 0;
	}
}

@media (max-width: 900px) {
	.sv-header__inner {
		min-height: 72px;
	}

	.sv-hero__panel {
		grid-template-columns: 1fr;
		max-width: 620px;
	}

	.sv-nav__list a {
		background: #ffffff;
		color: var(--sv-ink);
	}

	body.sv-menu-open .sv-nav {
		padding-bottom: 0.4rem;
	}
}

@media (max-width: 760px) {
	body,
	.sv-template,
	.sv-main {
		background: var(--sv-page);
	}

	.sv-header__inner {
		width: min(100% - 1rem, 1440px);
	}

	.sv-brand__mark,
	.sv-brand__logo {
		width: 44px;
		height: 44px;
	}

	.sv-brand__mark::before {
		font-size: 1.45rem;
	}

	.sv-brand__name {
		font-size: 1.24rem;
	}

	.sv-hero {
		padding: 2rem 1rem 2.1rem;
	}

	.sv-hero__copy {
		justify-items: stretch;
		text-align: left;
	}

	.sv-hero__eyebrow,
	.sv-hero h1,
	.sv-hero__subtitle,
	.sv-hero__intro,
	.sv-anchor-nav {
		justify-self: start;
	}

	.sv-hero h1 {
		font-size: 2.2rem;
	}

	.sv-hero__subtitle {
		font-size: 1.1rem;
	}

	.sv-author-line {
		grid-template-columns: auto minmax(0, 1fr);
		width: 100%;
		max-width: none;
		text-align: left;
	}

	.sv-live-pill {
		grid-column: 1 / -1;
		width: fit-content;
	}

	.sv-anchor-nav {
		display: grid;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		width: 100%;
	}

	.sv-anchor-nav a {
		width: 100%;
	}

	.sv-hero__panel {
		grid-template-columns: 1fr;
	}

	.sv-section--rankings {
		padding: 2.3rem 1rem;
	}

	.sv-section--rankings .sv-section__head {
		justify-items: start;
		text-align: left;
	}

	.sv-section--rankings .sv-section__head h2 {
		font-size: 2rem;
	}

	.sv-rank-tabs {
		justify-content: flex-start;
		gap: 1rem;
	}

	.sv-rank-tabs a {
		min-width: 128px;
	}

	.sv-section--rankings .rg-ops-card,
	.sv-section--rankings .rg-ops-card--no-rank {
		grid-template-columns: 1fr;
		grid-template-areas:
			"rank"
			"intro"
			"offer"
			"cta";
		min-height: 0;
	}

	.sv-section--rankings .rg-ops-card--no-rank {
		grid-template-areas:
			"intro"
			"offer"
			"cta";
	}

	.sv-section--rankings .rg-ops-card__rank {
		min-height: 36px;
	}

	.sv-section--rankings .rg-ops-card__intro {
		grid-template-columns: 104px minmax(0, 1fr);
		padding: 0.9rem;
	}

	.sv-section--rankings .rg-ops-card__logo {
		min-height: 92px;
	}

	.sv-section--rankings .rg-ops-card__offer {
		border-top: 1px solid var(--sv-border);
		border-left: 0;
	}

	.sv-data-table tbody tr {
		border-color: var(--sv-border);
		background: #ffffff;
	}

	.sv-data-table tbody th::before,
	.sv-data-table tbody td::before {
		color: var(--sv-red);
	}

	.sv-data-table tbody th,
	.sv-data-table tbody td,
	.sv-data-table tbody tr:nth-child(even) th,
	.sv-data-table tbody tr:nth-child(even) td {
		background: transparent;
	}
}

@media (max-width: 420px) {
	.sv-anchor-nav {
		grid-template-columns: 1fr;
	}

	.sv-section--rankings .rg-ops-card__intro {
		grid-template-columns: 1fr;
		grid-template-areas:
			"logo"
			"brand"
			"rating";
	}

	.sv-section--rankings .rg-ops-card__logo {
		min-height: 104px;
	}
}
