/************************************************************
 Place your custom CSS styles here
************************************************************/

.blogpost-content td {
  padding: 10px 15px 10px 0;
  vertical-align: top;
}
.header-first {
  padding-top: 5px;
}
div#logo.logo {
  margin-top: 2px;
  margin-bottom: 5px;
}
.app-herobanner-gradient-description {
  font-size: 30px;
}
.app-herobanner-gradient-description-small {
  font-size: 20px;
}
.app-img-small {
  width: 120px !important;
}
.app-md-link {
  font-size: 14px;
}
.app-sm-link {
  font-size: 12px;
}
.app-lg-link {
  font-size: 18px;
}
.postinglist-small .blogpost {
  margin-bottom: 40px;
}
.postinglist-small .blogpost header {
  padding-bottom: 8px;
}
.postinglist-small .blogpost header h2 {
  font-size: 22px;
}
.text-readmore {
  font-size: 12px;
  margin-left: 26px;
}

/* Styling for Instafeed */

#app-instafeed {
  margin-top: 1rem;
  margin-bottom: 2rem;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  grid-auto-rows: auto;
  grid-gap: 1rem;
}
#app-instafeed li {
  margin: 0;
  padding: 0;
  list-style: none;
  background: url() center center / cover no-repeat;
  position: relative;
}
#app-instafeed li a {
  display: block;
  padding-bottom: 100%;
}
#app-instafeed li.video a:before {
  content: "";
  background: url(https://profilepageimages.usecue.com/img/play.svg) center center / 45% auto no-repeat;
  width: 32px;
  height: 32px;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1;
}
#app-instafeed li.carousel_album a:before {
  content: "";
  background: url(https://profilepageimages.usecue.com/img/carousel.svg) center center / 50% auto no-repeat;
  width: 32px;
  height: 32px;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1;
}
#app-instafeed li:hover a::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: url(https://profilepageimages.usecue.com/img/interact.svg) center center / auto 19px no-repeat;
  z-index: 1;
}
#app-instafeed li a img {
  display: none;
}

/* show only 10 images on mobile */
@media only screen and (max-width: 600px) {
  #app-instafeed li:nth-child(n+10) {
    display: none;
  }
}