h2 {
  font-family: 'Inter', sans-serif;
}
.blog-section .blog-title h3{
    text-align: center;
    font-size: 6em;
    padding: 30px 0;
    font-weight: 600;
    text-transform: uppercase;
    font-family: 'Inter', sans-serif;
}

.blog-posts-wrap {
    width: 100%;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
  }
  
  .post-link {
    margin: 20px 20px 20px 20px;
  }
  
  .post-wrap {
    display: flex;
    flex-direction: column;
    position: relative;
    width: 400px;
    background-color: #fff;
    /* box-shadow: 0px 2px 20px rgba(0,0,0,.25); */
    transition: all .25s;
    top: 0;
    /* border-radius: 10px; */
    overflow: hidden;
  }
  
  .post-wrap:hover {
    top: 2px;
    box-shadow: 0px 0px 10px rgba(0,0,0,.25);
  }
  
  .post-image {
    height: 200px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
  }
  
  .post-body {
    width: 300px;
    /* padding: 10px; */
    margin: 0 auto;
    text-align: center;
  }
  
  .post-body-primary {
    margin: 40px 0 40px 0;
  }
  
  .post-meta {
    color: #7B7B7B;
    font-size: medium;
    line-height: 25px;
  }
  
  .post-meta b {
    font-weight: bold;
  }
  
  .post-title {
    font-family: 'Inter', sans-serif;
    color: #444;
    font-size: 20px;
    padding: 5px 0 10px 0;
  }
  
  .post-text {
    color: #7B7B7B;
    font-size: large;
    line-height: 25px;
  }
  
  .post-body-secondary {
    border-top: 1px solid #ECECEC;
  }
  
  .post-category {
    color: #7B7B7B;
    padding: 15px 0 10px 0;
  }
  
  /* Button Styling */
  .button-wrap {
    display: flex;
    justify-content: center;
    margin: 20px 0 20px 0;
  }
  
  .button {
    position: relative;
    background-color: #3089DB;
    padding: 20px 60px 20px 60px;
    box-shadow: 0px 6px 20px rgba(48,137,219,.60);
    transition: all .25s;
    top: 0;  
    border-radius: 10px;
    
    color: #fff;
    /* text-transform: uppercase; */
    letter-spacing: 2px;
  }
  
  .button:hover {
    border-radius: 10px;
    box-shadow: 0px 2px 10px rgba(48,137,219,.60);
    top: 2px;
  }

  .forMore {
    height: 10vh;
    background: aliceblue;
  }

  .forMoreBtn {
    width: 100%;
    height: 100%;
    border: none;
  }

  .forMoreBtn a {
    text-decoration: underline;
    font-size: x-large;
    color: black;
    font-weight: bold;
  }

  @media screen and (max-width: 820px) {
    .post-body {
        width: auto;
        padding: 10px;
        margin: 0 auto;
    }

    .post-wrap {
        padding: 10px;
        width: auto;
    }
    
  }

  @media screen and (max-width: 414px) {
    .post-image {
        height: 160px;
    }

    .post-wrap {
        padding: 10px;
        width: auto;
    }

    .post-text {
        display: none;
    }

    .blog-section .blog-title h3{
        font-size: 40px;
    }
  }