/* CSS Document */


/* grid for content area */

.content-container {
    display: grid;
    grid-template-columns: 280px 590px;
    grid-template-areas:
        "preview col-1"
    ;
    grid-gap: 30px;
    width: 930px;
    padding: 30px 36px;
}

preview {
    grid-area: preview;
}

#previewImg{
    /*border: 3px solid white;*/
}

#artistCredit {
    text-align: center;
    padding: 10px 0;
}

col-1 {
    grid-area: col-1;
    margin-top: 80px;
    column-count: 2;
    /* this is to make CSS multi-column inside CSS grid */
    column-gap: 30px;
}

p, div {
    font-family: libreFranklin600;
    color: #999999;
    font-size: 12px;
    margin-bottom: 15px;
}

hr.dark {
    margin: 12px 0;
    border-top: 1px solid #424242;
}

h6 {
    margin-bottom: 12px;
    column-span: all;
}
h6.innerh6{
    column-span: none;
    color:#666666;
}
.break{
    break-before: column;
};

a.main-link:link {
    color:#999999;
    text-decoration: underline;
}


a.download-link {
    display: block;
    padding-left: 17px;
    margin-left: 15px;
    background-image: url("../assets/ui/png/r-arrow-gray.png");
    background-size: 12px;
    background-repeat: no-repeat;
    background-position: left;
}

a.download-link:link {
    color: #cccccc;
}

a.download-link:visited {
    color: #cccccc;
}

a.download-link:hover {
    color: #ffffff;
}

a.download-link:active {
    color: #cccccc;
}

p#blurb a {
    
    text-decoration: underline;
}

/* took the artist credit at bottom out */
p.artistName {
    font-family: sans-serif;
    font-size: 11px;
    text-transform: uppercase;
    text-align: left;
    color:#666666;
    margin-top:-15px;
}
