/* NNP Text-to-Speech – garso įrašų archyvo sąrašas */

.nnp-audio-archive {
	--nnp-aa-border: rgba(0, 0, 0, 0.1);

	box-sizing: border-box;
	max-width: 100%;
}

.nnp-audio-archive *,
.nnp-audio-archive *::before,
.nnp-audio-archive *::after {
	box-sizing: inherit;
}

.nnp-aa-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.nnp-aa-item {
	display: grid;
	grid-template-columns: 132px minmax(0, 1fr);
	grid-template-areas:
		"thumb head"
		"thumb player";
	align-items: start;
	column-gap: 18px;
	row-gap: 10px;
	padding: 0 0 20px;
	margin: 0;
	border-bottom: 1px solid var(--nnp-aa-border);
	list-style: none;
}

.nnp-aa-item:last-child {
	border-bottom: 0;
	padding-bottom: 0;
}

/* Miniatiūra */
.nnp-aa-thumb {
	grid-area: thumb;
	display: block;
	width: 132px;
	height: 92px;
	overflow: hidden;
	border-radius: 10px;
	background: rgba(0, 0, 0, 0.05);
	text-decoration: none;
	box-shadow: none;
}

.nnp-aa-thumb img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	margin: 0;
	border-radius: 0;
	transition: transform 0.25s ease;
}

.nnp-aa-thumb:hover img {
	transform: scale(1.04);
}

.nnp-aa-thumb-fallback {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	color: var(--nnp-ap-primary, #c2185b);
	opacity: 0.45;
}

/* Turinys */
.nnp-aa-head {
	grid-area: head;
	min-width: 0;
}

.nnp-aa-player {
	grid-area: player;
	min-width: 0;
}

.nnp-aa-title {
	margin: 0 0 4px;
	font-size: 1.05rem;
	line-height: 1.3;
	font-weight: 700;
}

.nnp-aa-title a {
	color: inherit;
	text-decoration: none;
}

.nnp-aa-title a:hover,
.nnp-aa-title a:focus {
	color: var(--nnp-ap-primary, #c2185b);
	text-decoration: underline;
}

.nnp-aa-date {
	margin: 0;
	font-size: 0.8125rem;
	opacity: 0.6;
}

/* Grotuvas archyvo elemente – be papildomos apatinės paraštės. */
.nnp-aa-player .nnp-audio-player {
	margin: 0;
}

/* Puslapiavimas */
.nnp-aa-pagination {
	margin-top: 28px;
}

.nnp-aa-pagination ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	justify-content: center;
}

.nnp-aa-pagination li {
	margin: 0;
	list-style: none;
}

.nnp-aa-pagination .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 38px;
	height: 38px;
	padding: 0 12px;
	border-radius: 8px;
	border: 1px solid var(--nnp-aa-border);
	text-decoration: none;
	font-size: 0.875rem;
	color: inherit;
}

.nnp-aa-pagination .page-numbers:hover {
	border-color: var(--nnp-ap-primary, #c2185b);
	color: var(--nnp-ap-primary, #c2185b);
}

.nnp-aa-pagination .page-numbers.current {
	background: var(--nnp-ap-primary, #c2185b);
	border-color: var(--nnp-ap-primary, #c2185b);
	color: #fff;
}

.nnp-aa-empty {
	opacity: 0.7;
	font-style: italic;
}

/* Mobilus vaizdas */
@media (max-width: 600px) {
	/* Grotuvas keliauja į atskirą eilutę per visą plotį. */
	.nnp-aa-item {
		grid-template-columns: 84px minmax(0, 1fr);
		grid-template-areas:
			"thumb head"
			"player player";
		column-gap: 12px;
	}

	.nnp-aa-thumb {
		width: 84px;
		height: 62px;
	}

	.nnp-aa-title {
		font-size: 0.95rem;
	}
}
