:root {
	--bg: #f6f8fb;
	--surface: #ffffff;
	--surface-soft: #f1f5f9;
	--text: #0b1f3a;
	--muted: #6f7d91;
	--line: #dce4ef;
	--blue: #0d6efd;
	--blue-dark: #064fb8;
	--red: #d90d1f;
	--green: #16a66a;
	--danger: #e84c5b;
	--footer: #061a31;
	--radius: 8px;
	--shadow: 0 16px 48px rgba(11, 31, 58, 0.08);
	--container: 1500px;
	--font: Inter, "Segoe UI", Roboto, Arial, sans-serif;
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background: var(--bg);
	color: var(--text);
	font-family: var(--font);
	font-size: 15px;
	line-height: 1.5;
	overflow-x: hidden;
}

body.is-menu-open {
	overflow: hidden;
}

a {
	color: inherit;
	text-decoration: none;
}

a:hover {
	color: var(--blue);
}

img {
	display: block;
	max-width: 100%;
}

svg,
video {
	max-width: 100%;
}

button,
input {
	font: inherit;
}

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

.site-shell,
.site-footer__inner {
	width: min(var(--container), calc(100% - 64px));
	margin: 0 auto;
}

.site-header {
	padding: 18px 0 14px;
}

.site-header__top {
	display: grid;
	grid-template-columns: 176px minmax(280px, 560px) 1fr;
	align-items: center;
	gap: 28px;
}

.brand {
	display: inline-flex;
	align-items: flex-start;
	width: max-content;
	color: var(--text);
	font-weight: 900;
	font-size: 28px;
	line-height: 1;
}

.brand__text {
	display: block;
}

.brand__dot {
	width: 8px;
	height: 8px;
	margin: 2px 0 0 4px;
	border-radius: 50%;
	background: var(--blue);
	box-shadow: 0 0 0 3px rgba(13, 110, 253, 0.12);
}

.search {
	position: relative;
	width: 100%;
}

.search input[type="search"] {
	width: 100%;
	height: 42px;
	padding: 0 48px 0 20px;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: var(--surface-soft);
	color: var(--text);
	outline: none;
	transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.search input[type="search"]:focus {
	border-color: rgba(13, 110, 253, 0.55);
	background: var(--surface);
	box-shadow: 0 0 0 4px rgba(13, 110, 253, 0.12);
}

.icon-button {
	position: absolute;
	top: 4px;
	right: 4px;
	display: grid;
	width: 34px;
	height: 34px;
	place-items: center;
	border: 0;
	border-radius: 6px;
	background: transparent;
	color: var(--muted);
	cursor: pointer;
}

.icon {
	position: relative;
	display: inline-block;
	flex: 0 0 auto;
}

.icon--search {
	width: 17px;
	height: 17px;
	border: 2px solid currentColor;
	border-radius: 50%;
}

.icon--search::after {
	content: "";
	position: absolute;
	right: -7px;
	bottom: -5px;
	width: 8px;
	height: 2px;
	border-radius: 2px;
	background: currentColor;
	transform: rotate(45deg);
}

.icon--eye,
.icon--comment {
	width: 15px;
	height: 15px;
	margin-right: 5px;
	color: currentColor;
	opacity: 0.85;
}

.icon--eye::before {
	content: "";
	position: absolute;
	inset: 3px 1px;
	border: 1.7px solid currentColor;
	border-radius: 50% / 60%;
}

.icon--eye::after {
	content: "";
	position: absolute;
	top: 6px;
	left: 6px;
	width: 3px;
	height: 3px;
	border-radius: 50%;
	background: currentColor;
}

.icon--comment::before {
	content: "";
	position: absolute;
	inset: 2px 1px 4px;
	border: 1.7px solid currentColor;
	border-radius: 5px;
}

.icon--comment::after {
	content: "";
	position: absolute;
	left: 5px;
	bottom: 2px;
	width: 6px;
	height: 6px;
	border-left: 1.7px solid currentColor;
	border-bottom: 1.7px solid currentColor;
	transform: skew(-18deg);
}

.icon--crown {
	width: 16px;
	height: 12px;
	margin-right: 8px;
	border-bottom: 2px solid currentColor;
}

.icon--crown::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 9px;
	background:
		linear-gradient(135deg, transparent 46%, currentColor 47% 55%, transparent 56%) 0 0 / 33% 100%,
		linear-gradient(45deg, transparent 46%, currentColor 47% 55%, transparent 56%) 50% 0 / 33% 100%,
		linear-gradient(-135deg, transparent 46%, currentColor 47% 55%, transparent 56%) 100% 0 / 33% 100%;
	background-repeat: no-repeat;
}

.header-actions {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 14px;
	min-width: 0;
}

.login-link,
.subscribe-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: 40px;
	border-radius: var(--radius);
	font-weight: 700;
	white-space: nowrap;
}

.login-link {
	padding: 0 4px;
	color: var(--blue);
}

.subscribe-button {
	padding: 0 18px;
	background: var(--blue);
	color: #fff;
	box-shadow: 0 8px 22px rgba(13, 110, 253, 0.22);
}

.subscribe-button:hover {
	background: var(--blue-dark);
	color: #fff;
}

.menu-toggle {
	display: none;
	width: 42px;
	height: 42px;
	padding: 0;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: var(--surface);
	cursor: pointer;
}

.menu-toggle span {
	display: block;
	width: 18px;
	height: 2px;
	margin: 4px auto;
	border-radius: 2px;
	background: var(--text);
}

.main-nav {
	display: flex;
	align-items: center;
	gap: 38px;
	margin-top: 22px;
	border-bottom: 1px solid var(--line);
	overflow-x: auto;
	scrollbar-width: none;
}

.main-nav::-webkit-scrollbar {
	display: none;
}

.main-nav a {
	position: relative;
	display: block;
	padding: 0 0 14px;
	color: var(--text);
	font-weight: 700;
	font-size: 14px;
	white-space: nowrap;
}

.main-nav a::after {
	content: "";
	position: absolute;
	right: 0;
	bottom: -1px;
	left: 0;
	height: 3px;
	border-radius: 3px 3px 0 0;
	background: transparent;
}

.main-nav a:hover,
.main-nav a.is-active {
	color: var(--blue);
}

.main-nav a.is-active::after {
	background: var(--blue);
}

.breaking {
	display: grid;
	grid-template-columns: auto auto minmax(0, 1fr) auto auto;
	align-items: center;
	gap: 24px;
	min-height: 48px;
	margin: 0 0 22px;
	padding: 0 18px;
	border-radius: var(--radius);
	background: var(--red);
	color: #fff;
	box-shadow: 0 18px 38px rgba(217, 13, 31, 0.18);
}

.breaking.is-hidden {
	display: none;
}

.breaking__label {
	font-weight: 900;
	text-transform: uppercase;
}

.breaking__time {
	opacity: 0.8;
}

.breaking__text {
	min-width: 0;
	font-weight: 700;
}

.breaking__text a {
	display: block;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.breaking__more {
	font-weight: 800;
}

.breaking__more::after {
	content: "->";
	margin-left: 12px;
}

.breaking__close {
	position: relative;
	width: 30px;
	height: 30px;
	border: 0;
	background: transparent;
	cursor: pointer;
}

.breaking__close::before,
.breaking__close::after {
	content: "";
	position: absolute;
	top: 14px;
	left: 7px;
	width: 16px;
	height: 2px;
	border-radius: 2px;
	background: #fff;
}

.breaking__close::before {
	transform: rotate(45deg);
}

.breaking__close::after {
	transform: rotate(-45deg);
}

.home-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(280px, 340px);
	gap: 24px;
	align-items: start;
}

.home-main {
	min-width: 0;
}

.top-stories {
	display: grid;
	grid-template-columns: minmax(0, 1.45fr) minmax(340px, 0.9fr);
	gap: 24px;
	align-items: stretch;
}

.lead-panel,
.headline-list,
.widget,
.section-card,
.story-card,
.full-story,
.system-message,
.content-main {
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: var(--surface);
	box-shadow: var(--shadow);
}

.lead-panel {
	display: grid;
	overflow: hidden;
}

.hero-card {
	position: relative;
	height: 100%;
	min-height: 512px;
	overflow: hidden;
	background: #0d223e;
}

.hero-card__media,
.hero-card__media img,
.hero-card__placeholder {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
}

.hero-card__media img {
	object-fit: cover;
}

.hero-card__placeholder,
.feed-item__placeholder,
.story-card__placeholder,
.section-card__placeholder,
.video-card__placeholder {
	object-fit: cover;
}

.hero-card__placeholder,
.feed-item__placeholder,
.story-card__placeholder,
.section-card__placeholder,
.video-card__placeholder {
	display: block;
	background:
		linear-gradient(135deg, rgba(13, 110, 253, 0.22), rgba(6, 26, 49, 0.9)),
		linear-gradient(45deg, #e7edf6, #cfd9e7);
}

.hero-card__overlay {
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	padding: 44px 42px 34px;
	color: #fff;
	background: linear-gradient(180deg, rgba(6, 26, 49, 0), rgba(6, 26, 49, 0.88));
}

.hero-card h1 {
	max-width: 780px;
	margin: 14px 0 12px;
	font-size: clamp(30px, 3vw, 45px);
	line-height: 1.08;
}

.hero-card h1 a,
.feed-item h2 a,
.section-card h3 a,
.video-card h3 a,
.story-card h2 a,
.popular-list span {
	display: -webkit-box;
	overflow: hidden;
	-webkit-box-orient: vertical;
	overflow-wrap: anywhere;
}

.hero-card h1 a {
	-webkit-line-clamp: 3;
}

.hero-card h1 a:hover {
	color: #fff;
	text-decoration: underline;
	text-decoration-thickness: 2px;
	text-underline-offset: 4px;
}

.hero-card p {
	max-width: 720px;
	margin: 0 0 18px;
	color: rgba(255, 255, 255, 0.88);
	font-size: 16px;
}

.story-meta,
.story-stats {
	display: flex;
	align-items: center;
	gap: 11px;
	color: var(--muted);
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
}

.story-meta span {
	color: var(--blue);
}

.story-meta--light,
.story-stats--light {
	color: rgba(255, 255, 255, 0.78);
}

.story-meta--light span {
	display: inline-flex;
	align-items: center;
	min-height: 24px;
	padding: 0 9px;
	border-radius: 4px;
	background: var(--blue);
	color: #fff;
}

.story-stats {
	gap: 9px;
	text-transform: none;
}

.headline-list {
	padding: 16px;
}

.feed-item {
	display: grid;
	grid-template-columns: 156px minmax(0, 1fr);
	gap: 18px;
	padding: 0 0 16px;
	border-bottom: 1px solid var(--line);
}

.feed-item + .feed-item {
	padding-top: 16px;
}

.feed-item:last-child {
	padding-bottom: 0;
	border-bottom: 0;
}

.feed-item__media,
.feed-item__placeholder {
	display: block;
	width: 156px;
	height: 98px;
	overflow: hidden;
	border-radius: var(--radius);
	background: var(--surface-soft);
}

.feed-item__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease;
}

.feed-item:hover .feed-item__media img,
.section-card:hover img,
.story-card:hover img,
.video-card:hover img {
	transform: scale(1.04);
}

.feed-item h2 {
	margin: 8px 0 12px;
	font-size: 17px;
	line-height: 1.28;
}

.feed-item h2 a {
	-webkit-line-clamp: 3;
}

.sidebar {
	display: grid;
	gap: 24px;
	min-width: 0;
}

.widget {
	padding: 22px;
	box-shadow: none;
}

.widget__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
	margin-bottom: 12px;
}

.widget__title {
	margin: 0 0 14px;
	font-size: 22px;
	line-height: 1.2;
}

.widget__head .widget__title {
	margin-bottom: 0;
}

.popular-list {
	margin: 0;
	padding: 0;
	list-style: none;
	counter-reset: popular;
}

.popular-list li {
	counter-increment: popular;
}

.popular-list li + li {
	margin-top: 16px;
}

.popular-list a {
	display: grid;
	grid-template-columns: 28px minmax(0, 1fr) auto;
	gap: 10px;
	align-items: start;
}

.popular-list a::before {
	content: counter(popular);
	color: var(--blue);
	font-weight: 900;
}

.popular-list span {
	font-weight: 700;
	line-height: 1.35;
	-webkit-line-clamp: 2;
}

.popular-list time {
	color: var(--muted);
	font-size: 12px;
}

.tabs {
	display: flex;
	gap: 14px;
	color: var(--muted);
	font-size: 13px;
	font-weight: 800;
}

.tabs span.is-active {
	color: var(--blue);
}

.market-list {
	display: grid;
	gap: 10px;
}

.market-group {
	margin-top: 4px;
	color: var(--muted);
	font-size: 11px;
	font-weight: 900;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.market-group:first-child {
	margin-top: 0;
}

.market-row {
	display: grid;
	grid-template-columns: minmax(82px, 1fr) 78px 72px 58px;
	gap: 10px;
	align-items: center;
	font-size: 13px;
}

.market-row span {
	color: var(--text);
	font-weight: 700;
}

.market-row strong {
	font-size: 13px;
	text-align: right;
	white-space: nowrap;
}

.market-row em {
	font-style: normal;
	font-weight: 800;
	text-align: right;
	white-space: nowrap;
}

.market-row .is-up {
	color: var(--green);
}

.market-row .is-down {
	color: var(--danger);
}

.market-row i {
	position: relative;
	display: block;
	height: 28px;
	overflow: hidden;
	color: var(--green);
}

.market-row i::before {
	content: "";
	position: absolute;
	inset: 4px 0;
	background:
		linear-gradient(140deg, transparent 0 15%, currentColor 16% 18%, transparent 19% 31%, currentColor 32% 34%, transparent 35% 48%, currentColor 49% 51%, transparent 52% 65%, currentColor 66% 68%, transparent 69% 82%, currentColor 83% 85%, transparent 86%);
	color: var(--green);
}

.market-row .is-down + i::before,
.market-row.is-down i::before {
	color: var(--danger);
	transform: scaleY(-1);
}

.market-row.is-flat i::before {
	color: var(--muted);
	transform: none;
	opacity: 0.45;
}

.market-row--skeleton {
	color: var(--muted);
}

.market-row--skeleton span,
.market-row--skeleton strong,
.market-row--skeleton em {
	color: var(--muted);
}

.market-updated {
	margin: 14px 0 0;
	color: var(--muted);
	font-size: 12px;
}

.section-row {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
	margin-top: 24px;
}

.section-card {
	padding: 14px;
	box-shadow: none;
}

.section-card__media,
.section-card__placeholder {
	display: block;
	width: 100%;
	aspect-ratio: 16 / 9;
	overflow: hidden;
	border-radius: 6px;
	background: var(--surface-soft);
}

.section-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease;
}

.section-card .story-meta {
	margin-top: 12px;
}

.section-card h3 {
	margin: 8px 0;
	font-size: 16px;
	line-height: 1.28;
}

.section-card h3 a {
	-webkit-line-clamp: 3;
}

.section-card p {
	margin: 0;
	color: var(--muted);
	font-size: 13px;
	line-height: 1.45;
}

.section-title {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	margin: 26px 0 14px;
}

.section-title h2 {
	margin: 0;
	font-size: 24px;
}

.section-title a {
	color: var(--blue);
	font-weight: 800;
}

.video-row {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
	margin-bottom: 28px;
}

.video-card {
	position: relative;
	min-height: 182px;
	overflow: hidden;
	border-radius: var(--radius);
	background: #071b32;
	box-shadow: var(--shadow);
}

.video-card__media,
.video-card__media img,
.video-card__placeholder {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
}

.video-card__media img {
	object-fit: cover;
	opacity: 0.74;
	transition: transform 0.3s ease, opacity 0.3s ease;
}

.video-card:hover img {
	opacity: 0.9;
}

.video-card__play {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 46px;
	height: 46px;
	border: 2px solid rgba(255, 255, 255, 0.72);
	border-radius: 50%;
	background: rgba(6, 26, 49, 0.46);
	transform: translate(-50%, -50%);
}

.video-card__play::after {
	content: "";
	position: absolute;
	top: 13px;
	left: 17px;
	width: 0;
	height: 0;
	border-top: 9px solid transparent;
	border-bottom: 9px solid transparent;
	border-left: 13px solid #fff;
}

.video-card__body {
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	padding: 46px 16px 16px;
	color: #fff;
	background: linear-gradient(180deg, rgba(6, 26, 49, 0), rgba(6, 26, 49, 0.88));
}

.video-card h3 {
	margin: 7px 0 0;
	font-size: 15px;
	line-height: 1.3;
}

.video-card h3 a {
	-webkit-line-clamp: 2;
}

.content-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(270px, 340px);
	gap: 24px;
	align-items: start;
}

.content-main {
	min-width: 0;
	padding: 26px;
	box-shadow: none;
}

.speedbar {
	margin-bottom: 18px;
	color: var(--muted);
	font-size: 13px;
}

.system-message {
	margin-bottom: 18px;
	padding: 16px 18px;
	color: var(--text);
	box-shadow: none;
}

.system-message strong {
	display: block;
	margin-bottom: 6px;
}

.user-panel {
	display: flex;
	align-items: center;
	gap: 10px;
}

.story-card {
	display: grid;
	grid-template-columns: 260px minmax(0, 1fr);
	gap: 22px;
	padding: 18px;
	box-shadow: none;
}

.story-card + .story-card {
	margin-top: 18px;
}

.story-card__media,
.story-card__placeholder {
	width: 260px;
	aspect-ratio: 16 / 10;
	overflow: hidden;
	border-radius: var(--radius);
	background: var(--surface-soft);
}

.story-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease;
}

.story-card h2 {
	margin: 8px 0 10px;
	font-size: 24px;
	line-height: 1.2;
}

.story-card h2 a {
	-webkit-line-clamp: 3;
}

.story-card__text {
	margin-bottom: 16px;
	color: var(--muted);
}

.full-story {
	padding: 34px;
	box-shadow: none;
}

.full-story__header h1 {
	max-width: 880px;
	margin: 14px 0;
	font-size: clamp(34px, 4vw, 54px);
	line-height: 1.08;
}

.full-story__cover {
	margin: 28px 0;
	overflow: hidden;
	border-radius: var(--radius);
	background: var(--surface-soft);
}

.full-story__cover img {
	width: 100%;
	max-height: 560px;
	object-fit: cover;
}

.full-story__content {
	max-width: 860px;
	font-size: 19px;
	line-height: 1.72;
}

.full-story__content p {
	margin: 0 0 1.05em;
}

.full-story__content img,
.full-story__content video {
	width: 100%;
	max-height: 620px;
	margin: 0 0 1.15em;
	border-radius: var(--radius);
	background: var(--surface-soft);
	object-fit: cover;
}

.full-story__content video {
	display: block;
	aspect-ratio: 16 / 9;
}

.full-story__content a {
	color: var(--blue);
	font-weight: 700;
}

.full-story__content blockquote {
	margin: 28px 0;
	padding: 20px 24px;
	border-left: 4px solid var(--blue);
	border-radius: 0 var(--radius) var(--radius) 0;
	background: var(--surface-soft);
	font-weight: 700;
}

.full-story__after {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	margin-top: 28px;
	padding-top: 22px;
	border-top: 1px solid var(--line);
}

.full-story__tags {
	color: var(--muted);
}

.full-story__share a {
	display: inline-flex;
	align-items: center;
	min-height: 40px;
	padding: 0 16px;
	border-radius: var(--radius);
	background: var(--blue);
	color: #fff;
	font-weight: 800;
}

.related {
	margin-top: 34px;
}

.related h2 {
	margin: 0 0 16px;
}

.related-card {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 14px 0;
	border-bottom: 1px solid var(--line);
}

.related-card a {
	font-weight: 800;
}

.related-card time {
	flex: 0 0 auto;
	color: var(--muted);
	font-size: 13px;
}

.static-page h1 {
	margin: 0 0 20px;
	font-size: clamp(30px, 4vw, 48px);
	line-height: 1.12;
}

.static-page__content {
	font-size: 18px;
	line-height: 1.7;
}

.feedback-page {
	display: grid;
	gap: 24px;
}

.feedback-page h1 {
	margin: 0;
	font-size: clamp(30px, 4vw, 46px);
	line-height: 1.12;
}

.feedback-page__lead {
	max-width: 720px;
	margin: 0;
	color: var(--muted);
	font-size: 18px;
}

.feedback-grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 280px;
	gap: 24px;
	align-items: start;
}

.feedback-form,
.feedback-note {
	padding: 22px;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: var(--surface);
}

.ui-form {
	display: grid;
	gap: 16px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.form-group {
	display: grid;
	gap: 8px;
	margin: 0;
}

.form-group.combo {
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px;
}

.combo_field {
	min-width: 0;
}

.wide,
.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="file"],
.form-group textarea,
.form-group select {
	width: 100%;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: var(--surface-soft);
	color: var(--text);
	outline: none;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="file"],
.form-group select {
	min-height: 44px;
	padding: 0 14px;
}

.form-group textarea {
	min-height: 180px;
	padding: 14px;
	resize: vertical;
}

.wide:focus,
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
	border-color: rgba(13, 110, 253, 0.55);
	background: var(--surface);
	box-shadow: 0 0 0 4px rgba(13, 110, 253, 0.12);
}

.form_submit {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 14px;
	margin-top: 18px;
}

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 42px;
	padding: 0 18px;
	border: 0;
	border-radius: var(--radius);
	background: var(--blue);
	color: #fff;
	font-weight: 900;
	cursor: pointer;
}

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

.c-captcha {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 10px;
}

.feedback-note {
	color: var(--muted);
}

.feedback-note h2 {
	margin: 0 0 12px;
	color: var(--text);
	font-size: 20px;
}

.feedback-note p {
	margin: 0 0 12px;
}

.legal-page h1 {
	margin-top: 0;
	font-size: clamp(30px, 4vw, 46px);
	line-height: 1.12;
}

.legal-page h2 {
	margin: 30px 0 10px;
	font-size: 24px;
	line-height: 1.2;
}

.legal-page p,
.legal-page li {
	color: #243852;
}

.legal-page ol,
.legal-page ul {
	padding-left: 24px;
}

.legal-page small {
	color: var(--muted);
}

.comment {
	margin-top: 18px;
	padding: 18px;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: var(--surface);
}

.comment__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
	margin-bottom: 10px;
	color: var(--muted);
	font-size: 13px;
}

.comment__head strong {
	color: var(--text);
}

.comment__body {
	color: var(--text);
}

.add-comment {
	margin-top: 24px;
	padding: 20px;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: var(--surface-soft);
}

.add-comment h3 {
	margin: 0 0 14px;
}

.add-comment__editor {
	margin-bottom: 14px;
}

.navigation {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	margin-top: 26px;
}

.navigation a,
.navigation span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 38px;
	height: 38px;
	padding: 0 12px;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: var(--surface);
	color: var(--text);
	font-weight: 800;
}

.navigation span {
	background: var(--blue);
	color: #fff;
	border-color: var(--blue);
}

.site-footer {
	margin-top: 26px;
	background: var(--footer);
	color: rgba(255, 255, 255, 0.72);
}

.site-footer__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	min-height: 82px;
}

.brand--footer {
	color: #fff;
	font-size: 24px;
}

.site-footer p {
	margin: 0;
}

.site-footer nav {
	display: flex;
	gap: 28px;
}

.site-footer a:hover {
	color: #fff;
}

@media (max-width: 1280px) {
	.home-layout {
		grid-template-columns: 1fr;
	}

	.home-layout > .sidebar {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.section-row {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.video-row {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

@media (max-width: 980px) {
	.site-shell,
	.site-footer__inner {
		width: min(var(--container), calc(100% - 32px));
	}

	.site-header__top {
		grid-template-columns: 1fr auto;
		gap: 16px;
	}

	.search {
		grid-column: 1 / -1;
		order: 3;
	}

	.header-actions {
		gap: 10px;
	}

	.menu-toggle {
		display: block;
	}

	.main-nav {
		position: fixed;
		top: 0;
		right: 0;
		z-index: 30;
		display: grid;
		align-content: start;
		width: min(340px, 88vw);
		height: 100vh;
		margin: 0;
		padding: 86px 28px 28px;
		border: 0;
		background: var(--surface);
		box-shadow: -22px 0 52px rgba(11, 31, 58, 0.18);
		transform: translateX(105%);
		transition: transform 0.24s ease;
	}

	body.is-menu-open .main-nav {
		transform: translateX(0);
	}

	.main-nav a {
		padding: 13px 0;
		border-bottom: 1px solid var(--line);
		font-size: 16px;
	}

	.main-nav a::after {
		display: none;
	}

	body.is-menu-open .menu-toggle {
		position: fixed;
		top: 20px;
		right: 24px;
		z-index: 31;
	}

	body.is-menu-open .menu-toggle span:nth-child(1) {
		transform: translateY(6px) rotate(45deg);
	}

	body.is-menu-open .menu-toggle span:nth-child(2) {
		opacity: 0;
	}

	body.is-menu-open .menu-toggle span:nth-child(3) {
		transform: translateY(-6px) rotate(-45deg);
	}

	.breaking {
		grid-template-columns: auto minmax(0, 1fr) auto;
		gap: 12px;
		padding: 12px 14px;
	}

	.breaking__time,
	.breaking__more {
		display: none;
	}

	.home-layout,
	.top-stories,
	.content-layout {
		grid-template-columns: 1fr;
	}

	.hero-card {
		min-height: 430px;
	}

	.section-row,
	.video-row,
	.home-layout > .sidebar {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.site-footer__inner {
		flex-wrap: wrap;
		padding: 22px 0;
	}
}

@media (max-width: 680px) {
	body {
		font-size: 14px;
	}

	.site-shell,
	.site-footer__inner {
		width: min(var(--container), calc(100% - 24px));
	}

	.site-header__top {
		display: flex;
		flex-wrap: wrap;
		align-items: center;
		gap: 14px 10px;
	}

	.header-actions {
		flex: 0 0 auto;
		margin-left: auto;
	}

	.search {
		flex: 0 0 100%;
		min-width: 0;
	}

	.brand {
		font-size: 24px;
	}

	.subscribe-button {
		display: none;
	}

	.menu-toggle {
		width: 40px;
		height: 40px;
	}

	.login-link {
		font-size: 14px;
	}

	.breaking {
		grid-template-columns: auto minmax(0, 1fr);
		gap: 10px;
		overflow: hidden;
		padding-right: 12px;
	}

	.breaking__label,
	.breaking__text {
		font-size: 13px;
	}

	.breaking__text {
		min-width: 0;
	}

	.breaking__close {
		display: none;
	}

	.hero-card {
		min-height: 360px;
	}

	.hero-card__overlay {
		padding: 34px 20px 22px;
	}

	.hero-card h1 {
		font-size: 27px;
	}

	.headline-list {
		padding: 12px;
	}

	.feed-item,
	.story-card {
		grid-template-columns: 1fr;
	}

	.feed-item__media,
	.feed-item__placeholder,
	.story-card__media,
	.story-card__placeholder {
		width: 100%;
		height: auto;
		aspect-ratio: 16 / 9;
	}

	.section-row,
	.video-row,
	.home-layout > .sidebar {
		grid-template-columns: 1fr;
	}

	.content-main,
	.full-story {
		padding: 18px;
	}

	.full-story__content {
		font-size: 17px;
	}

	.full-story__after,
	.site-footer__inner,
	.site-footer nav {
		align-items: flex-start;
		flex-direction: column;
	}

	.feedback-grid,
	.form-group.combo {
		grid-template-columns: 1fr;
	}

	.market-row {
		grid-template-columns: minmax(78px, 1fr) 72px 66px;
	}

	.market-row i {
		display: none;
	}
}
