/*
Theme Name: WPT IntimRF Runtime
Theme URI: https://domainmatrix.rebzik.com/
Author: WPT Team
Description: Runtime WordPress theme for the Domain Matrix wp_template_authoring contract; modelled on intim-* sites.
Version: 1.0.1
Requires at least: 6.4
Requires PHP: 8.0
Text Domain: wpt-intimrf
*/

/* Minimal resets and CSS vars. Main styles live in assets/css/theme.css. */
:root {
	--wpt-color-bg: #ffffff;
	--wpt-color-text: #111111;
	--wpt-color-muted: #6b6b6b;
	--wpt-color-accent: #c1262d;
	--wpt-color-border: #e3e3e3;
	--wpt-font-base: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
	--wpt-radius-card: 8px;
	--wpt-container-max: 1200px;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	-webkit-text-size-adjust: 100%;
}

body {
	margin: 0;
	font-family: var(--wpt-font-base);
	color: var(--wpt-color-text);
	background: var(--wpt-color-bg);
	line-height: 1.45;
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

a {
	color: inherit;
}
