.slide-container {
	display: flex;
	flex-direction: column;
}

.sitemap-link-card {
	transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
	border: 1px solid #f3f4f6;
	text-decoration: none;
}

.sitemap-link-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
	border-color: #e5e7eb;
	background-color: #ffffff;
}

.sitemap-link-card:hover .icon-box {
	background-color: #000;
	color: #fff;
}

.sitemap-link-card:hover .arrow-icon {
	transform: translateX(4px);
	opacity: 1;
	color: #2563eb;
}

.category-header {
	position: relative;
	padding-bottom: 0.75rem;
	margin-bottom: 1.5rem;
}

.category-header::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 40px;
	height: 2px;
	background-color: #000;
}

body.sitemap .sitemap-main,
body.page-template-page-sitemap-php .sitemap-main {
	min-height: calc(100vh - 5rem);
}

@media (max-width: 1200px) {
	body.sitemap .sitemap-grid,
	body.page-template-page-sitemap-php .sitemap-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 760px) {
	body.sitemap .sitemap-main,
	body.page-template-page-sitemap-php .sitemap-main {
		padding: 6rem 1.25rem 3rem;
	}

	body.sitemap .sitemap-grid,
	body.page-template-page-sitemap-php .sitemap-grid {
		grid-template-columns: 1fr;
		gap: 2rem;
	}
}
