.blog-date{
	font-weight: 400;
	float: right;
	font-size: 0.8em;
}

@media only screen and (max-width: 320px){
  .blog-date{
    font-weight: 400;
    float: none;
    font-size: 0.8em;
    display: block;
    position: relative;
    bottom: 1.3em;
  }
} 

.blog_img-gallery{
    width: 100%;
    max-height: 25em;
    overflow: auto;
    transform: 0.8s;
    transition: 0.8s;
    scrollbar-color: #73542D #e0e0e0;
    scrollbar-width: thin;
}

/*.blog_img-gallery:hover{
    max-height: 200em;
    overflow: auto;
}*/

.blog_img::-webkit-scrollbar {
    width: 0.5em;
}
 
.blog_img::-webkit-scrollbar-track {
    background-color: #e0e0e0;
}
 
.blog_img::-webkit-scrollbar-thumb {
    background-color: #73542D;
}


.blog_img-max_BG{
    display: flex;
    order: 0;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1em;
    justify-content: center;
    align-items:center;
}

.blog_img-img{
    flex: 1 0 32%;
    margin: 0 auto;
    height: auto;
    width: auto;
    position: relative;
    background-color: white;
    overflow: hidden;
    cursor: pointer;
    transform: 0.3s;
    transition: 0.3s;
}

img.ppl-expand{
    position: absolute;
    z-index: 1;
    flex: none;
    max-height: 100vh;
    max-width: 100vw;
    background-color: black;
}


 /* Style the Image Used to Trigger the Modal */
  
  /* The Modal (background) */
  .modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0,0,0);
    background-color: rgba(0,0,0,0.9);
  }

  .modal-content {
    position: relative;
    top: 50%;
    transform: translate(0, -50%);
    margin: auto;
    display: block;
    /*width: 80%;*/
    max-width: 100vh;
    max-height: 85vh;
    padding-bottom: 3em;
  }

  #caption {
    position: fixed;
    bottom: 0;
    margin: auto;
    display: block;
    color: #fff;
    background-color: rgba(53, 53, 53, 0.9);
    padding: 2em 4em 2em 4em;
    width: calc(100% - 8em);
    text-align: center;
    font-size: 1em;
    font-weight: 400;
  }
  
  .modal-content, #caption, .modal {
    animation-name: fadeIn1;
    animation-duration: 0.8s;
  }
  .modal {
    animation-name: fadeIn2;
    animation-duration: 0.3s;
  }
  
  @keyframes fadeIn1 {
    from {opacity: 0;}
    to {opacity: 1;}
  }

  @keyframes fadeIn2 {
    from {opacity: 0;}
    to {opacity: 1;}
  }
  
  
  /* The Close Button */
  .close {
    z-index: 2;
    position: absolute;
    /*bottom: 15px;*/
    width: 100%;
    text-align: right;
    right: 0.8em;
    color: #f1f1f1;
    font-size: 2.2em;
    font-weight: bold;
    transition: 0.3s;
    top: 50%;
    transform: translate(0, -50%);
  }
  
  .close:hover,
  .close:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
  }
  
  /* 100% Image Width on Smaller Screens */
  @media only screen and (max-width: 1000px){
    .modal-content {
      max-height:max-content;
      width: 100%;
    }
  } 