/* ===== Post card (index & all-posts) ===== */

.post {
  display: flex;
  height: 100%;
}

.post a {
  display: flex;
  align-items: center;
  gap: 1rem;

  width: 100%;
  padding: 1.1rem 1.2rem;

  text-decoration: none;
  color: #111827;
  background-color: #FFFFFF;
  border-radius: 14px;

  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.08);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.post a:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.14);
}

/* ===== Image ===== */

.post img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

/* ===== Texte ===== */

.post-content {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.post h3 {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.3;
  color: #111827;
}

.post p {
  margin: 0;
  font-size: 0.85rem;
  line-height: 1.4;
  color: #6B7280;
}

/* ===== Meta (date / author si présent) ===== */

.post time {
  margin-top: 0.25rem;
  font-size: 0.75rem;
  color: #9CA3AF;
}

/* ===== Mobile ===== */

@media (max-width: 640px) {
  .post a {
    padding: 0.95rem 1rem;
  }

  .post img {
    width: 52px;
    height: 52px;
  }

  .post h3 {
    font-size: 0.95rem;
  }

  .post p {
    font-size: 0.8rem;
  }
}