/*
Theme Name: Simple Magazine Grid
Author: Your Name
Version: 1.1
Description: A simple, clean magazine-style WordPress theme with a featured image grid and article headings below.
*/

body {
  font-family: 'Inter', sans-serif;
  margin: 0;
  padding: 0;
  background: #f9f9f9;
  color: #333;
}

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

.container {
  max-width: 1200px;
  margin: auto;
  padding: 20px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

.post {
  background: white;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
  transition: transform 0.2s;
}

.post:hover {
  transform: translateY(-5px);
}

.post img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
}

.post-title {
  padding: 10px 15px;
  font-weight: 600;
  font-size: 1.1em;
}