.rte-poster {
  width: 100%;
  font-family: inherit;
  font-size: 14px;
  padding: 20px 15px;
}

.poster_wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
}

.poster_element {
  flex: calc(31.333% - 20px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border: 1px solid #ddd;
  max-height: 550px;
  background-color: #fff;
  border-radius: 6px;
}

.poster_image_wrapper {
  border-radius: 6px;
  width: 100%;
  height: auto;
  margin-bottom: auto;
  position: relative;
  max-width: 100%;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 1;
}

.poster_image_wrapper > img {
  width: 100%;
}

.poster_date {
  padding: 12px 12px 0;
}

.poster_title {
  padding: 12px;
}

.poster_location {
  margin-bottom: auto;
  padding: 0 12px 12px;
}

.poster_btn {
  font-size: 14px;
  color: white;
  background-color: #5867dd;
  border-radius: 4px;
  border: 1px solid #5867dd !important;
  height: 42px;
  transition: all .2s;
  cursor: pointer;
  padding: 0 20px;
  margin: 12px;
  margin-left: auto;
}

.poster_btn:hover {
  background-color: #7b87e4;
  border: 1px solid #7b87e4 !important;
}

@media screen and (max-width: 1024px) {
  .poster_wrapper {
    flex-wrap: wrap;
  }
  .poster_wrapper > div {
    flex: calc(50% - 20px);
  }
  .poster_element {
    width: 100%;
  }
  .poster_image_wrapper {
    max-width: 100%;
  }
}

@media screen and (max-width: 768px) {
  .poster_wrapper {
    flex-wrap: wrap;
  }
  .poster_wrapper > div {
    flex: 0 100%;
  }
}