.discography, .post-feed {

max-width: 100%;
& &-album {
    display: flex;
    flex-direction: row;
    position: relative;
    &_cover {
        width: 20vw;
        height: 20vw;
        border: 1px solid #CCC;
        max-width: 500px;
        max-height: 500px;
        &-wrapper {
            display: block;
            margin-right: 0.5em;
        }
    }
    p, a {
        font-size: 0.9em;
        line-height: 1em;
        font-weight: 300;
        padding-bottom: 0.5em;
        color: $p_text;
    }
    a {
        @include underline-on-hover($p_text);
    }
    section {
        width: 100%;
    }

    &_title {
        margin-top: 3vw;
        font-size: 2em;
        margin-bottom: 0.6em;
        @include underline-on-hover($p_text);
    }

    &_summary {
        margin-bottom: 1em;
    }
}

}