/* ============================================================
   Woo Category PDF Downloads – Frontend Styles
   ============================================================ */

.wc-category-pdf-downloads {
	margin: 1.5rem 0;
}

.wc-category-pdf-group {
	margin-bottom: 1.5rem;
}

/* Heading --------------------------------------------------- */
.wc-category-pdf-heading {
	font-size: 1.25rem;
	margin: 0 0 0.75rem;
	padding-bottom: 0.35rem;
	border-bottom: 2px solid #e0e0e0;
}

/* Grid list – up to 3 columns, shrinks responsively --------- */
.wc-category-pdf-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat( auto-fill, minmax( 180px, 1fr ) );
	/* auto-fill + minmax: 3 columns when space allows,
	   2 on mid-width, 1 on narrow – max columns capped below */
	max-width: calc( 3 * 180px + 2 * 1rem ); /* never stretch beyond 3 columns */
	gap: 0.6rem 1rem;
}

/* Each download link ---------------------------------------- */
.wc-category-pdf-list li {
	margin: 0;
	padding: 0;
}

.wc-category-pdf-list a {
	display: flex;
	align-items: center;
	gap: 0.4rem;
	padding: 0.5rem 0.75rem;
	border: 1px solid #ddd;
	border-radius: 4px;
	background: #fafafa;
	color: inherit;
	text-decoration: none;
	font-size: 0.9rem;
	line-height: 1.3;
	transition: background 0.15s, border-color 0.15s;
	word-break: break-word;
}

.wc-category-pdf-list a:hover {
	background: #f0f4ff;
	border-color: #2271b1;
	color: #2271b1;
}

/* PDF icon -------------------------------------------------- */
.wc-category-pdf-icon {
	flex-shrink: 0;
	font-size: 1.1rem;
	line-height: 1;
	color: #c0392b;
}
