/* favbet_01_vst — analyze-mode template (source: favbet.com.ua)
   Tokens sampled from the source: chrome #040613, page #191a23, body #151515,
   brand pink #ff267e, CTA green #05c489, near-flat radii (2-4px), Roboto. */

:root {
	--bg:        #151515;
	--surface:   #191a23;
	--surface-2: #21232e;
	--chrome:    #040613;
	--line:      rgba(255, 255, 255, .09);
	--line-2:    rgba(255, 255, 255, .18);
	--txt:       #fff;
	--muted:     rgba(255, 255, 255, .62);
	--muted-2:   rgba(255, 255, 255, .42);
	--pink:      #ff267e;
	--pink-dark: #d81765;
	--green:     #05c489;
	--green-dark:#04a774;
	--ink:       #050425;
	--r:         4px;
	--r-sm:      2px;
	--head-h:    80px;
	--wrap:      1200px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
	margin: 0;
	background: var(--bg);
	color: var(--txt);
	font-family: Roboto, system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
	font-size: 16px;
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--pink); text-decoration: none; }
a:hover { text-decoration: underline; }

.container { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 20px; }

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

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 12px 24px;
	border: 1px solid transparent;
	border-radius: var(--r-sm);
	font: 600 14px/1 Roboto, sans-serif;
	text-transform: uppercase;
	letter-spacing: .4px;
	text-align: center;
	cursor: pointer;
	transition: background-color .18s, color .18s, border-color .18s, opacity .18s;
}
.btn:hover { text-decoration: none; }

.btn-green  { background: var(--green); color: var(--ink); }
.btn-green:hover  { background: var(--green-dark); }

.btn-white  { background: #fff; color: var(--ink); }
.btn-white:hover  { background: rgba(255, 255, 255, .86); }

.btn-pink   { background: var(--pink); color: #fff; }
.btn-pink:hover   { background: var(--pink-dark); }

.btn-outline {
	background: transparent;
	color: var(--green);
	border-color: var(--green);
	border-radius: var(--r);
}
.btn-outline:hover { background: var(--green); color: var(--ink); }

.btn-ghost { background: transparent; color: var(--txt); border-color: var(--line-2); }
.btn-ghost:hover { border-color: var(--txt); }

.btn-sm { padding: 10px 18px; font-size: 13px; }
.btn-lg { padding: 15px 40px; font-size: 16px; }

.icon-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	padding: 0;
	background: transparent;
	border: 0;
	color: var(--txt);
	cursor: pointer;
	opacity: .85;
}
.icon-btn:hover { opacity: 1; }
.icon-btn img { filter: invert(1); }

/* ---------- header ---------- */

.topbar {
	position: sticky;
	top: 0;
	z-index: 60;
	background: var(--chrome);
	border-bottom: 1px solid var(--line);
}
.topbar-in {
	display: flex;
	align-items: center;
	gap: 18px;
	width: 100%;
	max-width: var(--wrap);
	height: var(--head-h);
	margin: 0 auto;
	padding: 0 20px;
}

.brand { flex: none; display: block; }
.brand img { height: 32px; width: auto; }

.burger {
	display: none;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	width: 40px;
	height: 40px;
	padding: 0;
	background: transparent;
	border: 0;
	cursor: pointer;
}
.burger span { display: block; height: 2px; width: 22px; margin: 0 auto; background: #fff; transition: transform .2s, opacity .2s; }

.mainnav { display: flex; align-items: center; gap: 4px; flex: 1 1 auto; min-width: 0; }

.mainnav-item { position: relative; }

.mainnav-link {
	position: relative;
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 10px 9px;
	color: var(--txt);
	font-size: 15px;
	font-weight: 400;
	white-space: nowrap;
}
.mainnav-link:hover { color: var(--pink); text-decoration: none; }
.mainnav-link.active { color: var(--pink); }

.caret {
	width: 0;
	height: 0;
	border-left: 4px solid transparent;
	border-right: 4px solid transparent;
	border-top: 4px solid currentColor;
	opacity: .7;
	transition: transform .18s;
}
.mainnav-item:hover .caret { transform: rotate(180deg); }

.submenu {
	position: absolute;
	top: 100%;
	left: 0;
	min-width: 210px;
	padding: 6px 0;
	background: var(--surface-2);
	border: 1px solid var(--line);
	border-radius: var(--r);
	box-shadow: 0 12px 30px rgba(0, 0, 0, .5);
	opacity: 0;
	visibility: hidden;
	transform: translateY(6px);
	transition: opacity .18s, transform .18s, visibility .18s;
}
.mainnav-item:hover .submenu,
.mainnav-item:focus-within .submenu { opacity: 1; visibility: visible; transform: translateY(0); }

.submenu a {
	display: block;
	padding: 9px 16px;
	color: var(--txt);
	font-size: 14px;
}
.submenu a:hover { background: rgba(255, 255, 255, .06); color: var(--pink); text-decoration: none; }

/* margin-left:auto pins the actions to the right edge on every width. Without it
   the buttons collapse against the logo once .mainnav is hidden on mobile. */
.top-actions { flex: none; display: flex; align-items: center; gap: 10px; margin-left: auto; }

.searchbar {
	display: none;
	gap: 10px;
	max-width: var(--wrap);
	margin: 0 auto;
	padding: 0 20px 16px;
}
.searchbar.open { display: flex; }
.searchbar input {
	flex: 1;
	padding: 11px 14px;
	background: var(--surface-2);
	border: 1px solid var(--line);
	border-radius: var(--r-sm);
	color: var(--txt);
	font: 400 15px Roboto, sans-serif;
}
.searchbar input::placeholder { color: var(--muted-2); }
.searchbar input:focus { outline: none; border-color: var(--green); }

/* ---------- drawer (mobile) ---------- */

.drawer {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 90;
	width: 290px;
	max-width: 84vw;
	height: 100%;
	padding: 18px;
	background: var(--chrome);
	border-right: 1px solid var(--line);
	transform: translateX(-100%);
	transition: transform .26s ease;
	overflow-y: auto;
}
.drawer.open { transform: translateX(0); }

.drawer-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 22px; }
.drawer-close { background: transparent; border: 0; color: #fff; font-size: 30px; line-height: 1; cursor: pointer; }

.drawer-search { margin-bottom: 16px; }
.drawer-search input {
	width: 100%;
	padding: 10px 12px;
	background: var(--surface-2);
	border: 1px solid var(--line);
	border-radius: var(--r-sm);
	color: var(--txt);
	font: 400 14px Roboto, sans-serif;
}
.drawer-search input::placeholder { color: var(--muted-2); }
.drawer-search input:focus { outline: none; border-color: var(--green); }

.drawer-nav { display: flex; flex-direction: column; }
.drawer-link {
	padding: 13px 4px;
	border-bottom: 1px solid var(--line);
	color: var(--txt);
	font-size: 15px;
}
.drawer-link:hover, .drawer-link.active { color: var(--pink); text-decoration: none; }

.drawer-cta { display: grid; gap: 10px; margin-top: 22px; }

.overlay {
	position: fixed;
	inset: 0;
	z-index: 80;
	background: rgba(0, 0, 0, .6);
	opacity: 0;
	visibility: hidden;
	transition: opacity .26s, visibility .26s;
}
.overlay.open { opacity: 1; visibility: visible; }

/* ---------- page shell ---------- */

main { background: var(--surface); }

.page { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 20px 60px; }

.page-head { padding: 34px 0 6px; text-align: center; }
.page-head h1 { margin: 0; font-size: 42px; font-weight: 700; line-height: 1.15; }

/* ---------- hero ---------- */

.hero { margin: 0 -20px; }
.hero-banner { display: block; background: var(--chrome); }
.hero-banner img { width: 100%; }

.strip { margin: 28px 0; }
.strip-banner { display: block; border-radius: var(--r); overflow: hidden; }
.strip-banner img { width: 100%; }

/* ---------- feature trio ---------- */

.trio {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
	margin: 34px 0;
}
.trio-card {
	padding: 28px 24px 30px;
	background: var(--surface);
	border: 1px solid var(--line);
	border-radius: var(--r);
	text-align: center;
}
/* Brand-coloured badges: the earlier 28px inverted line icons read as grey mush
   against the card and their hairlines collapsed at that size. */
.trio-ic { width: 48px; height: 48px; margin: 0 auto 14px; }
.trio-title { display: block; margin: 0 0 10px; color: #fff; font-size: 24px; font-weight: 700; line-height: 1.2; text-transform: uppercase; letter-spacing: .5px; }
.trio-card p { margin: 0 0 20px; color: var(--muted); font-size: 15px; }

/* ---------- games ---------- */

.games {
	display: grid;
	grid-template-columns: 1fr 300px;
	gap: 16px;
	margin: 34px 0;
}
.games-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
	align-content: start;
}
.game-tile {
	position: relative;
	display: block;
	border-radius: var(--r);
	overflow: hidden;
	background: var(--surface-2);
	transition: transform .18s;
}
.game-tile:hover { transform: translateY(-3px); text-decoration: none; }
.game-tile img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; }

.game-badge {
	position: absolute;
	top: 8px;
	left: 8px;
	padding: 3px 8px;
	background: var(--pink);
	border-radius: var(--r-sm);
	color: #fff;
	font: 700 11px/1.4 Roboto, sans-serif;
	letter-spacing: .5px;
}
.game-badge.is-new { background: var(--green); color: var(--ink); }

.game-play {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(4, 6, 19, .68);
	color: #fff;
	font: 600 14px Roboto, sans-serif;
	text-transform: uppercase;
	letter-spacing: 1px;
	opacity: 0;
	transition: opacity .18s;
}
.game-tile:hover .game-play { opacity: 1; }

.game-meta {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	padding: 20px 10px 8px;
	background: linear-gradient(to top, rgba(4, 6, 19, .92) 45%, rgba(4, 6, 19, 0));
	text-align: center;
	pointer-events: none;
}
.game-meta b { display: block; color: #fff; font-size: 13px; font-weight: 700; line-height: 1.25;
	overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.game-meta em { display: block; color: var(--pink); font-size: 11px; font-style: normal; }

.games-promo {
	position: relative;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 32px 26px;
	background: var(--pink);
	border-radius: var(--r);
	color: #fff;
}
.games-promo-title { display: block; margin: 0 0 12px; font-size: 30px; font-weight: 700; line-height: 1.2; text-transform: uppercase; }
.games-promo p { margin: 0 0 22px; font-size: 15px; opacity: .92; }
.games-promo .btn { align-self: flex-start; position: relative; z-index: 1; }
.games-promo-title, .games-promo p { position: relative; z-index: 1; }
.games-promo-art {
	position: absolute;
	right: -60px;
	bottom: -40px;
	width: 260px;
	height: auto;
	opacity: .5;
	pointer-events: none;
}

/* ---------- promo banners ---------- */

.promos { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin: 34px 0; }
.promo-card { display: block; border-radius: var(--r); overflow: hidden; }
.promo-card img { width: 100%; aspect-ratio: 510 / 275; object-fit: cover; }

.cta-pair { display: flex; justify-content: center; gap: 16px; margin: 40px 0; flex-wrap: wrap; }

/* ---------- prose (CMS content) ---------- */

.content { margin-top: 12px; }
/* The heading blocks also carry .content so the page's single h1 sits inside it;
   they bring their own spacing, so don't stack the section margin on top. */
.page-head.content, .toplist-head.content, .review-main.content, .landing-hero-txt.content { margin-top: 0; }

.prose { max-width: 100%; color: rgba(255, 255, 255, .82); font-size: 16px; line-height: 1.72; }
.prose > *:first-child { margin-top: 0; }

.prose h1, .page-title { margin: 0 0 22px; color: #fff; font-size: 40px; font-weight: 700; line-height: 1.18; }
.prose h2 { margin: 42px 0 16px; color: #fff; font-size: 30px; font-weight: 700; line-height: 1.25; }
.prose h3 { margin: 32px 0 12px; color: #fff; font-size: 21px; font-weight: 700; }
.prose h4 { margin: 26px 0 10px; color: #fff; font-size: 18px; font-weight: 700; }

.prose p { margin: 0 0 16px; }
.prose a { color: var(--pink); text-decoration: underline; }
.prose a:hover { color: #fff; }
.prose strong { color: #fff; font-weight: 700; }

.prose ul, .prose ol { margin: 0 0 18px; padding-left: 22px; }
.prose li { margin-bottom: 9px; }
.prose ul li::marker { color: var(--pink); }
.prose ol li::marker { color: var(--pink); font-weight: 700; }

/* Centred: a narrow editorial image must not hug the left edge. */
.prose img { display: block; height: auto; margin: 22px auto; border-radius: var(--r); }

.prose blockquote {
	margin: 22px 0;
	padding: 16px 20px;
	background: var(--surface-2);
	border-left: 3px solid var(--pink);
	border-radius: 0 var(--r) var(--r) 0;
	color: var(--muted);
}

/* tables — the source leans on bordered 2-column info tables.
   Wide ones scroll inside their own box. Sizing the table to its CONTENT
   (max-content, floored at the wrapper width) beats a flat min-width: an
   arbitrary width still squeezes a 5-column table into ragged wrapped stacks. */
.prose .table-scroll { overflow-x: auto; margin: 24px 0; -webkit-overflow-scrolling: touch; }
.prose .table-scroll table { width: max-content; min-width: 100%; margin: 0; }
.prose .table-scroll th { white-space: nowrap; }
.prose .table-scroll td { max-width: 38ch; }

.prose table {
	width: 100%;
	margin: 24px 0;
	border-collapse: collapse;
	font-size: 15px;
}
.prose th, .prose td {
	padding: 13px 16px;
	border: 1px solid var(--line-2);
	text-align: left;
	vertical-align: top;
}
.prose th { background: var(--surface-2); color: #fff; font-weight: 700; }
.prose tbody tr:nth-child(even) td { background: rgba(255, 255, 255, .025); }

/* inline FAQ — the source renders question/answer as bold p + p */
.prose h2 + p strong:only-child { color: #fff; }

/* ---------- toplist / review / landing ---------- */

.toplist-head { padding: 38px 0 10px; text-align: center; }
.toplist-head h1 { margin: 0 0 12px; font-size: 40px; font-weight: 700; }
.toplist-head p { max-width: 760px; margin: 0 auto; color: var(--muted); }

.bonus-strip {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	margin-top: 40px;
	padding: 26px 30px;
	background: linear-gradient(90deg, #1b1046, var(--pink));
	border-radius: var(--r);
	flex-wrap: wrap;
}
.bonus-txt span { display: block; color: rgba(255, 255, 255, .82); font-size: 14px; text-transform: uppercase; letter-spacing: 1px; }
.bonus-txt b { display: block; margin-top: 4px; font-size: 24px; font-weight: 700; }

.review-head {
	display: grid;
	grid-template-columns: 1fr 380px;
	gap: 26px;
	align-items: start;
	padding: 38px 0 10px;
}
.review-main h1 { margin: 0 0 14px; font-size: 38px; font-weight: 700; line-height: 1.2; }
.review-rating { display: flex; align-items: baseline; gap: 10px; margin-bottom: 22px; }
.review-rating .stars { color: var(--pink); font-size: 20px; letter-spacing: 2px; }
.review-rating b { font-size: 26px; font-weight: 700; }
.review-rating em { color: var(--muted); font-style: normal; }
.review-cta { display: flex; gap: 12px; flex-wrap: wrap; }

.review-facts {
	margin: 0;
	padding: 8px 0;
	background: var(--surface-2);
	border: 1px solid var(--line);
	border-radius: var(--r);
}
.review-facts > div {
	display: flex;
	justify-content: space-between;
	gap: 14px;
	padding: 12px 20px;
	border-bottom: 1px solid var(--line);
}
.review-facts > div:last-child { border-bottom: 0; }
.review-facts dt { color: var(--muted); font-size: 14px; }
.review-facts dd { margin: 0; color: #fff; font-size: 14px; font-weight: 700; text-align: right; }

.landing-hero {
	margin: 0 -20px 30px;
	padding: 66px 20px;
	background: linear-gradient(120deg, #1b1046 0%, #3d0c2b 55%, var(--pink) 100%);
	text-align: center;
}
.landing-hero-txt { max-width: 760px; margin: 0 auto; }
.landing-hero h1, .landing-title {
	display: block;
	margin: 0 0 14px;
	font-size: 42px;
	font-weight: 900;
	line-height: 1.14;
	text-transform: uppercase;
}
.landing-hero p { margin: 0 0 26px; color: rgba(255, 255, 255, .9); font-size: 18px; }
.landing-foot-cta { margin-top: 34px; text-align: center; }

/* ---------- footer ---------- */

.footer { background: var(--chrome); border-top: 1px solid var(--line); }

.foot-grid {
	display: grid;
	grid-template-columns: 1.6fr repeat(3, 1fr);
	gap: 34px;
	padding-top: 48px;
	padding-bottom: 34px;
}
.foot-about p { margin: 0 0 12px; color: var(--muted-2); font-size: 13px; line-height: 1.65; }
.foot-logo { display: block; margin-bottom: 18px; }
.foot-logo img { height: 34px; width: auto; }

.foot-stores { display: flex; gap: 10px; margin-top: 18px; flex-wrap: wrap; }
.store-badge { display: inline-block; transition: opacity .18s; }
.store-badge:hover { opacity: .82; text-decoration: none; }
.store-badge img { height: 42px; width: auto; }

.foot-col-title { display: block; margin: 0 0 16px; color: #fff; font-size: 15px; font-weight: 700; text-transform: uppercase; letter-spacing: .6px; }
.foot-col a { display: block; margin-bottom: 11px; color: var(--muted); font-size: 14px; }
.foot-col a:hover { color: var(--pink); text-decoration: none; }

.foot-info {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	padding-top: 22px;
	padding-bottom: 22px;
	border-top: 1px solid var(--line);
	flex-wrap: wrap;
}
.foot-pages { display: flex; gap: 20px; flex-wrap: wrap; }
.foot-pages a { color: var(--muted); font-size: 13px; }
.foot-pages a:hover { color: var(--pink); text-decoration: none; }

.foot-certs { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.cert {
	padding: 6px 12px;
	border: 1px solid var(--line-2);
	border-radius: var(--r-sm);
	color: var(--muted-2);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: .5px;
}
.cert.age { border-color: var(--pink); color: var(--pink); }
.cert-img { height: 30px; width: auto; opacity: .65; transition: opacity .18s; }
.cert-img:hover { opacity: 1; }

.foot-warn { padding: 20px; background: rgba(255, 255, 255, .03); border-top: 1px solid var(--line); }
.foot-warn p {
	max-width: 900px;
	margin: 0 auto;
	color: var(--muted);
	font-size: 13px;
	text-transform: uppercase;
	text-align: center;
	letter-spacing: .3px;
}

.foot-copy { padding: 16px 20px; border-top: 1px solid var(--line); }
.foot-copy p { margin: 0; color: var(--muted-2); font-size: 12px; text-align: center; }

/* ---------- mobile bottom bar ---------- */

.bottombar {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 70;
	display: none;
	background: var(--chrome);
	border-top: 1px solid var(--line);
}
.bottombar a {
	flex: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 3px;
	padding: 9px 4px;
	color: var(--muted);
	font-size: 11px;
}
.bottombar a:hover, .bottombar a.active { color: var(--pink); text-decoration: none; }
.bottombar svg { width: 23px; height: 23px; display: block; opacity: .82; }
.bottombar a:hover svg, .bottombar a.active svg { opacity: 1; }

/* ---------- cookie ---------- */

.cookie {
	position: fixed;
	left: 20px;
	bottom: 20px;
	z-index: 75;
	max-width: 420px;
	padding: 18px 20px;
	background: var(--surface-2);
	border: 1px solid var(--line);
	border-radius: var(--r);
	box-shadow: 0 14px 34px rgba(0, 0, 0, .5);
}
.cookie.hidden { display: none; }
.cookie p { margin: 0 0 14px; color: var(--muted); font-size: 14px; }
.cookie-actions { display: flex; gap: 10px; }

/* ---------- responsive ---------- */

/* A per-site nav can carry both the real cluster pages and the offer funnels;
   that row stops fitting well before 1080, so hand it to the burger earlier. */
@media (max-width: 1200px) {
	.mainnav { display: none; }
	.burger { display: flex; }
}

@media (max-width: 1080px) {
	.mainnav { display: none; }
	.burger { display: flex; }
	.games { grid-template-columns: 1fr; }
	.games-promo { padding: 26px; }
	.games-promo .btn { align-self: center; }
	.review-head { grid-template-columns: 1fr; }
}

@media (max-width: 860px) {
	:root { --head-h: 64px; }
	body { padding-bottom: 62px; }
	.bottombar { display: flex; }
	/* Header row must fit 390px: tighten gaps and scale the wordmark down. */
	.topbar-in { gap: 10px; padding: 0 14px; }
	.brand img { height: 28px; }
	.top-actions { gap: 6px; }
	.trio { grid-template-columns: 1fr; gap: 14px; }
	.promos { grid-template-columns: 1fr; }
	.games-grid { gap: 12px; }
	.games-promo-art { width: 170px; right: -40px; bottom: -26px; }
	.page-head h1, .prose h1, .page-title, .toplist-head h1 { font-size: 28px; }
	.prose h2 { font-size: 23px; margin-top: 32px; }
	.prose h3 { font-size: 18px; }
	.review-main h1 { font-size: 27px; }
	.landing-hero { padding: 44px 20px; }
	.landing-hero h1, .landing-title { font-size: 28px; }
	.foot-grid { grid-template-columns: 1fr 1fr; gap: 26px; }
	.foot-info { justify-content: center; text-align: center; }
	.foot-pages { justify-content: center; }
	.bonus-strip { flex-direction: column; text-align: center; }
	/* The banner headline is baked into the artwork, so it must not be cover-cropped
	   — the crop cuts text mid-word. <picture> swaps in the restacked 780x667 art;
	   pinning the ratio here keeps the box reserved before it loads (no CLS). */
	.hero { margin-bottom: 4px; }
	.hero-banner img { width: 100%; height: auto; aspect-ratio: 780 / 667; }
	/* Wide side-promos are dead weight on a phone: the Aviator strip and the three
	   promo cards (express / welcome-bonus duplicate of the hero / boosted express)
	   all restate offers the hero already makes. Desktop keeps them. */
	.strip, .promos { display: none; }
	.cookie { left: 12px; right: 12px; bottom: 72px; max-width: none; }
}

@media (max-width: 520px) {
	/* Only the primary CTA survives in the header; login lives in the drawer. */
	.top-actions .btn-white { display: none; }
	.top-actions .icon-btn { display: none; }
	.top-actions .btn-sm { padding: 9px 12px; font-size: 12px; }
	.brand img { height: 26px; }
	.games-grid { grid-template-columns: repeat(2, 1fr); }
	.foot-grid { grid-template-columns: 1fr; }
	.btn-lg { padding: 13px 26px; font-size: 15px; }
	.cta-pair .btn { flex: 1; }
}
