.top-img {
    height: 50vh;

    background-color: gainsboro;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    margin-top: 100px;
}

article .main-info {
    margin-top: 50px;
    border-bottom: 1px solid black;

    margin-bottom: 60px;
    justify-content: space-between;
}

article .outline-block {
    padding-bottom: 30px;
    margin-bottom: 10px;
}

article .outline-block .article-date {
    font-size: 20px;
    color: gray;
    margin-bottom: 20px;
}

article .outline-block .article-title {
    font-size: 30px;
    letter-spacing: .1em;
    margin-bottom: 20px;
}

article .outline-block .article-interviewee {
    font-size: 25px;
}

article .author-img {
    height: auto;
    margin: 30px auto;
    margin-right: 0;
    box-sizing: border-box;

    background-color: gainsboro;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;

    display: none;
}

article .career-block {
    padding-bottom: 20px;
}

article .career-block .career-title {
    background-color: gainsboro;
    font-size: 15px;
    text-align: center;
    width: 60px;
    display: block;
    margin-bottom: 10px;
}

article .career-block .career-content {
    margin: 0;
    line-height: 1.5em;
}

article .career-block p.career-link {
    margin: 0;
    padding-top: 7px;
}

article .career-block a {
    color: black;
    text-decoration: none;
}


article .scripts-block {
    line-height: 1.7em;
    margin-bottom: 70px;
}



@media(min-width:768px) {
    .top-img {
        display: none;
    }

    article .main-info {
        margin-top: 140px;
    }
    article .author-img {
        display: block;
    }
}