/* ================= BLOG ================= */
body{
  background:#f5f5f5
}
.page-box{
  max-width:1200px;
  margin:0 auto;
  padding:15px 30px 30px;
}


.card-body h2{
  font-size:28px;
  color:#222;
}

.blog-box{
  max-width:1200px;
}
.card-post img{
  height:250px;object-fit:cover;
}
.card-post{
  transition:.2s;
}
.card-post:hover{
  transform:translateY(-5px);
}
.card-post h5 {
  font-size: 16px !important;
  color: #222 !important;
}



/*    DESCRIPCION   */

.post-description {
  font-size: 16px;   /* cambiá el número */
  color: #6e6e6e;       /* cambiá el color */
  line-height: 1.4;
}

.text-muted.small {   /* mes */
  font-size: 14px !important;
  color: #aaa !important;
}

.post-description div{
  display: flex;
  align-items: center; /* Centrado vertical */
  justify-content: left; /* Centrado horizontal (opcional) */
  height: 10vh;  /* Altura necesaria para ver el centrado */
}
/*    DESCRIPCION FOTO AUTOR  */
.post-description img{
  height:50px;
  width:auto;
  vertical-align:middle;
}
/*    DESCRIPCION NOMBRE AUTOR  */
.post-description span{
  display: flex;
  align-items: top; /* Centrado vertical */
  justify-content: left; /* Centrado horizontal (opcional) */
  margin:0px 0 0 15px; 
  font-size: 14px; 
  line-height:1.1;
}

.post-description b{
  margin-left: 5px; 
  font-size: 14px; 
  font-weight: 600;
  line-height:1.1;
}

/*   CONTENEDOR TITULO */

.tit-cat {
  width: 100%;
  text-align: center;
  padding: 0;
  margin-bottom: 30px;
  background: none;
  /* background-color: #f5f5f5; */
}

.tit-cat h1 {
  font-size: 28px;
  font-weight: 600;
  margin: 30px 0 20px 0;
}

.tit-cat h1 span{
  color: #8f8f8f;
}

.tit-cat a {
    /* background-color: cadetblue; */
  color: #2280be;
  text-decoration: none;
}

.text-notas{
  text-align:center;
  font-size:30px !important;
  font-weight:bold;
  letter-spacing:0.04em;
  margin:0 0 40px 0;
}

.h1 span{
  color: #bcb1b1;
}



@media(max-width:768px){
  .page-box{
    margin:0 auto;
    padding:10px 15px 15px;
  }
  .card-body h2{
    font-size:35px !important;
  }
  .post-description {
    font-size: 25px; 
    line-height:1.3;
  }
  .post-description span {
    font-size: 18px; 
    line-height:1.1;
  }
  .post-description b{
    font-size: 18px; 
    line-height:1.1;
  }
}


