.portfolio-post {
  width: min-content;
  aspect-ratio: 1;
  height: auto;
  margin-bottom: 30px;
}

.portfolio-post>a {
  justify-content: center;
  text-decoration: none;
}

.portfolio-post>a:hover {
  text-decoration: none;
}

.portfolio-post .card-title {
  color: #000000;
}

.portfolio-post .thumbnail {
  display: flex;
  justify-content: end;
  align-items: end;

  overflow: hidden;
  
  border-radius: 4px;

  background-repeat: no-repeat;
  background-position: center;
  background-size: 110%;

  transition: background-size 200ms ease-in-out;
}

.portfolio-post:hover .thumbnail {
  background-size: 100%;
}

.portfolio-post .thumbnail .card-footer {
  background-color: #00000066;

  transform: translateX(-100%);

  width: 100%;
  display: flex;
  justify-content: end;
  padding: 8px;

  transition: transform 100ms ease-in-out;
}

.portfolio-post:hover .thumbnail .card-footer {
  transform: translateX(0);
}

@media (max-width: 992px) {
  .portfolio-post .thumbnail .card-footer {
    transform: translateX(0);
  }
}

.portfolio-post .thumbnail .card-title {
  color: #ffffff;
  font-size: 24px;
  margin: 0;
}

.hestia-blogs {
  padding-top: 70px !important;
  padding-bottom: 70px !important;
}

.related-posts {
  padding-top: 0;
  padding-bottom: 70px;
}