@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');


*{
    padding: 0px;
    margin: 0px;
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}
.blog-container{
    display: grid;
    grid-template-columns: 70% 27%;
    gap: 10px;
}
.blogsHead{
    color: rgb(59, 59, 59);
    font-size: 30px;
}
#backBtn{
    text-decoration: none;
    color: gray;
    font-size: 20px;
}
.blog-head{
    box-sizing: border-box;
    padding: 20px 0px;
    
}
.blog-head img{
    width: 100%;
    height: 400px;
    margin: 20px auto;
    object-fit: cover;
}

.other-blogs{
    padding: 20px;
    height: 800px;
    overflow: auto;
}

.other-blogs::-webkit-scrollbar {
    width: 5px; /* Vertical scrollbar width */
    height: 5px; /* Horizontal scrollbar height */
}

/* Scrollbar track (background) */
.other-blogs::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 5px;
}

/* Scrollbar thumb (scroll handle) */
.other-blogs::-webkit-scrollbar-thumb {
    background: #c9c9c9;
    border-radius: 5px;
}

/* Scrollbar thumb on hover */
.other-blogs::-webkit-scrollbar-thumb:hover {
    background: #939393;
}
.otherBlogsdiv a{
    display: inline-block;
    width: 100%;
    text-decoration: none;
    border: 1px solid rgb(213, 213, 213);
    margin: 10px 0px;
    box-sizing: border-box;
    padding: 5px 10px;
    color: black;
}
.otherBlogsdiv a img{
    width: 95%;
    height: 200px;
    margin: 5px;
    object-fit: contain;
}
.Blog-desc{
    color: rgb(62, 62, 62);
    font-size: 17px;
    text-align: justify;
}
@media screen and (max-width:991px) {
    .other-blogs{
        display: none;
    }
    .blog-container{
        display: grid;
        grid-template-columns: 100% 0%;
        gap: 10px;
        padding-bottom: 100px;
    }
}