/*
 * Hottabych Interlinking — link rows, product size line, landing breadcrumbs.
 *
 * Deliberately not pill-shaped: everything in the filter panel is a control that
 * changes the current grid, and a chip that navigates away instead has burned the
 * visitor's selection once already (README rule 6). These are underlined text
 * links in a labelled row, which is what they are.
 */

.hil {
	display: block;
	margin: 28px 0 8px;
	padding: 18px 20px;
	border: 1px solid var(--hil-line, #e4e0d8);
	border-radius: 8px;
	background: var(--hil-bg, #fbf8f3);
	font-size: 14px;
	line-height: 1.7;
}

.hil--blog,
.hil--landing {
	margin-top: 34px;
}

.hil-row {
	display: flex;
	flex-wrap: wrap;
	gap: 4px 14px;
	padding: 7px 0;
	border-bottom: 1px solid var(--hil-line-soft, #ece7de);
}

.hil-row:last-child {
	border-bottom: 0;
}

.hil-row__label {
	flex: 0 0 auto;
	min-width: 190px;
	color: var(--hil-muted, #6b6154);
	font-weight: 600;
}

.hil-row__links {
	display: flex;
	flex-wrap: wrap;
	gap: 4px 16px;
	min-width: 0;
}

.hil-row__links a,
.hil-size a {
	color: var(--hil-link, #7a1f2b);
	text-decoration: underline;
	text-underline-offset: 3px;
	text-decoration-thickness: 1px;
}

.hil-row__links a:hover,
.hil-size a:hover {
	color: var(--hil-link-hover, #992238);
}

.hil-size {
	margin: 10px 0 0;
	font-size: 14px;
}

/* Breadcrumbs for the landings whose module removes the theme page heading. */
.hil-crumbs {
	margin: 0 0 18px;
	font-size: 13px;
	color: var(--hil-muted, #6b6154);
}

.hil-crumbs a {
	color: inherit;
	text-decoration: none;
}

.hil-crumbs a:hover {
	text-decoration: underline;
}

.hil-crumbs i {
	margin: 0 8px;
	font-style: normal;
	opacity: 0.55;
}

@media (max-width: 640px) {
	.hil {
		padding: 14px 15px;
	}

	.hil-row {
		display: block;
	}

	.hil-row__label {
		display: block;
		min-width: 0;
		margin-bottom: 2px;
	}
}
