/* 
 * Camp Booking Home Posts Styles
 * Styles for displayHome hook RTE content
 */

.campbooking-home-posts {
  margin: 20px 0;
  padding: 0;
}

.home-posts-container {
  display: block;
  columns: 1;
  column-gap: 1em;
  text-align: justify;

  @media (min-width: 768px) {
    columns: 2;
  }

  .home-post {
    display: flex;
    flex-direction: column;
    break-inside: avoid;
    margin-bottom: 2em;
  }

  .home_post_container {
    /* padding-top: 45px;
    padding-bottom: 60px;
    position: relative; */
  }

  .home_post_desc_wrapper {
    text-align: center;
    /* margin-bottom: 50px; */
  }

  .home_post_heading {
    font-size: 24px;
    font-weight: 400;
    text-transform: capitalize;
    line-height: 24px;
  }

  .post_cover {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-radius: 0.3em;

    > video,
    > img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
  }
}
