/* 1) Карточка як flex-колонка, щоб низ "прилип" */
.mt-archive-posts-wrapper > article{
  display: flex !important;
  flex-direction: column;
}

/* 2) Однакова висота блоку з картинкою */
.mt-archive-posts-wrapper > article .entry-thumbnail{
  height: 220px;            /* підбери під дизайн */
  overflow: hidden;
}

mt-archive-posts-wrapper {
	display: flex;
    flex-wrap: wrap;
}

.mt-archive-posts-wrapper > article {
	height: auto;
}

.mt-archive-posts-wrapper > article .entry-thumbnail .post-thumb {
	height: 100%;
}

.mt-archive-posts-wrapper > article .entry-thumbnail .post-thumb a {
	height: 100%;
}

.mt-archive-posts-wrapper > article .entry-thumbnail img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center; /* центр */
  display: block;

}


/* 3) Контент розтягуємо, щоб кнопка пішла вниз */
.mt-archive-posts-wrapper > article .entry-content{
  flex: 1 1 auto;
}

/* 6) Кнопка внизу */
.mt-archive-posts-wrapper > article .entry-readmore{
  margin-top: auto;
	padding-top: 15px;
}