/* avatar */
.blog-avatar{
    display: block;
}

.blog-avatar-link{
    background: #f1f1f1;
    width:100%;
    height: 0;
    padding-bottom: 100%;
    position: relative;
    overflow: hidden;
    border-radius: 50%;
    display: block;
}

.blog-avatar .blog-avatar-image{
    height: 0;
    position: absolute;
    left: 0;
    right: 0;
    width:100%;
    height: 100%;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}

/* blog header */
.blog-header{
    background-color: #fff;
    padding: 15px 0;
}

.blog-header .blog-header-avatar{
    padding-right: 0;
}

.blog-header .blog-avatar{
    background-color: #fff;
    padding-right: 20px;
}

.blog-header .blog-header-container{
    width: 100%;
}

.blog-header .blog-header-content{
    padding-top: 10px;
    display: block;
    width: 100%;
}

.blog-header .blog-title{
    display: block;
    width: 100%;
    margin-bottom: 5px;
    line-height: 1;
}

.blog-header .blog-title .title{
    text-transform: uppercase;
    font-size:20px;
    font-weight: 700;
    line-height: 1;
    margin:0;
}

.blog-header .blog-description{
    margin-bottom: 15px;
    line-height: 1;
}

.blog-header .btn-about{
    display: block;
    float: left;
    margin-right: 15px;
}

.blog-header .social-icons .social-icon{
    font-size: 20px;
    line-height: 22px;
    vertical-align: middle;
    margin:0 5px 0 0;
    padding:0;
    float: left;
    display: block;
}

@media only screen and (min-width:350px){
    .blog-header .blog-header-content{
        padding-top: 15px;
    }
}

@media only screen and (min-width:768px){

    .blog-header{
        padding: 20px 0;
    }

    .blog-header .blog-header-content{
        padding-top: 0;
    }   

}

@media only screen and (min-width:992px){

    
    .blog-header{
        padding: 30px 0;
    }

    .blog-header .blog-avatar{
        padding-right: 30px;
    }

    .blog-header .blog-title .title{
        font-size: 28px;
        margin-bottom: 10px;
    }
    
    .blog-header .blog-description{
        max-width: 400px;
        font-size: 18px;
    }

    .blog-header .social-icons .social-icon{
        font-size:25px;
    }

}


@media only screen and (min-width:1200px){

    .blog-header .blog-avatar{
        padding-right: 65px;
    }

    
    .blog-header .blog-header-content{
        margin-left: -25px;
    }


}

