/* Post Principal */
.gradiente{
  height: 50vh;
  width: 100%;
}
.post_principal {
  width: 95%;
  margin: 0 auto;
}
.post_principal .imagen_principal{
  width: 100%;
  height: auto;
  margin: -40vh auto 0 auto;
  overflow: hidden;
}
@media (max-width: 1024px) {
  .gradiente{
    height: 35vh;
  }
  .post_principal .imagen_principal{
    margin: -30vh auto 0 auto;
  }
}
@media (max-width: 430px) {
  .gradiente{
    height: 25vh;
  }
  .post_principal .imagen_principal{
    margin: -20vh auto 0 auto;
  }
}
.post_principal .imagen_principal img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s ease;
}
.post_principal:hover .imagen_principal img{
  transform: scale(1.1);
}

.post_principal .info{
  width: 95%;
  margin: 3rem auto
}

.post_principal .info .categoria a{
  font-size: 1.8rem;
  letter-spacing: 2px;
  font-weight: 700;
  text-transform: uppercase;
  transition: all 0.5s ease;
}
@media (max-width: 430px) {
  .post_principal .info .categoria a{
    font-size: 1.5rem;
  }
}
.post_principal .info .titulo {
  margin-top: 1rem;
  font-size: 3rem;
  font-weight: 700;
  color: #000;
  letter-spacing: 1px;
}
@media (max-width: 430px) {
  .post_principal .info .titulo {
    font-size: 2.5rem;
  }
}
@media (max-width: 375px) {
  .post_principal .info .titulo {
    font-size: 2rem;
  }
}
@media (max-width: 280px) {
  .post_principal .info .titulo {
    font-size: 1.5rem;
  }
}
.post_principal .info .titulo a{
  color: #000;
  transition: all 0.5s ease;
}
.post_principal .info .autor{
  display: flex;
  align-items: center;
  margin-top: 1rem;
  gap: 1rem;
}
.post_principal .info .autor .nombre,
.post_principal .info .autor .fecha{
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1rem;
  color: #000;
  font-weight: 200;
}
/* Categorias trending */
.categorias_trending{
  width: 100%;
  height: 100%;
  margin: 4rem auto;
  padding: 2rem 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5rem;
}
@media (max-width: 1024px) {
  .categorias_trending{
    flex-direction: column;
    gap: 2rem;
  }
}
.categorias_trending .titulo{
  font-size: 1.2rem;
  font-weight: 700;
  color: #000;
  text-transform: uppercase;
}
.categorias_trending .categorias{
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.categorias_trending .categorias a{
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  transition: all 0.5s ease;
  background-color: #fff;
  padding: 0.8rem 1.8rem;
  border-radius: 5px;
}
.categorias_trending .categorias a:hover{
  color: #fff;
}

/* Post */
.post{
  width: 100%;
  height: 650px;
  overflow: hidden;
}
.post_corto{
  height: 480px !important;
}
.post .imagen img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  box-shadow: 0 0 10px rgba(0,0,0,0.5);
}
.post .info{
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 0.5rem;
}
.post .info .categoria{
  margin-top: 0.5rem;
}
.post .info .categoria a {
  font-size: 1.2rem;
  font-weight: 700;
  text-transform: capitalize;  
  transition: all 0.5s ease;
}
.post .titulo {
  margin-top: 1rem;
}
.post .titulo a{
  font-size: 1.5rem;
  font-weight: 700;
  color: #000;
  text-transform: capitalize;
  transition: all 0.5s ease;
}
.post .descripcion{
  margin-top: 1rem;
  font-size: 1rem;
}
.post .descripcion a{
  color: #000;
  font-weight: 300;
  line-height: 1.5;
}

/* 2do y 3er Post */

.dos_tres{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin: 4rem 1.5rem;
}
@media (max-width: 540px) {
  .dos_tres{
    grid-template-columns: 1fr;
  }
}

/* Demas entradas */
.demas_entradas{
  width: 100%;
  height: 100%;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  padding-bottom: 4rem;
}
@media (max-width: 712px) {
  .demas_entradas{
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 540px) {
  .demas_entradas{
    grid-template-columns: repeat(1, 1fr);
  }
}

/* Banner Final */
.banner_final{
  width: 95%;
  height: 100%;
  margin: 0 auto;
  margin-bottom: 1rem;
  padding: 2rem;
  display: grid;
  grid-template-columns: 4fr 2fr;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  border-radius: 5px;
}
@media (max-width: 540px) {
  .banner_final{
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}
@media (max-width: 540px) {
  .banner_final{
    text-align: center;
  }
}
.banner_final .info .titulo{
  font-size: 2rem;
  font-weight: 700;
  text-transform: capitalize;
  transition: all 0.5s ease;
}
.banner_final .info .slogan{
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 1px;
  color: #000;
  text-transform: capitalize;
  transition: all 0.5s ease;
  margin: 2rem 0 4rem 0;
}
.banner_final .info .boton{
  padding: 1rem 3rem;
  background-color: #fff;
  border-radius: 5px;
  transition: all 0.5s ease;
}
@media (max-width: 540px) {
  .banner_final .info .boton{
    padding: 1rem;
  }
}
@media (max-width: 393px) {
  .banner_final .info .boton{
    padding: 1rem auto;
  }
}
.banner_final .info .boton:hover{
  color: #fff;
}
@media (max-width: 393px) {
  .banner_final .info a{
    font-size: 0.8rem;
  }
}
@media (max-width: 280px) {
  .banner_final .info a{
    font-size: 0.6rem;
  }
}
.banner_final .imagen img{
  width: 100%;
  height: 100%;
  max-height: 300px;
  object-fit: cover;
  border-radius: 5px;
}