/*
Theme Name: Codex Tailwind Theme
Theme URI: https://example.com/themes/codex-tailwind
Author: Codex
Author URI: https://example.com
Description: Minimal WordPress starter theme that loads Tailwind CSS and renders posts with a simple layout.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: codex-tailwind
*/

/* Tweaks that sit on top of Tailwind defaults */
body {
    font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background-color: #f7fafc;
}

.codex-container {
    max-width: 56rem;
    margin: 0 auto;
    padding: 2rem 1rem;
}

.codex-post + .codex-post {
    margin-top: 2rem;
}

.codex-post-content p {
    margin-bottom: 1rem;
}

.codex-post-content a {
    color: #0284c7;
    text-decoration: underline;
}
