/* TRANSITIONAL: restores selectors that WordPress auto-emitted in `classic-theme-styles-inline-css` before `theme.json` was added. Each rule below documents the legacy rule it replaces. Remove rules from this file as the corresponding component gets fully restyled in the visual overhaul. When this file becomes empty, delete it and dequeue. */

/*
 * `.wp-block-button__link` — three declarations were lost when WP swapped
 * the legacy `classic-theme-styles-inline-css` block for the
 * theme.json-managed `:root :where(.wp-element-button, .wp-block-button__link)`
 * rule. Restored verbatim:
 *   border-radius: 9999px  → pill shape
 *   box-shadow: none       → flat (overrides any inherited focus shadows)
 *   font-size: 1.125em     → was replaced with `font-size: inherit`
 *
 * Specificity bumped to `:root .wp-block-button__link` so this restoration
 * wins against the WP-managed `:root :where(...)` rule (same (0,0,1,0)
 * specificity, but source order favors WP's late-emitted block). No other
 * change to declared values.
 */
:root .wp-block-button__link {
	border-radius: 9999px;
	box-shadow: none;
	font-size: 1.125em;
}

/*
 * `.wp-block-file__button` — entire rule was dropped from the WP global
 * styles when theme.json took over (no replacement was emitted). Restored
 * verbatim from the legacy `classic-theme-styles-inline-css`.
 */
:root .wp-block-file__button {
	background: #32373c;
	color: #fff;
	text-decoration: none;
}
