.blog-cuerpo {
  width: 100%;
}

.titulo-blog {
  width: 100%;
  height: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  font-family: 'IBM Plex Mono', monospace;
  background-color: rgb(17 17 37);
  color: #cbcbcb;
}

.text-titulo h1, .text-titulo h2 {
  max-width: 100%;
  padding-top: 15px;
  font-size: 1rem;
}

.imagen-blog {
  display: flex;
  max-width: 100%;
  justify-content: center;
}

.imagen-blog img {
  width: 100%;
  height: auto;
  max-width: 300px;
  box-sizing: border-box;
}

.text-titulo {
  width: 100%;
  justify-content: left;
  padding: 20px;
  box-sizing: border-box
}

/* POST PRESENCIA EN INSTAGRAM */

.blog-cuerpo {
  width: 100%;
  margin: 0 auto;
  font-family: 'IBM Plex Mono', monospace;
  background-color: #111125;
  color: #cbcbcb;
}

/* Blog Section Styling */
.blog-presencia-en-instagram {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  padding: 20px;
  gap: 10px;
  background-color: #151530;
  color: #cbcbcb;
  border-bottom: 1px solid #333;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.blog-presencia-en-instagram:hover {
  background-color: #202040;
  transform: scale(1);
}

/* Image Styling */
.blog-presencia-en-instagram .imagen-blog {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 200px;
}

.blog-presencia-en-instagram img {
  width: 70%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgb(0 0 0 / 20%);
  transition: transform 0.3s ease;
}

.blog-presencia-en-instagram img:hover {
  transform: scale(1.05);
}

/* Text Styling */
.texto-blog-presencia-en-instagram {
  text-align: center;
  flex: 1;
  max-width: 50%;
  padding: 10px;
}

.texto-blog-presencia-en-instagram a {
  text-decoration: none;
  color: white;
  font-size: 1.2em;
  font-weight: bold;
  line-height: 1.5;
  transition: color 0.3s ease;
}

.texto-blog-presencia-en-instagram a:hover {
  color: gold;
}

.texto-blog-presencia-en-instagram h1 {
  font-size: 1.2em;
  font-weight: bold;
  margin-bottom: 10px;
}

.texto-blog-presencia-en-instagram h3 {
  font-size: 1em;
  font-weight: 400;
  margin-top: 10px;
  line-height: 1.6;
  color: #bfbfbf;
}

/* Responsive Design */

@media screen and (max-width: 768px) {
  .texto-blog-presencia-en-instagram {
    padding: 0;
  }

  .imagen-blog img {
    max-width: 200px;
  }

  .blog-presencia-en-instagram .imagen-blog img {
    width: 60%;
  }

  .texto-blog-presencia-en-instagram a h1 {
    font-size: 0.7em;
  }

  .texto-blog-presencia-en-instagram h3 {
    font-size: 0.6em;
  }
}

@media screen and (max-width: 500px) {
  .blog-presencia-en-instagram .imagen-blog {
    justify-content: left;
  }
  .blog-presencia-en-instagram .imagen-blog img {
    width: 50%;
  }
  .texto-blog-presencia-en-instagram a h1 {
    font-size: 0.6em;
  }

  .texto-blog-presencia-en-instagram h3 {
    font-size: 0.5em;
  }
}
