/* nraum var(--primary):
/#* #fb6c16 */
:root {
    --primary: #fb6c16;
    --text: #333;
    --secondary-nav-height: 50px;
}

html {
    margin: 0;
    padding: 0;
}

body {
    font-family: Arial, Verdana, Helvetica;
    font-size: 11px;
    margin: auto;
    max-width: 900px;
}

h2 {
    font-size: 11px;
    color: var(--primary);
    margin: 0;
    padding: 0;
    font-weight: 700;
}

h3 {
    color: var(--text);
    font-weight: 700;
    font-size: 11px;
    margin: 0;
}

a {
    text-decoration: none;
}

#top-nav {
    font-size: 15px;
    font-weight: 700;
    color: #777;
    border-bottom: 1px solid var(--primary);
    display: grid;
    grid-gap: 8px;
    grid-template-columns: 40px repeat(6, 80px) 1fr min-content;
    /*background: #efe;*/
    align-items: end;
    height: 110px;
    margin-bottom: 10px;
}

#secondary-nav-container {
    grid-area: secondary-nav;
}

#secondary-nav {
    /* display: grid;*/
    /*grid-gap: 8px;*/
    /*grid-template-columns: repeat(4, min-content);*/
    /*background: #ffe;*/
    font-size: 12px;
}

a {
    color: black;
}

#top-nav a {
    padding: 4px;
    /*background: #cfc;*/
    height: 20px;
}

a:hover, a.active {
    color: var(--primary);
    font-weight: bold;
}

#main-container {
    /*border: 1px dashed grey;*/
    display: grid;
    grid-template-areas: 
	"side secondary-nav secondary-nav"
	"side content content-right";

    grid-template-columns: 200px 1fr 1fr;
    grid-template-rows: var(--secondary-nav-height) max-content;
}

#content {
    grid-area: content;
    /*background: #eef;*/
    min-height: 400px;
}

#content-right {
    /* TODO enable removed things again for mobile style */

    padding-left: 20px;
    grid-area: content-right;
}

.multi-line-text {
    /* diagnostic color */
    /*background: #eef;*/
    max-width: 360px;
    margin: 0;

    white-space: pre-line;    

    /* taken from original website */
    color: var(--text);
    line-height: 1.5em;
}


#side {
    grid-area: side;
    /*background: #fef;*/
    text-align: right;
    padding-top: var(--secondary-nav-height);
    margin-right: 20px;
}

#footer {
    /*border-top: 2px dotted black;*/
    /*background: #fee;*/

    display: flex;
    border-top: 1px dotted var(--text);
    display: flex;
    justify-content: start;
    margin-top: 10px;
    padding-top: 5px;
    padding-bottom: 10px;
}

.copyright {
    align-self: end;
    margin-left: auto;
}

.footer-link {
    color: var(--text);
    padding-left: 2px;
    padding-right: 2px;
}

.contact-wrapper {
    position: relative;
}

.shift-contact-city {
    position: absolute;
    left: -100px;
}
.side-items-box {
    display: flex;
    flex-direction: column;
    border-bottom: 1px dotted #ccc;
    margin-bottom: 2px;
}
.side-items-box > * {
    padding-top: 2px;
    padding-bottom: 2px;
}
.side-items-box a, .team-box a {
    color: black;
}
.side-items-box a:hover, .team-box a:hover {
    color: var(--primary);
}

.project-attributes label {
    font-weight: bold;
}

.project-attributes {
}

/* fix */
#spotlight {
    left: 0;
}

.spotlight img {
    border: 1px solid black;
}

.images-inline {
    display: inline;
}

.images-vertical > * {
    width: 100%;
}

.images-vertical {
    width: 100%;
    display: block;
}

.float-right {
    float: right;
}

.float-left {
    float: left;
}

.combined-header > * {
    display: inline;
}

.combined-header {
}

.full-width-image {
    width: 100%;
}
