/*
Theme Name: Patients First Arkansas
Theme URI: https://patientsfirstarkansas.com
Author: Osloop.dev
Author URI: https://Osloop.dev
Description: Custom WordPress theme for Patients First PAC, built with wordpress blocks and templates and integrated with SCF for dynamic content management.
Version: 1.0.0
License: GPL v2 or later
Text Domain: pfa-theme
*/

/* Design system tokens: typography & colors */
:root {
    --font-sans: "Segoe UI", system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;
    --font-serif: Georgia, "Times New Roman", Times, serif;

    --text-xs: 12px;
    --text-sm: 14px;
    --text-base: 16px;
    --text-lg: 18px;
    --text-xl: 20px;
    --text-2xl: 24px;
    --text-3xl: 30px;
    --text-4xl: 36px;
    --text-5xl: 48px;
    --text-hero: 40px;

    --leading-tight: 1.2;
    --leading-normal: 1.4;
    --leading-relaxed: 1.7;

    --color-text: #111827;
    --color-text-muted: #6b7280;
}

body {
    font-family: var(--font-sans);
    font-size: var(--text-base);
    line-height: var(--leading-relaxed);
    color: var(--color-text);
}

/* WordPress Core Alignment */
.alignleft {
    float: left;
    margin-right: 20px;
}

.alignright {
    float: right;
    margin-left: 20px;
}

.aligncenter {
    display: block;
    margin: 0 auto;
}

.wp-caption {
    max-width: 100%;
}