/*
 * DLC Guide — restaurant_category archive redesign.
 * Applies generally to every restaurant category page via
 * body.tax-restaurant_category, which WordPress adds automatically —
 * one template, one stylesheet, all terms, not per-category overrides.
 */

body.tax-restaurant_category .dlc-tax-header {
	margin-bottom: 2rem;
}

body.tax-restaurant_category .dlc-tax-header .dlc-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	font-weight: 600;
	font-size: 0.72rem;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: #d50001;
	margin-bottom: 0.6rem;
}
body.tax-restaurant_category .dlc-tax-header .dlc-eyebrow::before {
	content: "";
	width: 18px;
	height: 2px;
	background: #d50001;
	display: inline-block;
}

body.tax-restaurant_category .dlc-tax-header .dlc-headline {
	font-family: 'Roboto Slab', serif;
	font-weight: 700;
	font-size: clamp(1.8rem, 3.2vw, 2.4rem);
	line-height: 1.15;
	letter-spacing: -0.01em;
	margin: 0;
}

body.tax-restaurant_category .dlc-tax-description {
	color: #666;
	margin-top: 0.6rem;
	max-width: 62ch;
}

/* Restaurant card list — scrolls vertically once a category has more
 * entries than fit comfortably, instead of the page growing very tall. */
body.tax-restaurant_category .dlc-restaurant-list {
	max-height: 78vh;
	overflow-y: auto;
	border: 1px solid #e2e2e2;
	background: #fff;
}

body.tax-restaurant_category .dlc-restaurant-card {
	display: flex;
	align-items: center;
	gap: 1.25rem;
	padding: 1rem 1.25rem;
	border-bottom: 1px solid #e2e2e2;
}
body.tax-restaurant_category .dlc-restaurant-card:last-child {
	border-bottom: none;
}

body.tax-restaurant_category .dlc-restaurant-rank {
	flex: none;
	width: 1.75rem;
	font-family: 'Roboto Slab', serif;
	font-weight: 700;
	color: #999;
	text-align: center;
}

body.tax-restaurant_category .dlc-restaurant-thumb {
	flex: none;
	display: block;
	width: 130px;
	height: 170px;
	border-radius: 4px;
	overflow: hidden;
}
body.tax-restaurant_category .dlc-restaurant-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

body.tax-restaurant_category .dlc-restaurant-info {
	display: flex;
	flex-direction: column;
	gap: 0.3rem;
	min-width: 0;
}
body.tax-restaurant_category .dlc-restaurant-name {
	font-family: 'Roboto Slab', serif;
	font-weight: 700;
	font-size: 1.15rem;
	color: #1c1a17;
	text-decoration: none;
}
body.tax-restaurant_category .dlc-restaurant-name:hover {
	color: #d50001;
}
body.tax-restaurant_category .dlc-restaurant-chef {
	font-size: 0.92rem;
	color: #444;
}
body.tax-restaurant_category .dlc-restaurant-location {
	font-size: 0.85rem;
	color: #666;
	text-transform: uppercase;
	letter-spacing: 0.04em;
}

@media (max-width: 560px) {
	body.tax-restaurant_category .dlc-restaurant-thumb {
		width: 90px;
		height: 120px;
	}
	body.tax-restaurant_category .dlc-restaurant-name {
		font-size: 1rem;
	}
}

/* Sidebar harmonization — same treatment as the single-post redesign,
 * scoped here to taxonomy archive pages instead of body.single-post. */
body.tax-restaurant_category #right-sidebar aside.widget {
	background: #fff;
	border: 1px solid #e2e2e2;
	padding: 1.4rem 1.4rem 1.6rem;
	margin-bottom: 2rem;
}
body.tax-restaurant_category #right-sidebar .wp-block-heading {
	font-family: 'Roboto Slab', serif;
	font-size: 1.05rem;
	margin: 0 0 1rem;
	padding-bottom: 0.75rem;
	border-bottom: 2px solid #d50001;
}
body.tax-restaurant_category #right-sidebar .wp-block-search__input {
	border-color: #ccc;
}
body.tax-restaurant_category #right-sidebar .wp-block-search__input:focus {
	outline: 2px solid #d50001;
	outline-offset: 2px;
	box-shadow: none;
	border-color: #d50001;
}
body.tax-restaurant_category #right-sidebar .wp-block-search__button.btn-primary {
	background-color: #d50001;
	border-color: #d50001;
	color: #fff;
}
body.tax-restaurant_category #right-sidebar .wp-block-search__button.btn-primary:hover,
body.tax-restaurant_category #right-sidebar .wp-block-search__button.btn-primary:focus {
	background-color: #b83210;
	border-color: #b83210;
}
body.tax-restaurant_category #right-sidebar .wp-block-latest-posts__list {
	list-style: none;
	margin: 0;
	padding: 0;
}
body.tax-restaurant_category #right-sidebar .wp-block-latest-posts__list li {
	padding: 0.8rem 0;
	border-bottom: 1px solid #e2e2e2;
}
body.tax-restaurant_category #right-sidebar .wp-block-latest-posts__list li:last-child {
	border-bottom: none;
	padding-bottom: 0;
}
body.tax-restaurant_category #right-sidebar .wp-block-latest-posts__post-title {
	color: #1c1a17;
	text-decoration: none;
	font-size: 0.92rem;
	line-height: 1.4;
}
body.tax-restaurant_category #right-sidebar .wp-block-latest-posts__post-title:hover {
	color: #d50001;
}
body.tax-restaurant_category #right-sidebar .no-comments {
	font-size: 0.9rem;
	color: #666;
	margin: 0;
}
