body{
    background-color: #f7f8f8;
}
.three-grid{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 20px auto;
    text-align: left;
}
.three-grid > div{
    border-radius: 5px;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}
.blog-info a{
    color: #d93800 !important;
}
.blog-info h2{
    color: black !important;
}

.blog-info{
    
    padding: 15px;
    
}

.three-grid > div  span{
    color: #4c4f53;
}
.blog-img{
    display: flex;
    box-sizing: border-box;
    gap: 10px;
    width: 100%;

}
.blog-img img{
    width: 50%;
}
.blog-content a{
    color: black;
    text-decoration: underline;
    font-weight: 600;
}
.blog-link{
      color: black;
      text-decoration: underline;
      font-weight: 600;

  }
@media (min-width:200px) and (max-width: 425px) {
    .three-grid{
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 20px;
    }
}

@media (min-width: 426px) and (max-width: 1350px){
    .three-grid{
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}