.blog-overview {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 2rem;
}

a.post{
  display:block;
}


.image-holder{
  position: relative;
  margin-bottom: 0;
}

.image-holder img{
  margin-bottom: 0;
  padding-bottom: 0;
}

.image-source{
  position: absolute;
  bottom:5px;
  padding:2px;
  background-color:rgba(255,255,255,.75);
  left:0;
  font-size:.76em;
}



/* Tablet: 2 Spalten */
@media (min-width: 600px) {
  .blog-overview {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Desktop: 3 Spalten */
@media (min-width: 900px) {
  .blog-overview {
    grid-template-columns: repeat(3, 1fr);
  }
}

.blog-overview .post {
  background: #fff;
  padding: 1rem;
  border: 1px solid #eee;
  border-radius: 8px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  position: relative;
  padding-bottom:75px;
  overflow:hidden;
}

.post .readmore{
      position: absolute;
    display: block;
    color: white;
    width: 100%;
    left: 0;
    bottom: -40px;
    border-radius: 5px;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    padding: 5px 15px;
    background-color: var(--accent-color);

  transition:all 1s;
}

.post:hover .readmore{
  bottom:0;
  transition:all 1s;
}

.blog-overview .post img {
  width: 100%;
  height: auto;
  border-radius: 4px;
}

.blog-overview .post h2 {
  font-size: 1.1rem;
  margin: 0;
}

.blog-overview .post h2 a {
  text-decoration: none;
  color: #1B5E20;
}

.blog-overview .post h2 a:hover {
  text-decoration: underline;
}

.blog-overview .post p {
  margin: 0;
  font-size: 0.95rem;
}

.pagination {
  grid-column: 1 / -1;
  text-align: center;
  margin-top: 2rem;
}
