/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

/* 
CV style
 */

:root {
    --left-column-size: 30%;

    --left-column-background: rgba(90, 30, 60, 0.4);

    --profile-image-caption-background: rgba(90, 30, 60, 0.85);

    --color-transition-speed: .4s;
    --color-transition-easing: ease-in-out;

    --base-font-size: 16px;

    --left-column-max-width: 300px;

    --profile-image-print-max-width: 230px;
}

html, body {
    font-size: var(--base-font-size);
    line-height: 1.5rem;
}

a {
    color: rgba(90, 30, 60, 1);
    transition: all var(--color-transition-speed) var(--color-transition-easing);
}

a:hover {
    color: rgba(60, 0, 30, 1);
}

ul {
    list-style: none;
    display: inline-block;
}

ul.inline-list {
    font-size: 0;
}

ul.inline-list li {
    display: inline;
    font-size: 1rem;
}

html, body {
    color: #333;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}

ul.inline-list li + li::before {
    content: " / ";
    display: inline-block;
    padding: 0 0.25rem;
    color: #666;
}

h1 {
    font-size: 1.25rem;
    line-height: 1.25rem;
}

h2 {
    font-size: 1.25rem;
    line-height: 1.5rem;
    margin: 0 0 0.5rem;
}

h3 {
    font-size: 1.1rem;
    line-height: 2rem;
}

.row {
    display: flex;
    flex-direction: row;
}

.row .left {
    flex: 0 0 var(--left-column-size);
    background: var(--left-column-background);
    max-width: var(--left-column-max-width);
}

.row .left,
.row .right {
    padding: 0 0 3rem;
}

.row .left > *,
.row .right > * {
    padding: 1rem;
}

.row .left .profile {
    position: relative;
}

.row .left .profile .profile-container {
    border-radius: .1rem 2rem .2rem 1rem;
    overflow: hidden;
    position: relative;
}

.row .left .profile h1 {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 0.25rem 1rem;
    background: var(--profile-image-caption-background);
    color: #DEDEDE;
    text-align: center;
}

.row .left .profile .profile-image img {
    display: block;
    width: 100%;
}

.row .right {
    flex: 0 1 calc(100% - var(--left-column-size));
}

.row .right .work-experience li:not(:last-child),
.row .right .education li:not(:last-child) {
    margin-bottom: 2rem;
}

.row .right .work-experience li p,
.row .right .education li p {
    font-size: 0.9rem;
}

.row .right .work-experience li .period,
.row .right .education li .period {
    font-style: italic;
    font-size: 0.9rem;
}

.row .right .work-experience li .functions,
.row .right .education li .functions {
    color: #5A1E3C;
    font-size: 0.9rem;
    margin-bottom: .5rem;
}

.row .right .work-experience li .functions em,
.row .right .education li .functions em {
    font-weight: bold;
}

.row .right .work-experience li .location,
.row .right .education li .location {
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

.row .left h2 + *,
.row .right h2 + * {
    transition: margin-left .4s ease-in-out;
    margin-left: 1rem;
}

dl > dt {
    font-weight: 600;
}

dl > dd {
    margin-bottom: .5rem;
}

p > em {
    font-weight: bold;
    color: #333;
}

.location > .location-indicator {
    padding-right: 0.5rem;
    color: #5A1E3C;
}

.page-break {
    page-break-before: always;
}

@media only screen and (max-width: 768px) {
    .row {
        display: block;
    }
    .row .left {
        max-width: 100%;
    }

    .row .left .profile {
        max-width: var(--profile-image-print-max-width);
        margin: 0 auto;
    }
}

@media (prefers-reduced-motion) {
    * {
        transition: none !important;
    }
}

@media print {

    html, body {
        line-height: 1.25rem;
    }

    .row .left > *,
    .row .right > * {
        padding-bottom: 0px;
    }

    .row .left {
        max-width: var(--profile-image-print-max-width);
        flex-basis: var(--profile-image-print-max-width);
        word-break: break-word;
    }

    .row .left .profile {
        max-width: var(--profile-image-print-max-width);
    }

    .row .right .functions, 
    .row .right .period,
    .row .right .school {
        display: inline;
    }

    .row .right .functions li, 
    .row .right .period li,
    .row .right .school li {
        font-size: 0.9rem;
    }

    .row .right .functions {
        text-transform: lowercase;
    }

    .row .right .functions::before,
    .row .right .school::before {
        content: ", ";
    }

    .row .right .location {
        margin: 0;
    }

    .row .right .location::before {
        content: "Lokatie: ";
        display: inline-block;
        padding-right: .25rem;
    }

    .row .right .location i {
        display: none;
        margin: 0;
    }

    a.a-print-display span {
        font-size: 0;
        color: transparent;
        height: 0;
        line-height: 0;
        position: absolute;
    }

    a.a-print-display::after {
        content: attr(href);
        font-size: 0.9rem;
        line-height: 1.25rem;
    }

    .row .right .work-experience li:not(:last-child), 
    .row .right .education li:not(:last-child) {
        margin-bottom: 1rem;
    }

    .row .left h2 + *, .row .right h2 + * {
        margin-left: 0;
    }

    dl dt,
    dl dd,
    p,
    ul.inline-list li {
        font-size: 0.9rem;
    }

    .blurb ul.inline-list li {
        line-height: 1rem;
    }

    .skills p {
        display: inline;
    }
}