.first_section{
    top: 180px;
}

.default_section {
    position: relative;
    width: 100%;
    padding: 80px 10%;
    
}

.left_float {
    float: left;
}

.post_img {
    width: 100%;
  
  }
  
  .post_img img {
    aspect-ratio: 16 / 9;
    width: 100%;
  }
  
  .post_title_and_content {
    width: 100%;
    height: 100%;
  }
  
  .post_title_and_content ul {
    list-style: none;
  }
  
  .posts {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    padding: 0 6px;
    max-width: 1280px;
    margin: 0 auto 48px;
  }
  
  .read_more {
    position: relative;
    right: 0;
    bottom: 0;
    width: 100%;
  }
  
  .read_more a{
    color: var(--default_dark_blue);
  }
  
  .post_title {
    font-weight: bold;
    color: black;
    text-decoration: none;
    margin-bottom: 3px;
  }

  .post_date {
    font-size: 12px;
    bottom: 0;
    color: black;
    text-decoration: none;
    margin-bottom: 10px;
  }

  .post_content {
    text-decoration: none;
    position: relative;
    max-height: 180px;
    overflow: hidden;
    color: black;
  }

  .flex_container {
    display: flex;
    flex-direction: column;
  }
  
  .post {
    cursor: pointer;
    position: relative;
    display: flex;
    padding: 6px;
    white-space: normal;
    transition: transform 0.1s ease-out;
    width: 100%;
    border-radius: 2vh;
    margin-bottom: 50px;
  }
  




@media (min-width: 850px) {

  .post_img {
    width: 100%;
  
  }

  .post_title_and_content {
    width: 45%;
    height: 100%;
  }

    .post {
      width: 50%;
    }

    .flex_container {
      display: flex;
      flex-direction: row;
    }
  
  
  }
  .post:hover {
    box-shadow: rgba(0, 0, 0, 0.4) 0 0 48px -24px;
  }
  .post__content {
    position: relative;
    padding: 24px 24px 74px;
    background: white;
    white-space: normal;
    transition: transform 0.1s ease-out;
    text-decoration: none;
  }
  .post__content:before {
    content: "";
    display: block;
    text-decoration: none;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    width: 100%;
    height: 100%;
    background-color: #d5dbdf;
    opacity: 0;
    transition: opacity 0.2s ease-out;
  }
  .post__content.is-purchased:before {
    opacity: 0.9;
  }

  
  @media screen and (min-width:830px) {
    .header_title h1{
        font-size: 35px;
        
    }
  }
  