/* Gas Station Radio — Archive Ledger styles */

.gsr-archive {
	margin: 24px 0;
	font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

/* Recently played list */
.gsr-archive__played {
	list-style: none;
	padding: 0;
	margin: 0;
	background: rgba(15, 26, 50, 0.72);
	-webkit-backdrop-filter: blur(8px);
	backdrop-filter: blur(8px);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 12px;
	overflow: hidden;
}

.gsr-archive__row {
	display: grid;
	grid-template-columns: 110px 1fr;
	gap: 14px;
	padding: 12px 18px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.05);
	align-items: center;
	color: #f7f8fa;
	transition: background 0.15s;
}

.gsr-archive__row:last-child { border-bottom: 0; }
.gsr-archive__row:hover { background: rgba(251, 191, 36, 0.05); }

.gsr-archive__row-time {
	color: #fbbf24;
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.4px;
	text-transform: uppercase;
}

.gsr-archive__row-meta {
	display: flex;
	flex-direction: column;
	min-width: 0;
}

.gsr-archive__row-title {
	font-weight: 700;
	font-size: 0.96rem;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.gsr-archive__row-artist {
	color: #94a8bf;
	font-size: 0.85rem;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

/* Shows grid */
.gsr-archive__shows-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
	gap: 18px;
}

.gsr-archive__show {
	background: rgba(15, 26, 50, 0.72);
	-webkit-backdrop-filter: blur(8px);
	backdrop-filter: blur(8px);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 14px;
	overflow: hidden;
	transition: border-color 0.15s, transform 0.15s;
	display: flex;
	flex-direction: column;
}

.gsr-archive__show:hover {
	border-color: rgba(251, 191, 36, 0.4);
	transform: translateY(-2px);
}

.gsr-archive__thumb img {
	display: block;
	width: 100%;
	height: 160px;
	object-fit: cover;
}

.gsr-archive__show-body {
	padding: 16px 20px;
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.gsr-archive__when {
	color: #fbbf24;
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.4px;
	text-transform: uppercase;
}

.gsr-archive__title {
	margin: 0;
	font-size: 1.05rem;
	font-weight: 800;
}

.gsr-archive__title a {
	color: #f7f8fa;
	text-decoration: none;
}

.gsr-archive__title a:hover { color: #fbbf24; }

.gsr-archive__excerpt {
	color: #94a8bf;
	font-size: 0.88rem;
	line-height: 1.5;
}

.gsr-archive__empty {
	color: #94a8bf;
	font-size: 0.9rem;
	padding: 24px;
	text-align: center;
	background: rgba(255, 255, 255, 0.02);
	border-radius: 10px;
}

@media (max-width: 540px) {
	.gsr-archive__row { grid-template-columns: 80px 1fr; padding: 10px 14px; gap: 10px; }
	.gsr-archive__row-time { font-size: 0.7rem; }
	.gsr-archive__thumb img { height: 130px; }
}
