.author-header {
    display: grid;
    grid-gap: 1.2rem var(--big-gap);
    grid-template-columns: 16rem 1fr;
    grid-template-areas:
            'image name'
            'image info'
            'image more';
}

.author-image {
    grid-area: image;
}

.author-image > img {
    width: 100%;
}

.author-name {
    grid-area: name;
}

.author-info {
    grid-area: info;
    margin-top: 0 !important;
}

.author-more {
    grid-area: more;
}

.author-tabs {
    display: flex;
    flex-flow: row nowrap;
    align-items: stretch;
    min-height: 4rem;

    background: #f5f5f5;
}

.author-tabs > button {
    flex-grow: 1;

    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    justify-content: center;

    padding: 0 var(--small-gap);

    font: 500 1.1rem/1.7rem Montserrat;
    text-align: center;
    color : #3D4153;
}

.author-tabs > button:hover {
    background: rgba(61, 65, 83, .1);
}

.author-tabs > button.selected {
    background: rgba(61, 65, 83, .1);
    font-weight: bold;
}

.author-tabs > button:disabled {
    opacity: .5;
}

.author-tab-contents a:hover {
    text-decoration: underline;
}

@media (max-width: 767px) {
    .author-header {
        grid-template-columns: 10rem 1fr;
        grid-template-areas:
                'image name'
                'image info'
                'more  more';
    }

    .author-tabs-wrap {
        position: relative;
        margin-left: auto;
        margin-right: auto;
        width: 22.6rem;
    }

    .author-tabs {
        flex-flow: column;
        overflow: auto;
        position: absolute;
        display: none;
        width: 100%;
        max-height: 30vh;
        box-shadow: var(--common-shadow);
    }

    .author-tabs > button {
        justify-content: flex-start;

        height: 4rem;
        padding: 0 var(--small-gap);

        font: 500 1.1rem/2.1rem Montserrat;
        text-align: left;
        text-transform: uppercase;
        color : #3D4153;
    }

    .author-tabs-wrap:before {
        content: attr(data-more);
        display: flex;
        justify-content: center;
        align-items: center;
        min-height: 3.5rem;
        font: 700 1.1rem/1.7rem Montserrat;
        letter-spacing: 0.05em;
        text-transform: uppercase;
        color: #3D4153;
        background: #f5f5f5;
    }

    .author-tabs-wrap:focus-within > .author-tabs {
        display: flex;
        align-items: stretch;
    }

    .author-tabs-wrap:focus-within:before {
        background: #E3E3E5;
    }
}
