/**
 * Hot games — tabs nav + ranked card overrides (Phase E2).
 * Loaded only on /game-hot/ via the [tgg_hot_games] shortcode handler.
 */

.tgg-hot-tabs {
	display: flex;
	flex-wrap: wrap;
	gap: 4px;
	margin: 16px 0 24px;
	border-bottom: 2px solid #e2e4e7;
}

.tgg-hot-tab {
	display: inline-block;
	padding: 10px 20px;
	color: #50575e;
	text-decoration: none;
	font-weight: 500;
	border-bottom: 3px solid transparent;
	margin-bottom: -2px;
	transition: color 0.15s ease, border-color 0.15s ease;
}

.tgg-hot-tab:hover,
.tgg-hot-tab:focus {
	color: #2271b1;
	outline: none;
}

.tgg-hot-tab.is-active {
	color: #ff5722;
	border-bottom-color: #ff5722;
	font-weight: 600;
}

/* Ranked card variant. */
.tgg-hot-card {
	position: relative;
}

.tgg-hot-rank {
	position: absolute;
	top: 8px;
	left: 8px;
	background: rgba( 0, 0, 0, 0.72 );
	color: #fff;
	font-weight: 700;
	padding: 2px 8px;
	border-radius: 4px;
	font-size: 12px;
	z-index: 3;
	letter-spacing: 0.3px;
}

/* Rank chiếm top-left; đẩy MỚI sang top-right để không đè lên #1. */
.tgg-hot-card .tgg-card-thumb .tgg-badge-new {
	left: auto;
	right: 8px;
}

.tgg-view-count {
	display: block;
	font-size: 12px;
	color: #50575e;
	padding: 0 12px 10px;
}

@media ( max-width: 480px ) {
	.tgg-hot-tabs {
		gap: 0;
	}
	.tgg-hot-tab {
		flex: 1 1 0;
		text-align: center;
		padding: 10px 8px;
		font-size: 13px;
	}
	.tgg-hot-rank {
		font-size: 11px;
		padding: 2px 6px;
	}
}
