/* Skulltag — glossary hover cards + instant search + release tracker (0.7.1). */

/* glossary hover card */
.gl-card {
	position: absolute;
	z-index: 90;
	max-width: 340px;
	padding: 12px 14px;
	border: 1px solid var(--line);
	background: var(--panel);
	box-shadow: 0 8px 24px oklch(0 0 0 / .45);
}
.gl-term {
	font-family: var(--font-m);
	font-size: 11px;
	letter-spacing: .06em;
	text-transform: uppercase;
	color: var(--rust-hi);
	margin: 0 0 5px;
}
.gl-def { font-size: 13.5px; color: var(--ink-2); margin: 0; line-height: 1.5; }
.gl-more {
	display: inline-block;
	font-family: var(--font-m);
	font-size: 12px;
	margin-top: 8px;
	color: var(--ink-2);
	border-bottom: 1px solid var(--line);
}
.gl-more:hover { color: var(--rust-hi); border-color: var(--rust); }

/* instant search dropdown */
form.searchbtn { position: relative; }
.is-results {
	position: absolute;
	top: 100%;
	right: 0;
	z-index: 95;
	min-width: 320px;
	max-width: 420px;
	margin: 6px 0 0;
	padding: 4px;
	list-style: none;
	border: 1px solid var(--line);
	background: var(--panel);
	box-shadow: 0 10px 28px oklch(0 0 0 / .5);
}
.is-results li { margin: 0; }
.is-results a {
	display: block;
	padding: 8px 10px;
	color: var(--ink);
	border: 0;
}
.is-results li.on a, .is-results a:hover { background: oklch(0.22 0.015 54); }
.is-kind {
	font-family: var(--font-m);
	font-size: 10px;
	letter-spacing: .06em;
	text-transform: uppercase;
	color: var(--rust-hi);
	display: inline-block;
	margin-right: 8px;
}
.is-title { font-size: 13.5px; }
.is-desc {
	display: block;
	font-size: 12px;
	color: var(--ink-3);
	margin-top: 2px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.is-none {
	font-family: var(--font-m);
	font-size: 12px;
	color: var(--ink-3);
	padding: 8px 10px;
}

@media (max-width: 720px) {
	.is-results { min-width: 260px; max-width: 86vw; }
	.gl-card { max-width: 84vw; }
}

/* release tracker */
.release-tracker { margin: 10px 0 26px; }
