/* Analytical Archive — COA Library (public listing pages) */

.aa-lib {
	padding: 32px 16px 64px;
}
.aa-lib-wrap {
	max-width: 920px;
	margin: 0 auto;
}

/* Breadcrumbs */
.aa-lib-crumbs {
	font-size: 13px;
	color: #6b7280;
	margin-bottom: 20px;
	line-height: 1.6;
}
.aa-lib-crumbs a {
	color: #2563eb;
	text-decoration: none;
}
.aa-lib-crumbs a:hover {
	text-decoration: underline;
}
.aa-lib-crumbs .sep {
	margin: 0 8px;
	color: #cbd5e1;
}
.aa-lib-crumbs [aria-current="page"] {
	color: #111827;
	font-weight: 600;
}

/* Heading block */
.aa-lib-head {
	margin-bottom: 28px;
	padding-bottom: 18px;
	border-bottom: 1px solid #e5e7eb;
}
.aa-lib-head h1 {
	font-size: 26px;
	line-height: 1.25;
	margin: 0 0 4px;
	color: #111827;
}
.aa-lib-sub {
	margin: 0;
	color: #6b7280;
	font-size: 14px;
}
.aa-lib-h2 {
	font-size: 15px;
	text-transform: uppercase;
	letter-spacing: .05em;
	color: #6b7280;
	margin: 32px 0 14px;
}

/* Card grid (products / years / months) */
.aa-lib-grid {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
	gap: 12px;
}
.aa-lib-card {
	margin: 0;
}
.aa-lib-card a {
	display: flex;
	flex-direction: column;
	gap: 4px;
	padding: 16px 18px;
	border: 1px solid #e5e7eb;
	border-radius: 10px;
	background: #fff;
	text-decoration: none;
	transition: border-color .15s, box-shadow .15s, transform .15s;
}
.aa-lib-card a:hover {
	border-color: #2563eb;
	box-shadow: 0 4px 14px rgba(37, 99, 235, .08);
	transform: translateY(-1px);
}
.aa-lib-card-name {
	font-weight: 600;
	color: #111827;
	font-size: 15px;
}
.aa-lib-card-meta {
	font-size: 12px;
	color: #6b7280;
}

/* Flat COA list (month view + all-by-month) */
.aa-lib-month-group {
	margin-bottom: 22px;
}
.aa-lib-month-h {
	font-size: 14px;
	font-weight: 700;
	color: #374151;
	margin: 0 0 8px;
}
.aa-lib-list {
	list-style: none;
	margin: 0;
	padding: 0;
	border: 1px solid #e5e7eb;
	border-radius: 10px;
	overflow: hidden;
	background: #fff;
}
.aa-lib-row + .aa-lib-row {
	border-top: 1px solid #f1f5f9;
}
.aa-lib-row a {
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 12px 16px;
	text-decoration: none;
	color: #111827;
	transition: background .12s;
}
.aa-lib-row a:hover {
	background: #f8fafc;
}
.aa-lib-row-thumb {
	width: 40px;
	height: 40px;
	object-fit: cover;
	border-radius: 6px;
	border: 1px solid #e5e7eb;
	flex: 0 0 auto;
	background: #f9fafb;
}
.aa-lib-row-thumb-fallback {
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 18px;
}
.aa-lib-row-title {
	flex: 1 1 auto;
	font-size: 15px;
	font-weight: 500;
}
.aa-lib-row-go {
	color: #9ca3af;
	font-size: 22px;
	line-height: 1;
	flex: 0 0 auto;
}

.aa-lib-empty {
	color: #6b7280;
	padding: 24px 0;
}
