/* Feed */
#feed {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1rem;
  padding: 1rem;
}

.post {
  border: 1px solid #ccc;
  padding: 1rem;
  background-color: #fff;
  border-radius: 8px;
  text-align: center;
}

.post img {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 0.5rem;
}

.post h2 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: var(--colore-primario);
}

.post p {
  margin-bottom: 0.5rem;
}

.post small {
  color: #777;
}