.hsr-section {
	--hsr-title-color: #1a2456;
	--hsr-accent: #f5a623;
	margin: 2rem 0;
}
.hsr-title {
	position: relative;
	text-align: center;
	font-size: 24px;
	font-weight: 700;
	color: var(--hsr-title-color);
	margin: 0 0 24px;
	padding-bottom: 12px;
}
.hsr-title::after {
	content: '';
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	bottom: 0;
	width: 56px;
	height: 3px;
	border-radius: 2px;
	background: var(--hsr-accent);
}
.hsr-grid {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 12px;
}
.hsr-card {
	display: block;
	background: #fff;
	border: 1px solid #e5e5e5;
	border-radius: 8px;
	padding: 14px 16px;
	text-decoration: none;
	color: inherit;
	transition: border-color 0.15s ease;
}
.hsr-card:hover {
	border-color: #bbb;
}
.hsr-name {
	display: block;
	font-size: 14px;
	font-weight: 600;
	overflow-wrap: break-word;
}
.hsr-count {
	display: block;
	font-size: 12px;
	color: #888;
	margin-top: 4px;
}
.hsr-empty {
	color: #888;
	font-size: 13px;
}

/* Tablet */
@media (max-width: 900px) {
	.hsr-grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

/* Mobile */
@media (max-width: 600px) {
	.hsr-title {
		font-size: 20px;
	}
	.hsr-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 8px;
	}
	.hsr-card {
		padding: 12px;
	}
	.hsr-name {
		font-size: 13px;
	}
	.hsr-count {
		font-size: 11px;
	}
}

/* Small mobile */
@media (max-width: 360px) {
	.hsr-grid {
		grid-template-columns: 1fr;
	}
}
