*,
*::before,
*::after {
	box-sizing: border-box;
}

html,
body {
	margin: 0;
	padding: 0;
	background: #0d1826;
	color: #d9dde3;
	font-family: -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
	font-size: 15px;
	line-height: 1.5;
	-webkit-text-size-adjust: 100%;
}

img,
picture,
svg,
video {
	display: block;
	max-width: 100%;
	height: auto;
}

a {
	color: inherit;
	text-decoration: none;
}

button {
	font: inherit;
	cursor: pointer;
	border: 0;
	background: transparent;
	color: inherit;
}

/* ─── HEADER ─────────────────────────── */

.header {
	position: sticky;
	top: 0;
	z-index: 50;
	background: #131e2c;
	border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.header__inner {
	display: flex;
	align-items: center;
	gap: 16px;
	padding: 14px 20px;
	max-width: 1440px;
	margin: 0 auto;
	min-width: 0;
}

.header__burger {
	display: none;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border-radius: 10px;
	background: rgba(255, 255, 255, .06);
	color: #fff;
	flex-shrink: 0;
	transition: background .15s;
}

.header__burger:hover,
.header__burger[aria-expanded="true"] {
	background: rgba(230, 57, 70, .18);
}

.header__logo {
	display: inline-flex;
	align-items: center;
	flex-shrink: 0;
}

.header__logo img {
	height: 60px;
	width: auto;
	max-width: none;
}

.header__actions {
	flex-shrink: 0;
}

.header__nav {
	display: flex;
	align-items: center;
	gap: 4px;
	margin-left: 24px;
	margin-right: auto;
	min-width: 0;
	overflow-x: auto;
	scrollbar-width: none;
}

.header__nav::-webkit-scrollbar {
	display: none;
}

.header__nav a {
	display: inline-flex;
	align-items: center;
	padding: 8px 14px;
	border-radius: 8px;
	color: #cad1da;
	font-size: 14px;
	font-weight: 700;
	white-space: nowrap;
	transition: background .15s, color .15s;
}

.header__nav a:hover {
	background: rgba(255, 255, 255, .06);
	color: #fff;
}

.header__nav a.is-active {
	background: #e63946;
	color: #fff;
}

/* Tablet + narrow laptop: hide nav, show burger */
@media (max-width: 1100px) {
	.header__nav {
		display: none;
	}
	.header__logo {
		margin-right: auto;
	}
	.header__burger {
		display: inline-flex;
	}
	.header__logo img {
		height: 48px;
	}
}

/* Small mobile: compact everything so logo stays visible */
@media (max-width: 640px) {
	.header__inner {
		gap: 8px;
		padding: 10px 14px;
	}
	.header__logo img {
		height: 38px;
	}
	.header__actions {
		gap: 6px;
	}
	.header__actions .rb-lang {
		display: none;
	}
	.btn {
		padding: 9px 14px;
		font-size: 12px;
	}
}

@media (max-width: 400px) {
	.header__logo img {
		height: 32px;
	}
	.btn {
		padding: 8px 11px;
		font-size: 11px;
	}
	.header__burger {
		width: 38px;
		height: 38px;
	}
}

/* Drawer language picker (mobile-only, since header switcher is hidden) */
.drawer__langs {
	margin-top: auto;
	padding: 16px 22px 22px;
	border-top: 1px solid rgba(255, 255, 255, .06);
}

.drawer__langs-t {
	font-size: 12px;
	font-weight: 800;
	color: #7f8898;
	text-transform: uppercase;
	letter-spacing: .8px;
	margin-bottom: 10px;
}

.drawer__langs-list {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 6px;
}

.drawer__lang {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 10px 4px;
	border-radius: 8px;
	background: rgba(255, 255, 255, .05);
	color: #cad1da;
	font-weight: 800;
	font-size: 12px;
	letter-spacing: .3px;
	transition: background .15s, color .15s;
}

.drawer__lang:hover {
	background: rgba(255, 255, 255, .12);
	color: #fff;
}

.drawer__lang.is-active {
	background: #e63946;
	color: #fff;
}

/* ─── Burger drawer ─── */

.drawer-backdrop {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, .55);
	z-index: 90;
	opacity: 0;
	pointer-events: none;
	transition: opacity .2s;
}

.drawer-backdrop.is-open {
	opacity: 1;
	pointer-events: auto;
}

.drawer {
	position: fixed;
	top: 0;
	left: 0;
	bottom: 0;
	width: 320px;
	max-width: 85vw;
	background: #131e2c;
	z-index: 100;
	transform: translateX(-100%);
	transition: transform .25s;
	display: flex;
	flex-direction: column;
	box-shadow: 6px 0 24px rgba(0, 0, 0, .5);
}

.drawer.is-open {
	transform: translateX(0);
}

.drawer__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 18px 22px;
	border-bottom: 1px solid rgba(255, 255, 255, .06);
}

.drawer__title {
	font-weight: 800;
	font-size: 14px;
	color: #fff;
	text-transform: uppercase;
	letter-spacing: .8px;
}

.drawer__close {
	width: 34px;
	height: 34px;
	border-radius: 8px;
	background: rgba(255, 255, 255, .06);
	color: #fff;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	transition: background .15s;
}

.drawer__close:hover {
	background: #e63946;
}

.drawer__nav {
	padding: 16px 12px;
	overflow-y: auto;
	flex: 1;
}

.drawer__link {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 14px 16px;
	border-radius: 10px;
	color: #cad1da;
	font-size: 15px;
	font-weight: 600;
	transition: background .15s, color .15s;
}

.drawer__link:hover {
	background: rgba(230, 57, 70, .1);
	color: #fff;
}

.drawer__link.is-active {
	background: #e63946;
	color: #fff;
}

.drawer__link svg {
	width: 20px;
	height: 20px;
	color: #e63946;
	flex-shrink: 0;
}

.drawer__link.is-active svg {
	color: #fff;
}

.header__actions {
	display: inline-flex;
	align-items: center;
	gap: 10px;
}

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	padding: 10px 18px;
	border-radius: 8px;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: .4px;
	line-height: 1;
	transition: .15s;
}

.btn--login {
	color: #fff;
	background: rgba(255, 255, 255, .08);
	border: 1px solid rgba(255, 255, 255, .12);
}

.btn--login:hover {
	background: rgba(255, 255, 255, .16);
}

.btn--reg {
	color: #fff;
	background: #e63946;
}

.btn--reg:hover {
	background: #d02f3c;
}

/* ─── HERO ───────────────────────────── */

.hero {
	position: relative;
	margin: 20px auto 0;
	max-width: 1400px;
	padding: 0 20px;
}

.hero__card {
	position: relative;
	overflow: hidden;
	border-radius: 16px;
	aspect-ratio: 16 / 6;
	background: #1a2739;
}

.hero__img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hero__body {
	position: absolute;
	inset: 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 40px 5%;
	background: linear-gradient(90deg, rgba(0, 0, 0, .65) 0%, rgba(0, 0, 0, .1) 60%, transparent 100%);
}

.hero__eyebrow {
	display: inline-block;
	color: #e63946;
	font-size: clamp(13px, 1.2vw, 16px);
	font-weight: 800;
	letter-spacing: 1px;
	text-transform: uppercase;
	margin-bottom: 12px;
}

.hero__title {
	font-size: clamp(30px, 4.5vw, 54px);
	font-weight: 900;
	color: #fff;
	margin: 0 0 24px;
	line-height: 1.05;
	text-shadow: 0 4px 24px rgba(0, 0, 0, .5);
	max-width: 60%;
}

.hero__cta {
	align-self: flex-start;
	padding: 16px 34px;
	border-radius: 12px;
	background: #e63946;
	color: #fff;
	font-weight: 800;
	font-size: 16px;
	text-transform: uppercase;
	letter-spacing: .8px;
	line-height: 1;
	box-shadow: 0 6px 20px rgba(230, 57, 70, .4);
	transition: transform .2s, background .2s;
}

.hero__cta:hover {
	background: #d02f3c;
	transform: translateY(-2px);
}

@media (max-width: 720px) {
	.hero {
		margin-top: 16px;
		padding: 0 14px;
	}
	.hero__card {
		aspect-ratio: 4 / 5;
		border-radius: 18px;
	}
	.hero__body {
		padding: 28px 22px 26px;
		background: linear-gradient(180deg, rgba(0, 0, 0, .1) 0%, rgba(0, 0, 0, .25) 40%, rgba(0, 0, 0, .92) 100%);
		justify-content: flex-end;
		align-items: center;
		text-align: center;
	}
	.hero__eyebrow {
		font-size: 12px;
		letter-spacing: 2px;
		margin-bottom: 10px;
		padding: 6px 14px;
		border-radius: 999px;
		background: rgba(230, 57, 70, .18);
		border: 1px solid rgba(230, 57, 70, .4);
	}
	.hero__title {
		max-width: 100%;
		font-size: clamp(26px, 8vw, 34px);
		margin-bottom: 22px;
		letter-spacing: -.3px;
	}
	.hero__cta {
		align-self: stretch;
		text-align: center;
		padding: 16px 24px;
		font-size: 15px;
		border-radius: 10px;
	}
}

/* ─── ROWS (horizontal scroll) ───────── */

.row {
	max-width: 1440px;
	margin: 56px auto 0;
	padding: 0 20px;
	position: relative;
}

.row__head {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	margin-bottom: 18px;
}

.row__title {
	font-size: clamp(22px, 2.2vw, 26px);
	font-weight: 800;
	color: #fff;
	margin: 0;
	letter-spacing: .3px;
}

.row__more {
	font-size: 14px;
	font-weight: 700;
	color: #e63946;
}

.row__more:hover {
	text-decoration: underline;
}

.row__wrap {
	position: relative;
}

.row__track {
	display: flex;
	gap: 16px;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: none;
	padding-bottom: 8px;
	scroll-behavior: smooth;
}

.row__track::-webkit-scrollbar {
	display: none;
}

.row__arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: rgba(19, 30, 44, .92);
	color: #fff;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: 1px solid rgba(255, 255, 255, .12);
	box-shadow: 0 6px 18px rgba(0, 0, 0, .45);
	z-index: 2;
	transition: background .15s, transform .15s;
}

.row__arrow:hover {
	background: #e63946;
	border-color: #e63946;
	transform: translateY(-50%) scale(1.06);
}

.row__arrow--prev {
	left: -6px;
}

.row__arrow--next {
	right: -6px;
}

.row__arrow svg {
	width: 18px;
	height: 18px;
}

@media (max-width: 720px) {
	.row__arrow {
		display: none;
	}
}

.tile {
	flex: 0 0 auto;
	width: 200px;
	scroll-snap-align: start;
	border-radius: 14px;
	overflow: hidden;
	background: #1a2739;
	transition: transform .25s, box-shadow .25s;
}

.tile:hover {
	transform: translateY(-6px);
	box-shadow: 0 12px 32px rgba(230, 57, 70, .35);
}

.tile__img {
	width: 100%;
	aspect-ratio: 92 / 138;
	object-fit: cover;
	display: block;
}

.tile__name {
	display: block;
	padding: 12px 10px;
	font-size: 14px;
	font-weight: 600;
	color: #eaeef4;
	text-align: center;
	line-height: 1.3;
}

@media (max-width: 720px) {
	.tile {
		width: 150px;
		border-radius: 12px;
	}

	.tile__name {
		font-size: 13px;
		padding: 10px 8px;
	}
}

/* ─── BANNERS ────────────────────────── */

.banners {
	max-width: 1440px;
	margin: 48px auto 0;
	padding: 0 20px;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
}

.banner {
	position: relative;
	display: block;
	overflow: hidden;
	border-radius: 16px;
	aspect-ratio: 16 / 9;
	background: #1a2739;
	transition: transform .25s;
}

.banner:hover {
	transform: translateY(-4px);
}

.banner img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .4s;
}

.banner:hover img {
	transform: scale(1.04);
}

.banner__body {
	position: absolute;
	inset: 0;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	padding: 36px 44px;
	background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, .35) 45%, rgba(0, 0, 0, .92) 100%);
	color: #fff;
}

.banner__title {
	font-size: clamp(28px, 3vw, 40px);
	font-weight: 900;
	margin: 0 0 22px;
	line-height: 1.1;
	text-shadow: 0 3px 16px rgba(0, 0, 0, .7);
	letter-spacing: -.3px;
}

.banner__cta {
	align-self: flex-start;
	padding: 18px 36px;
	background: #e63946;
	color: #fff;
	border-radius: 12px;
	font-size: 17px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: .8px;
	line-height: 1;
	box-shadow: 0 8px 24px rgba(230, 57, 70, .4);
}

.banner:hover .banner__cta {
	background: #d02f3c;
}

@media (max-width: 720px) {
	.banners {
		grid-template-columns: 1fr;
		gap: 16px;
	}

	.banner {
		aspect-ratio: 16 / 10;
	}

	.banner__body {
		padding: 26px 24px;
	}

	.banner__title {
		font-size: 24px;
		margin-bottom: 16px;
	}

	.banner__cta {
		padding: 14px 26px;
		font-size: 15px;
	}
}

/* ─── SEO BLOCK ──────────────────────── */

.rb-seo {
	max-width: 1440px;
	margin: 56px auto 0;
	padding: 0 20px 40px;
	color: #d3d9e2;
}

.rb-seo__wrap {
	position: relative;
	padding: 48px clamp(24px, 5vw, 64px);
	border-radius: 20px;
	background: linear-gradient(140deg, #10182a 0%, #1a2036 45%, #2a1220 100%);
	border: 1px solid rgba(230, 57, 70, .18);
	box-shadow: 0 20px 60px rgba(0, 0, 0, .4);
	overflow: hidden;
}

.rb-seo__wrap::before {
	content: "";
	position: absolute;
	inset: 0 auto 0 0;
	width: 5px;
	background: linear-gradient(180deg, #e63946 0%, #ff6b7a 100%);
}

.rb-seo__wrap::after {
	content: "";
	position: absolute;
	right: -120px;
	top: -120px;
	width: 400px;
	height: 400px;
	background: radial-gradient(circle, rgba(230, 57, 70, .12) 0%, transparent 70%);
	pointer-events: none;
}

.rb-seo__h1 {
	font-size: clamp(26px, 3.5vw, 40px);
	font-weight: 900;
	color: #fff;
	margin: 0 0 20px;
	line-height: 1.15;
	letter-spacing: -.3px;
}

.rb-seo__hero {
	margin: 0 0 28px;
	text-align: justify;
	font-size: 16px;
	line-height: 1.65;
	color: #cbd2dc;
	max-width: 90ch;
}

.rb-seo__cta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 24px 28px;
	margin: 0 0 32px;
	border-radius: 14px;
	background: linear-gradient(90deg, rgba(230, 57, 70, .15) 0%, rgba(230, 57, 70, .04) 100%);
	border: 1px solid rgba(230, 57, 70, .35);
}

.rb-seo__cta-t {
	font-size: 17px;
	font-weight: 700;
	color: #fff;
	flex: 1 1 auto;
	min-width: 260px;
}

.rb-seo__btn {
	display: inline-block;
	padding: 14px 32px;
	background: #e63946;
	color: #fff;
	border-radius: 10px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: .8px;
	font-size: 14px;
	box-shadow: 0 6px 20px rgba(230, 57, 70, .35);
	transition: transform .2s, background .2s;
}

.rb-seo__btn:hover {
	background: #d02f3c;
	transform: translateY(-2px);
}

.rb-seo__toc {
	margin: 0 0 32px;
	padding: 20px 24px;
	background: rgba(255, 255, 255, .03);
	border-radius: 12px;
	border-left: 3px solid #e63946;
}

.rb-seo__toc-t {
	font-weight: 800;
	color: #fff;
	margin-bottom: 12px;
	font-size: 14px;
	text-transform: uppercase;
	letter-spacing: .8px;
}

.rb-seo__toc-l {
	margin: 0;
	padding-left: 22px;
	columns: 2;
	gap: 32px;
	list-style: decimal;
}

.rb-seo__toc-l li {
	margin-bottom: 6px;
	break-inside: avoid;
	color: #7a8394;
}

.rb-seo__toc-l a {
	color: #cad1da;
	font-size: 14px;
	transition: color .15s;
}

.rb-seo__toc-l a:hover {
	color: #ff6b7a;
}

.rb-seo__body h2 {
	position: relative;
	font-size: clamp(20px, 2.6vw, 26px);
	font-weight: 800;
	color: #fff;
	margin: 40px 0 16px;
	line-height: 1.25;
	padding-left: 16px;
}

.rb-seo__body h2::before {
	content: "";
	position: absolute;
	left: 0;
	top: 6px;
	bottom: 6px;
	width: 4px;
	border-radius: 2px;
	background: linear-gradient(180deg, #e63946 0%, #ff6b7a 100%);
}

.rb-seo__body h3 {
	font-size: 18px;
	font-weight: 700;
	color: #fff;
	margin: 24px 0 10px;
}

.rb-seo__body p {
	margin: 0 0 14px;
	text-align: justify;
	line-height: 1.65;
	font-size: 15px;
}

.rb-seo__body ul,
.rb-seo__body ol {
	margin: 0 0 18px;
	padding-left: 22px;
}

.rb-seo__body li {
	margin-bottom: 8px;
	line-height: 1.55;
}

.rb-seo__body a {
	color: #ff6b7a;
	border-bottom: 1px dashed rgba(255, 107, 122, .4);
	transition: color .15s, border-color .15s;
}

.rb-seo__body a:hover {
	color: #ff8a97;
	border-bottom-color: #ff8a97;
}

.rb-seo__tw {
	overflow-x: auto;
	margin: 0 0 20px;
	border-radius: 10px;
	border: 1px solid rgba(255, 255, 255, .06);
}

.rb-seo__body table {
	width: 100%;
	border-collapse: collapse;
	font-size: 14px;
}

.rb-seo__body th,
.rb-seo__body td {
	padding: 12px 16px;
	border-bottom: 1px solid rgba(255, 255, 255, .06);
	text-align: left;
	vertical-align: top;
}

.rb-seo__body th {
	background: rgba(230, 57, 70, .12);
	color: #fff;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .5px;
	font-size: 12px;
}

.rb-seo__body tbody tr:hover {
	background: rgba(255, 255, 255, .02);
}

.rb-seo__faq details {
	margin-bottom: 10px;
	background: rgba(255, 255, 255, .03);
	border: 1px solid rgba(255, 255, 255, .06);
	border-radius: 10px;
	overflow: hidden;
	transition: border-color .2s;
}

.rb-seo__faq details[open] {
	border-color: rgba(230, 57, 70, .35);
	background: rgba(230, 57, 70, .04);
}

.rb-seo__faq summary {
	padding: 16px 52px 16px 22px;
	cursor: pointer;
	font-weight: 700;
	color: #fff;
	list-style: none;
	position: relative;
	font-size: 15px;
}

.rb-seo__faq summary::-webkit-details-marker {
	display: none;
}

.rb-seo__faq summary::after {
	content: "+";
	position: absolute;
	right: 22px;
	top: 50%;
	transform: translateY(-50%);
	width: 26px;
	height: 26px;
	border-radius: 50%;
	background: #e63946;
	color: #fff;
	font-size: 20px;
	font-weight: 400;
	line-height: 26px;
	text-align: center;
	transition: transform .2s;
}

.rb-seo__faq details[open] summary::after {
	content: "−";
	transform: translateY(-50%) rotate(180deg);
}

.rb-seo__faqa {
	padding: 4px 22px 18px;
}

.rb-seo__faqa p {
	margin: 0;
	color: #cbd2dc;
	line-height: 1.65;
}

@media (max-width: 720px) {
	.rb-seo__wrap {
		padding: 28px 20px;
		border-radius: 14px;
	}

	.rb-seo__toc-l {
		columns: 1;
	}

	.rb-seo__cta {
		padding: 18px 20px;
		flex-direction: column;
		align-items: stretch;
		text-align: center;
	}

	.rb-seo__btn {
		width: 100%;
	}
}

/* ─── FOOTER ─────────────────────────── */

.footer {
	margin-top: 72px;
	padding: 48px 20px 28px;
	background: #0a1220;
	border-top: 1px solid rgba(255, 255, 255, .06);
	color: #8b95a5;
	font-size: 14px;
	line-height: 1.55;
}

.footer__inner {
	max-width: 1440px;
	margin: 0 auto;
}

.footer__top {
	display: grid;
	grid-template-columns: 1.4fr 1fr 1fr 1fr;
	gap: 40px;
	padding-bottom: 40px;
	border-bottom: 1px solid rgba(255, 255, 255, .06);
}

.footer__brand {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.footer__brand img {
	height: 44px;
	width: auto;
}

.footer__brand p {
	margin: 0;
	color: #7f8898;
	max-width: 320px;
}

.footer__social {
	display: flex;
	gap: 10px;
	margin-top: 6px;
}

.footer__social a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 10px;
	background: rgba(255, 255, 255, .06);
	color: #fff;
	transition: background .15s, transform .15s;
}

.footer__social a:hover {
	background: #e63946;
	transform: translateY(-2px);
}

.footer__social svg {
	width: 20px;
	height: 20px;
}

.footer__col-t {
	color: #fff;
	font-weight: 800;
	font-size: 14px;
	text-transform: uppercase;
	letter-spacing: .8px;
	margin: 0 0 16px;
}

.footer__col-l {
	list-style: none;
	margin: 0;
	padding: 0;
}

.footer__col-l li {
	margin-bottom: 10px;
}

.footer__col-l a {
	color: #b0b9c8;
	font-size: 14px;
	transition: color .15s;
}

.footer__col-l a:hover {
	color: #e63946;
}

.footer__pay {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.footer__pay-item {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: 40px;
	min-width: 62px;
	padding: 0 12px;
	background: #1a2739;
	border: 1px solid rgba(255, 255, 255, .08);
	border-radius: 8px;
	transition: border-color .15s, background .15s;
}

.footer__pay-item:hover {
	border-color: rgba(230, 57, 70, .5);
	background: #1f2e42;
}

.footer__pay-item img {
	max-height: 22px;
	width: auto;
}

.footer__pay-item span {
	color: #eaeef4;
	font-size: 12px;
	font-weight: 800;
	letter-spacing: .5px;
}

.footer__bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	padding-top: 24px;
	flex-wrap: wrap;
}

.footer__bottom-l {
	display: flex;
	align-items: center;
	gap: 18px;
	flex-wrap: wrap;
}

.footer__licence {
	color: #7f8898;
	font-size: 13px;
	max-width: 560px;
}

.footer__copyr {
	color: #6c7686;
	font-size: 13px;
}

@media (max-width: 900px) {
	.footer__top {
		grid-template-columns: repeat(2, 1fr);
		gap: 32px;
	}
	.footer__brand {
		grid-column: 1 / -1;
	}
}

@media (max-width: 560px) {
	.footer {
		padding: 32px 16px 24px;
	}
	.footer__top {
		grid-template-columns: 1fr;
		gap: 28px;
		padding-bottom: 28px;
	}
	.footer__bottom {
		flex-direction: column;
		align-items: flex-start;
		text-align: left;
	}
}
