/* ==========================================================================
   Catalog — Tablature View
   Loaded only on the Catalog (jetpack-portfolio) archive page.
   ========================================================================== */


.tablature-archive {
	--ink-950: #0b0d12;
	--ink-900: #12151c;
	--ink-850: #171b24;
	--ink-800: #1c212b;
	--line: #262c38;
	--parchment: #ece6d8;
	--parchment-dim: #a9a79c;
	--brass: #F9A927;
	--brass-soft: #F9A927;


	background: var(--ink-950);
	color: var(--parchment);
	padding: 2.5rem clamp(1rem, 4vw, 2.5rem) 3rem;
	border-radius: 2px;
}

/* ---- Filter bar ---- */

.tablature-filterbar {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.9rem 1.25rem;
	margin-bottom: 1.75rem;
	padding-bottom: 1.5rem;
	border-bottom: 1px solid var(--line);
}

.tablature-search {
	font-family: 'Inter', sans-serif;
	font-size: 0.95rem;
	background: var(--ink-900);
	border: 1px solid var(--line);
	color: var(--parchment);
	padding: 0.6rem 0.9rem;
	border-radius: 3px;
	min-width: 220px;
	flex: 1 1 220px;
}

.tablature-search::placeholder {
	color: var(--parchment-dim);
}

.tablature-search:focus {
	outline: none;
	border-color: var(--brass);
	box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.18);
}

.tablature-pills {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	flex: 2 1 auto;
}

.tablature-pill {
	font-family: 'Inter', sans-serif;
	font-size: 0.85rem;
	font-weight: 500;
	background: transparent;
	border: 1px solid var(--line);
	color: var(--parchment-dim);
	padding: 0.4rem 0.85rem;
	border-radius: 999px;
	cursor: pointer;
	transition: border-color 0.15s ease, color 0.15s ease, box-shadow 0.15s ease;
	outline:none !important;
	text-shadow:none;
}

.tablature-pill:hover {
	color: var(--parchment);
	border-color: var(--brass-soft);
	background:var(--brass-soft);
	color:#000;
}

.tablature-pill:focus-visible {
	outline: 2px solid var(--brass);
	outline-offset: 2px;
}

.tablature-pill.is-active {
	color: var(--ink-950);
	background: var(--brass-soft);
	border-color: var(--brass-soft);
	box-shadow: 0 0 14px rgba(232, 199, 102, 0.35);
}

.tablature-count {
	font-family: 'Inter', sans-serif;
	font-size: 0.8rem;
	color: var(--parchment-dim);
	margin: 0;
	white-space: nowrap;
}

/* ---- Table ---- */

.tablature-table {
	display: block;
}

.tablature-row.tablature-head {
	display: grid;
	grid-template-columns: 4fr 3fr 1fr 3fr;
	gap: 1.25rem;
	padding: 0 1.25rem 0.85rem;
    font-family: 'DINPro-Bold', sans-serif;
	font-size: 1rem;
	font-weight: 600;
	letter-spacing: 0.02em;
	color: var(--parchment-dim);
	border-bottom: 1px solid var(--line);
}

.tablature-body {
	display: block;
}

a.tablature-row {
	display: grid;
	grid-template-columns: 4fr 3fr 1fr 3fr;
	gap: 1.25rem;
	align-items: center;
	text-decoration: none;
	color: var(--parchment);
	padding: 1.15rem 1.25rem;
	border-bottom: 1px solid var(--line);
	position: relative;
	transition: background-color 0.2s ease, box-shadow 0.2s ease, transform 0.15s ease;
}

a.tablature-row:hover,
a.tablature-row:focus-visible {
	background: var(--ink-850);
	box-shadow: inset 3px 0 0 var(--brass), 0 0 24px rgba(201, 162, 39, 0.14);
}

a.tablature-row:focus-visible {
	outline: none;
}

a.tablature-row.is-igniting {
	background: var(--ink-800);
	box-shadow: inset 3px 0 0 var(--brass-soft), 0 0 36px rgba(232, 199, 102, 0.4);
	transform: translateX(2px);
}

a.tablature-row.is-hidden {
	display: none;
}

.tablature-title {
font-family: 'DINPro-Bold', sans-serif;
	font-size: 1rem;
	font-weight: 500;
	line-height: 1.3;
}

.tablature-ensemble,
.tablature-instrumentation,
.tablature-duration {
	font-family: 'Inter', sans-serif;
	font-size: 1rem;
	color: var(--parchment-dim);
	line-height: 1.4;
}

.tablature-duration {
	
	font-variant-numeric: tabular-nums;
	color: var(--parchment-dim);
}

/* ---- Empty state ---- */

.tablature-empty {
	font-family: 'Inter', sans-serif;
	font-size: 0.95rem;
	color: var(--parchment-dim);
	padding: 2.5rem 1.25rem;
	text-align: center;
}
.tablature-premiere img{
	height:30px;
}


.table-bottom-note {
    padding: 15px;
    background-color: #1c1c1c;
    width: 100%;
    display: inline-block;
    margin: 0;
}
.table-bottom-note p {
    color: var(--parchment);
    margin: 0;
}
.table-bottom-note p span {
    color: #ece6d8;
    font-size: 16px;
}

/* ---- Responsive: stack into cards below tablet width ---- */





@media (max-width: 760px) {
	.tablature-row.tablature-head {
		display: none;
	}

	a.tablature-row {
		grid-template-columns: 1fr;
		gap: 0.35rem;
		padding: 1.1rem 1.1rem;
	}

	.tablature-ensemble::before {
		content: 'Ensemble — ';
		color: var(--parchment-dim);
	}

	.tablature-instrumentation::before {
		content: 'Instrumentation — ';
		color: var(--parchment-dim);
	}

	.tablature-duration {
		text-align: left;
	}

	.tablature-duration::before {
		content: 'Duration — ';
		color: var(--parchment-dim);
	}
}

/* ---- Reduced motion ---- */

@media (prefers-reduced-motion: reduce) {
	a.tablature-row,
	.tablature-pill {
		transition: none;
	}
}