.box-annuncio-wrapper {
  background-color: #7a2423;
}
.box-annuncio h4, p {
  color: #fff;
}

/* Feed */
#feed {
  position: relative;
  display: grid;
  grid-template-columns: 1fr; 
  gap: 1rem;
  margin-top: 1rem;
}

@media screen and (min-width: 900px) {
  #feed {
    grid-template-columns: repeat(4, 1fr); /* desktop: 4 colonne */
  }
}

.post {  
  padding: 1rem;
  background-color: #fff;
  border-radius: 12px;
  text-align: center;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}

.post img {
  height: 180px;
  border-radius: 6px;
  margin-top: 1rem;
  margin-bottom: 0.5rem;
}

.post h2 {
  font-size: 1.2rem;
  line-height: 1.4rem;
}

.post p {
  font-size: 1rem;
  line-height: 1.3rem;
  color: #000000
}

.post small {
  font-size: 0.8rem;
  color: #777;
}

.btn-scopri {
  padding: 0.6rem 1rem;
  background-color: var(--colore-primario);
  color: #fff;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  line-height: 3.5rem;
}

#paginazione button.btn-utility {
  border-radius: 100px;
  padding: 0.1rem 0.5rem;
  }

