﻿/* ARTICLE PAGE STYLES */

.background {
    background-color: #00011f;
}

h1, h2, h3, h4 {
    padding-bottom: 1em;
    padding-top: 1em;
}

p {
    margin-bottom: 1em;
}

ul {
    list-style-position: inside;
    margin-bottom: 1em;
}

.main li {
    padding: 0.5em 0 0.5em 0;
}

li p {
    display: inline;
}

/* The grid: Four equal columns that floats next to each other */
.column {
    float: left;
    width: 33.3%;
    padding: 10px 5px 0 5px;
}

.column-first {
    padding: 10px 10px 0 0;
}

.column-last {
    padding: 10px 0 0 10px;
}

/* Style the images inside the grid */
.column img {
    opacity: 0.8;
    cursor: pointer;
}

.column img:hover {
    opacity: 1;
}

/* Clear floats after the columns */
.row:after {
    content: "";
    display: table;
    clear: both;
}

/* The expanding image container */
.gallery-image {
    position: relative;
}

/* Expanding image text */
#imgtext {
    position: absolute;
    bottom: 1em;
    left: 1em;
    color: #FFFFFF;
    font-size: 0.7em;
    padding: 0.5em;
    border-radius: 3px 3px;
    background-color: #00011f;
}

#gallery-container {
    float: right;
    width: 50%;
    margin-left: 2em;
}

.article-text a {
    border-bottom: 1px solid;
}

.clear {
    clear: both;
}

p.article-breadcrumbs {
    color: rgba(0, 0, 0, 0.5);
    padding-top: 1em;
    margin-bottom: 0;
}

p.article-breadcrumbs a:hover {
    border-bottom: 1px solid rgba(0, 0, 0, 0.5);
}

@media screen and (max-width: 1023px) {
    #gallery-container {
        float: none;
        width: 100%;
        margin: 0 0 1em 0;
    }

    .article-text {
        clear: left;
        padding-top: 1em;
    }

    .page-content .main {
        padding: 0;
    }
}