
main {
	padding: 50px 0;
}

.grid {
	display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.post-title {
  font-size: 24px;
  font-weight: bold;
  color: #333;
  margin-bottom: 10px;
}

.publish-date {
  font-size: 14px;
  color: #999;
  display: block;
  margin-bottom: 15px;
}

.post-excerpt {
  font-size: 16px;
  line-height: 1.6;
  color: #444;
  margin-bottom: 20px;
  height: 100px;
  overflow-y: scroll;
}

.read-more {
  font-size: 16px;
  text-decoration: none;
  position: absolute;
  bottom: 2rem;
  left: 2rem;
}

