/* Estilos del carrusel */

.swiper {
  width: 100%;
  height: auto;
}

.swiper-slide {
  width: 300px;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-sizing: border-box;
}

.swiper-slide img {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
}

.info-post {
  padding: 10px;
  box-sizing: border-box;
}

.titulo-destaques-home {
  font-size: 1.5em;
  margin: 0 0 10px 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.info-post p {
  font-size: 1em;
  margin: 0 0 10px 0;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  white-space: normal;
}
