/*
Theme Name: AI Executive Core
Theme URI: https://aiexecutive.hu/
Author: LN — AI Executive
Author URI: https://aiexecutive.hu/
Description: Parent theme of the AI Executive design system. Owns the shared design tokens (palette slugs, typography slugs, spacing scale), block style variations, and the shared pattern library (primitives and conversion components). Carries only the minimal fallback index template WordPress requires: it is not meant to be activated on its own. Each platform site activates its own child theme (aiexec-kft, theaiexecutive, aiexec-llc) on top of this parent.
Requires at least: 6.7
Tested up to: 6.9
Requires PHP: 7.2
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: aiexec-core
Tags: block-patterns, block-styles, full-site-editing, wide-blocks
*/

/*
 * Shared base rules. Platform look lives in each child theme's stylesheet;
 * only rules that are correct on every platform belong here.
 */

/* Link styles */
a {
	text-decoration-thickness: 1px !important;
	text-underline-offset: .1em;
}

/* Focus styles */
:where(.wp-site-blocks *:focus) {
	outline-width: 2px;
	outline-style: solid;
}

/* Navigation block a11y spacing fixes */
.wp-block-navigation .wp-block-navigation-submenu .wp-block-navigation-item:not(:last-child) {
	margin-bottom: 3px;
}
.wp-block-navigation .wp-block-navigation-item .wp-block-navigation-item__content {
	outline-offset: 4px;
}
.wp-block-navigation .wp-block-navigation-item ul.wp-block-navigation__submenu-container .wp-block-navigation-item__content {
	outline-offset: 0;
}

/* Reduce widows and orphans */
h1, h2, h3, h4, h5, h6, blockquote, caption, figcaption, p {
	text-wrap: pretty;
}

/* More-link as block element */
.more-link {
	display: block;
}

/* Prevent scrollbars on long preformatted lines */
:where(pre) {
	overflow-x: auto;
}
