/*
Theme Name: Sezax Card Theme
Theme URI: https://example.com/
Author: ChatGPT
Author URI: https://example.com/
Description: A simple WordPress theme that displays posts in a card-style grid layout.
Version: 1.0
*/

body {
  font-family: sans-serif;
  background: #f8f8f8;
  margin: 0;
  padding: 0;
}

.post-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  padding: 20px;
  max-width: 1100px;
  margin: 0 auto;
}

.post-card {
  background: #fff;
  border: 1px solid #ddd;
  padding: 10px;
  text-align: center;
  transition: box-shadow 0.3s;
}
.post-card:hover {
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.post-card .thumb img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
.post-card .vol {
  color: #0074cc;
  font-weight: bold;
  margin-top: 10px;
}
.post-card .title {
  margin: 8px 0 0;
  font-size: 1.1rem;
}
