.contenedor{
  width: 90%;
  padding: 3rem 2rem;
}
@media (max-width: 1100px) {
  .contenedor{
    width: 95%;
  }
}
@media (max-width: 430px) {
  .contenedor{
    padding: 2rem 1.5rem;
  }
}
.datos_principales .categoria a{
  font-size: 1.8rem;
  text-transform: uppercase;
  font-weight: 600;
  transition: all 0.4s ease;
}
@media (max-width: 430px) {
  .datos_principales .categoria a{
    font-size: 1.3rem;
  }
}
.datos_principales .titulo h1{
  font-size: 2.5rem;
  margin: 1rem 0;
  text-transform: capitalize;
  font-weight: 600;
  transition: all 0.4s ease;
}
@media (max-width: 430px) {
  .datos_principales .titulo h1{
    font-size: 2rem;
  }
}
.datos_principales .info_post{
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}
.datos_principales .info_post .autor,
.datos_principales .info_post .fecha{
  font-size: 1.2rem;
  font-weight: 200;
  color: #000;
}
.datos_principales .info_post .separador{
  font-size: 1.2rem;
  font-weight: 400;
}
@media (max-width: 430px) {
  .datos_principales .info_post .autor,
  .datos_principales .info_post .fecha,
  .datos_principales .info_post .separador{
    font-size: 1rem;
  }
}
.datos_principales .imagen{
  width: 100%;
}
.datos_principales .imagen img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  box-shadow: 0 0 10px rgba(0,0,0,0.5);
}

.cuerpo{
  margin: 2rem 0;
  display: grid;
  grid-template-columns: 4fr 2fr;
  gap: 3rem;
}
@media (max-width: 540px) {
  .cuerpo{
    grid-template-columns: 1fr;
  }
}
.contenido .texto{
  font-size: 1.3rem;
  font-weight: 300;
  line-height: 1.5;
}
.contenido .reacciones{
  margin: 2rem 0;
}
.contenido .reacciones .texto{
  font-size: 1.2rem;
  font-weight: 400;
}
.contenido .reacciones .botones{
  display: flex;
  align-items: center;
}
.contenido .reacciones .botones .apartado_likes{
  display: flex;
  align-items: center;
}
.contenido .reacciones .botones .apartado_likes .numero{
  font-size: 1.2rem;
  font-weight: 400;
  text-align: right;
}
.contenido .reacciones .botones .boton{
  font-size: 1.2rem;
  padding: 1rem;
  font-weight: 400;
  color: #000;
  cursor: pointer;
  transition: all 0.4s ease;
  background-color: transparent;
  border: none;
  transition: all 0.4s ease;
}
.contenido .otras_categorias{
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1rem;
  flex-wrap: wrap;
  margin: 2rem 0;
}
.contenido .otras_categorias .categoria{
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  transition: all 0.5s ease;
  background-color: #fff;
  padding: 0.5rem 1.5rem;
  border-radius: 5px;
}

.extras .todas_categorias_texto{
  font-size: 1.2rem;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.extras .todas_categorias{
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1rem;
  flex-wrap: wrap;
}
.extras .todas_categorias{
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1rem;
  flex-wrap: wrap;
}
.extras .todas_categorias .categoria{
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  transition: all 0.5s ease;
  background-color: #fff;
  padding: 0.5rem 1.5rem;
  border-radius: 5px;
}
.articulos_recientes_texto{
  font-size: 1.2rem;
  font-weight: 600;
  text-transform: uppercase;
  margin: 3rem 0 1rem 0;
}
.post{
  width: 100%;
  height: 480px;
  overflow: hidden;
  margin-bottom: 3rem;
}
.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;
}
