/* ==========================================================================
   Strefa Hub — huby lig + dolny pasek nawigacji
   ========================================================================== */

:root {
	--sh-accent: #f5871f;
	--sh-ink: #14171c;
	--sh-ink-soft: #5c6470;
	--sh-surface: #ffffff;
	--sh-surface-2: #f4f5f7;
	--sh-line: #e6e8ec;
	--sh-radius: 14px;
	--sh-shadow: 0 1px 2px rgba(16, 20, 28, 0.06), 0 6px 18px rgba(16, 20, 28, 0.06);
	--sh-nav-h: 64px;
}

/* ---------- Hub ---------- */

.sh-hub {
	margin: 0 auto 28px;
	max-width: 1080px;
	font-family: inherit;
	color: var(--sh-ink);
}

.sh-hub *,
.sh-bottom-nav *,
.sh-sheet * {
	box-sizing: border-box;
}

.sh-hub-head {
	padding: 4px 2px 14px;
}

.sh-hub-kicker {
	margin: 0 0 2px;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--sh-accent);
}

.sh-hub-title {
	margin: 0 0 6px;
	font-size: clamp(22px, 4.5vw, 30px);
	line-height: 1.15;
	font-weight: 800;
	color: var(--sh-ink);
}

.sh-hub-intro {
	margin: 0;
	max-width: 62ch;
	font-size: 15px;
	line-height: 1.55;
	color: var(--sh-ink-soft);
}

.sh-sec-title {
	margin: 22px 2px 10px;
	font-size: 15px;
	font-weight: 800;
	letter-spacing: 0.02em;
	text-transform: uppercase;
	color: var(--sh-ink);
}

/* ---------- Pasek wyników ---------- */

.sh-scores {
	margin: 6px 0 4px;
}

.sh-scores-track {
	display: flex;
	gap: 10px;
	overflow-x: auto;
	padding: 4px 2px 10px;
	scroll-snap-type: x mandatory;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: none;
}

.sh-scores-track::-webkit-scrollbar {
	display: none;
}

.sh-game {
	flex: 0 0 auto;
	scroll-snap-align: start;
	min-width: 168px;
	background: var(--sh-surface);
	border: 1px solid var(--sh-line);
	border-radius: var(--sh-radius);
	box-shadow: var(--sh-shadow);
	padding: 10px 12px;
	text-decoration: none;
	color: var(--sh-ink);
}

.sh-game-status {
	display: block;
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--sh-ink-soft);
	margin-bottom: 6px;
}

.sh-game.is-live .sh-game-status {
	color: #d0342c;
}

.sh-game-league {
	display: inline-block;
	margin-right: 6px;
	padding: 1px 6px;
	border-radius: 999px;
	background: color-mix(in srgb, var(--sh-accent) 14%, #ffffff);
	color: var(--sh-accent);
	font-size: 9px;
	font-weight: 800;
	letter-spacing: 0.06em;
	vertical-align: 1px;
}

.sh-game-league {
	display: inline-block;
	margin-right: 6px;
	padding: 1px 6px;
	border-radius: 999px;
	background: rgba(245, 135, 31, 0.13);
	background: color-mix(in srgb, var(--sh-accent) 14%, #ffffff);
	color: var(--sh-accent);
	font-size: 9px;
	font-weight: 800;
	letter-spacing: 0.06em;
	vertical-align: 1px;
}

.sh-game.is-live .sh-game-status::before {
	content: "";
	display: inline-block;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: #d0342c;
	margin-right: 5px;
	vertical-align: 1px;
	animation: sh-pulse 1.4s ease-in-out infinite;
}

@keyframes sh-pulse {
	50% { opacity: 0.35; }
}

.sh-game-row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 12px;
	font-size: 14px;
	line-height: 1.7;
}

.sh-game-team {
	font-weight: 600;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	max-width: 110px;
}

.sh-game-pts {
	font-weight: 800;
	font-variant-numeric: tabular-nums;
}

.sh-game-row.is-winner .sh-game-pts {
	color: var(--sh-accent);
}

/* ---------- Kafelki ---------- */

.sh-tiles {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 10px;
	margin: 8px 0 4px;
}

@media (min-width: 720px) {
	.sh-tiles {
		grid-template-columns: repeat(4, 1fr);
	}
}

.sh-tile {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 14px 12px;
	background: var(--sh-surface);
	border: 1px solid var(--sh-line);
	border-radius: var(--sh-radius);
	box-shadow: var(--sh-shadow);
	text-decoration: none;
	color: var(--sh-ink);
	transition: transform 0.12s ease, border-color 0.12s ease;
}

.sh-tile:hover,
.sh-tile:focus-visible {
	border-color: var(--sh-accent);
	transform: translateY(-1px);
	color: var(--sh-ink);
	text-decoration: none;
}

.sh-tile:focus-visible {
	outline: 2px solid var(--sh-accent);
	outline-offset: 2px;
}

.sh-tile-icon {
	flex: 0 0 auto;
	display: grid;
	place-items: center;
	width: 38px;
	height: 38px;
	border-radius: 11px;
	background: rgba(245, 135, 31, 0.12);
	background: color-mix(in srgb, var(--sh-accent) 12%, #ffffff);
	color: var(--sh-accent);
}

.sh-tile-icon .sh-ic {
	width: 20px;
	height: 20px;
}

.sh-tile-label {
	flex: 1 1 auto;
	font-size: 14px;
	font-weight: 700;
	line-height: 1.25;
}

.sh-tile-arrow {
	color: var(--sh-ink-soft);
	font-size: 18px;
	line-height: 1;
}

/* ---------- Wyróżnione ---------- */

.sh-pin-card {
	display: flex;
	gap: 12px;
	align-items: stretch;
	background: var(--sh-surface);
	border: 1px solid var(--sh-line);
	border-radius: var(--sh-radius);
	box-shadow: var(--sh-shadow);
	overflow: hidden;
	text-decoration: none;
	color: var(--sh-ink);
	margin-bottom: 10px;
}

.sh-pin-img {
	flex: 0 0 38%;
	max-width: 220px;
}

.sh-pin-img img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	margin: 0;
}

.sh-pin-body {
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 4px;
	padding: 12px 14px 12px 2px;
}

.sh-pin-title {
	font-size: 16px;
	font-weight: 800;
	line-height: 1.3;
}

/* ---------- Najnowsze ---------- */

.sh-latest-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 10px;
}

@media (min-width: 640px) {
	.sh-latest-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 960px) {
	.sh-latest-grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

.sh-card {
	display: flex;
	gap: 10px;
	align-items: center;
	background: var(--sh-surface);
	border: 1px solid var(--sh-line);
	border-radius: var(--sh-radius);
	box-shadow: var(--sh-shadow);
	overflow: hidden;
	text-decoration: none;
	color: var(--sh-ink);
}

.sh-card:hover,
.sh-card:focus-visible {
	border-color: var(--sh-accent);
	color: var(--sh-ink);
	text-decoration: none;
}

.sh-card-img {
	flex: 0 0 108px;
	align-self: stretch;
}

.sh-card-img img {
	display: block;
	width: 100%;
	height: 100%;
	min-height: 78px;
	object-fit: cover;
	margin: 0;
}

.sh-card-body {
	padding: 10px 12px 10px 0;
	display: flex;
	flex-direction: column;
	gap: 3px;
}

.sh-card-meta {
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--sh-ink-soft);
}

.sh-card-title {
	font-size: 14px;
	font-weight: 700;
	line-height: 1.35;
}

.sh-more {
	display: inline-block;
	margin-top: 12px;
	padding: 10px 16px;
	border-radius: 999px;
	background: var(--sh-accent);
	color: #ffffff;
	font-size: 13px;
	font-weight: 800;
	text-decoration: none;
}

.sh-more:hover,
.sh-more:focus-visible {
	color: #ffffff;
	filter: brightness(0.94);
	text-decoration: none;
}

/* ---------- Dolny pasek nawigacji ---------- */

.sh-bottom-nav {
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 9999;
	display: flex;
	align-items: stretch;
	height: calc(var(--sh-nav-h) + env(safe-area-inset-bottom, 0px));
	padding: 0 4px env(safe-area-inset-bottom, 0px);
	background: rgba(255, 255, 255, 0.92);
	-webkit-backdrop-filter: saturate(1.4) blur(14px);
	backdrop-filter: saturate(1.4) blur(14px);
	border-top: 1px solid var(--sh-line);
	transform: translateY(0);
	transition: transform 0.22s ease;
}

.sh-bottom-nav.is-hidden {
	transform: translateY(110%);
}

.sh-nav-item {
	flex: 1 1 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 3px;
	min-width: 0;
	padding: 6px 2px;
	background: none;
	border: 0;
	font: inherit;
	cursor: pointer;
	text-decoration: none;
	color: var(--sh-ink-soft);
	-webkit-tap-highlight-color: transparent;
}

.sh-nav-item .sh-ic {
	width: 23px;
	height: 23px;
}

.sh-nav-label {
	font-size: 10.5px;
	font-weight: 700;
	letter-spacing: 0.02em;
	line-height: 1;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	max-width: 100%;
}

.sh-nav-item.is-active {
	color: var(--sh-accent);
}

.sh-nav-item:hover,
.sh-nav-item:focus-visible {
	color: var(--sh-accent);
	text-decoration: none;
}

.sh-nav-item:focus-visible {
	outline: 2px solid var(--sh-accent);
	outline-offset: -2px;
	border-radius: 10px;
}

/* ---------- Arkusz Menu ---------- */

.sh-sheet-backdrop {
	position: fixed;
	inset: 0;
	z-index: 9998;
	background: rgba(12, 15, 20, 0.45);
	opacity: 0;
	transition: opacity 0.2s ease;
}

.sh-sheet-backdrop.is-open {
	opacity: 1;
}

.sh-sheet {
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 10000;
	max-height: 72vh;
	overflow-y: auto;
	background: var(--sh-surface);
	border-radius: 18px 18px 0 0;
	box-shadow: 0 -12px 40px rgba(12, 15, 20, 0.22);
	padding: 8px 16px calc(18px + env(safe-area-inset-bottom, 0px));
	transform: translateY(105%);
	transition: transform 0.25s ease;
}

.sh-sheet.is-open {
	transform: translateY(0);
}

.sh-sheet-grip {
	width: 40px;
	height: 4px;
	border-radius: 999px;
	background: var(--sh-line);
	margin: 6px auto 10px;
}

.sh-sheet-title {
	margin: 0 0 10px;
	font-size: 13px;
	font-weight: 800;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--sh-ink-soft);
	text-align: center;
}

.sh-sheet-links {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 8px;
}

.sh-sheet-link {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 13px 12px;
	border: 1px solid var(--sh-line);
	border-radius: 12px;
	background: var(--sh-surface-2);
	text-decoration: none;
	color: var(--sh-ink);
	font-size: 14px;
	font-weight: 700;
}

.sh-sheet-link .sh-ic {
	width: 19px;
	height: 19px;
	color: var(--sh-accent);
	flex: 0 0 auto;
}

.sh-sheet-link:hover,
.sh-sheet-link:focus-visible {
	border-color: var(--sh-accent);
	color: var(--sh-ink);
	text-decoration: none;
}

/* ---------- Dostępność / ruch ---------- */

@media (prefers-reduced-motion: reduce) {
	.sh-bottom-nav,
	.sh-sheet,
	.sh-sheet-backdrop,
	.sh-tile {
		transition: none;
	}
	.sh-game.is-live .sh-game-status::before {
		animation: none;
	}
}

/* ---------- Blok newsów PRO: mobile-first, zgodny kolorystycznie ze StrefaBasketu.pl ---------- */

.sh-hub .sh-pro-news {
	position: relative !important;
	margin: 14px 0 20px !important;
	padding: 12px !important;
	border: 1px solid rgba(20, 23, 28, 0.08) !important;
	border-radius: 20px !important;
	background: #ffffff !important;
	box-shadow: 0 10px 30px rgba(16, 20, 28, 0.08) !important;
	color: var(--sh-ink) !important;
	overflow: hidden !important;
	isolation: isolate !important;
}

.sh-hub .sh-pro-news::before {
	content: "" !important;
	position: absolute !important;
	left: 0 !important;
	top: 0 !important;
	bottom: 0 !important;
	width: 4px !important;
	background: var(--sh-accent) !important;
	z-index: 0 !important;
}

.sh-hub .sh-pro-news::after {
	content: "" !important;
	position: absolute !important;
	inset: 0 !important;
	z-index: 0 !important;
	pointer-events: none !important;
	background:
		radial-gradient(circle at 100% 0%, rgba(245, 135, 31, 0.10), transparent 34%),
		linear-gradient(180deg, rgba(245, 135, 31, 0.035), rgba(255,255,255,0) 48%) !important;
}

.sh-hub .sh-pro-news-head {
	position: relative !important;
	z-index: 1 !important;
	display: flex !important;
	align-items: center !important;
	justify-content: space-between !important;
	gap: 12px !important;
	margin: 0 0 11px !important;
}

.sh-hub .sh-pro-title,
.sh-hub h3.sh-pro-title {
	margin: 0 !important;
	padding: 0 0 0 10px !important;
	font-size: clamp(20px, 5vw, 28px) !important;
	line-height: 1.08 !important;
	font-weight: 950 !important;
	letter-spacing: -0.035em !important;
	text-transform: none !important;
	color: #14171c !important;
	font-family: inherit !important;
}

.sh-hub .sh-pro-title::first-letter,
.sh-hub h3.sh-pro-title::first-letter {
	color: var(--sh-accent) !important;
}

.sh-hub .sh-pro-more-top,
.sh-hub .sh-pro-more-bottom {
	text-decoration: none !important;
}

.sh-hub .sh-pro-more-top {
	flex: 0 0 auto !important;
	padding: 8px 11px !important;
	border: 1px solid rgba(245,135,31,0.25) !important;
	border-radius: 999px !important;
	background: rgba(245,135,31,0.08) !important;
	color: var(--sh-accent) !important;
	font-size: 12px !important;
	font-weight: 850 !important;
	line-height: 1 !important;
}

.sh-hub .sh-pro-more-top:hover,
.sh-hub .sh-pro-more-top:focus-visible,
.sh-hub .sh-pro-more-bottom:hover,
.sh-hub .sh-pro-more-bottom:focus-visible {
	color: var(--sh-accent) !important;
	text-decoration: none !important;
	border-color: rgba(245,135,31,0.55) !important;
}

.sh-hub .sh-pro-lead {
	position: relative !important;
	display: block !important;
	min-height: 246px !important;
	border-radius: 18px !important;
	overflow: hidden !important;
	text-decoration: none !important;
	color: #fff !important;
	background: #12161d !important;
	box-shadow: 0 8px 22px rgba(16, 20, 28, 0.14) !important;
}

.sh-hub .sh-pro-lead:hover,
.sh-hub .sh-pro-lead:focus-visible,
.sh-hub .sh-pro-fast-card:hover,
.sh-hub .sh-pro-fast-card:focus-visible,
.sh-hub .sh-pro-row:hover,
.sh-hub .sh-pro-row:focus-visible {
	text-decoration: none !important;
}

.sh-hub .sh-pro-lead:focus-visible,
.sh-hub .sh-pro-fast-card:focus-visible,
.sh-hub .sh-pro-row:focus-visible,
.sh-hub .sh-pro-more-top:focus-visible,
.sh-hub .sh-pro-more-bottom:focus-visible {
	outline: 2px solid var(--sh-accent) !important;
	outline-offset: 3px !important;
}

.sh-hub .sh-pro-lead-img,
.sh-hub .sh-pro-lead-img img {
	position: absolute !important;
	inset: 0 !important;
	display: block !important;
	width: 100% !important;
	height: 100% !important;
}

.sh-hub .sh-pro-lead-img img {
	object-fit: cover !important;
	transform: scale(1.01) !important;
}

.sh-hub .sh-pro-lead-shade {
	position: absolute !important;
	inset: 0 !important;
	background:
		linear-gradient(to top, rgba(7, 9, 13, 0.96) 0%, rgba(7, 9, 13, 0.72) 42%, rgba(7, 9, 13, 0.04) 100%),
		linear-gradient(135deg, rgba(245,135,31,0.48) 0%, transparent 36%) !important;
}

.sh-hub .sh-pro-lead-body {
	position: absolute !important;
	left: 0 !important;
	right: 0 !important;
	bottom: 0 !important;
	display: flex !important;
	flex-direction: column !important;
	gap: 7px !important;
	padding: 18px !important;
}

.sh-hub .sh-pro-meta {
	display: inline-flex !important;
	align-items: center !important;
	gap: 4px !important;
	font-size: 11px !important;
	font-weight: 800 !important;
	letter-spacing: 0.02em !important;
	text-transform: uppercase !important;
	color: rgba(255,255,255,0.80) !important;
}

.sh-hub .sh-pro-meta strong {
	color: #ff8a00 !important;
	font-weight: 950 !important;
}

.sh-hub .sh-pro-lead-title {
	font-size: clamp(22px, 5.8vw, 32px) !important;
	font-weight: 950 !important;
	line-height: 1.05 !important;
	letter-spacing: -0.045em !important;
	color: #ffffff !important;
	text-wrap: balance !important;
}

.sh-hub .sh-pro-lead-excerpt {
	font-size: 13px !important;
	line-height: 1.45 !important;
	color: rgba(255,255,255,0.82) !important;
}

.sh-news-fallback {
	display: grid !important;
	place-items: center !important;
	width: 100% !important;
	height: 100% !important;
	background:
		radial-gradient(circle at 50% 45%, rgba(245,135,31,0.22), transparent 32%),
		linear-gradient(145deg, #222833, #11161e) !important;
	color: var(--sh-accent) !important;
}

.sh-news-fallback .sh-ic {
	width: 58px !important;
	height: 58px !important;
	opacity: 0.88 !important;
}

.sh-hub .sh-pro-fast {
	position: relative !important;
	z-index: 1 !important;
	display: grid !important;
	grid-template-columns: 1fr !important;
	gap: 9px !important;
	margin-top: 10px !important;
}

.sh-hub .sh-pro-fast-card {
	display: grid !important;
	grid-template-columns: 92px minmax(0, 1fr) !important;
	gap: 10px !important;
	align-items: stretch !important;
	min-height: 84px !important;
	padding: 7px !important;
	border: 1px solid rgba(20, 23, 28, 0.10) !important;
	border-radius: 16px !important;
	background: #ffffff !important;
	box-shadow: 0 5px 18px rgba(16, 20, 28, 0.07) !important;
	text-decoration: none !important;
	color: var(--sh-ink) !important;
}

.sh-hub .sh-pro-fast-img {
	display: block !important;
	border-radius: 12px !important;
	overflow: hidden !important;
	background: #f2f3f5 !important;
}

.sh-hub .sh-pro-fast-img img {
	display: block !important;
	width: 100% !important;
	height: 100% !important;
	min-height: 74px !important;
	object-fit: cover !important;
}

.sh-hub .sh-pro-fast-body {
	display: flex !important;
	flex-direction: column !important;
	justify-content: center !important;
	gap: 5px !important;
	min-width: 0 !important;
	padding-right: 4px !important;
}

.sh-hub .sh-pro-fast-card .sh-pro-meta {
	color: #7a828d !important;
}

.sh-hub .sh-pro-fast-title {
	font-size: 14px !important;
	font-weight: 900 !important;
	line-height: 1.24 !important;
	letter-spacing: -0.02em !important;
	color: #14171c !important;
	display: -webkit-box !important;
	-webkit-line-clamp: 2 !important;
	-webkit-box-orient: vertical !important;
	overflow: hidden !important;
}

.sh-hub .sh-pro-list {
	position: relative !important;
	z-index: 1 !important;
	margin-top: 10px !important;
	border-radius: 16px !important;
	overflow: hidden !important;
	border: 1px solid rgba(20, 23, 28, 0.09) !important;
	background: #ffffff !important;
}

.sh-hub .sh-pro-row {
	display: flex !important;
	align-items: center !important;
	gap: 10px !important;
	padding: 12px 10px !important;
	border-bottom: 1px solid rgba(20, 23, 28, 0.08) !important;
	text-decoration: none !important;
	color: var(--sh-ink) !important;
	background: #ffffff !important;
}

.sh-hub .sh-pro-row:last-child {
	border-bottom: 0 !important;
}

.sh-hub .sh-pro-row-dot {
	flex: 0 0 auto !important;
	width: 7px !important;
	height: 7px !important;
	border-radius: 999px !important;
	background: var(--sh-accent) !important;
	box-shadow: 0 0 12px rgba(245,135,31,0.45) !important;
}

.sh-hub .sh-pro-row-body {
	min-width: 0 !important;
	flex: 1 1 auto !important;
	display: flex !important;
	flex-direction: column !important;
	gap: 3px !important;
}

.sh-hub .sh-pro-row-title {
	font-size: 14px !important;
	font-weight: 850 !important;
	line-height: 1.26 !important;
	color: #14171c !important;
	display: -webkit-box !important;
	-webkit-line-clamp: 2 !important;
	-webkit-box-orient: vertical !important;
	overflow: hidden !important;
}

.sh-hub .sh-pro-row-meta {
	font-size: 11px !important;
	font-weight: 700 !important;
	color: #7a828d !important;
}

.sh-hub .sh-pro-row-arrow {
	flex: 0 0 auto !important;
	font-size: 24px !important;
	line-height: 1 !important;
	color: rgba(20, 23, 28, 0.35) !important;
}

.sh-hub .sh-pro-more-bottom {
	position: relative !important;
	z-index: 1 !important;
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	margin-top: 12px !important;
	padding: 13px 14px !important;
	border: 1px solid rgba(245,135,31,0.20) !important;
	border-radius: 999px !important;
	background: var(--sh-accent) !important;
	color: #ffffff !important;
	font-size: 13px !important;
	font-weight: 950 !important;
	text-transform: uppercase !important;
	letter-spacing: 0.04em !important;
	box-shadow: 0 10px 24px rgba(245,135,31,0.20) !important;
}

.sh-hub .sh-pro-more-bottom:hover,
.sh-hub .sh-pro-more-bottom:focus-visible {
	color: #ffffff !important;
	filter: brightness(0.98) !important;
}

@media (max-width: 520px) {
	.sh-hub {
		padding-left: max(10px, env(safe-area-inset-left, 0px));
		padding-right: max(10px, env(safe-area-inset-right, 0px));
	}

	.sh-hub-head {
		padding-top: 2px;
		padding-bottom: 10px;
	}

	.sh-tiles {
		gap: 8px;
		margin-top: 8px;
	}

	.sh-tile {
		min-height: 58px;
		padding: 11px 9px;
		border-radius: 13px;
	}

	.sh-tile-icon {
		width: 34px;
		height: 34px;
		border-radius: 10px;
	}

	.sh-tile-label {
		font-size: 12.5px;
	}

	.sh-hub .sh-pro-news {
		margin-top: 12px !important;
		padding: 11px !important;
		border-radius: 18px !important;
	}

	.sh-hub .sh-pro-news-head {
		margin-bottom: 10px !important;
	}

	.sh-hub .sh-pro-title,
	.sh-hub h3.sh-pro-title {
		font-size: 21px !important;
		line-height: 1.08 !important;
		padding-left: 8px !important;
	}

	.sh-hub .sh-pro-lead {
		min-height: 282px !important;
		border-radius: 16px !important;
	}

	.sh-hub .sh-pro-lead-body {
		padding: 16px !important;
	}

	.sh-hub .sh-pro-lead-title {
		font-size: 27px !important;
	}

	.sh-hub .sh-pro-lead-excerpt {
		display: none !important;
	}

	.sh-hub .sh-pro-more-top {
		display: none !important;
	}

	.sh-hub .sh-pro-fast {
		display: flex !important;
		overflow-x: auto !important;
		scroll-snap-type: x mandatory !important;
		-webkit-overflow-scrolling: touch !important;
		padding: 1px 1px 4px !important;
		scrollbar-width: none !important;
	}

	.sh-hub .sh-pro-fast::-webkit-scrollbar {
		display: none !important;
	}

	.sh-hub .sh-pro-fast-card {
		flex: 0 0 86% !important;
		scroll-snap-align: start !important;
	}
}

@media (min-width: 720px) {
	.sh-hub .sh-pro-news {
		padding: 16px !important;
	}

	.sh-hub .sh-pro-news-head {
		margin-bottom: 14px !important;
	}

	.sh-hub .sh-pro-news {
		display: grid !important;
		grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.85fr) !important;
		gap: 12px !important;
	}

	.sh-hub .sh-pro-news-head,
	.sh-hub .sh-pro-more-bottom {
		grid-column: 1 / -1 !important;
	}

	.sh-hub .sh-pro-lead {
		min-height: 390px !important;
	}

	.sh-hub .sh-pro-fast {
		margin-top: 0 !important;
	}

	.sh-hub .sh-pro-list {
		grid-column: 1 / -1 !important;
	}
}

@media (min-width: 1020px) {
	.sh-hub .sh-pro-news {
		grid-template-columns: minmax(0, 1.45fr) minmax(320px, 0.75fr) !important;
	}

	.sh-hub .sh-pro-list {
		display: grid !important;
		grid-template-columns: repeat(2, 1fr) !important;
	}

	.sh-hub .sh-pro-row:nth-child(odd) {
		border-right: 1px solid rgba(20,23,28,0.08) !important;
	}

	.sh-hub .sh-pro-row:nth-last-child(2) {
		border-bottom: 0 !important;
	}
}
