/*=========================
	FEATURED POST BLOCK
=========================*/

.block-featured-post .container .post {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-6);
  margin-top: var(--space-4);
}
.block-featured-post .container .post .image {
  min-height: 500px;
}
.block-featured-post .container .post .content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--space-7);
}
.block-featured-post .container .post a {
  margin-left: 0;
  margin-right: 0;
}

@media only screen and (max-width: 992px) {
  .block-featured-post .container .post {
    grid-template-columns: 1fr;
    gap: var(--space-4);
  }
  .block-featured-post .container .post .content {
  }
  .block-featured-post .container .post .image {
    min-height: 350px;
  }
}

@media only screen and (max-width: 578px) {
  .block-featured-post .container .post .content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0
  }
}
