/**
 * Tier List — base table styles (front end).
 */

.tier-list-wrap {
	margin: 1.25rem 0;
	font-size: 15px;
	line-height: 1.45;
}

.tier-list-table {
	width: 100%;
	border-collapse: collapse;
	background: #fff;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
	border-radius: 6px;
	overflow: hidden;
}

.tier-list-table thead th {
	text-align: left;
	padding: 0.65rem 0.85rem;
	font-size: 0.8rem;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	background: #1d2327;
	color: #fff;
}

.tier-list-table tbody td {
	padding: 0.55rem 0.85rem;
	border-bottom: 1px solid #e8e8e8;
	vertical-align: middle;
}

.tier-list-table tbody tr:last-child td {
	border-bottom: none;
}

.tier-list-table tbody tr:hover td {
	background: #fafafa;
}

.tier-list-img {
	display: block;
	width: 56px;
	height: 56px;
	object-fit: cover;
	border-radius: 6px;
}

.tier-list-empty {
	padding: 1rem !important;
	text-align: center;
	color: #666;
	font-style: italic;
}

/* Grouped layout */
.tier-list-block {
	margin-bottom: 1.5rem;
}

.tier-list-block__heading {
	margin: 0 0 0.5rem;
	font-size: 1.15rem;
	font-weight: 700;
	letter-spacing: 0.02em;
}

.tier-list-block .tier-list-table thead th {
	border-radius: 0;
}
