.contenedor .titulo{
  display: grid;
  justify-content: center;
  align-items: center;
  padding: 6rem 0;
}
.contenedor .titulo h1{
  font-size: 3rem;
  font-weight: 700;
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  margin: 0;
  padding: 0;
}

.post {
  padding: 3rem;
  display: grid;
  grid-template-columns: 2fr 3fr;
  align-items: center;
  gap: 2rem;
}
.post .imagen img{
  width: 100%;
  height: 100%; 
}
.post .contenido .titulo_post {
  font-size: 1.9rem;
  font-weight: 700;
  line-height: 1.4;
  color: #000;
  text-align: left;
  text-transform: capitalize;
  margin-bottom: 0.5rem;
}
.post .contenido .descripcion_post{
  font-size: 1.3rem;
  font-weight: 400;
  line-height: 1.5;
  color: #000;
  text-align: left;
  text-transform: capitalize;
  margin-bottom: 1rem;
  max-height: 140px;
  overflow: hidden;
}
.post .contenido .categorias_post{
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1rem;
}
.post .contenido .categorias_post .categoria_post{
  text-align: center;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  transition: all 0.5s ease;
  background-color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 5px;
}
.post .contenido .categorias_post .categoria_post:hover{
  color: #fff;
}

.post .contenido .info_post{
  display: flex;
  align-items: center;
  gap: 1rem;
}
.post .contenido .info_post .separador{
  font-size: 1rem;
}
.post .contenido .info_post .fecha_post{
  font-size: 1rem;
  font-weight: 400;
  color: #000;
  text-align: left;
  text-transform: uppercase;
}

.post .contenido .info_post .autor_post{
  font-size: 0.9rem;
  font-weight: 400;
  color: #3f3f3f;
  text-align: left;
  text-transform: uppercase;
}
