/*
Theme Name: Energy Calculator
Theme URI: http://localhost/wordpress
Description: Energy Independence Calculator - Solar & Battery Sizing
Version: 1.0
Author: Your Name
Author URI: http://localhost/wordpress
License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: energy-calculator
Domain Path: /languages

This theme powers the Energy Independence Calculator with React.
*/

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700&family=Space+Grotesk:wght@400;500;600;700&display=swap');

html {
  margin: 0;
  padding: 0;
}
body {
  margin: 0;
  padding: 0;
  background: #f7faf7;
  font-family: 'DM Sans', 'Space Grotesk', Arial, sans-serif;
  color: #1a2e22;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1rem;
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}
.card {
  background: #fff;
  border-radius: 1rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s;
}
.card:hover {
  box-shadow: 0 4px 16px rgba(34,87,62,0.10);
}
.card img {
  width: 100%;
  border-radius: 0.75rem;
  margin-bottom: 1rem;
  max-height: 220px;
  object-fit: cover;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Space Grotesk', 'DM Sans', Arial, sans-serif;
  color: #1a2e22;
}
a {
  color: #22573e;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}
.post-content {
  font-size: 1.15rem;
  line-height: 1.7;
  color: #222;
}
