/*
Theme Name: Basic Starter
Theme URI: https://example.com/basic-starter
Author: Your Name
Author URI: https://example.com
Description: Minimal starter theme for WordPress — clean and simple.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: basic-starter
*/

html, body {
  margin: 0;
  padding: 0;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  line-height: 1.5;
  color: #222;
}

a { color: inherit; text-decoration: none; }

.site-header, .site-footer { padding: 1rem; background: #f5f5f5; }
.container { max-width: 960px; margin: 0 auto; padding: 1rem; }
.site-title { font-size: 1.5rem; margin: 0; }
.site-nav { margin-top: .5rem; }
.content { display: grid; grid-template-columns: 1fr 300px; gap: 2rem; }
.article { background: #fff; padding: 1rem; border: 1px solid #eee; }
.widget { background: #fff; padding: .75rem; border: 1px solid #eee; margin-bottom: 1rem; }

@media (max-width: 800px) {
  .content { grid-template-columns: 1fr; }
}
