/*
Theme Name: CV Parade Theme
Version: 1.0
*/

/* GLOBAL VARIABLES */

:root {
  /* COLOURS */
  --colour-background: #25333a; /* #636E72 */
  --colour-background-invert: #ecf0f1;
  --colour-link: #fff;
  --colour-link-underline: #ccc;
  --colour-text: #fff;
  --colour-text-knockback: #7e8e9e;
  --colour-text-invert: #2c3e50;
  --colour-line: #5e7286;
  --colour-line-invert: #ccc;
  --colour-highlight: #6e9b85; /* #0be881 */
  /* SPACING */
  --spacing-small: .5em;
  --spacing-default: 1em;
  --spacing-large: 2em;
  --spacing-xlarge: 3em;
  /* RADII */
  --radius: 2px;
}

/* :root OVERRIDES */
.inverted {
  --colour-background: #ecf0f1;
  --colour-background-highlight: #d4d8d8;
  --colour-link: #2ecc71;
  --colour-link-underline: #ccc;
  --colour-text: #2c3e50;
}

.u_colour_knockback { color: var(--colour-text-knockback); }
.u_type_smaller { font-size: 0.75em; }
.u_margin_left { margin-left: .5em; }
.u_margin_bottom { margin-bottom: .5em; }
.u_margin_top { margin-top: .5em; }
.u_margin_bottom_large { margin-bottom: 3em; }
.u_margin_bottom_none { margin-bottom: 0; }
.u_padding_top_medium { padding-top: 2em; }
.u_nowrap { white-space: nowrap; }
.u_noshadow { box-shadow: none !important; }
.u_display_block { display: block; }
.u_display_flex { display: flex; }
.u_display_hidden { display: hidden; }


/* GLOBAL STYLES */

* {
  box-sizing: border-box;
}
html {
  background: var(--colour-background);
  height: 100%;
  min-height: 100%;
  margin: 0;
  padding: 0;
}
body {
  color: var(--colour-text);
  font-family: "Nunito Sans", sans-serif;
  height: 100vh;
  line-height: 1.4;
  margin: 0;
  min-height: 100%;
  padding: 0;
  width: 100%;
}
@media screen and (min-width: 768px) {
  body {
    /*font-size: 125%;*/
  }
}


/* TYPE */

p,h1,h2,h3,h4,h5,h6 {
  margin: 0 0 1em 0;
}
p {
  line-height: 1.8;
}
h1 {
  font-size: 1.5em;
}
h2 {
  font-size: 1.25em;
}
h3 {
  color: #95a5a6;
  font-size: 1em;
  margin-bottom: 0.25em;
  text-transform: uppercase;
}

.leader {
  margin-bottom: 2em;
  margin-top: 3em;
}
.page-title {
  font-size: 2em;
  margin-top: 1em;
}
.post-content p {
  /*font-size: 1.5em;*/
}


/* LISTS */

ul,ol {
  line-height: 1.8;
  margin: 0 0 1em 0;
  padding: 0;
}
ul li,
ol li {
  margin: 0 0 .5em 0;
  margin-left: 1.5em;
  padding: 0;
}

.List-noMarker li {
  list-style: none;
  margin-left: 0;
}


/* LINKS AND BUTTONS */

button {
  cursor: pointer;
  font-family: inherit;
}
a {
  color: var(--colour-link);
  font-weight: bold;
  text-decoration-color: var(--colour-highlight);
  text-decoration-line: underline;
}
a:hover {
  text-decoration-color: var(--colour-link);
}


/* CODE */

pre {
  background-color: #fff;
  border-radius: var(--radius);
  margin: 0 0 2em 0;
  padding: .75em 1em;
  overflow-x: auto;
}

p code {
  background-color: #fff;
  border-radius: var(--radius);
  padding: .3em .35em;
  margin: 0 .2em;
  white-space: nowrap;
}

hr {
  border-top: 1px solid var(--colour-line-invert);
  height: 0;
  margin: 2em 0;
}


/* BLOCKQUOTES */

blockquote {
  background-color: #fff;
  border-radius: var(--radius);
  font-style: italic;
  margin: 0 0 2em 0;
  padding: 1em 2em .15em 1.5em;
  position: relative;
}
blockquote::after {
  color: var(--colour-link);
  content: ",,";
  font-size: 5em;
  font-style: italic;
  font-weight: bold;
  letter-spacing: -4px;
  line-height: 0;
  margin: 0;
  padding: 0;
  position: absolute;
  top: -28px;
  right: .25em;
}


/* IMAGES */

figure {
  margin: 0;
}

figure img {
  box-shadow: 0 1px 1px rgba(16,27,30,0.15), 0 2px 2px rgba(16,27,30,0.15), 0 4px 4px rgba(16,27,30,0.15), 0 8px 8px rgba(16,27,30,0.15), 0 16px 16px rgba(16,27,30,0.15);
  height: auto;
  width: auto;
}

img {
  max-width: 100%;
}


/* TABLES */

table {
  margin-bottom: 2em;
}

th,td {
  padding-bottom: .5em;
  padding-right: 1em;
  vertical-align: top;
}


/* LAYOUT (PAGES) */

.Layout-flex {
  display: flex;
}

@media screen and (min-width: 600px) {
  .Layout-flex--600 {
    display: flex;
    margin: 0 -2%;
  }
  .Layout-flex--600 > div {
    margin: 0 2%;
  }
}

@media screen and (min-width: 1200px) {
  .ProportionalSpacer {
    padding: 4% 10%;
  }
}

.page_outer {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.page_header,
.page_footer {
  flex-grow: 0;
  padding: var(--spacing-default) var(--spacing-default);
}

.page_content {
  background-color: rgba(255,255,255, 0.05);
  flex-grow: 1;
  padding: var(--spacing-default) var(--spacing-default);
}

@media screen and (min-width: 768px) {
  .page_header,
  .page_footer,
  .page_content {
    padding: var(--spacing-default) var(--spacing-xlarge);
  }
}

.max_width {
  margin: 0 auto;
  max-width: 80em;
}


/* LAYOUT (COLUMNS) */

.columns_container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  width: 100%;
}
.column {
  display: flex;
  flex-direction: column;
  flex-basis: 100%;
  flex: 1 0 100%; /* flex-grow flex-shrink flex-basis */
}
@media screen and (min-width: 768px) {
  .column {
    flex: 1 0 50%; /* flex-grow flex-shrink flex-basis */
  }
}


/* PANELS */

.Panel {
  border: 1px solid var(--colour-line);
  border-radius: var(--radius);
}

.Panel-segment {
  border-bottom: 1px solid var(--colour-line);
  padding: var(--spacing-default);
}


/* NAV */

.site_logo_link {
  display: inline-block;
  float: left;
  z-index: 60;
}

.site_logo {
  display: block;
  fill: var(--colour-text);
  width: 180px;
}

.primaryNavigation {
  display: none;
}
.primaryNavigationOpenMobile {
  display: block !important;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--colour-background);
  z-index: 50;
  text-align: center;
  padding: var(--spacing-large);
}
.primaryNavigationOpenMobile ul {
  display: block !important;
  padding-top: 6em !important;
}
.primaryNavigationOpenMobile ul a {
  display: inline-block !important;
  margin-top: var(--spacing-default) !important;
  padding: var(--spacing-default) var(--spacing-default) !important;
}
@media screen and (min-width: 480px) {
  .menu-toggle {
    display: none;
  }
  .primaryNavigation {
    display: block;
  }
  .main-navigation ul li + li {
    margin-left: var(--spacing-small);
  }
}

.menu-toggle {
  outline: none;
  position: relative;
  z-index: 60;
}

.main-navigation {
  margin-left: auto;
}

.main-navigation ul {
  display: flex;
  list-style: none;
  line-height: 1;
  margin: 0;
  padding: 0;
}

.main-navigation ul li {
  margin: 0;
  padding: 0;
}

.main-navigation ul a,
.menu-toggle {
  background: rgba(0, 0, 0, 0.25); /* #bdc3c7 */
  color: var(--colour-text);
  border-radius: var(--radius); /* 300px */
  border: none;
  font-weight: normal;
  font-size: 1em;
  line-height: 1em;
  text-decoration: none;
  padding: var(--spacing-small) var(--spacing-default);
}

.main-navigation ul a {
  display: block;
}

.main-navigation ul li:last-of-type a {
  font-weight: bold;
  background: var(--colour-highlight); /* #3ae374 */
}

.nav_bar {
  border-bottom: 1px solid var(--colour-line);
}

.footerNavigation {
  display: flex;
  list-style: none;
  line-height: 1;
  margin: 0;
  margin-left: auto;
  padding: 0;
}

.footerNavigation li {
  margin: 0;
  padding: 0;
}


/* DESIGN */

.logo {
  fill: var(--colour-link);
  width: 20px;
  vertical-align: middle;
}

/*@media screen and (min-width: 768px) {
  .post-content {
    display: flex;
  }
}*/

.index-entries {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -1em;
}
.index-entries .post {
  width: 14em;
}

.index-entries .post-content {
  position: relative;
  margin-bottom: .5em;
}
.index-entries .post figure {
  width: 100%;
  z-index: 30;
  position: relative;
}
.index-entries .post figure:nth-of-type(2) {
  position: absolute;
  top: 6px;
  left: 6px;
  z-index: 20;
}
.index-entries .post figure:nth-of-type(3) {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 10;
}

.index_links {
  /*border: 1px solid transparent;*/
  display: block;
  text-decoration: none;
  padding: var(--spacing-default);
  border-radius: var(--radius);
  transition: background .5s;
}

.index_links:hover {
  /*border: 1px solid black;*/
  background: var(--colour-background);
}

.index_links:hover figure {
  transform: scale(1.02);
}

.index_filters {
  display: flex;
  list-style: none;
  margin: 0 0 1em 0;
}
.index_filters li {
  margin: 0 1em 0 0;
}
.index_filters li a {
  font-weight: normal;
  text-decoration: none;
}
.index_filters li.current-cat a {
  font-weight: bold;
}

.job-title {
  text-transform: capitalize;
  font-weight: normal;
}


.post-meta {
  margin-bottom: 0;
}
.post-meta li {
  list-style: none;
  margin-left: 0;
  padding-left: 2em;
  position: relative;
}
.post-meta li::before {
  background-position: 60% 70%;
  background-repeat: no-repeat;
  background-size: 100%;
  content: "";
  height: 1.5em;
  left: 0.15em;
  position: absolute;
  width: 1.25em;
}
.post-meta-date::before {
  background-image: url("data:image/svg+xml,%3Csvg version='1.1' id='Layer_1' xmlns='http://www.w3.org/2000/svg' x='0' y='0' viewBox='0 0 512 512' xml:space='preserve'%3E%3Cstyle%3E.st0%7Bfill:%23fff%7D%3C/style%3E%3Ccircle class='st0' cx='299' cy='210' r='20'/%3E%3Ccircle class='st0' cx='299' cy='297' r='20'/%3E%3Ccircle class='st0' cx='386' cy='210' r='20'/%3E%3Cpath class='st0' d='M492 250c11 0 20-9 20-20V120c0-44.1-35.9-80-80-80h-26V20c0-11-9-20-20-20s-20 9-20 20v20h-91V20c0-11-9-20-20-20s-20 9-20 20v20h-90V20c0-11-9-20-20-20s-20 9-20 20v20H80C35.9 40 0 75.9 0 120v312c0 44.1 35.9 80 80 80h252c.7 0 1.4 0 2-.1.7.1 1.3.1 2 .1 5.3 0 10.6-2.1 14.4-6.1l156-162c5.6-5.8 7.1-14.3 4-21.7-3.1-7.4-10.4-12.2-18.4-12.2h-96c-44.1 0-80 35.9-80 80v82H80c-22.1 0-40-17.9-40-40V120c0-22.1 17.9-40 40-40h25v20c0 11 9 20 20 20s20-9 20-20V80h90v20c0 11 9 20 20 20s20-9 20-20V80h91v20c0 11 9 20 20 20s20-9 20-20V80h26c22.1 0 40 17.9 40 40v110c0 11 9 20 20 20zM356 390c0-22.1 17.9-40 40-40h49l-89 92.4V390z'/%3E%3Ccircle class='st0' cx='125' cy='210' r='20'/%3E%3Ccircle class='st0' cx='212' cy='297' r='20'/%3E%3Ccircle class='st0' cx='125' cy='384' r='20'/%3E%3Ccircle class='st0' cx='125' cy='297' r='20'/%3E%3Ccircle class='st0' cx='212' cy='384' r='20'/%3E%3Ccircle class='st0' cx='212' cy='210' r='20'/%3E%3C/svg%3E");
}
.post-meta-link::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath d='M402.5 205.3l-1.1-1.1L192.2 14.7l-.5-.5c-18-15.2-42.6-18.5-64-8.6C106.3 15.6 93 36.5 93 60.1v38c0 11 9 20 20 20s20-9 20-20v-38c0-11.8 8.9-16.9 11.6-18.1 2.7-1.2 12.1-4.7 21.1 2.7l208.2 188.7c7.7 8.7 4.6 18.4 3.4 21.2-1.1 2.8-5.8 11.9-17.4 12.5h-73c-6.9 0-13.2 3.5-16.9 9.3-3.7 5.8-4.1 13.1-1.1 19.3l69.9 147s0 .1.1.1c2.4 5 2.7 10.6.9 15.8-1.9 5.2-5.6 9.3-10.6 11.7-10 4.6-22.1.3-26.9-9.6l-70.1-151c-3.2-7-10.2-11.5-17.8-11.6-7.7-.1-14.7 4.2-18.2 11l-32.7 65.2c-2.2 2.1-6.4 3.7-10.2 3.7h-.1c-9.5-.1-20.1-9.1-20.1-22V198c0-11-9-20-20-20s-20 9-20 20v158c0 16.6 6.4 32.2 18.1 44 11.2 11.3 26.5 17.9 41.7 18h.3c13.7 0 32.1-5.5 43.4-21.1.6-.9 1.2-1.8 1.7-2.7l15.1-30.1L266 477.5c0 .1.1.2.1.2 10.3 21.5 32.1 34.2 54.7 34.2 8.4 0 17-1.8 25.1-5.5 14.8-6.9 26-19.1 31.5-34.5 5.5-15.4 4.6-31.9-2.5-46.6L318.6 307h42.5c23.8-.9 44.1-15.2 53.2-37.4 9.2-22.2 4.7-46.9-11.8-64.3z' fill='%23fff'/%3E%3C/svg%3E");
}
.post-meta-tags::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath d='M352.1 348.4L239.6 460.6c-15.4 15.4-40.8 15.2-56.5-.6L51.8 328.7c-15.6-15.6-15.6-40.9-.1-56.5l150.5-149.9c8.5-8.5 20.3-12.7 32.3-11.5l152.1 15.5 3.1 30.5c-35.5 13.2-69.1 15.2-69.9 15.3-11 .6-19.5 10-18.9 21 .6 10.7 9.4 18.9 19.9 18.9h1.1c1.6-.1 34.3-1.9 71.9-14.3L402 278c.7 6.8-.4 13.7-3.1 20-4.4 10.1.2 21.9 10.3 26.3 10.1 4.4 21.9-.2 26.3-10.3 5.5-12.6 7.6-26.4 6.2-40l-9.4-92.6c52.1-27.8 79.4-70.8 79.4-125.3v-1c0-30.3-24.7-55-54.9-55-1.1 0-26.7 0-55.9 11.3-34.5 13.4-60.2 36.9-75.1 68.5L238.6 71c-24-2.4-47.6 6-64.6 23L23.5 243.9c-31.1 31.2-31.1 81.9 0 113l131.3 131.4c15.8 15.8 36.5 23.7 57.1 23.7 20.3 0 40.6-7.7 56-23.1l112.5-112.2c7.8-7.8 7.9-20.4.1-28.3-7.9-7.8-20.6-7.8-28.4 0zm62.2-299.3c22.3-8.9 42.3-9.1 42.5-9.1 8.3 0 15 6.7 15 15v1c0 33.9-14.7 61.1-43.9 81.3l-3.2-31.3c-1-9.4-8.4-16.9-17.9-17.9l-37.6-3.8c10.7-15.7 25.7-27.5 45.1-35.2z' fill='%23fff'/%3E%3C/svg%3E");
}
.post-meta-permalink::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath d='M430 432c-11 0-20 9-20 20 0 5.6-1.9 10.3-5.6 13.9-3.9 3.9-9.6 6.1-15.1 6.1-5.5-.1-9.9-1.9-13.6-5.7L270.3 358c-3.8-3.9-8.9-6.1-14.3-6.1s-10.6 2.2-14.3 6.1L136.3 466.3c-3.6 3.7-8.1 5.6-13.7 5.7-5.6.1-11.3-2.1-15.1-5.9-3.7-3.6-5.5-8.2-5.5-13.7V80c0-22.1 17.9-40 40-40h228c22.1 0 40 17.9 40 40v273c0 11 9 20 20 20s20-9 20-20V80c0-44.1-35.9-80-80-80H142C97.9 0 62 35.9 62 80v372.3c0 16.2 6.2 31.2 17.5 42.2 11.3 11.1 26.8 17.4 42.8 17.4h1.1c16.2-.3 30.6-6.4 41.6-17.8l91-93.5 91 93.5c11.1 11.4 25.6 17.6 41.7 17.8 16.2.2 32.2-6.2 43.7-17.6 11.3-11.1 17.5-26.2 17.5-42.4C450 441 441 432 430 432z' fill='%23fff'/%3E%3C/svg%3E");
}
.EditLink {
  float: right;
}

.posts-navigation {
  padding: var(--spacing-xlarge) 0;
  text-align: center;
}
.nav-links {
  display: inline-flex;
}
.nav-links a {
  position: relative;
}
.posts-navigation a {
  background: var(--colour-background);
  border-radius: var(--radius);
  padding: var(--spacing-small) var(--spacing-default);
  margin: 0 var(--spacing-small);
}

.screen-reader-text {
  display: none;
}