/**
 * Learn-sidebar polish — minimum rules to bring the core/search and
 * core/categories blocks into brand alignment (CLAUDE.md rule 15: 4px
 * radius on inputs). Without this, TT5's inline search stylesheet
 * forces a 3.125rem pill on the search input, and the categories
 * `<select>` defaults to its intrinsic width instead of stretching to
 * the column. Enqueue is conditional on Learn surfaces only
 * (is_home / is_singular('post') / is_category), so this never
 * ships sitewide.
 */

.ncom-learn-sidebar .wp-block-categories-dropdown select {
	width: 100%;
	border-radius: var(--wp--custom--radius--default);
	padding: var(--wp--preset--spacing--30);
	font-family: inherit;
	font-size: inherit;
}

.ncom-learn-sidebar .wp-block-search__inside-wrapper,
.ncom-learn-sidebar .wp-block-search__input,
.ncom-learn-sidebar .wp-block-search .wp-element-button,
.ncom-learn-sidebar .wp-block-search .wp-block-button__link {
	border-radius: var(--wp--custom--radius--default);
}
