#index-posts{
}

#index-posts .blue-btn{
  display: block;
  text-align: center;f
  margin: auto;
}

.index-posts-top p{
  font-style: italic;
  color: #0074C8;
  margin-bottom: 0px;
  text-align: center;
  font-family: "Spectral",Times New Roman,serif;
}

.index-posts-top h2{
  text-transform: uppercase;
  text-align: center;
}

.index-posts-container{
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 40px;
  margin: auto;
  width: min(1400px, 100%);
}

.index-posts-container > *{
  background: transparent;
  background-color: transparent;
/*   margin: 20px 0px; */
}

.index-posts-container .index-posts {
  display: block;
  position: relative; 
}

.index-posts-container .index-posts a.index-post__link{
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  text-decoration: unset !important;
}

.index-posts-container .index-posts .img-holder{
  height: 240px;
  overflow: hidden;
}

.index-posts-container .index-posts .img-holder img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.index-posts-container .index-posts .index-posts__content{
  padding: 20px 0px 0px 0px;
}

.index-posts-container .index-posts:hover h3{
  text-decoration: underline;
}


.index-posts-container .index-posts p{
  font-size: 17px;
  font-family: "freight-sans-pro", sans-serif;
  color: #222222;
  font-weight: 100;
  line-height: 1.4;
}

.index-posts-container .index-posts time{
  display: block;
  color: #646469;
  font-style: italic;
  font-family: "Spectral",Times New Roman,serif;
  font-weight: 400;
  font-size: clamp(17px, 1.1875vw, 19px);
  letter-spacing: 0px;
}

.index-posts-container .index-posts p.tags{
  color: #0074C8;
  font-family: "myriad-pro", sans-serif;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 0px;
}




@media screen and (max-width: 1024px){
  .index-posts-container{
    display: block;
    width: 100%; 
  }
  .index-posts-container > *{
    flex-basis: 90% !important;
    margin: 20px auto;
  }
}

