/*
Theme Name: Tempered Glass
Theme URI: http://intenseminimalism.com/
Author: Davide 'Folletto' Casali
Author URI: http://intenseminimalism.com/
Description: Personal Minimalism, Magazine Inspired.
Version: 1.1
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: slab-glass
Tags: minimal, blue, magazine, slab

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.

*/

@import url(//fonts.googleapis.com/css?family=Arvo:400,700);

/* COLOR KEY
/*    rgba(255, 255, 255, 1.0); /* $color-white */
/*    rgba(0, 59, 77, 1.0); /* $color-blue-deep */
/*    rgba(124, 173, 195, 1.0); /* $color-blue-mid */
/*    rgba(19, 123, 168, 1.0); /* $color-link */
/*    rgba(95, 75, 139, 0.5); /* $color-ultraviolet */


/* LAYOUT LOGIC
/*        284 |32| 284 |32| 284
/*        ----600-----
/*        --------916----------
/*    |20|                     |20|
/*
/*    916px; /* main body width */
/*    956px; /* media query main body width */
/*    284px; /* logical column */



/****************************************************************************************** GENERAL */
html, body {
  height: 100%;
}

body {
  font-family: Helvetica, Arial, Tahoma, sans-serif;
  font-size: 14px;
  margin: 0;
  padding: 0;
  background: rgba(255, 255, 255, 1.0); /* $color-white */
  color: rgba(0, 59, 77, 1.0); /* $color-blue-deep */
}

a {
  color: rgba(0, 59, 77, 1.0); /* $color-blue-deep */
  transition: all 200ms ease-in;
}

a:hover {
  color: rgba(19, 123, 168, 1.0); /* $color-link */
}

img { border: 0; }
form { margin: 0; }
fieldset { border: 0; }


/****************************************************************************************** LAYOUT */
.the-body {
  max-width: 916px; /* main body width */
  padding: 0 20px;
  margin: 0 auto;
}

.the-column {
  display: flex; /* Fixing IE11 not recognizing <main> */
  flex-direction: column;
  max-width: 600px;
  position: relative;
}

#content {
  padding-top: 100px;
}

#main #content {
  padding-top: 10px;
}


/* Details:
 *    The fixed height needs to be calculated on header + footer
 */
#main { min-height: calc(100% - 145px); }
#content { min-height: calc(100% - 299px); }
.home #content { min-height: 0; }

/* And let's make this detail work with the wp admin bar too */
html[lang] {
  margin-top: 0 !important; /* This is relevant only when the wp admin bar is on */
}

body.admin-bar {
  height: calc(100% - 32px); /* And let's re-compensate for it*/
  margin-top: 32px;
}

/* More hacks for this below... check for .admin-bar */


/****************************************************************************************** TYPOGRAPHY */
p, li {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6em;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Arvo", "Nexa Slab", Rockwell, Georgia, "Times New Roman", Times, serif;
  font-weight: 400;
}

h1 {
  font-size: 2.2em;
}

h1 a {
  text-decoration: none;
}

h2 {
  font-size: 1.8em;
  margin: 2em 0 1em;
}

.chunk-label {
  background: rgba(0, 59, 77, 1.0); /* $color-blue-deep */
  color: rgba(255, 255, 255, 1.0); /* $color-white */
  padding: 4.5px 5px 3px;
}
.is-dark .chunk-header .chunk-label,
.home.is-dark .chunk-label {
  background: rgba(255, 255, 255, 1.0); /* $color-white */
  color: rgba(0, 59, 77, 1.0); /* $color-blue-deep */
  font-weight: 400;
}

/****** Meta uppercase text */
#chunk-colophon,
#chunk-colophon a,
#chunk-header-nav ul li a,
time,
.chunk-label,
.chunk-article-header-meta,
.chunk-article-footer-meta,
.is-floating-sidepanel,
#btn-mobile-nav-toggle,
.wp-block-pullquote cite,
.wp-block-quote cite,
.fullwidth-search__meta,
.home .entry-content h4 {
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
}

/* ...on dark */
#chunk-colophon,
#chunk-colophon a,
.chunk-label {
  font-weight: 400;
}

/****************************************************************************************** REUSABLES */
.is-floating-sidepanel {
  position: fixed;
  right: calc(50% - (916px / 2)); /* align from the center, remove half of max-width... */
  bottom: 15px;

  background: rgba(255, 255, 255, 1.0); /* $color-white */
  border: 1px solid rgba(0, 59, 77, 1.0); /* $color-blue-deep */
  width: 284px; /* logical column */
  overflow: hidden;
}

@media (max-width: 956px) {
  .is-floating-sidepanel {
    position: static;
    width: 100%;
    margin: 10px 0 100px;
  }
}


/****************************************************************************************** HEADER */
#chunk-header {
  max-width: 956px; /* media query main body width */
  margin: 0 auto;
}

#chunk-header .the-body {
  position: absolute;
  width: calc(100% - 40px); /* remove padding */
  overflow: visible;
  z-index: 2;
  margin-top: 58px;
}

@media (max-width: 760px) {
  #chunk-header .the-body {
    margin-top: 30px;
  }
}

/****** Logotype */
#chunk-header-logotype {
  float: left;
}

#chunk-header-logotype h1 {
  font-size: 16px;
  letter-spacing: 1px;
  margin: 0;
  padding: 6px 0;
}

#chunk-header-logotype a {
  display: inline-block;
  text-decoration: none;
  line-height: 2em;
}

#chunk-header-logotype a:before {
  display: block;
  float: left;
  content: '';
  background: no-repeat;
  height: 30px;
  width: 30px;
  margin-right: 10px;
}

/****** Nav */
#chunk-header-nav {
  float: right;
  margin-top: 6px;
}

@media (max-width: 760px) {
  #chunk-header-nav {
    float: none;
  }
}

#chunk-header-nav ul {
  padding: 0;
  margin: 0;
  list-style: none;
  float: right;
}

#chunk-header-nav ul li {
  margin: 0;
  float: left;
  line-height: 1em;
}

#chunk-header-nav ul li a {
  display: inline-block;
  padding: 3px 0;
  margin: 6px 0 6px 36px;

  text-decoration: none;
}

#chunk-header-nav ul li.menu-item.current_page_item a,
#chunk-header-nav ul li.menu-item.current_page_parent a {
  border-bottom-width: 1px;
}

#chunk-header-nav ul li.menu-item.current_page_item a:hover {
  color: inherit;
  cursor: default;
}

/****** Nav on Mobile */
#btn-mobile-nav-toggle {
  display: none;
  position: absolute;
  top: -0.5px;
  right: 2px;
  padding: 17px 16px 15px;
  transition: all 150ms ease-in;

  -webkit-tap-highlight-color: rgba(0,0,0,0);
}

@media (max-width: 760px) {
  #btn-mobile-nav-toggle {
    display: block;
    transition: all 200ms ease-in;
  }

  #btn-mobile-nav-toggle:before {
    content: "×";
    font-size: 14px;
    display: block;
    opacity: 0.0;
    position: absolute;
    right: 0;
    top: 0;
    padding: 15px 16px 15px 40px; /* wider on the left to cover the full size of the "Menu" toggle */
    transition: all 200ms ease-in;
  }

  #btn-mobile-nav-toggle.is-open {
    top: -100px;
  }

  #btn-mobile-nav-toggle.is-open:before {
    opacity: 1.0;
    top: 100px;
  }

  #chunk-header-nav ul {
    display: none;

    width: calc(100% + 40px);
    margin: -160px -20px 0;
    padding-top: 104px;
    background: rgba(255, 255, 255, 1.0);
    border-bottom: 1px solid rgba(124, 173, 195, 1.0); /* $color-blue-mid */
  }

  .is-dark #chunk-header-nav ul {
    background: rgba(0, 59, 77, 1.0); /* $color-blue-deep */
  }

  #chunk-header-nav ul li {
    width: calc(100% - 52px);
    padding: 20px 26px;
  }

  #chunk-header-nav ul li a {
    margin-left: 6px;
  }

  #chunk-header-nav ul li.menu-item.current_page_item a,
  #chunk-header-nav ul li.menu-item.current_page_parent a {
    border-bottom-width: 0;
  }

  #chunk-header-nav ul li.menu-item.current_page_item a:before,
  #chunk-header-nav ul li.menu-item.current_page_parent a:before {
    content: "•";
    margin-left: -16px;
    position: absolute;
  }
}


/****************************************************************************************** SEARCH */
#menu-item-search {

}

#menu-item-search a {
  text-indent: -666em;
  width: 10px;
}

#menu-item-search a:before {
  content: '';
  height: 10px;
  width: 10px;
  margin-top: 1px;
  background: no-repeat;
  float: right;
  transition: all 200ms ease-out;
}

#menu-item-search a:hover:before {
  opacity: 0.6;
}


/******* Header: on Light */
#chunk-header-logotype a {
  color: rgba(0, 59, 77, 1.0); /* $color-blue-deep */
}

#chunk-header-logotype a:before {
  background-image: url(img/intenseminimalism-logo.svg);
}

#chunk-header-nav ul li a,
#btn-mobile-nav-toggle {
  color: rgba(0, 59, 77, 1.0); /* $color-blue-deep */
}

#chunk-header-nav ul li a:hover {
  color: rgba(19, 123, 168, 1.0); /* $color-link */
}

#chunk-header-nav ul li.menu-item a {
  border-bottom-width: 0;
  border-bottom-style: solid;
  border-bottom-color: rgba(0, 59, 77, 1.0); /* $color-blue-deep */
}

#menu-item-search a:before {
  background-image: url(img/icon-search.svg);
}

/******* Header: on Dark */
.is-dark #chunk-header-logotype a {
  color: rgba(255, 255, 255, 1.0); /* $color-white */
}

.is-dark #chunk-header-logotype a:before {
  background-image: url(img/intenseminimalism-logo-white.svg);
}

.is-dark #chunk-header-nav ul li a,
.is-dark #btn-mobile-nav-toggle {
  color: rgba(255, 255, 255, 1.0); /* $color-white */
}

.is-dark #chunk-header-nav ul li a:hover {
  color: rgba(255, 255, 255, 0.5); /* $color-white */
}

.is-dark #chunk-header-nav ul li.menu-item a {
  border-bottom-color: rgba(255, 255, 255, 1.0); /* $color-white */
}

.is-dark #menu-item-search a:before {
  background-image: url(img/icon-search-white.svg);
}


/****** Search Overlay */
#chunk-search {
  display: none; /* Toggled via JS */

  position: fixed;
  background: rgba(124, 173, 195, 0.95); /* $color-blue-mid */
  z-index: 2;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
}

body.admin-bar #chunk-search {
  top: 32px; /* Adjust for logged in users */
}

#chunk-search .the-body {
  position: relative;
  padding-top: 58px;
}

@media (max-width: 760px) {
  #chunk-search .the-body {
    padding-top: 30px;
  }
}

#chunk-search #chunk-header-logotype a {
  color: rgba(255, 255, 255, 1.0); /* $color-white */
}

#chunk-search #chunk-header-logotype a:before {
  background-image: url(img/intenseminimalism-logo-white.svg);
}

#chunk-search .close-overlay {
  display: block;

  line-height: 2.9em;
  text-align: right;

  text-decoration: none;
  color: rgba(255, 255, 255, 1.0); /* $color-white */
}

#chunk-search .close-overlay:hover {
  opacity: 0.6px;
}

#chunk-search form {
  clear: both;
  margin: 7.5em 0 0;
}

#chunk-search form #s {
  font-family: "Arvo", "Nexa Slab", Rockwell, Georgia, "Times New Roman", Times, serif;
  font-size: 7em;
  background: transparent;
  width: 100%;

  -webkit-appearance: none;
  outline: none;
  border: 0;
  padding: 0;
  color: rgba(255, 255, 255, 1.0); /* $color-white */
}

::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0.3); /* $color-white */
}
:-moz-placeholder { /* Firefox 18- */
  color: rgba(255, 255, 255, 0.3); /* $color-white */
}
::-moz-placeholder { /* Firefox 19+ */
  color: rgba(255, 255, 255, 0.3); /* $color-white */
}
:-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.3); /* $color-white */
}


/****** Search Page Header */
.chunk-search-page-header {
  margin: -96px 0 120px 0;
}

.chunk-search-page-header #s,
.chunk-search-page-header h1 {
  font-family: "Arvo", "Nexa Slab", Rockwell, Georgia, "Times New Roman", Times, serif;
  font-size: 7em;
  background: transparent;
  width: 100%;

  -webkit-appearance: none;
  outline: none;
  border: 0;
  padding: 0;
  color: rgba(0, 59, 77, 0.1); /* $color-blue-deep */

  transition: all 150ms ease-in;
}

@media (max-width: 760px) {
  .chunk-search-page-header #s,
  .chunk-search-page-header h1 {
    font-size: 4.6em;
  }
}


.chunk-search-page-header h1 {
  margin-left: 0;
}

.chunk-search-page-header #s:focus {
  color: rgba(0, 59, 77, 1.0); /* $color-blue-deep */
}

.chunk-search-page-header .search-page-meta {
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;

  margin: 10px 0 0;
  color: rgba(0, 59, 77, 1.0); /* $color-blue-deep */
}

.chunk-search-page-header .search-page-meta label {
  color: rgba(124, 173, 195, 1.0); /* $color-blue-mid */
}

input[type="search"]::-webkit-search-cancel-button {
  -webkit-appearance: none;
}


/****************************************************************************************** LIST */
.blog article,
.archive article,
.search article {
  margin: 0 0 4.5em;
}

.blog #main,
.archive #main,
.search #main {
  margin-top: 200px;
}


/****** Format: Aside */
body:not(.single) #content article.format-aside h1 {
  font-size: 1.4em;
}


/****** Pagination */
.chunk-pagination {

}

.chunk-pagination a {
  display: block;
  text-decoration: none;
  padding: 16px 20px;
}

.chunk-pagination .pagination-next a {
  float: left;
}

.chunk-pagination .pagination-next a:before {
  content: "↖";
  margin-right: 10px;
}

.chunk-pagination .pagination-prev a {
  float: right;
}

.chunk-pagination .pagination-prev a:after {
  content: "↘";
  margin-left: 10px;
}

/****************************************************************************************** POST/PAGE */
.is-light #chunk-page-cover {
  padding-top: 200px;
}

.is-dark #chunk-page-cover {
  height: calc( 100vh - 80px );
}

.is-dark.admin-bar #chunk-page-cover {
  height: calc( 100vh - 80px - 32px );
}

article .entry-title.is-excerpt-title { /* Light page */
  margin: 0.5em 0 2em;
}

.chunk-article-header .entry-title { /* Dark page */
  margin: 15px 20px 15px 0;
}

.chunk-article-header-meta .article-author {
  color: rgba(124, 173, 195, 1.0); /* $color-blue-mid */
}

@media (max-width: 450px) {
  .chunk-article-header-meta .article-time {
    display: block;
    margin-bottom: 4px;
  }
}

.is-dark #chunk-page-cover {
  background-size: cover;
  background-position: bottom center;
  background-color: rgba(0, 59, 77, 1.0); /* $color-blue-deep */
  color: rgba(255, 255, 255, 1.0); /* $color-white */

  overflow: hidden;
  padding: 0;
  position: relative;
}

.is-dark #chunk-page-cover .the-column {
  position: absolute;
  bottom: 2em;
}

.is-dark #chunk-page-cover .chunk-article-header h1 a {
  color: rgba(255, 255, 255, 1.0); /* $color-white */
}

.is-dark #chunk-page-cover .image-header-gradient {
  background: -webkit-linear-gradient(top, rgba(0, 59, 77, 0.0) 0%, rgba(0, 59, 77, 0.5) 100%);
  background: -moz-linear-gradient(top, rgba(0, 59, 77, 0.0) 0%, rgba(0, 59, 77, 0.5) 100%);
  background: -ms-linear-gradient(top, rgba(0, 59, 77, 0.0) 0%, rgba(0, 59, 77, 0.5) 100%);
  background: linear-gradient(top, rgba(0, 59, 77, 0.0) 0%, rgba(0, 59, 77, 0.5) 100%);

  position: absolute;
  height: 150px;
  bottom: 0;
  left: 0;
  right: 0;
}

.is-dark #chunk-page-cover .chunk-label {
  padding-left: 0;
  background: transparent;
  font-weight: 600;
}

/****** Article Footer Meta */
.chunk-article-footer-meta {
  margin: 4em 0 10em;
  clear: both;
}

.chunk-article-footer-meta .article-date {
  display: block;
  color: rgba(124, 173, 195, 1.0); /* $color-blue-mid */
}

/****** Share */
.chunk-share {

}

.chunk-share .label {
  float: left;
  padding: 17px 20px 15px;
}

.chunk-share .icon {
  float: right;
  display: block;

  padding: 13px 16px 12px;
  width: 20px;
  height: 20px;
  text-indent: -600em;
  background: transparent url(img/icon-twitter.svg) no-repeat 16px 13px;
}
.chunk-share .icon:hover {
  opacity: 0.6;
}

.chunk-share .icon.icon-twitter {
  background-image: url(img/icon-twitter.svg);
}
.chunk-share .icon.icon-facebook {
  background-image: url(img/icon-facebook.svg);
}
.chunk-share .icon.icon-linkedin {
  background-image: url(img/icon-linkedin.svg);
}

/****** Related */
.chunk-related {
  margin: 1em 0;
}

.chunk-related article {
  margin: 0 0 2em;
}

.chunk-related article .chunk-label {
  display: none;
}

.chunk-related article h1 {
  font-size: 1.4em;
  color: rgba(124, 173, 195, 1.0); /* $color-blue-mid */
}

.chunk-related .chunk-article-header-meta .article-author {
  display: none;
}

.chunk-related .chunk-article-header-meta {
  color: rgba(124, 173, 195, 1.0); /* $color-blue-mid */
}



/****************************************************************************************** ARTICLE CONTENT */
.entry-content p {
  line-height: 30px;
}

@media (max-width: 956px) {
  .entry-content img {
    max-width: 100%;
    height: auto;
  }
}

.entry-content .aligncenter {
  margin-left: auto;
  margin-right: auto;
}

.entry-content .alignleft {
  float: left;
}

.entry-content .alignright {
  float: right;
  clear: both;

  margin-bottom: 40px;
  margin-right: -300px;
}

@media (max-width: 956px) {
  .entry-content .alignright {
    margin-right: 0;
    margin-left: 10px;
    max-width: 40%;
    height: auto;
  }
}

.entry-content .alignfull img {
  width: auto;
  max-width: 916px; /* main body width */
}

@media (max-width: 956px) {
  .entry-content .alignfull img {
    margin: 0 0 0 -20px;
  }
}

@media (max-width: 956px) and (pointer: fine) {
  .entry-content .alignfull img {
    width: calc( 100vw - 16px ); /* subtracts (roughly) the scrollbar */
  }
}

.entry-content a {
  text-decoration: none;

  box-shadow: inset 0 -5px 0 rgba(124, 173, 195, 0.3); /* $color-blue-mid */
  color: inherit;

  transition: all 200ms cubic-bezier(0.010, 0.500, 0.465, 0.810);
}

.entry-content a:hover {
  box-shadow: inset 0 -20px 0 rgba(124, 173, 195, 0.3); /* $color-blue-mid */
}

.entry-content a.is-unstyled,
.entry-content a.is-unstyled:hover {
  /* This is to applied manually to a wrapping images */
  box-shadow: none;
}

.entry-content h1 {
  margin: 3em 0 1em;
}

.entry-content h2 {
  margin: 2em 0 1em;
}

.entry-content h3 {
  margin: 3em 0 0.5em;
}

.entry-content h4 {
  margin: 2em 0 0;
  text-transform: uppercase;
}

.entry-content h5 {
  margin: 2.2em 0 0;
  text-transform: uppercase;
}

.entry-content h6 {
  margin: 2.2em 0 0;
  text-transform: uppercase;
}

.entry-content blockquote {
  margin: 0 0 0 10px;
  padding-left: 14px;
  border-left: 1px solid rgba(0, 59, 77, 0.2); /* $color-blue-deep */
}

.home .entry-content blockquote {
  border-left: 1px solid rgba(124, 173, 195, 0.2); /* $color-blue-mid */
}

.entry-content sup {
  margin-top: -5px;
  display: inline-block;
}

.entry-content sub {
  margin-bottom: -5px;
  display: inline-block;
}

.entry-content del {
  opacity: 0.7;
}

.entry-content ins {
  text-decoration: none;
  border-bottom: 1px solid rgba(0, 59, 77, 0.2); /* $color-blue-deep */
}

.entry-content pre,
.entry-content code {
  font-family: "Courier New", Courier, Times, serif;
  font-weight: 400;
}

.entry-content pre {
  width: 100%;
  overflow: auto;
}

.entry-content code {
  font-size: 0.9em;
}

.entry-content pre code {
  font-size: 1em;
}

.entry-content ul, ol {
  padding: 0 0 0 28px;
  list-style: none;
}

.entry-content li {
  position: relative;
  line-height: 30px;
}

.entry-content ol li {
  counter-increment: step-counter;
}

.entry-content ol {
  counter-reset: step-counter;
}

.entry-content ol li:before,
.entry-content ul li:before {
  content: counter(step-counter);
  display: inline-block;
  margin: 0 10px 0 -27px;
  width: 17px;
  position: absolute;
  top: 6px;

  font-size: 11px;
  font-weight: 600;
  line-height: 14px;
  text-align: center;

  background-color: rgba(0, 59, 77, 0.1); /* $color-blue-deep */
  padding: 2px 0 1px;
  border-radius: 2px;
}

.entry-content ul li:before {
  content: "•";
}

.entry-content dl {
  font-weight: 400;
  font-size: 16px;
  line-height: 30px;
}

.entry-content dl dt:after {
  content: "—";
  color: rgba(0, 59, 77, 0.3); /* $color-blue-deep */
  margin: 0 0 0 6px;
}

.entry-content dl dd {
  margin: 0 0 0 28px;
}

.entry-content table {
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;

  width: 100%;
  text-align: left;
}

.entry-content table th {
  font-weight: 600;
  text-align: left;
}

.entry-content hr {
  margin: 3em auto 3em 0;
  width: 20px;
  height: 0;
  border: 0;
  border: 2px solid rgba(0, 59, 77, 1.0); /* $color-blue-deep */
  color: rgba(0, 59, 77, 1.0); /* $color-blue-deep */
  text-align: center;
}


/****************************************************************************************** BLOCKS */

/****** Block: Pullquote */
.wp-block-pullquote {
  font-style: normal;
  padding: 0;
  border: 0;
}

.wp-block-pullquote blockquote {
  float: right;
  width: 50%;

  border: 0;
  border-top: 4px solid rgba(0, 59, 77, 1.0); /* $color-blue-deep */

  font-family: "Arvo", "Nexa Slab", Rockwell, Georgia, "Times New Roman", Times, serif;
  font-size: 1.4em;

  margin: 10px -150px 5px 12px;
  padding: 7px 0 7px 10px;

  text-align: right;
}

.wp-block-pullquote p {
  font-size: inherit;
  margin: 0;
}

.wp-block-pullquote cite {
  font-family: Helvetica, Arial, Tahoma, sans-serif;
  font-style: normal;
  color: rgba(124, 173, 195, 1.0); /* $color-blue-mid */
}

.wp-block-pullquote cite a {
  color: rgba(0, 59, 77, 1.0); /* $color-blue-deep */
}

@media (max-width: 956px) {
  .wp-block-pullquote blockquote {
    margin-right: 0;
  }
}

/****** Block: Blockquote */
.wp-block-quote cite {
  font-style: normal;
  color: rgba(124, 173, 195, 1.0); /* $color-blue-mid */
}

.wp-block-quote cite a {
  color: rgba(0, 59, 77, 1.0); /* $color-blue-deep */
}

.home .wp-block-quote cite a {
  color: rgba(255, 255, 255, 1.0); /* $color-white */
}

.wp-block-quote p {
  margin: 0.3em 0;
}

/****** Block: Blockquote (Large) */
.wp-block-quote.is-style-large {
  margin: 2.5em 0 2.5em 10px;
  padding-left: 14px;
  border: none;
}

.home .wp-block-quote.is-style-large {
  border: none;
}

.wp-block-quote.is-style-large:before {
  content: "“";
  display: block;
  float: left;
  margin-left: -32px;

  font-family: "Times New Roman", Times, serif;
  font-size: 42px;
}

.wp-block-quote.is-style-large cite {
  font-size: 11px;
}

.wp-block-quote.is-style-large p {
  font-family: "Arvo", "Nexa Slab", Rockwell, Georgia, "Times New Roman", Times, serif;
  font-size: 1.4em;
  font-style: normal;
  line-height: 32px;
}

/****** Block: Sidenote */
.wp-block-intenseminimalism-sidenote {
  float: right;
  margin: 7px 0 5px 12px; /* Top value aligns with paragraph */
  margin-right: calc(-284px - 32px);
  width: 284px; /* logical column */

  border-top: 4px solid rgba(0, 59, 77, 1.0); /* $color-blue-deep */
  border-bottom: 1px solid rgba(0, 59, 77, 1.0); /* $color-blue-deep */
  padding: 20px 0;

  color: rgba(0, 59, 77, 1.0); /* $color-blue-deep */
  font-weight: 400;

  font-size: 14px;
  line-height: 22px;
}

@media (max-width: 956px) {
  .wp-block-intenseminimalism-sidenote {
    margin-right: calc(652px - 100vw);
    width: 50%;
  }
}

@media (max-width: 640px) {
  .wp-block-intenseminimalism-sidenote {
    margin-right: 0;
  }
}

.wp-block-intenseminimalism-sidenote:before {
  content: none;
}

/****** Block: Search */
/* Home Styling Only */
.home .wp-block-search {
  width: 100%;
  margin: 200px 0;
}

.home .wp-block-search .wp-block-search__input {
  font-family: "Arvo", "Nexa Slab", Rockwell, Georgia, "Times New Roman", Times, serif;
  font-size: 7em;
  background: transparent;
  width: 100%;

  -webkit-appearance: none;
  outline: none;
  margin: 0;
  padding: 0;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 1.0); /* $color-white */
  color: rgba(255, 255, 255, 1.0); /* $color-white */
  border-radius: 0;
}

.home .wp-block-search .wp-block-search__button {
  display: none;
}

@media (max-width: 760px) {
  .home .wp-block-search .wp-block-search__input {
    font-size: 4.6em;
  }
}

/****** Block: Columns */
.wp-block-columns {
  width: 916px; /* main body width */
}

@media (max-width: 956px) {
  .wp-block-columns {
    width: calc(100vw - 64px);
  }
}

@media (max-width: 640px) {
  .wp-block-columns {
    width: 100%;
  }
}

.wp-block-columns.has-2-columns .wp-block-column:first-child {
  flex-basis: 600px;
}

.wp-block-columns.has-2-columns .wp-block-column:last-child {
  flex-basis: 284px; /* logical column */
}

@media (max-width: 782px) { /* Gutenberg columns threshold */
  .wp-block-columns.has-2-columns .wp-block-column:first-child,
  .wp-block-columns.has-2-columns .wp-block-column:last-child {
    flex-basis: calc( 50% - 16px );
  }

  .wp-block-columns.has-2-columns .wp-block-column:last-child {
    margin-left: 32px;
  }
}

@media (max-width: 640px) {
  .wp-block-columns.has-2-columns .wp-block-column:first-child,
  .wp-block-columns.has-2-columns .wp-block-column:last-child {
    flex-basis: 100%;
    margin-left: 0;
  }
}


/****** Block: Latest Posts */
.entry-content .wp-block-latest-posts {
  list-style: none;
  padding: 0;
}

.entry-content .wp-block-latest-posts li:before {
  content: none;
}

.entry-content .wp-block-latest-posts li {
  margin: 0 0 1.5em 0;
  line-height: inherit;
}

.entry-content .wp-block-latest-posts a {
  font-family: "Arvo", "Nexa Slab", Rockwell, Georgia, "Times New Roman", Times, serif;
  font-size: 1.225em; /* Get the same size of the normal home lists */
  box-shadow: none;
}

.wp-block-latest-posts a:hover {
  box-shadow: inset 0 -0.4em 0 rgba(124, 173, 195, 0.3); /* $color-blue-mid */
}

.entry-content .wp-block-latest-posts .wp-block-latest-posts__post-date {
  color: rgba(124, 173, 195, 1.0); /* $color-blue-mid */
}


/****** Block: Button */
.entry-content .button {
  margin: 0 14px 0 0;
  padding: 2px 14px;
  color: rgba(255, 255, 255, 1.0); /* $color-white */
}

.entry-content .button,
.wp-block-button .wp-block-button__link {
  box-shadow: none;
  padding: 12px 30px;

  font-size: 14px;
  text-transform: uppercase;
  font-weight: 600;

  background-color: rgba(0, 59, 77, 1.0); /* $color-blue-deep */
  background-image: linear-gradient(-45deg,
    rgba(95, 75, 139, 1.0), /* $color-ultraviolet */
    rgba(19, 123, 168, 1.0), /* $color-link */
    /*rgba(124, 173, 195, 1.0), /* $color-blue-mid */
    rgba(0, 59, 77, 1.0) /* $color-blue-deep */
  );
	background-size: 400% 400%;
  background-position: 0% 50%;
}

.entry-content .button:hover,
.wp-block-button .wp-block-button__link:hover {
  box-shadow: none;

  animation: wp-block-button-gradient-loop 5s ease infinite;
}

.entry-content .button,
.wp-block-button .wp-block-button__link:active {
  transform: translate3d(0, +1px, 0);
}

.entry-content .button,
.wp-block-button.is-style-squared .wp-block-button__link {
  border-radius: 3px;
}

.wp-block-button.is-style-outline .wp-block-button__link {
  background-color: rgba(255, 255, 255, 0.8); /* $color-white */
  background-image: linear-gradient(-45deg,
    rgba(95, 75, 139, 0.5), /* $color-ultraviolet */
    rgba(19, 123, 168, 0.5), /* $color-link */
    /*rgba(124, 173, 195, 1.0), /* $color-blue-mid */
    rgba(0, 59, 77, 0.1) /* $color-blue-deep */
  );
  background-size: 400% 400%;
  background-position: 0% 50%;

  color: rgba(0, 59, 77, 1.0); /* $color-blue-deep */
  border: none;
}

@keyframes wp-block-button-gradient-loop {
	0% {
		background-position: 0% 50%
	}
	50% {
		background-position: 100% 50%
	}
	100% {
		background-position: 0% 50%
	}
}

/****** Block: Image */
.wp-block-image {
  margin: 0;
}

.wp-block-image img {
  /*object-fit: contain;*/
  height: auto;
}

.wp-block-image a,
.wp-block-image a:hover {
  box-shadow: none;
}

/****** Block: Image Gallery */
.wp-block-gallery a,
.wp-block-gallery a:hover {
  box-shadow: none;
}

.wp-block-gallery li.blocks-gallery-item:before {
  display: none;
}

/****** Block: Embed */
.wp-block-embed {
  margin: 0;
}

/****** Block: Table */
.wp-block-table {
  margin: 0;
}

.wp-block-table th,
.wp-block-table td {
  vertical-align: top;
  padding: 8px;
}

.wp-block-table th:first-child,
.wp-block-table td:first-child {
  padding-left: 0;
}

.wp-block-table th:last-child,
.wp-block-table td:last-child {
  padding-right: 0;
}


/****************************************************************************************** BOXES-PRE-BLOCKS */
/* Consider this legacy, pre-WordPress 5.0 */
.entry-content .box.hilight {
  float: right;
  width: 50%;

  border-top: 4px solid rgba(0, 59, 77, 1.0); /* $color-blue-deep */

  font-family: "Arvo", "Nexa Slab", Rockwell, Georgia, "Times New Roman", Times, serif;
  font-size: 1.4em;
  line-height: 32px;

  margin: 10px 0 5px 12px;
  padding: 7px 0 7px 10px;

  text-align: right;
}

.entry-content .box.side {
  float: right;
  margin-right: calc(-284px - 32px);
  width: 284px; /* logical column */

  margin-top: 7px; /* Align with paragraph */
  border-top: 4px solid rgba(0, 59, 77, 1.0); /* $color-blue-deep */
  border-bottom: 1px solid rgba(0, 59, 77, 1.0); /* $color-blue-deep */
  padding: 20px 0;

  color: rgba(0, 59, 77, 1.0); /* $color-blue-deep */
  font-weight: 400;

  font-size: 14px;
  line-height: 22px;
}

@media (max-width: 956px) {
  .entry-content .box.side {
    width: 50%;
    margin: 10px 0 5px 12px;
  }
}

/****************************************************************************************** CATEGORY */
.chunk-aside-category {
  font-size: 14px;
  line-height: 22px;
  color: rgba(124, 173, 195, 1.0); /* $color-blue-mid */
  margin: 1.3em 0 0.6em 24px;
}

.post .chunk-aside-category {
  order: -1;
}

.archive .chunk-aside-category {
  margin: 0;
  color: rgba(0, 59, 77, 1.0); /* $color-blue-deep */
}

.chunk-aside-category:before {
  content: "✦";
  float: left;
  font-size: 14px;
  margin-left: -24px;
}

@media (max-width: 956px) {
  .archive .chunk-aside-category:before {
    margin-left: -15px;
  }
}

body:not(.archive) .chunk-aside-category:after {
  content: "➝";
  color: rgba(124, 173, 195, 1.0); /* $color-blue-mid */
  font-size: 14px;
}

.chunk-aside-category a {
  color: rgba(124, 173, 195, 1.0); /* $color-blue-mid */
  text-decoration: none;
  transition: none;
}

.chunk-aside-category:hover a {
  color: rgba(0, 59, 77, 1.0); /* $color-blue-deep */
  background: linear-gradient(to right,
    /*rgba(0, 59, 77, 1.0), /* $color-blue-deep */
    rgba(95, 75, 139, 1.0), /* $color-ultraviolet */
    rgba(124, 173, 195, 1.0) /* $color-blue-mid */
  );
  -webkit-background-clip: text;
  -webkit-box-decoration-break: clone;
  -webkit-text-fill-color: transparent;
  text-shadow: none;
}

body:not(.archive) .chunk-aside-category:hover:before {
  color: rgba(95, 75, 139, 1.0); /* $color-ultraviolet */
}


/****************************************************************************************** FRONT */
.home {
  background: rgba(0, 59, 77, 1.0); /* $color-blue-deep */
  color: rgba(255, 255, 255, 1.0); /* $color-white */
}

.home a {
  color: rgba(255, 255, 255, 1.0); /* $color-white */
}

.home #main {
  padding-bottom: 4em;
}

/****** Articles */
.home #content .article-label {
  display: inline-block;
  margin-top: 2em;
}

.home #content article {
  margin: 0 0 2.5em;
}

.home #content article h1 {
  font-size: 1.4em;
}

/******* Search */
.fullwidth-search {
  width: 100%;
  margin: 103px 0 150px; /* top aligns with overlay search */
}

.fullwidth-search #s {
  font-family: "Arvo", "Nexa Slab", Rockwell, Georgia, "Times New Roman", Times, serif;
  font-size: 7em;
  background: transparent;
  width: 100%;

  -webkit-appearance: none;
  outline: none;
  margin: 0;
  padding: 0;
  border: 0;
  border-bottom: 1px solid rgba(0, 59, 77, 1.0); /* $color-blue-deep */
  color: rgba(0, 59, 77, 1.0); /* $color-blue-deep */
  border-radius: 0;
}

.home .fullwidth-search #s {
  border-bottom: 1px solid rgba(255, 255, 255, 1.0); /* $color-white */
  color: rgba(255, 255, 255, 1.0); /* $color-white */
}

.fullwidth-search .fullwidth-search__meta {
  margin: 8px 0;
}

.fullwidth-search .fullwidth-search__meta-future {
  color: rgba(124, 173, 195, 1.0); /* $color-blue-mid */
}

@media (max-width: 760px) {
  .fullwidth-search #s {
    font-size: 4.6em;
  }
}

/******* Titles */
.home .entry-content h4 {
  display: inline-block;
  background: rgba(255, 255, 255, 1.0); /* $color-white */
  color: rgba(0, 59, 77, 1.0); /* $color-blue-deep */
  font-weight: 400;
  font-family: inherit;

  padding: 4.5px 5px 3px;
  margin: 2em 0 0 0;
  clear: both;
}

.home .entry-content h3 {
  font-size: 1.4em;
  margin-top: 1em;
}

.home .entry-content h3 a {
  box-shadow: none;
}

.home .entry-content h3 a:hover {
  box-shadow: inset 0 -0.4em 0 rgba(124, 173, 195, 0.3); /* $color-blue-mid */
}

/****************************************************************************************** FORM */
form {
  margin: 0;
}

fieldset {
  margin: 0;
  padding: 0;
}

input[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}


/****************************************************************************************** NOTICE */
.chunk-notice {
  margin: 150px 0 120px;
}


/****************************************************************************************** FOOTER */
#chunk-colophon {
  color: rgba(255, 255, 255, 1.0); /* $color-white */
  background: rgba(0, 59, 77, 1.0); /* $color-blue-deep */

  overflow: hidden; /* ensures container expanding around floats */
  padding: 3em 0;
  margin-top: 6em;
}

#chunk-colophon .the-body {
  display: flex;
}

#chunk-colophon .the-body>* {
  flex: 1 1 auto;
}

#chunk-colophon blockquote {
  text-indent: -6px;
  margin: 0 0.6em 0 0;
}

#chunk-colophon time {
  color: rgba(124, 173, 195, 1.0); /* $color-blue-mid */
  display: inline-block;
  white-space: nowrap;
  margin-left: 6px;
}

#chunk-colophon nav {
  margin-left: 12px;
}

#chunk-colophon nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

#chunk-colophon nav ul li {
  margin: 0;
  padding: 0;
  line-height: inherit;
  font-size: inherit;
  float: right;
}

#chunk-colophon nav ul li a {
  font-size: 11px;
  text-decoration: none;
  color: rgba(255, 255, 255, 1.0); /* $color-white */
}

#chunk-colophon nav ul li a:hover {
  color: rgba(255, 255, 255, 0.5); /* $color-white */
}



/****************************************************************************************** Accessibility Support (Screen Readers & Keyboard Navigation)
* http://www.webaim.org/techniques/css/invisiblecontent/ */
a.skip-link  {position:absolute;left:-10000px;top:auto;width:1px;height:1px;overflow:hidden;z-index:100000;}
a.skip-link:focus {position:absolute;left:0;top:0;width:auto;height:auto;}
a.skip-link:focus { /*Skinning*/
  color: #ffffff;
  background: rgba(0, 59, 77, 1.0); /* $color-blue-deep */
  padding: 12px 18px;
  font-size: 20px;
  font-weight: 400;
  outline: 0;
  text-decoration:none;
}


/****************************************************************************************** Scrollbars */
html {
  -ms-scrollbar-3dlight-color: ;
  -ms-scrollbar-arrow-color: rgba(0, 59, 77, 1.0); /* $color-blue-deep */
  -ms-scrollbar-base-color: ;
  -ms-scrollbar-darkshadow-color: ;
  -ms-scrollbar-face-color: rgba(0, 59, 77, 1.0); /* $color-blue-deep */
  -ms-scrollbar-highlight-color: ;
  -ms-scrollbar-shadow-color: ;
}

::-webkit-scrollbar {
  width: 14px;
}

::-webkit-scrollbar-track {
  background: #ffffff;
}

::-webkit-scrollbar-thumb {
  border-radius: 10px;
  border: 3px solid #ffffff;
  background: rgba(0, 59, 77, 0.3); /* $color-blue-deep */
}

::-webkit-scrollbar-button       {  }
::-webkit-scrollbar-track-piece  {  }
::-webkit-scrollbar-thumb        {  }
::-webkit-scrollbar-corner       {  }
::-webkit-resizer                {  }
