:root {
	--portal-accent: #d71912;
	--portal-accent-dark: color-mix(in srgb, var(--portal-accent), #000 16%);
	--portal-text: #232323;
	--portal-muted: #6f6f6f;
	--portal-line: #e6e6e6;
	--portal-bg: #f7f7f7;
	--portal-card: #ffffff;
}

* {
	box-sizing: border-box;
}

body {
	margin: 0;
	color: var(--portal-text);
	background: var(--portal-bg);
	font-family: Arial, Helvetica, sans-serif;
	line-height: 1.5;
}

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

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

.container {
	width: min(1120px, calc(100% - 32px));
	margin: 0 auto;
}

.container-narrow {
	width: min(700px, calc(100% - 32px));
	margin: 0 auto;
}

.network-bar {
	background: #ffffff;
}

.network-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	min-height: 42px;
}

.network-links {
	min-width: 0;
	font-size: 13px;
	font-weight: 700;
	color: #005bbb;
}

.network-menu {
	display: flex;
	gap: 28px;
	align-items: center;
	justify-content: flex-start;
	margin: 0;
	padding: 0;
	list-style: none;
	overflow-x: auto;
}

.network-menu a {
	display: block;
	padding: 12px 0;
	white-space: nowrap;
}

.network-menu li:nth-child(2n) a {
	color: var(--portal-accent);
}

.network-menu li:nth-child(3n) a {
	color: #159447;
}

.network-services {
	display: flex;
	flex: 0 0 auto;
	align-items: center;
	justify-content: flex-end;
	gap: 10px;
	min-height: 0;
	padding: 0;
	border: 0;
	color: #444;
	font-size: 13px;
	font-weight: 700;
	white-space: nowrap;
}

.brand-bar {
	background: var(--portal-accent);
	color: #ffffff;
}

.brand-inner {
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
	align-items: center;
	gap: 24px;
	min-height: 62px;
}

.brand {
	position: static;
	grid-column: 2;
	min-width: 0;
	max-width: 620px;
	justify-self: center;
	font-size: clamp(24px, 3vw, 34px);
	font-weight: 800;
	line-height: 1.05;
	letter-spacing: 0;
	overflow-wrap: anywhere;
	text-align: center;
}

.brand img {
	max-height: 42px;
	width: auto;
}

.brand .portal-brand-logo {
	display: block;
	max-width: 260px;
	max-height: 46px;
	width: auto;
	object-fit: contain;
}

.menu-toggle {
	grid-column: 1;
	justify-self: start;
	display: inline-flex;
	align-items: center;
	gap: 10px;
	border: 0;
	color: #ffffff;
	background: transparent;
	font-weight: 800;
	text-transform: uppercase;
	cursor: pointer;
}

.header-search {
	position: relative;
	z-index: 3;
	grid-column: 3;
	justify-self: end;
	display: flex;
	justify-content: flex-end;
	min-width: 44px;
}

.search-toggle {
	display: none;
	place-items: center;
	width: 44px;
	height: 44px;
	border: 0;
	border-radius: 4px;
	background: color-mix(in srgb, var(--portal-accent), #000 22%);
	color: #ffffff;
	cursor: pointer;
}

.search-toggle span {
	position: relative;
	display: block;
	width: 18px;
	height: 18px;
	border: 3px solid currentColor;
	border-radius: 999px;
}

.search-toggle span::after {
	content: "";
	position: absolute;
	right: -7px;
	bottom: -5px;
	width: 9px;
	height: 3px;
	border-radius: 999px;
	background: currentColor;
	transform: rotate(45deg);
	transform-origin: center;
}

.header-search-panel {
	min-width: 0;
}

.menu-toggle i,
.menu-toggle i::before,
.menu-toggle i::after {
	display: block;
	width: 17px;
	height: 2px;
	background: currentColor;
	content: "";
}

.menu-toggle i {
	position: relative;
}

.menu-toggle i::before,
.menu-toggle i::after {
	position: absolute;
	left: 0;
}

.menu-toggle i::before {
	top: -6px;
}

.menu-toggle i::after {
	top: 6px;
}

.search-form {
	display: flex;
	min-width: 0;
	justify-self: end;
	width: min(100%, 260px);
}

.search-form label {
	flex: 1;
}

.search-field {
	width: 100%;
	border: 0;
	border-radius: 4px 0 0 4px;
	padding: 8px 10px;
	background: color-mix(in srgb, var(--portal-accent), #000 14%);
	color: #ffffff;
	font-size: 13px;
	font-weight: 700;
	text-transform: uppercase;
}

.search-field::placeholder {
	color: rgba(255,255,255,.9);
}

.search-form button {
	display: grid;
	place-items: center;
	width: 40px;
	border: 0;
	border-radius: 0 4px 4px 0;
	padding: 0;
	background: color-mix(in srgb, var(--portal-accent), #000 24%);
	color: #ffffff;
	font-weight: 800;
	cursor: pointer;
}

.section-nav {
	background: var(--portal-accent);
	border-top: 1px solid rgba(255,255,255,.16);
}

.drawer-overlay {
	position: fixed;
	inset: 0;
	z-index: 998;
	display: none;
	background: rgba(0, 0, 0, .68);
}

.category-drawer {
	position: fixed;
	inset: 0 auto 0 0;
	z-index: 999;
	width: min(420px, 86vw);
	padding: 0 0 30px;
	background: #ffffff;
	color: var(--portal-text);
	box-shadow: 18px 0 48px rgba(0, 0, 0, .2);
	transform: translateX(-105%);
	transition: transform .24s ease;
	overflow-y: auto;
}

.drawer-open {
	overflow: hidden;
}

.drawer-open .drawer-overlay {
	display: block;
}

.drawer-open .category-drawer {
	transform: translateX(0);
}

.drawer-head {
	display: flex;
	justify-content: space-between;
	align-items: center;
	min-height: 64px;
	padding: 14px 28px 8px;
	background: #ffffff;
	color: var(--portal-accent);
}

.drawer-head strong {
	font-size: 18px;
	font-weight: 900;
	letter-spacing: .08em;
}

.drawer-brand {
	display: inline-flex;
	align-items: center;
	min-width: 0;
	color: var(--portal-accent);
}

.drawer-brand .custom-logo-link,
.drawer-brand .portal-drawer-logo {
	display: block;
	max-width: 170px;
	max-height: 42px;
	width: auto;
	object-fit: contain;
}

.drawer-close {
	border: 0;
	border-radius: 999px;
	width: 34px;
	height: 34px;
	background: #f3f4f6;
	color: #6f6f6f;
	font-size: 20px;
	font-weight: 900;
	cursor: pointer;
}

.drawer-pages-list,
.drawer-category-list {
	margin: 0;
	padding: 0 28px;
	list-style: none;
}

.drawer-pages-list a,
.drawer-category-list a {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 7px 0;
	color: #777;
	font-size: 20px;
	font-weight: 400;
	line-height: 1.22;
	letter-spacing: 0;
}

.drawer-pages-list a::after,
.drawer-category-list a::after {
	content: "›";
	color: var(--portal-accent);
	font-size: 22px;
	font-weight: 500;
	line-height: 1;
}

.drawer-category-list a.is-current {
	color: var(--portal-accent);
	background: transparent;
	font-weight: 400;
}

.drawer-section-title {
	margin: 18px 28px 6px;
	border-top: 1px solid #ededed;
	padding-top: 18px;
	color: #9a9a9a;
	font-size: 14px;
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: .08em;
}

.primary-menu {
	display: flex;
	justify-content: center;
	gap: 24px;
	margin: 0;
	padding: 0;
	list-style: none;
	overflow-x: auto;
}

.primary-menu a {
	display: block;
	padding: 12px 0;
	color: rgba(255,255,255,.72);
	font-size: 14px;
	font-weight: 800;
	white-space: nowrap;
}

.primary-menu a:hover,
.primary-menu .current-menu-item a {
	color: #ffffff;
}

.service-inner {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	align-items: center;
	min-height: 0;
}

.portal-date {
	color: #444;
	font-size: 14px;
	font-weight: 700;
	white-space: nowrap;
}

.portal-service {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	border: 1px solid var(--portal-line);
	border-radius: 999px;
	padding: 4px 8px;
	background: #ffffff;
	color: #424242;
	font-size: 12px;
	font-weight: 700;
}

.portal-service strong {
	color: var(--portal-accent);
}

.portal-ad {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 32px;
	margin-bottom: 32px;
	overflow: hidden;
	text-align: center;
}

.portal-ad:empty {
	display: none;
}

.portal-ad-rotator {
	position: relative;
	display: grid;
}

.portal-ad-slide {
	grid-area: 1 / 1;
	opacity: 0;
	pointer-events: none;
	visibility: hidden;
	width: 100%;
	transition: opacity .25s ease;
}

.portal-ad-slide.is-active {
	opacity: 1;
	pointer-events: auto;
	visibility: visible;
}

.portal-ad-slide a,
.portal-ad-slide img {
	display: block;
	width: 100%;
}

.portal-ad img,
.portal-ad iframe {
	max-width: 100%;
	border: 0;
}

.billboard {
	min-height: 90px;
}

@media (prefers-reduced-motion: reduce) {
	.portal-ad-slide {
		transition: none;
	}
}

.billboard:empty {
	display: flex;
	min-height: 0;
	margin: 16px auto;
}

.hero-grid,
.top-stories {
	margin-top: 26px;
}

.top-stories {
	display: grid;
	grid-template-columns: minmax(0, 1.12fr) minmax(320px, .88fr);
	gap: 18px;
	align-items: stretch;
}

.top-story-main,
.top-story-small {
	overflow: hidden;
	border: 1px solid var(--portal-line);
	border-radius: 8px;
	background: #111827;
}

.top-story-main a {
	position: relative;
	z-index: 0;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	min-height: 530px;
	padding: 34px;
	color: #ffffff;
	background: linear-gradient(135deg, #20242b, #090d16);
}

.top-story-main a::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: -1;
	background: linear-gradient(to top, rgba(4,10,28,.9), rgba(4,10,28,.2));
}

.top-story-main h1 {
	margin: 0 0 14px;
	font-size: clamp(34px, 4vw, 56px);
	line-height: 1.05;
	letter-spacing: 0;
	text-shadow: 0 2px 4px rgba(0,0,0,.28);
}

.top-story-main p {
	max-width: 680px;
	margin: 0;
	color: rgba(255,255,255,.9);
	font-size: 19px;
}

.top-story-main img {
	position: absolute;
	inset: 0;
	z-index: -2;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.top-story-main .story-kicker {
	border-radius: 999px;
	padding: 5px 12px;
	background: #ffffff;
	color: var(--portal-accent);
}

.story-kicker {
	display: inline-flex;
	width: max-content;
	margin-bottom: 12px;
	color: #3f3f46;
	font-size: 15px;
	font-weight: 800;
}

.top-story-side {
	display: grid;
	gap: 18px;
}

.top-story-small a {
	position: relative;
	display: block;
	min-height: 260px;
	color: #ffffff;
	background: #222;
}

.top-story-small img,
.story-placeholder {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.story-placeholder {
	background: linear-gradient(135deg, #2f3640, #111827);
}

.top-story-small a::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(0,0,0,.78), rgba(0,0,0,.1));
}

.top-story-small div {
	position: absolute;
	z-index: 1;
	inset: auto 0 0;
	padding: 22px;
}

.top-story-small .story-kicker {
	color: rgba(255,255,255,.86);
	text-shadow: 0 1px 2px rgba(0,0,0,.35);
}

.top-story-small h2 {
	margin: 0;
	font-size: clamp(22px, 2.2vw, 32px);
	line-height: 1.08;
	letter-spacing: 0;
	text-shadow: 0 1px 2px rgba(0,0,0,.35);
}

.top-story-small:nth-child(n+3) {
	display: none;
}

.lead-story {
	position: relative;
	overflow: hidden;
	border-radius: 8px;
	background: #2b2b2b;
}

.lead-story a,
.lead-story img,
.lead-story > a > span {
	display: block;
	width: 100%;
	aspect-ratio: 16 / 7;
}

.lead-story > a > span,
.post-card-image span {
	background: linear-gradient(135deg, #434343, #151515);
}

.lead-story img {
	object-fit: cover;
}

.lead-overlay {
	position: absolute;
	inset: auto 0 0;
	padding: 34px;
	color: #ffffff;
	background: linear-gradient(to top, rgba(0,0,0,.74), transparent);
}

.lead-overlay span,
.live-label,
.article-kicker {
	display: inline-flex;
	align-items: center;
	width: max-content;
	border-radius: 3px;
	padding: 3px 7px;
	background: var(--portal-accent);
	color: #ffffff;
	font-size: 11px;
	font-weight: 900;
	text-transform: uppercase;
}

.lead-overlay h1 {
	max-width: 720px;
	margin: 12px 0 8px;
	font-size: clamp(28px, 4vw, 44px);
	line-height: 1.05;
	letter-spacing: 0;
}

.lead-overlay p {
	max-width: 640px;
	margin: 0;
	font-size: 15px;
}

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

.news-list {
	display: grid;
	gap: 0;
}

.post-card {
	display: grid;
	grid-template-columns: 340px minmax(0, 1fr);
	gap: 18px;
	padding: 26px 0;
	border-bottom: 1px solid var(--portal-line);
}

.post-card-image {
	overflow: hidden;
	border-radius: 8px;
	background: #e5e5e5;
}

.post-card-image img,
.post-card-image span {
	width: 100%;
	aspect-ratio: 16 / 9;
	object-fit: cover;
}

.post-card h2 {
	margin: 8px 0 9px;
	color: var(--portal-accent);
	font-size: 25px;
	line-height: 1.08;
	letter-spacing: 0;
}

.post-card p {
	margin: 0 0 12px;
	color: #5b5b5b;
	font-size: 15px;
}

.post-meta,
.byline {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	color: var(--portal-muted);
	font-size: 12px;
}

.byline strong {
	color: var(--portal-accent);
	font-weight: 800;
}

.video-section {
	margin-top: 38px;
	margin-bottom: 38px;
	border-top: 1px solid var(--portal-line);
	border-bottom: 1px solid var(--portal-line);
	padding: 38px 0;
}

.video-section-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	margin-bottom: 24px;
}

.video-section h2 {
	margin: 0;
	color: #2e2e2e;
	font-size: 24px;
	font-weight: 700;
	line-height: 1.1;
	letter-spacing: 0;
}

.video-arrows {
	display: flex;
	gap: 16px;
	color: #1f1f1f;
	font-size: 32px;
	line-height: 1;
}

.video-scroller {
	display: grid;
	grid-auto-columns: minmax(160px, 190px);
	grid-auto-flow: column;
	gap: 14px;
	overflow-x: auto;
	padding-bottom: 8px;
	scroll-snap-type: x proximity;
}

.video-card {
	position: relative;
	overflow: hidden;
	display: flex;
	align-items: flex-end;
	width: 190px;
	min-height: 0;
	aspect-ratio: 9 / 16;
	padding: 0;
	border: 0;
	border-radius: 8px;
	background: #202020;
	color: #ffffff;
	cursor: pointer;
	scroll-snap-align: start;
}

.video-thumb,
.video-card::after {
	position: absolute;
	inset: 0;
}

.video-thumb {
	background: linear-gradient(135deg, #333, #111);
	background-position: center;
	background-size: cover;
	transition: transform .22s ease;
}

.video-card::after {
	content: "";
	background: linear-gradient(to top, rgba(0,0,0,.86), rgba(0,0,0,.12) 62%, rgba(0,0,0,.05));
}

.video-card:hover .video-thumb {
	transform: scale(1.04);
}

.video-card.is-playing {
	display: block;
	background: #000;
}

.video-card.is-playing::after,
.video-card.is-playing .video-thumb,
.video-card.is-playing .video-duration,
.video-card.is-playing .video-play,
.video-card.is-playing strong {
	display: none;
}

.video-card iframe {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	border: 0;
}

.video-duration {
	position: absolute;
	z-index: 1;
	top: 14px;
	left: 14px;
	border-radius: 4px;
	padding: 5px 8px;
	background: rgba(0,0,0,.66);
	font-size: 13px;
	font-weight: 800;
}

.video-play {
	position: absolute;
	z-index: 1;
	inset: 50% auto auto 50%;
	width: 0;
	height: 0;
	border-top: 16px solid transparent;
	border-bottom: 16px solid transparent;
	border-left: 24px solid #ffffff;
	filter: drop-shadow(0 2px 4px rgba(0,0,0,.45));
	transform: translate(-38%, -50%);
}

.video-card strong {
	position: relative;
	z-index: 1;
	display: block;
	padding: 0 14px 18px;
	font-size: 13px;
	line-height: 1.15;
	text-shadow: 0 1px 2px rgba(0,0,0,.5);
}

.home-more-actions {
	padding: 28px 0 0;
}

.show-more-button {
	width: 100%;
	border: 0;
	cursor: pointer;
	display: grid;
	place-items: center;
	min-height: 58px;
	border-radius: 8px;
	background: var(--portal-accent);
	color: #ffffff;
	font-size: 15px;
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: 0;
}

.show-more-button.is-loading {
	opacity: .6;
	cursor: wait;
}

.site-sidebar {
	position: sticky;
	top: 18px;
	display: grid;
	gap: 22px;
}

.sidebar-box {
	border: 1px solid var(--portal-line);
	border-radius: 8px;
	background: var(--portal-card);
}

.sidebar-box h2 {
	margin: 0;
	padding: 18px 18px 6px;
	font-size: 15px;
}

.service-card {
	overflow: hidden;
	border-radius: 8px;
	box-shadow: none;
	font-family: Arial, Helvetica, sans-serif;
}

.service-card h2 {
	padding: 18px;
	border-bottom: 1px solid var(--portal-line);
	font-size: 15px;
	font-weight: 800;
	line-height: 1.2;
	letter-spacing: 0;
}

.service-card-body {
	padding: 18px;
}

.service-card-body > strong {
	display: block;
	font-size: 17px;
	font-weight: 800;
	line-height: 1.15;
	letter-spacing: 0;
}

.service-card-body p {
	margin: 9px 0 0;
	color: #555;
	font-size: 14px;
	line-height: 1.4;
}

.service-card-link {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	padding: 16px 18px;
	border-top: 1px solid var(--portal-line);
	color: var(--portal-accent);
	font-size: 14px;
	font-weight: 800;
	line-height: 1.2;
}

.service-card-link span {
	font-size: 24px;
	line-height: 0.7;
}

.weather-summary {
	display: grid;
	grid-template-columns: auto minmax(0, 1fr) auto;
	gap: 10px;
	align-items: center;
	margin-top: 18px;
}

.weather-summary > span {
	font-size: 34px;
	line-height: 1;
}

.weather-summary strong {
	display: block;
	font-size: 20px;
	font-weight: 800;
}

.weather-summary small,
.weather-minmax small {
	color: #7a7a7a;
	font-size: 13px;
}

.weather-minmax {
	display: grid;
	gap: 6px;
	color: #555;
	font-size: 15px;
	white-space: nowrap;
}

.finance-change {
	margin-top: 15px;
	color: #55ad1a;
	font-size: 24px;
	font-weight: 800;
	line-height: 1;
}

.finance-change.is-negative,
.currency-list small {
	color: #d71912;
}

.finance-points {
	font-size: 20px !important;
}

.finance-updated {
	color: #777 !important;
	font-size: 13px !important;
}

.currency-list {
	display: grid;
	gap: 10px;
	margin-top: 22px;
	padding-top: 18px;
	border-top: 1px solid var(--portal-line);
}

.currency-list span {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto auto;
	gap: 10px;
	align-items: center;
}

.currency-list b {
	color: #555;
	font-weight: 400;
}

.currency-list em {
	color: #555;
	font-size: 17px;
	font-style: normal;
}

.currency-list small {
	font-size: 15px;
}

.horoscope-card .service-card-body p {
	font-size: 14px;
	line-height: 1.45;
}

.horoscope-widget {
	min-height: 255px;
	overflow: hidden;
}

.lazy-widget {
	display: grid;
	place-items: center;
	min-height: 240px;
	border: 1px solid var(--portal-line);
	border-radius: 8px;
	background: #fafafa;
	color: var(--portal-muted);
	font-size: 13px;
	font-weight: 800;
	text-align: center;
}

.horoscope-widget > * {
	max-width: 100% !important;
}

.horoscope-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 10px;
	margin-top: 18px;
}

.horoscope-grid a {
	display: flex;
	align-items: center;
	gap: 9px;
	min-height: 42px;
	border: 1px solid var(--portal-line);
	border-radius: 8px;
	padding: 8px 10px;
	color: #333;
	font-size: 14px;
	font-weight: 800;
	line-height: 1.1;
	background: #fafafa;
}

.horoscope-grid a:hover {
	border-color: var(--portal-accent);
	color: var(--portal-accent);
}

.horoscope-grid span {
	display: grid;
	place-items: center;
	width: 24px;
	height: 24px;
	border-radius: 999px;
	background: var(--portal-accent);
	color: #ffffff;
	font-size: 12px;
	flex: 0 0 auto;
}

.tradingview-widget-container {
	position: relative;
	min-height: 260px;
	margin-top: 12px;
	overflow: hidden;
	border: 1px solid var(--portal-line);
	border-radius: 8px;
	background: #ffffff;
}

.tradingview-widget-container__widget {
	min-height: 260px;
}

.finance-widget iframe {
	display: block !important;
	max-width: 100% !important;
}

.finance-widget tv-market-overview {
	display: block;
	width: 100%;
	min-height: 292px;
	margin-bottom: -42px;
}

.finance-widget::after {
	content: "";
	position: absolute;
	z-index: 5;
	right: 0;
	bottom: 0;
	left: 0;
	height: 34px;
	background: #ffffff;
	border-top: 1px solid var(--portal-line);
	pointer-events: auto;
}

.finance-widget .lazy-widget {
	min-height: 260px;
	border: 0;
	background: #ffffff;
}

.finance-widget .tradingview-widget-copyright,
.finance-widget [class*="copyright"],
.finance-widget [class*="branding"],
.finance-widget a[href*="tradingview.com"] {
	display: none !important;
}

.finance-market-list {
	display: grid;
	gap: 10px;
	margin-top: 16px;
}

.finance-market-list a {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	align-items: center;
	gap: 10px;
	min-height: 44px;
	border: 1px solid var(--portal-line);
	border-radius: 8px;
	padding: 10px 12px;
	background: #fafafa;
	color: #292929;
	font-weight: 800;
	line-height: 1.1;
}

.finance-market-list a:hover {
	border-color: var(--portal-accent);
	color: var(--portal-accent);
}

.finance-market-list small {
	color: #777;
	font-size: 11px;
	font-weight: 800;
	white-space: nowrap;
}

.mini-card {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 78px;
	gap: 12px;
	padding: 20px 18px;
	border-top: 1px solid var(--portal-line);
	color: var(--portal-accent);
	font-size: 14px;
	font-weight: 800;
	line-height: 1.18;
}

.mini-card img {
	width: 78px;
	height: 64px;
	border-radius: 6px;
	object-fit: cover;
}

.ranking-card {
	display: grid;
	grid-template-columns: 34px minmax(0, 1fr);
	gap: 12px;
	padding: 16px 18px;
	border-top: 1px solid var(--portal-line);
	color: #343434;
	font-size: 14px;
	font-weight: 800;
	line-height: 1.2;
}

.ranking-card em {
	color: var(--portal-accent);
	font-size: 25px;
	font-style: normal;
	line-height: 1;
}

.archive-header {
	padding: 34px 0 8px;
}

.archive-kicker {
	display: inline-flex;
	margin-bottom: 8px;
	color: var(--portal-accent);
	font-size: 13px;
	font-weight: 900;
	text-transform: uppercase;
}

.archive-description {
	margin-top: 12px;
	color: #5e5e5e;
	font-size: 16px;
}

.category-tabs {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 20px;
	padding-bottom: 8px;
}

.category-tabs a {
	border: 1px solid var(--portal-line);
	border-radius: 999px;
	padding: 8px 12px;
	background: #ffffff;
	color: #4a4a4a;
	font-size: 13px;
	font-weight: 800;
}

.category-tabs a:hover,
.category-tabs a.is-current {
	border-color: var(--portal-accent);
	background: var(--portal-accent);
	color: #ffffff;
}

.archive-header h1,
.article-header h1 {
	margin: 0;
	font-size: clamp(34px, 5vw, 56px);
	line-height: 1.05;
	letter-spacing: 0;
}

.article-header {
	padding-top: 34px;
	padding-bottom: 22px;
}

.article-header p {
	color: #5e5e5e;
	font-size: 18px;
}

.article-kicker {
	margin-bottom: 16px;
}

.article-summary {
	margin-top: 28px;
	border: 1px solid var(--portal-line);
	border-radius: 8px;
	background: #ffffff;
}

.article-summary summary {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 16px 18px;
	font-weight: 900;
	cursor: pointer;
}

.article-summary summary::after {
	content: "+";
	color: var(--portal-accent);
	font-size: 20px;
	line-height: 1;
}

.article-summary[open] summary::after {
	content: "-";
}

.article-summary ul {
	margin: 0;
	padding: 0 22px 18px 38px;
	color: #444;
}

.article-summary li + li {
	margin-top: 8px;
}

.article-video {
	width: min(700px, calc(100% - 32px));
	margin: 0 auto 24px;
}

.article-video iframe {
	width: 100%;
	aspect-ratio: 16 / 9;
	height: auto;
	border: 0;
	border-radius: 8px;
}

.share-row {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 12px;
	margin-top: 28px;
	padding-top: 24px;
	border-top: 1px solid var(--portal-line);
}

.share-row a,
.share-row button {
	display: grid;
	place-items: center;
	width: 100%;
	min-width: 0;
	height: 58px;
	min-height: 58px;
	border: 0;
	border-radius: 10px;
	padding: 0;
	background: #f1f3f5;
	color: #4b5563;
	font-weight: 800;
	text-align: center;
	cursor: pointer;
	transition: background .18s ease, transform .18s ease;
	-webkit-appearance: none;
	appearance: none;
}

.share-row a:hover,
.share-row button:hover {
	background: #e9edf2;
	transform: translateY(-1px);
}

.share-facebook {
	color: #1877f2 !important;
}

.share-whatsapp {
	color: #18c75a !important;
}

.share-facebook svg,
.share-whatsapp svg,
.share-copy svg {
	display: block;
	width: 26px;
	height: 26px;
}

.share-copy.is-copied {
	color: var(--portal-accent);
}

.article-media img {
	width: 100%;
	border-radius: 8px;
}

.article-media figcaption {
	margin-top: 8px;
	color: var(--portal-muted);
	font-size: 12px;
}

.article-content {
	color: #303030;
	font-size: 19px;
	line-height: 1.7;
}

.article-content a {
	color: var(--portal-accent);
	font-weight: 700;
}

.article-content p,
.article-content ul,
.article-content ol,
.article-content blockquote {
	margin: 0 0 24px;
}

.article-content blockquote {
	border-left: 4px solid var(--portal-accent);
	padding-left: 18px;
	color: #444;
	font-size: 22px;
	font-weight: 700;
}

.article-content h2,
.article-content h3 {
	margin: 34px 0 14px;
	color: #202020;
	line-height: 1.15;
	letter-spacing: 0;
}

.article-content h2 {
	font-size: 28px;
}

.article-content h3 {
	font-size: 23px;
}

.article-content ul,
.article-content ol {
	padding-left: 24px;
}

.article-break {
	display: flex;
	align-items: center;
	gap: 12px;
	margin: 34px 0 12px;
	color: var(--portal-muted);
	font-size: 11px;
	font-weight: 900;
	text-align: center;
	text-transform: uppercase;
}

.article-break::before,
.article-break::after {
	content: "";
	flex: 1;
	height: 1px;
	background: var(--portal-line);
}

.inline-related {
	margin: 30px 0;
	border-top: 1px solid var(--portal-line);
	border-bottom: 1px solid var(--portal-line);
	padding: 20px 0;
}

.inline-related h2,
.more-from-category h2 {
	margin: 0 0 14px;
	font-size: 18px;
}

.inline-related ul {
	display: grid;
	gap: 10px;
	margin: 0;
	padding-left: 18px;
	color: var(--portal-accent);
	font-size: 17px;
	font-weight: 800;
	line-height: 1.25;
}

.article-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	align-items: center;
	margin: 30px 0;
	font-size: 14px;
}

.article-tags span {
	font-weight: 900;
}

.article-tags a {
	border: 1px solid var(--portal-line);
	border-radius: 999px;
	padding: 6px 10px;
	background: #ffffff;
	color: var(--portal-accent);
	font-weight: 800;
}

.more-from-category {
	margin-top: 38px;
	border-top: 2px solid var(--portal-accent);
	padding-top: 18px;
}

.more-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 16px;
}

.more-card {
	display: grid;
	gap: 10px;
	color: var(--portal-accent);
	font-size: 16px;
	line-height: 1.18;
}

.more-card img,
.more-card-placeholder {
	width: 100%;
	aspect-ratio: 16 / 9;
	border-radius: 8px;
	object-fit: cover;
	background: linear-gradient(135deg, #e9e9e9, #cfcfcf);
}

.site-footer {
	margin-top: 48px;
	padding: 42px 0 32px;
	background: var(--portal-accent);
	color: #ffffff;
}

.footer-inner {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 48px;
	align-items: end;
}

.footer-brand {
	display: grid;
	gap: 10px;
}

.footer-brand strong,
.footer-brand span {
	font-size: 26px;
	font-weight: 900;
	line-height: 1;
}

.footer-brand .custom-logo-link {
	display: inline-flex;
	width: max-content;
}

.footer-brand img {
	max-height: 46px;
	width: auto;
}

.footer-brand .portal-footer-logo {
	max-width: 260px;
	max-height: 52px;
	object-fit: contain;
}

.footer-menu {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	gap: 10px 0;
	margin: 0;
	padding: 0;
	list-style: none;
}

.footer-menu li + li {
	border-left: 1px solid rgba(255,255,255,.45);
}

.footer-menu a {
	display: block;
	padding: 0 10px;
	color: #ffffff;
	font-size: 14px;
	line-height: 1.1;
}

.footer-links {
	justify-self: end;
	align-self: end;
	max-width: 560px;
}

.footer-inner p {
	margin: 0;
	color: rgba(255,255,255,.76);
	font-size: 13px;
}

.empty-state {
	padding: 48px 0;
}

.error-main {
	min-height: 52vh;
	display: grid;
	place-items: center;
}

.error-shell {
	padding: 72px 0 84px;
	text-align: center;
}

.error-code {
	display: block;
	color: var(--portal-accent);
	font-size: clamp(72px, 14vw, 150px);
	font-weight: 900;
	line-height: .9;
}

.error-shell h1 {
	margin: 22px 0 10px;
	font-size: clamp(30px, 5vw, 52px);
	line-height: 1.05;
}

.error-shell p {
	max-width: 620px;
	margin: 0 auto;
	color: var(--portal-muted);
	font-size: 18px;
}

.error-actions {
	display: flex;
	justify-content: center;
	gap: 12px;
	max-width: 620px;
	margin: 28px auto 36px;
}

.error-actions .show-more-button {
	width: auto;
	min-width: 220px;
	padding: 0 22px;
}

.portal-license-page {
	min-height: 100vh;
	background: var(--portal-bg);
}

.portal-license-gate {
	display: grid;
	place-items: center;
	min-height: 100vh;
	padding: 24px;
}

.portal-license-card {
	width: min(100%, 520px);
	padding: 42px;
	border: 1px solid var(--portal-line);
	border-radius: 12px;
	background: #fff;
	box-shadow: 0 12px 36px rgba(20, 35, 55, .12);
	text-align: center;
}

.portal-license-mark {
	display: block;
	margin-bottom: 24px;
	color: var(--portal-accent);
	font-size: 24px;
	font-weight: 900;
}

.portal-license-card h1 {
	margin: 0 0 10px;
	font-size: 32px;
}

.portal-license-card p {
	margin: 0 0 24px;
	color: var(--portal-muted);
}

.portal-license-card label {
	display: block;
	text-align: left;
}

.portal-license-card label span {
	display: block;
	margin-bottom: 7px;
	font-weight: 800;
}

.portal-license-card input {
	width: 100%;
	border: 1px solid #cfcfcf;
	border-radius: 6px;
	padding: 13px 14px;
	font: inherit;
}

.portal-license-card button {
	width: 100%;
	margin: 16px 0;
	border: 0;
	border-radius: 6px;
	padding: 14px 18px;
	background: var(--portal-accent);
	color: #fff;
	font: inherit;
	font-weight: 800;
	cursor: pointer;
}

.portal-license-card > a {
	color: var(--portal-accent);
	font-weight: 700;
}

.portal-license-error {
	margin-bottom: 16px;
	padding: 10px 12px;
	border-radius: 6px;
	background: #fff1f0;
	color: #b42318;
	font-size: 14px;
}

.nav-links {
	display: flex;
	gap: 10px;
	padding: 28px 0;
}

.nav-links a,
.nav-links span {
	border: 1px solid var(--portal-line);
	border-radius: 6px;
	padding: 8px 12px;
	background: #ffffff;
}

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

@media (max-width: 900px) {
	.brand-inner {
		grid-template-columns: auto minmax(0, 1fr) auto;
		gap: 10px;
		min-height: 64px;
		padding: 8px 0;
	}

	.brand-inner .header-search {
		grid-column: 3;
		display: none;
	}

	.search-toggle {
		display: grid;
	}

	.header-search-panel {
		position: absolute;
		top: 0;
		right: 48px;
		width: min(68vw, 320px);
		opacity: 0;
		pointer-events: none;
		transform: translateX(10px);
		transition: opacity .18s ease, transform .18s ease;
	}

	.header-search.is-open .header-search-panel {
		opacity: 1;
		pointer-events: auto;
		transform: translateX(0);
	}

	.brand-inner .search-form {
		width: 100%;
		height: 44px;
	}

	.brand {
		position: absolute;
		left: 50%;
		top: 50%;
		z-index: 1;
		grid-column: 1 / -1;
		max-width: min(46vw, 240px);
		font-size: clamp(22px, 6vw, 30px);
		justify-self: center;
		text-align: center;
		transform: translate(-50%, -50%);
	}

	.brand .portal-brand-logo,
	.brand .custom-logo {
		max-width: min(44vw, 190px);
		max-height: 42px;
	}

	.section-nav {
		display: none;
	}

	.primary-menu {
		flex-direction: column;
		gap: 0;
		padding: 10px 0;
	}

	.primary-menu a {
		padding: 10px 0;
	}

	.content-layout,
	.article-layout {
		grid-template-columns: 1fr;
	}

	.site-sidebar {
		position: static;
	}

	.post-card {
		grid-template-columns: 1fr;
	}

	.top-stories {
		grid-template-columns: 1fr;
	}

	.top-story-main {
		display: none;
	}

	.top-story-main a {
		min-height: 430px;
		padding: 22px;
	}

	.top-story-main h1 {
		font-size: clamp(30px, 8vw, 42px);
	}

	.top-story-side {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.video-scroller {
		grid-auto-columns: minmax(220px, 54vw);
	}

	.content-layout .site-sidebar {
		display: grid;
	}

	.footer-inner {
		grid-template-columns: 1fr;
		align-items: start;
	}

	.footer-menu {
		justify-content: flex-start;
	}

	.lead-story a,
	.lead-story img,
	.lead-story > a > span {
		aspect-ratio: 16 / 10;
	}

	.lead-overlay {
		padding: 22px;
	}
}

@media (max-width: 560px) {
	.container,
	.container-narrow {
		width: min(100% - 24px, 1120px);
	}

	.network-inner {
		min-height: 38px;
		gap: 12px;
	}

	.network-links {
		font-size: 13px;
	}

	.network-menu {
		gap: 20px;
	}

	.network-services {
		display: none;
	}

	.drawer-head,
	.drawer-pages-list,
	.drawer-category-list {
		padding-left: 28px;
		padding-right: 28px;
	}

	.drawer-section-title {
		margin-left: 28px;
		margin-right: 28px;
	}

	.drawer-pages-list a,
	.drawer-category-list a {
		font-size: 20px;
	}

	.brand {
		font-size: clamp(20px, 7vw, 28px);
	}

	.menu-toggle {
		border: 0;
		border-radius: 0;
		padding: 8px 0;
		background: transparent;
	}

	.menu-toggle i,
	.menu-toggle i::before,
	.menu-toggle i::after {
		width: 22px;
		height: 3px;
	}

	.menu-toggle i::before {
		top: -8px;
	}

	.menu-toggle i::after {
		top: 8px;
	}

	.header-search-panel {
		right: 48px;
		width: calc(100vw - 116px);
	}

	.search-field {
		font-size: 12px;
	}

	.portal-ad {
		margin-top: 18px;
		margin-bottom: 18px;
	}

	.billboard {
		min-height: 0;
	}

	.billboard img {
		width: 100%;
	}

	.top-stories {
		margin-top: 18px;
		gap: 12px;
	}

	.top-story-side {
		grid-template-columns: 1fr;
		gap: 12px;
	}

	.top-story-small a {
		min-height: 250px;
	}

	.top-story-small:nth-child(n+3) {
		display: block;
	}

	.top-story-main a {
		min-height: 380px;
	}

	.video-section {
		margin-top: 28px;
		margin-bottom: 28px;
		padding: 28px 0;
	}

	.video-arrows {
		display: none;
	}

	.video-scroller {
		grid-auto-flow: row;
		grid-auto-columns: initial;
		grid-template-columns: 1fr;
		gap: 14px;
		overflow: visible;
		padding-bottom: 0;
		scroll-snap-type: none;
	}

	.video-card {
		width: 100%;
		min-height: 0;
		aspect-ratio: 16 / 9;
	}

	.video-card strong {
		font-size: 14px;
	}

	.show-more-button {
		min-height: 54px;
	}

	.post-card h2 {
		font-size: 22px;
	}

	.share-row {
		grid-template-columns: repeat(3, 1fr);
		gap: 8px;
	}

	.share-row a,
	.share-row button {
		min-height: 52px;
	}

	.more-grid {
		grid-template-columns: 1fr;
	}
}
