/**
 * MKT Rankings Widget - CSS
 * Estilo enxuto e neutro, herda cores do tema quando possivel.
 */

.mkt-rankings-wrapper {
	width: 100%;
}

.mkt-rankings-title {
	font-size: 1.5rem;
	margin: 0 0 16px;
}

.mkt-rankings-empty {
	color: #666;
	font-style: italic;
}

.mkt-rankings-subnicho-block {
	margin-bottom: 32px;
}

.mkt-rankings-subnicho-head {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 12px;
	margin-bottom: 12px;
	border-bottom: 1px solid #e5e5e5;
	padding-bottom: 6px;
}

.mkt-rankings-subnicho-title {
	font-size: 1.25rem;
	margin: 0;
}

.mkt-rankings-see-all {
	font-size: 0.85rem;
	text-decoration: none;
	color: #2271b1;
	white-space: nowrap;
}

.mkt-rankings-see-all:hover {
	text-decoration: underline;
}

.mkt-rankings-grid {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 16px;
}

@media (max-width: 1024px) {
	.mkt-rankings-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 640px) {
	.mkt-rankings-grid { grid-template-columns: repeat(2, 1fr); }
}

.mkt-rk-card {
	display: flex;
	flex-direction: column;
	background: #fff;
	border: 1px solid #e5e5e5;
	border-radius: 8px;
	overflow: hidden;
	transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.mkt-rk-card:hover {
	box-shadow: 0 4px 12px rgba(0,0,0,0.08);
	transform: translateY(-2px);
}

.mkt-rk-thumb {
	display: block;
	aspect-ratio: 1 / 1;
	background: #f5f5f5;
	overflow: hidden;
}

.mkt-rk-thumb img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	padding: 10px;
	box-sizing: border-box;
}

.mkt-rk-body {
	display: flex;
	flex-direction: column;
	flex: 1;
	padding: 12px;
	gap: 8px;
}

.mkt-rk-cat {
	font-size: 0.7rem;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	color: #666;
	font-weight: 600;
}

.mkt-rk-title {
	font-size: 0.9rem;
	line-height: 1.3;
	margin: 0;
	min-height: 2.4em;
}

.mkt-rk-title a {
	color: inherit;
	text-decoration: none;
}

.mkt-rk-title a:hover {
	text-decoration: underline;
}

.mkt-rk-rating {
	display: flex;
	align-items: center;
	gap: 6px;
}

.mkt-rk-stars {
	color: #f5a623;
	font-size: 0.9rem;
	letter-spacing: 1px;
}

.mkt-rk-star.empty {
	color: #ccc;
}

.mkt-rk-score {
	font-size: 0.8rem;
	color: #666;
	font-weight: 600;
}

.mkt-rk-btn {
	display: block;
	margin-top: auto;
	padding: 8px 12px;
	background: #ff6b00;
	color: #fff;
	text-align: center;
	text-decoration: none;
	border-radius: 4px;
	font-size: 0.85rem;
	font-weight: 600;
	transition: background 0.2s ease;
}

.mkt-rk-btn:hover {
	background: #e05e00;
	color: #fff;
}
