h3 {
    font-size: clamp(1.3rem, 5vw, 2rem);
}

.header {
    width: 100%;
    height: 500px;
    background: linear-gradient(rgba(21,60,51,0.4), rgba(21,60,51,0.4)),
                url("../Yoga-portal-images/blog\ banner.png") no-repeat center/cover;
}

.contant {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
    padding: 0 30px;
    gap: 30px;
    color: #e29500;
}

.contant h3 {
    font-size: clamp(1.3rem, 5vw, 2rem);
    color: #f5f5f5;
}

/* top blogs section  */

.blog {
    padding: 30px 9px;
}

.blog-post .text h3 {
    font-size: 1.3rem;
}

/* recent articles section  */

.recent {
    /* background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, .4)), url("../Yoga-portal-images/blog-bg.png") no-repeat top/cover;
    background-attachment: fixed; */
    padding: 20px 30px 30px;    
}

.recent h1 {
    color: #0c221d;
    text-align: left;
    padding-bottom: 20px;
}

.articles {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.articles .article {
    display: flex;
    flex-direction: column;
    background: #fff;
    gap: 12px;
    width: 280px;
    flex-shrink: 0;
    border: 1px solid #ccc;
    padding-bottom: 15px;
    border-radius: 9px;
}
 

.article img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-top-left-radius: 9px;
    border-top-right-radius: 9px;
}

.article .text {
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 0 9px;
}

.article .text h4 {
    color: #e29500;
    font-size: 1.1rem;
}

.article a {
    text-align: center;
    align-self: center;
}

.icons {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.icons .icon {
    display: flex;
    justify-content: center;
    padding: 0 9px;
    align-items: center;
    gap: 6px;
    font-size: 1rem;
    color: #e29500;
}

.icon h6 {
    font-size: 1rem;
}







/* Article page style  */

.article-head {
    background: linear-gradient(#0c221d, #e29500);
    width: 100%;
    height: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
}

.view-article {
    display: flex;
    flex-direction: column;
    gap: 25px;
    padding: 30px 9px;
    margin-right: 350px;
}

.view-article h3 {
    color: #e29500;
}




@media (max-width: 991px) {

    .view-article {
        margin-right: 0;
    }
}