.blog {
  position: relative;
}

.blog .blog__content {
  padding: 5rem;
  border-radius: 1.25rem;
  background: var(--white-1000, #fff);
}

.blog .blog__top {
  margin-bottom: 3.75rem;
}

.blog .blog__top .blog__button{
	margin-top: 1.5rem;
	width: 100%;
}

.blog .blog__list {
  width: 100%;

  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
}

.blog .blog__list,
.blog .blog__list .blog__column {
  gap: 2rem;
}

.blog .blog__list .blog__column {
  width: 100%;
}

.blog .blog__list .blog__column:nth-of-type(1) .post:last-of-type, 
.blog .blog__list .blog__column:nth-of-type(2) .post:first-of-type,
.blog .blog__list .blog__column:nth-of-type(3) .post:last-of-type{
	flex: 1 1 auto;
}

.blog .blog__list .blog__column .post {
  width: 100%;
	
  display: flex;
  flex-direction: column;
}

.blog .blog__list .blog__column .post img{
	flex: 1 1 auto;
}

@media screen and (max-width: 1023px) {
  .blog .blog__list {
    grid-template-columns: 1fr;
  }

  .blog .blog__list .post {
    flex: 1 1 100%;
  }
}

@media screen and (max-width: 767px) {
  .blog .blog__content {
    padding: 0px;
    border-radius: 0px;
    background: transparent;
  }

  .blog .blog__list .button {
    margin-top: 1.75rem;
  }

  .blog .blog__list .post {
    flex: 1 1 auto;
  }
}
