/* ──────────────────────────────────────────────────────────────────────────
   LELAM custom front-end tweaks (child theme).
   Loaded via functions.php after the parent stylesheet.
   ────────────────────────────────────────────────────────────────────────── */

/* Shop / Collection product loop — product names use Inter (per Figma). */
.wp-block-query .wp-block-post-title,
.wp-block-query .wp-block-post-title a {
	font-family: "Inter", sans-serif;
	font-weight: 400;
}

/* "Contact to Order" link under each product (core/read-more) */
.wp-block-query .wp-block-read-more {
	display: inline-block;
	font-family: "Inter", sans-serif;
	text-decoration: none;
}
.wp-block-query .wp-block-read-more:hover {
	text-decoration: none;
	opacity: 0.65;
}

/* ── Gallery index (archive /gallery/) — collection / documentary cards ──── */
.lelam-gallery-index .lelam-gallery-card__text {
	align-items: center;
	text-align: center;
}

/* Card title = collection / document name: Inter UPPERCASE 14 */
.lelam-gallery-card__title,
.lelam-gallery-card__title a {
	font-family: "Inter", sans-serif;
	font-weight: 400;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	line-height: 1.35;
	text-decoration: none;
}
.lelam-gallery-card__title a:hover {
	text-decoration: none;
	opacity: 0.7;
}

/* "See more" link, 14px, understated, no underline */
.lelam-gallery-card__more {
	font-family: "Inter", sans-serif;
	text-decoration: none;
	opacity: 0.7;
}
.lelam-gallery-card__more:hover {
	opacity: 1;
	text-decoration: none;
}

/* Pagination numbers: small, no underline, current = black, others = grey. */
.wp-block-query-pagination-numbers .page-numbers {
	color: #9a9a9a;
	text-decoration: none;
}
.wp-block-query-pagination-numbers .page-numbers:hover {
	color: #111;
	text-decoration: none;
}
.wp-block-query-pagination-numbers .page-numbers.current {
	color: #111;
}
