/**
 * Home hub — noticias + características + sidebar
 */

.home-hub {
	flex: 1 1 auto;
	padding: 18px 0 22px;
}

.page-home-scroll .home-hub .row {
	align-items: stretch;
}

.page-home-scroll .home-hub .home-hub-block,
.page-home-scroll .home-hub .home-hub-side-stack {
	height: 100%;
}

@media (min-width: 992px) {
	.page-home-scroll .home-hub {
		padding: 14px 0 18px;
	}

	.page-home-scroll .home-hub-block-body {
		padding: 12px 14px;
	}

	.page-home-scroll .home-hub-block-head {
		padding: 10px 14px 8px;
		font-size: 0.76rem;
	}

	.page-home-scroll .home-hub-stats {
		gap: 8px;
		margin-bottom: 12px;
	}

	.page-home-scroll .home-hub-stat {
		padding: 10px 8px;
	}

	.page-home-scroll .home-hub-checklist {
		gap: 6px 10px;
		margin-bottom: 12px;
	}

	.page-home-scroll .home-hub-news-featured {
		padding-bottom: 12px;
		margin-bottom: 10px;
	}

	.page-home-scroll .home-hub-news-featured .home-hub-news-thumb {
		flex: 0 0 92px;
		width: 92px;
		height: 92px;
	}

	.page-home-scroll .home-hub-news-item {
		padding: 8px 0;
	}

	.page-home-scroll .home-hub-news-item .home-hub-news-thumb {
		flex: 0 0 64px;
		width: 64px;
		height: 64px;
	}

	.page-home-scroll .home-hub-widget-body {
		padding: 10px 12px;
	}

	.page-home-scroll .home-hub-widget-head {
		padding: 10px 12px;
		font-size: 0.72rem;
	}

	.page-home-scroll .home-hub-widget-btn {
		margin-top: 8px;
		padding: 7px 10px;
	}

	.page-home-scroll .home-hub-side-stack {
		gap: 8px;
	}
}

.home-hub-col {
	min-width: 0;
}

.home-hub-block {
	background: rgba(14, 14, 18, 0.92);
	border: 1px solid rgba(255, 255, 255, 0.07);
	border-radius: 4px;
	height: 100%;
}

.home-hub-block-head {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 14px 16px 12px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.06);
	font-family: "Metropolis-bold", sans-serif;
	font-size: 0.82rem;
	letter-spacing: 1.2px;
	text-transform: uppercase;
	color: #f8f9fa;
}

.home-hub-block-head::before {
	content: "";
	width: 3px;
	height: 16px;
	background: #4A9AD8;
	border-radius: 2px;
	flex-shrink: 0;
}

.home-hub-block-body {
	padding: 16px;
}

/* Noticias */
.home-hub-news-featured {
	display: flex;
	gap: 14px;
	padding-bottom: 16px;
	margin-bottom: 14px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.home-hub-news-thumb {
	flex: 0 0 108px;
	width: 108px;
	height: 108px;
	border-radius: 4px;
	overflow: hidden;
	background: #111;
}

.home-hub-news-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.home-hub-news-meta {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 8px;
	font-size: 0.72rem;
	color: #8b95a5;
	text-transform: uppercase;
}

.home-hub-news-badge {
	display: inline-flex;
	align-items: center;
	padding: 3px 8px;
	border-radius: 999px;
	background: rgba(74, 154, 216, 0.16);
	border: 1px solid rgba(74, 154, 216, 0.45);
	color: #6BB4EA;
	font-weight: 700;
	font-size: 0.68rem;
	letter-spacing: 0.4px;
}

.home-hub-news-title {
	display: block;
	color: #fff;
	font-family: "Metropolis-bold", sans-serif;
	font-size: 0.95rem;
	line-height: 1.35;
	text-decoration: none;
	margin-bottom: 8px;
}

.home-hub-news-title:hover {
	color: #6BB4EA;
}

.home-hub-news-excerpt {
	color: #9aa3b2;
	font-size: 0.82rem;
	line-height: 1.55;
	margin-bottom: 12px;
}

.home-hub-news-more {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 7px 14px;
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: 3px;
	color: #d7dde6;
	font-size: 0.72rem;
	font-weight: 700;
	text-transform: uppercase;
	text-decoration: none;
	transition: border-color 0.2s ease, color 0.2s ease;
}

.home-hub-news-more:hover {
	border-color: rgba(74, 154, 216, 0.55);
	color: #fff;
}

.home-hub-news-item {
	display: flex;
	gap: 12px;
	padding: 12px 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.home-hub-news-item:last-child {
	border-bottom: 0;
	padding-bottom: 0;
}

.home-hub-news-item .home-hub-news-thumb {
	flex: 0 0 72px;
	width: 72px;
	height: 72px;
}

.home-hub-news-item .home-hub-news-title {
	font-size: 0.84rem;
	margin-bottom: 6px;
}

.home-hub-news-item .home-hub-news-excerpt {
	font-size: 0.78rem;
	margin-bottom: 0;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.home-hub-news-empty {
	color: #8b95a5;
	font-size: 0.85rem;
}

/* Características */
.home-hub-stats {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 10px;
	margin-bottom: 16px;
}

.home-hub-stat {
	background: rgba(0, 0, 0, 0.35);
	border: 1px solid rgba(255, 255, 255, 0.06);
	border-radius: 4px;
	padding: 12px 10px;
	text-align: center;
}

.home-hub-stat i {
	display: block;
	color: #d4af37;
	font-size: 1rem;
	margin-bottom: 6px;
}

.home-hub-stat-label {
	display: block;
	color: #8b95a5;
	font-size: 0.65rem;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	margin-bottom: 4px;
}

.home-hub-stat-value {
	display: block;
	color: #fff;
	font-family: "Metropolis-bold", sans-serif;
	font-size: 0.95rem;
}

.home-hub-checklist {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 8px 14px;
	margin-bottom: 16px;
}

.home-hub-check {
	display: flex;
	align-items: flex-start;
	gap: 8px;
	color: #c5ccd6;
	font-size: 0.78rem;
	line-height: 1.35;
}

.home-hub-check i {
	color: #22e865;
	font-size: 0.72rem;
	margin-top: 3px;
	flex-shrink: 0;
}

.home-hub-rates-banner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	padding: 14px 16px;
	border-radius: 4px;
	background:
		linear-gradient(90deg, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.35) 55%, rgba(0, 0, 0, 0.72) 100%),
		url(../img/bg.png) center/cover;
	border: 1px solid rgba(74, 154, 216, 0.22);
}

.home-hub-rates-banner strong {
	display: block;
	color: #fff;
	font-family: "Metropolis-bold", sans-serif;
	font-size: 0.88rem;
	letter-spacing: 0.8px;
	text-transform: uppercase;
}

.home-hub-rates-banner span {
	display: block;
	color: #9aa3b2;
	font-size: 0.74rem;
	margin-top: 2px;
}

.home-hub-rates-link {
	flex-shrink: 0;
	padding: 8px 14px;
	border: 1px solid rgba(74, 154, 216, 0.45);
	border-radius: 3px;
	color: #fff;
	font-size: 0.72rem;
	font-weight: 700;
	text-transform: uppercase;
	text-decoration: none;
	white-space: nowrap;
}

.home-hub-rates-link:hover {
	background: rgba(74, 154, 216, 0.15);
	color: #fff;
}

/* Sidebar widgets */
.home-hub-side-stack {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.home-hub-widget {
	background: rgba(14, 14, 18, 0.92);
	border: 1px solid rgba(255, 255, 255, 0.07);
	border-radius: 4px;
	overflow: hidden;
}

.home-hub-widget-head {
	padding: 12px 14px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.06);
	font-family: "Metropolis-bold", sans-serif;
	font-size: 0.78rem;
	letter-spacing: 1px;
	text-transform: uppercase;
	color: #f8f9fa;
}

.home-hub-widget-body {
	padding: 14px;
}

.home-hub-status-dot {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: #22e865;
	font-family: "Metropolis-bold", sans-serif;
	font-size: 1.05rem;
	text-transform: uppercase;
}

.home-hub-status-dot::before {
	content: "";
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: #22e865;
	box-shadow: 0 0 12px rgba(34, 232, 101, 0.75);
}

.home-hub-status-dot.is-offline {
	color: #ff6b6b;
}

.home-hub-status-dot.is-offline::before {
	background: #ff6b6b;
	box-shadow: 0 0 12px rgba(255, 107, 107, 0.55);
}

.home-hub-status-meta {
	margin-top: 8px;
	color: #4A9AD8;
	font-size: 0.78rem;
}

.home-hub-widget-btn {
	display: block;
	width: 100%;
	margin-top: 12px;
	padding: 9px 12px;
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 3px;
	background: rgba(255, 255, 255, 0.03);
	color: #d7dde6;
	font-size: 0.72rem;
	font-weight: 700;
	text-transform: uppercase;
	text-align: center;
	text-decoration: none;
}

.home-hub-widget-btn:hover {
	border-color: rgba(74, 154, 216, 0.45);
	color: #fff;
}

.home-hub-player-row {
	display: grid;
	grid-template-columns: 24px 1fr auto;
	gap: 8px;
	align-items: center;
	padding: 7px 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.05);
	font-size: 0.8rem;
}

.home-hub-player-row:last-child {
	border-bottom: 0;
}

.home-hub-player-rank {
	color: #8b95a5;
	font-weight: 700;
}

.home-hub-player-name a {
	color: #fff;
	text-decoration: none;
	font-weight: 700;
}

.home-hub-player-name a:hover {
	color: #6BB4EA;
}

.home-hub-player-score {
	color: #4A9AD8;
	font-size: 0.74rem;
	white-space: nowrap;
}

.home-hub-event-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	padding: 8px 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.05);
	font-size: 0.78rem;
}

.home-hub-event-row:last-child {
	border-bottom: 0;
}

.home-hub-event-name {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: #d7dde6;
}

.home-hub-event-name i {
	color: #4A9AD8;
	font-size: 0.72rem;
}

.home-hub-event-time {
	color: #8b95a5;
	font-size: 0.72rem;
	white-space: nowrap;
}

.home-hub-events-loading {
	color: #8b95a5;
	font-size: 0.78rem;
}

@media (max-width: 991.98px) {
	.home-hub {
		padding: 20px 0 28px;
	}

	.home-hub-stats {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.home-hub-checklist {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 575.98px) {
	.home-hub-news-featured {
		flex-direction: column;
	}

	.home-hub-news-featured .home-hub-news-thumb {
		width: 100%;
		height: 160px;
		flex: none;
	}

	.home-hub-rates-banner {
		flex-direction: column;
		align-items: flex-start;
	}
}
