#blog-section h1{
    font-weight: bold;
    text-align: center;
    padding: 5% 0 5% 0;
}

#blog-section .card{
    padding: 0 2% 0 2%;
}

#blog-section{
    padding-bottom: 5%;
}

.text-span{
    color: black;
}

.blog-post-title {
    font-weight: 900;
}
.blog-post-meta {
    font-weight: bold;
    font-size: 90%;
    color: #999;
}

.blog-post-content-title{
    font-weight: 900;
}

.blog-post-content{
    font-size: 1.2rem;
    font-weight: 600;
}


/*  */

* {
    box-sizing: border-box;
  }
  
  
  /* Header/Blog Title */
  .header {
    padding: 30px;
    font-size: 40px;
    text-align: center;
    background: white;
  }
  
  /* Create two unequal columns that floats next to each other */
  /* Left column */
  .leftcolumn {
    float: left;
    width: 100%;
  }
  
  /* Fake image */
  .blog-card-image {
    background-color: #aaa;
    width: 100%;
    padding: 20px;
  }
  
  /* Add a card effect for articles */
  .card {
    background-color: white;
    padding: 20px;
    margin-top: 20px;
  }
  
  /* Clear floats after the columns */
  .row:after {
    content: "";
    display: table;
    clear: both;
  }

.blog_image{
    width: 30%;
    height: auto;
}

.post-image {
    /* Ensure images don't exceed container width */
    max-width: 45%;
    height: auto;    
}

.post-link{
    text-decoration: none;
    color: black;
}

.post-link:hover{
    color: 	#ba002b;
    text-shadow: black 2px 2px;
}


  
  /* Responsive layout - when the screen is less than 800px wide, make the two columns stack on top of each other instead of next to each other */
  @media screen and (max-width: 800px) {
    .leftcolumn, .rightcolumn {
      width: 100%;
      padding: 0;
    }
    .blog_image{
        width: 75%;
        height: auto;
    }
    .post-image {
        /* Ensure images don't exceed container width */
        max-width: 75%;
        height: auto;    
    }   
    
  }