/* ---------- Container Layout ---------- */
.home-container {
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 30px;
}

.page-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 40px;
  font-weight: bold;
}

/* ---------- Responsive Grid ---------- */
.grid-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 30px 20px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 20px;
}

/* ---------- Supply Card ---------- */
.post-card {
  background-color: #E5E1DA; /* match inside of Explore Creations */
  border: 2px solid #89A8B2; /* same border color */
  border-radius: 30px;        /* same corner rounding */
  height: 340px;
  padding: 20px;
  padding-left: 20px;
  padding-right: 20px;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;

  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.post-card:hover {
  box-shadow: 0 8px 20px #779BA6;
  transform: translateY(-5px);
}

/* ---------- Text Styling ---------- */
.card-title {
  font-size: 1rem;
  font-weight: bold;
  margin-bottom: 10px;
  color: #28393E;
}

.desc, .meta {
  font-size: 0.85rem;
  color: #444;
  margin-bottom: 6px;
}

.meta strong, .desc strong {
  color: #000;
}
