.ant-container {
	background: var(--ant-bg);
	color: var(--ant-text);
	border: 1px solid var(--ant-border);
	padding: 24px;
}

.ant-breadcrumb {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 12px;
	color: #6b7280; /* gray-500 */
	margin-bottom: 16px;
	border-bottom: 1px solid var(--ant-border);
	padding-bottom: 8px;
	overflow-x: auto;
	white-space: nowrap;
}
.ant-breadcrumb a.ant-breadcrumb-link {
	color: #6b7280;
	text-decoration: none;
	transition: color .15s ease-in-out;
}
.ant-breadcrumb a.ant-breadcrumb-link:hover {
	color: var(--ant-accent);
}
.ant-breadcrumb .ant-breadcrumb-current {
	color: #374151; /* gray-700 */
	font-weight: 500;
}
.ant-breadcrumb .ant-breadcrumb-sep {
	color: #d1d5db; /* gray-300 */
}

.ant-nav {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 8px;
}

.ant-link {
	flex: 1 1 33.333%;
	display: flex;
	flex-direction: column;
	text-decoration: none;
}
.ant-link.ant-link-back {
	align-items: flex-start;
	text-align: left;
	padding-right: 8px;
}
.ant-link.ant-link-next {
	align-items: flex-end;
	text-align: right;
	padding-left: 8px;
}
.ant-link-empty {
	visibility: hidden;
}
.ant-kicker {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 12px;
	font-weight: 700;
	color: #9ca3af; /* gray-400 */
	transition: color .15s ease-in-out;
}
.ant-link:hover .ant-kicker {
	color: var(--ant-accent);
}
.ant-angle {
	font-size: 14px;
}
.ant-title {
	margin-top: 4px;
	font-size: 14px;
	font-weight: 500;
	color: #374151; /* gray-700 */
	opacity: .6;
	transform: translateY(2px);
	transition: opacity .2s ease, transform .2s ease;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}
.ant-link:hover .ant-title {
	opacity: 1;
	transform: translateY(0);
}

.ant-list {
	width: 48px;
	height: 48px;
	border-radius: 9999px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	text-decoration: none;
	transition: background-color .15s ease-in-out;
}
.ant-list:hover {
	background: #f9fafb; /* gray-50 */
}
.ant-list .ant-dot {
	width: 6px;
	height: 6px;
	border-radius: 9999px;
	background: #d1d5db; /* gray-300 */
	transition: background-color .15s ease-in-out;
}
.ant-list:hover .ant-dot {
	background: #6b7280; /* gray-500 */
}

@media (max-width: 480px) {
	.ant-container {
		padding: 16px;
	}
	.ant-list {
		width: 44px;
		height: 44px;
	}
}


