@charset "utf-8";
/* CSS Document */

article {
    min-height: 180px;
}

    article header h3 {
        font-size: 18px !important;
    }
    
    article .content {
        position: relative;
    }
    
        article .content .profile {
            position: absolute;
            top: -72px;
            right: 20px;
            height: 131px;
            width: 131px;
            border-radius: 3px;
            border: 2px solid #797979;
            box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.75);
        }
    
/* Small devices */
@media all and (max-width: 950px) {

article header {
    text-align: center;
}

    article .content {
        position: relative;
        text-align: center;
    }
        
        article .content .profile {
            position: static;
            top: auto;
            right: auto;
            margin: 0 auto 1em auto;
            height: 131px;
            width: 131px;
            border-radius: 3px;
            border: 2px solid #797979;
            box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.75);
        }

}