/*========================================
BLOG CATEGORY SECTION
========================================*/

.ih-cat-section{
    width:100%;
    background:#fff;
    padding:60px 0;
}


/*========================================
BLOG CONTAINER
========================================*/

.ih-cat-container{
    max-width:1340px;
    margin:0 auto;
    padding:0 20px;
}
/*=========================
Layout
=========================*/

.ih-cat-layout{
    display:flex;
    gap:40px;
    align-items:flex-start;
}

.ih-cat-content{
    flex:0 0 70%;
    min-width:0;
}

.ih-cat-sidebar{
    flex:0 0 calc(30% - 40px);
    min-width:0;
}


/*=========================
Section Heading
=========================*/

.ih-cat-heading{
    margin-bottom:30px;
}

.ih-cat-title{
    margin:0 0 15px;
    font-size:2rem;
    line-height:1.4;
}

.ih-cat-title a{
    color:inherit;
    text-decoration:none;
}

.ih-cat-line{
    width:100%;
    height:1px;
    background:#ddd;
}


/*=========================
Responsive
=========================*/

@media (max-width:992px){

    .ih-cat-layout{
        flex-direction:column;
		    }

    .ih-cat-content,
    .ih-cat-sidebar{
        flex:1 1 100%;
        width:100%;
    }
	

}