body{
  background-color: #fcf7f7;
  background-image: url("/assets/images/quiensoy18/QUIENSOY18.jpg");
  background-repeat: repeat;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.general {
  display: grid;
  grid-template-columns: 70% 30%; /* suman 100% del contenedor */
  grid-template-areas:
    "banner banner"
    "box box"
    "content aside";
  max-width: 1000px;   /* límite del contenedor */
  width: 100%;
  margin: 0 auto;
  gap: 20px;
  padding: 20px;
}



h3{
  background-color: black;
  color: white;
  font-size: 24px;
}

.box{
  grid-area: box;
  background-color: rgb(0, 0, 0);
  color: rgb(237, 237, 237);
  border: 2px dotted red;
  display: grid;
  grid-template-areas: "profile tags";
  width: 100%;
  margin: 0 auto;
  gap: 20px;
  padding: 20px;
}

.profile{
  grid-area: profile;
  background-color: rgb(0, 0, 0);
  border-style: dashed;
  border-width: 1px;
  border-color: red;
}

.tags{
  grid-area: tags;
  background-color: rgb(0, 0, 0);
  border-style: dashed;
  border-width: 1px;
  border-color: red;
}

.tags button{
  background-color: rgba(0, 0, 0, 0);
  border: none;
  color: whitesmoke;
  font-size: 18px;
  font-family: Georgia, 'Times New Roman', Times, serif;
  font-style: italic;
  line-height: 30px;
}

.tags button:hover{
  color: rgb(132, 7, 7);  
  cursor: pointer;
}

.sidebar{
  grid-area: aside;
  background-color: rgb(216, 65, 65);
  color: white;
  border-style: dashed;
  border-width: 1px;
  border-color: red;
  height: 200px;
}

.blog{
  grid-area: content;
  background-color: rgb(0, 0, 0);
  color: white;
  border-style: dashed;
  border-width: 1px;
  border-color: red;
}

.blogTitleSection{
  background: linear-gradient(to top, rgb(146, 38, 38), rgb(99, 14, 14));
  font-size: 30px;
  margin: 0;          /* elimina el espacio externo */
  padding: 0;         /* elimina el espacio interno si lo hubiera */
  width: 100%;        /* ocupa todo el ancho del contenedor */
  box-sizing: border-box; /* asegura que respete el borde si lo hay */
}


article{
  margin: 10px;
  border-bottom: solid 1px;
}