/* Blog Section */

.blog-header h1 {
    font-family: 'Inter';
    font-size: 42px;
    font-weight: 500;
    text-align: center;
    margin: 0;
}

.blog-header {
    margin-bottom: 120px;
}

.blog {
    padding-top: 150px;
    padding-bottom: 200px;
}

.blog-image-section img {
    width: 100%;
}

.blog-title-section {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-title-section h3 {
    font-family: 'Inter';
    font-size: 18px;
    font-weight: 700; 
}

.blog-text-section {
    margin-top: 60px;
    margin-bottom: 90px; 
    display: -webkit-box;
    -webkit-line-clamp: 7;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-text-section p {
    font-family: 'Inter';
    font-size: 16px;
    font-weight: 400; 
    margin: 0;
}

.blog-button-section {
    position: absolute;
    bottom: 25px;

} 

.btn-blog {
    width: 130px;
    height: 38px;
    font-family: 'Inter';
    font-size: 10px;
    font-weight: 500;
    background: linear-gradient(90deg, rgb(244 128 33) 10%, rgb(237 34 102) 50%, rgb(90 65 153) 100%);
    border: none;
    color: #fff;
    border-radius: 0;
}

.btn-blog:focus {
    box-shadow: none;
}

.same-blog-box {  
    display: block;
    width: 100%;
    height: 100%;
    background-color: #fff;
    box-shadow: 5px 5px 10px 5px rgb(233 233 233);
}

.only-text-blog {
    padding: 25px 25px 25px 25px;
}

.blog-box-size {
    margin-bottom: 85px;
}

/* Blog Sectioin End */




/*
       \  |  /
        \ | /
          |
       \  |  /
        \ | /
          | M
          | E
          | D
          | I
          | A
          |
          | Q
          | U
          | E
          | R
          | Y
          |
          |
          |
          |
        \   /
         \ /   
          
*/


/* Media Query Blog Section */

@media only screen and (max-width: 991px) {
    
    .blog {
        padding-top: 100px;
        padding-bottom: 0px;
    }

    .blog-header {
        margin-bottom: 60px;
    }

}

@media only screen and (max-width: 768px) {

    .blog-header h1 {
        font-size: 37px;
    }

}

@media only screen and (max-width: 576px) {

    .same-blog-box {
        width: 90%;
        margin: auto;
    }

}

/* Media Query Blog Section End */