#insta {
  padding: 0 2.5%;
  width: clamp(240px, 100%, 1080px);
  margin: 2em auto;
}

#insta a {
  text-decoration: none;
}

#insta ul {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 560px;
  padding: 1em;
  background-color: #fceed0;
  border-radius: 4px;
  overflow-y: scroll;
}

#insta ul li {
  list-style: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  margin-bottom: 3em;
  height: 360px;
  position: relative;
}

#insta ul li .captionTxt {
  display: block;
  width: 100%;
  height: 100%;
  padding: 16px;
  font-size: 14px;
  line-height: 1.8;
  text-align: left;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background-color: rgba(0, 0, 0, 0.75);
  color: #fff;
  opacity: 0;
}

#insta ul li .like_count {
  font-size: 12px;
  line-height: 2;
  display: block;
  text-align: center;
  position: relative;
}

#insta ul li .like_count::before {
  content: "\02665";
  color: #d4245f;
  font-size: 14px;
  vertical-align: middle;
  padding-right: 0.25em;
}

#insta ul li:hover .captionTxt {
  -webkit-transition: .5s opacity, .25s filter;
  transition: .5s opacity, .25s filter;
  opacity: 1;
}

#insta ul li img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}

.news-es {
  display: block;
}

.news-es h2 {
  text-align: center;
  width: 100%;
  margin-bottom: 16px;
}

@media screen and (min-width: 600px) {
  #insta {
    padding: 0;
  }
  #insta ul {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row wrap;
            flex-flow: row wrap;
    -ms-flex-direction: unset;
        flex-direction: unset;
    padding: 16px 8px;
  }
  #insta ul li {
    width: 32%;
    height: 230px;
  }
}

@media screen and (min-width: 1025px) {
  .infoChildren {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row wrap;
            flex-flow: row wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .infoChildren .infoChild {
    width: 48%;
  }
  .infoChildren .infoChild:last-of-type {
    width: 50%;
  }
  #insta {
    margin: 0 auto;
  }
  #insta ul li {
    width: 48%;
  }
  .news-es .news-box {
    width: 100%;
    margin-bottom: 16px;
  }
}
/*# sourceMappingURL=insta.css.map */