.post {
  height: 100%;
  list-style: none;
}

.post a {
  height: 100%;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: var(--text);
  border-radius: 16px;
  border: 1px solid var(--border);
  background: var(--panel);
  box-shadow: 0 10px 26px var(--card-shadow);
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.post a:hover,
.post a:active {
  transform: translateY(-4px);
  box-shadow: 0 16px 30px rgba(29, 37, 24, 0.11);
}

.post img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.post_content {
  padding: 0.95rem;
}

.post h3 {
  margin: 0;
  font-size: 1.3rem;
  color: var(--text);
}

.post p {
  margin: 0.6rem 0 0;
  color: var(--muted);
  line-height: 1.45;
}
