/* line 4, sass/main.sass */
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-family: "Cabin", "Helvetica", sans-serif; }

/* line 10, sass/main.sass */
body {
  background: #f6f6f6;
  padding-top: 82px; }

/* line 15, sass/main.sass */
body.logged-in.admin-bar header.site-header {
  margin-top: 46px; }

@media screen and (min-width: 782px) {
  /* line 19, sass/main.sass */
  body.logged-in.admin-bar header.site-header {
    margin-top: 32px !important; } }

/* line 22, sass/main.sass */
h1, h2, h3, h4, h5 {
  font-family: "Andada", serif;
  color: #111717; }

/* line 26, sass/main.sass */
::-moz-selection {
  background: rgba(193, 9, 51, 0.35); }
::selection {
  background: rgba(193, 9, 51, 0.35); }

/* line 29, sass/main.sass */
.container {
  max-width: 960px;
  margin: 0px auto; }

/* line 34, sass/main.sass */
header.site-header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 999;
  background-color: white;
  border-bottom: 1px solid #efefef; }
  /* line 43, sass/main.sass */
  header.site-header .container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 20px; }
  /* line 49, sass/main.sass */
  header.site-header section.search-box {
    padding: 20px;
    background-color: white;
    position: absolute;
    right: -10px;
    top: 30px;
    border: 1px solid #efefef;
    display: none;
    visibility: hidden; }
    /* line 58, sass/main.sass */
    header.site-header section.search-box.visible {
      display: block;
      visibility: visible; }
    /* line 61, sass/main.sass */
    header.site-header section.search-box form input, header.site-header section.search-box form button {
      margin-bottom: 0px; }
  /* line 63, sass/main.sass */
  header.site-header img {
    max-width: 200px;
    height: auto; }
  /* line 66, sass/main.sass */
  header.site-header a.bars img {
    height: 20px;
    opacity: 0.5;
    cursor: pointer;
    -webkit-transition: 0.1s ease-in-out;
    transition: 0.1s ease-in-out; }
    /* line 71, sass/main.sass */
    header.site-header a.bars img:hover {
      -webkit-transform: scale(1.1);
              transform: scale(1.1); }

/* line 75, sass/main.sass */
.archive-title {
  margin: 50px 20px 20px 20px;
  font-size: 2.6em; }

/* line 79, sass/main.sass */
.author-header {
  background-color: white; }
  /* line 81, sass/main.sass */
  .author-header .container {
    padding: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center; }
    /* line 87, sass/main.sass */
    .author-header .container img {
      border-radius: 100%;
      max-width: 50px;
      max-height: 50px; }

/* line 92, sass/main.sass */
.post-list {
  margin: 0px 20px; }

/* line 95, sass/main.sass */
article.post {
  margin-bottom: 40px; }
  /* line 97, sass/main.sass */
  article.post .image-holder {
    min-height: 220px;
    margin-bottom: 15px; }
    /* line 100, sass/main.sass */
    article.post .image-holder .featured-image {
      position: absolute;
      height: 100%;
      width: 100%;
      background-position: center;
      background-size: cover;
      -webkit-transition: 1s ease-in-out;
      transition: 1s ease-in-out; }
  /* line 103, sass/main.sass */
  article.post a {
    text-decoration: none; }
    /* line 106, sass/main.sass */
    article.post a:hover .image-holder .featured-image {
      -webkit-transform: scale(1.1);
              transform: scale(1.1); }
  /* line 108, sass/main.sass */
  article.post h2.post-title {
    color: #111717;
    font-size: 1.7em;
    line-height: 1.3em;
    margin-bottom: 15px; }
  /* line 113, sass/main.sass */
  article.post p {
    color: #111717;
    line-height: 1.5em;
    font-size: 0.9em; }
  /* line 117, sass/main.sass */
  article.post span.post-date {
    display: block;
    color: #969696;
    margin-bottom: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-size: 0.75em;
    font-weight: normal; }

/* line 124, sass/main.sass */
footer.site-footer {
  background-color: #111717;
  color: #dfdfdf; }
  /* line 127, sass/main.sass */
  footer.site-footer .container {
    padding: 20px; }
  /* line 129, sass/main.sass */
  footer.site-footer img {
    -webkit-filter: grayscale(1) brightness(20);
            filter: grayscale(1) brightness(20);
    opacity: 0.5;
    max-width: 150px;
    height: auto;
    margin-bottom: 20px; }
  /* line 135, sass/main.sass */
  footer.site-footer nav {
    margin-bottom: 20px; }
    /* line 137, sass/main.sass */
    footer.site-footer nav ul {
      list-style-type: none; }
      /* line 139, sass/main.sass */
      footer.site-footer nav ul li {
        margin-bottom: 5px; }
        /* line 141, sass/main.sass */
        footer.site-footer nav ul li a {
          color: #f6f6f6;
          text-decoration: none; }
          /* line 144, sass/main.sass */
          footer.site-footer nav ul li a:hover {
            text-decoration: underline; }
  /* line 146, sass/main.sass */
  footer.site-footer span.footer-info {
    display: inline-block;
    font-size: 0.8em;
    white-space: pre-line;
    max-width: 600px;
    margin: 0px auto 20px auto; }
    /* line 152, sass/main.sass */
    footer.site-footer span.footer-info a {
      color: #f6f6f6; }
  /* line 154, sass/main.sass */
  footer.site-footer span.copyright-info {
    display: block;
    color: #f6f6f6;
    color: #969696;
    font-size: 0.8em; }
    /* line 159, sass/main.sass */
    footer.site-footer span.copyright-info a {
      color: #f6f6f6; }

/* line 163, sass/main.sass */
section.post-pagination {
  margin: 20px 20px 40px 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center; }
  /* line 169, sass/main.sass */
  section.post-pagination a {
    display: inline-block;
    background-color: #c10933;
    color: #f6f6f6;
    padding: 14px 20px;
    text-decoration: none;
    text-align: center;
    border-radius: 4px;
    min-width: 100px;
    -webkit-transition: 0.1s ease-in-out;
    transition: 0.1s ease-in-out;
    -webkit-box-shadow: 0px 1px 0px #900726;
            box-shadow: 0px 1px 0px #900726;
    border: none;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-size: 0.75em;
    font-weight: normal; }
    /* line 39, sass/variables.sass */
    section.post-pagination a:hover {
      -webkit-filter: brightness(1.1);
              filter: brightness(1.1);
      -webkit-transform: translateY(-1px);
              transform: translateY(-1px);
      -webkit-box-shadow: 0px 2px 0px #900726;
              box-shadow: 0px 2px 0px #900726; }
    /* line 43, sass/variables.sass */
    section.post-pagination a:active {
      -webkit-transform: translateY(2px);
              transform: translateY(2px);
      -webkit-box-shadow: 0px 0px 0px #900726;
              box-shadow: 0px 0px 0px #900726;
      -webkit-transition: 0.05s ease-in-out;
      transition: 0.05s ease-in-out; }
    /* line 172, sass/main.sass */
    section.post-pagination a:nth-child(2) {
      margin-left: 20px;
      -webkit-filter: grayscale(1);
              filter: grayscale(1); }

/* line 177, sass/main.sass */
.image-holder.single {
  min-height: 220px; }

/* line 180, sass/main.sass */
article.post-single {
  padding: 20px; }
  /* line 182, sass/main.sass */
  article.post-single h1, article.post-single h2, article.post-single h3, article.post-single h4, article.post-single h5, article.post-single h6, article.post-single p {
    margin-bottom: 20px; }
    /* line 184, sass/main.sass */
    article.post-single h1 a, article.post-single h2 a, article.post-single h3 a, article.post-single h4 a, article.post-single h5 a, article.post-single h6 a, article.post-single p a {
      color: #c10933;
      text-decoration: none; }
      /* line 187, sass/main.sass */
      article.post-single h1 a:hover, article.post-single h2 a:hover, article.post-single h3 a:hover, article.post-single h4 a:hover, article.post-single h5 a:hover, article.post-single h6 a:hover, article.post-single p a:hover {
        text-decoration: underline; }
  /* line 189, sass/main.sass */
  article.post-single p {
    line-height: 1.5em; }
  /* line 191, sass/main.sass */
  article.post-single .ls-share-buttons {
    list-style-type: none;
    margin: 0;
    display: inline; }
    /* line 195, sass/main.sass */
    article.post-single .ls-share-buttons li {
      display: inline-block;
      font-size: 1.5em;
      margin: 0px 0px 0px 5px;
      -webkit-transform: translateY(1px);
              transform: translateY(1px);
      padding: 0; }
      /* line 201, sass/main.sass */
      article.post-single .ls-share-buttons li a {
        color: #c10933; }
  /* line 203, sass/main.sass */
  article.post-single .post-title {
    font-size: 2em;
    margin-bottom: 25px; }
  /* line 206, sass/main.sass */
  article.post-single .post-meta {
    letter-spacing: 3px;
    text-transform: uppercase;
    font-size: 0.75em;
    font-weight: normal;
    display: inline-block;
    margin-bottom: 25px;
    color: #969696;
    line-height: 1.4em; }
    /* line 212, sass/main.sass */
    article.post-single .post-meta a {
      color: #c10933; }
      /* line 214, sass/main.sass */
      article.post-single .post-meta a:hover {
        text-decoration: underline; }
  /* line 216, sass/main.sass */
  article.post-single ol, article.post-single ul {
    margin-left: 15px;
    margin-bottom: 20px; }
    /* line 219, sass/main.sass */
    article.post-single ol li, article.post-single ul li {
      padding-left: 10px;
      margin-bottom: 5px; }
  /* line 222, sass/main.sass */
  article.post-single hr {
    margin: 30px 0px;
    border: 0.5px solid #969696;
    opacity: 0.5; }
  /* line 226, sass/main.sass */
  article.post-single iframe {
    width: 100%;
    max-width: 100%;
    height: auto; }
  /* line 230, sass/main.sass */
  article.post-single .video-container {
    height: 0;
    padding-bottom: 56.25%;
    width: 100%;
    position: relative; }
    /* line 235, sass/main.sass */
    article.post-single .video-container iframe {
      position: absolute;
      height: 100%;
      width: 100%;
      top: 0;
      bottom: 0;
      left: 0;
      right: 0; }
  /* line 243, sass/main.sass */
  article.post-single .wp-block-embed, article.post-single .wp-block-image {
    margin-bottom: 20px; }
    /* line 245, sass/main.sass */
    article.post-single .wp-block-embed.alignright, article.post-single .wp-block-image.alignright {
      min-width: 50%;
      float: right;
      margin-left: 20px; }
    /* line 249, sass/main.sass */
    article.post-single .wp-block-embed.alignleft, article.post-single .wp-block-image.alignleft {
      min-width: 50%;
      float: left;
      margin-right: 20px; }
  /* line 253, sass/main.sass */
  article.post-single .wp-caption, article.post-single img, article.post-single .wp-block-video, article.post-single video {
    max-width: 100%;
    width: 100%;
    height: auto; }
    /* line 257, sass/main.sass */
    article.post-single .wp-caption p, article.post-single img p, article.post-single .wp-block-video p, article.post-single video p {
      font-size: 0.8em;
      color: #969696; }
  /* line 261, sass/main.sass */
  article.post-single blockquote {
    border-left: 6px solid #111717;
    padding-left: 20px;
    margin-bottom: 20px; }
    /* line 265, sass/main.sass */
    article.post-single blockquote p {
      margin-bottom: 10px !important; }
    /* line 267, sass/main.sass */
    article.post-single blockquote.is-large {
      border-left: 0px solid #111717;
      padding-left: 0px; }
      /* line 270, sass/main.sass */
      article.post-single blockquote.is-large cite {
        text-align: right; }
  /* line 272, sass/main.sass */
  article.post-single pre {
    margin-bottom: 20px;
    padding: 25px;
    background-color: #efefef; }
  /* line 276, sass/main.sass */
  article.post-single audio, article.post-single video {
    margin-bottom: 20px; }
  /* line 278, sass/main.sass */
  article.post-single .author-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row; }
    /* line 281, sass/main.sass */
    article.post-single .author-box img {
      max-width: 70px;
      max-height: 70px;
      border-radius: 100%;
      margin-right: 20px; }
    /* line 286, sass/main.sass */
    article.post-single .author-box h3 {
      margin-bottom: 5px; }

/* line 289, sass/main.sass */
.popular-posts-list {
  margin-top: 20px;
  list-style-type: none; }
  /* line 292, sass/main.sass */
  .popular-posts-list li {
    margin-bottom: 20px; }
    /* line 294, sass/main.sass */
    .popular-posts-list li::after {
      content: "";
      display: block;
      clear: both; }
    /* line 298, sass/main.sass */
    .popular-posts-list li a {
      text-decoration: none; }
    /* line 300, sass/main.sass */
    .popular-posts-list li img {
      float: left;
      max-width: 90px;
      max-height: 90px;
      margin-right: 10px; }

@-webkit-keyframes fadeIn {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }

@keyframes fadeIn {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }

/* line 313, sass/main.sass */
.image-holder {
  width: 100%;
  position: relative;
  overflow: hidden;
  background-color: #efefef; }
  /* line 316, sass/main.sass */
  .image-holder .featured-image {
    -webkit-animation: fadeIn 0.3s ease-in;
            animation: fadeIn 0.3s ease-in;
    position: absolute;
    height: 100%;
    width: 100%;
    background-position: center;
    background-size: cover; }

/* line 320, sass/main.sass */
main.site-content.home:last-child {
  margin-bottom: 40px; }

/* line 323, sass/main.sass */
aside.site-sidebar {
  padding: 25px; }

/* line 326, sass/main.sass */
.grid-title {
  font-size: 2.6em;
  margin: 50px 20px 20px 20px; }

/* line 330, sass/main.sass */
.more-stories {
  letter-spacing: 3px;
  text-transform: uppercase;
  font-size: 0.75em;
  font-weight: normal;
  color: #c10933;
  padding: 0px 20px;
  margin-bottom: 20px;
  display: block;
  text-decoration: none; }
  /* line 337, sass/main.sass */
  .more-stories:hover {
    text-decoration: underline; }

/* line 341, sass/main.sass */
.post-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 50% 50%;
  margin: 0px 20px 40px 20px;
  grid-column-gap: 15px; }
  /* line 348, sass/main.sass */
  .post-grid .post-grid-item.post {
    grid-column: 1 / 3; }
  /* line 351, sass/main.sass */
  .post-grid .post-grid-item.trail .image-holder {
    min-height: 120px; }
  /* line 355, sass/main.sass */
  .post-grid .post-grid-item.trail a:hover .image-holder .featured-image {
    -webkit-transform: scale(1.1);
            transform: scale(1.1); }
  /* line 357, sass/main.sass */
  .post-grid .post-grid-item.trail h2 {
    font-size: 1.3em; }
  /* line 359, sass/main.sass */
  .post-grid .post-grid-item.trail div.image-holder {
    margin-bottom: 15px; }
    /* line 361, sass/main.sass */
    .post-grid .post-grid-item.trail div.image-holder .featured-image {
      -webkit-transition: 1s ease-in-out;
      transition: 1s ease-in-out; }
  /* line 363, sass/main.sass */
  .post-grid .post-grid-item.trail span.post-date {
    color: #969696;
    display: inline-block;
    margin-bottom: 7px; }
  /* line 368, sass/main.sass */
  .post-grid .post-grid-item:nth-of-type(4) {
    display: none;
    visibility: hidden; }
  /* line 371, sass/main.sass */
  .post-grid .post-grid-item span.post-date {
    letter-spacing: 3px;
    text-transform: uppercase;
    font-size: 0.75em;
    font-weight: normal; }
  /* line 373, sass/main.sass */
  .post-grid .post-grid-item a {
    text-decoration: none; }

/* line 377, sass/main.sass */
section.call-to-action-bar {
  margin-top: 70px;
  text-align: center;
  padding: 70px 0px;
  background-color: white;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  width: 100vw;
  max-width: 100vw; }
  /* line 383, sass/main.sass */
  section.call-to-action-bar h2 {
    margin-bottom: 20px; }
  /* line 385, sass/main.sass */
  section.call-to-action-bar p {
    color: #969696;
    font-weight: 100; }

/* line 390, sass/main.sass */
form input {
  padding: 13px;
  border-radius: 4px;
  border: none;
  margin-right: 5px;
  background-color: #f6f6f6;
  font-size: 1em;
  color: black;
  margin-bottom: 20px;
  -webkit-transform: translateY(2px);
          transform: translateY(2px); }

/* line 400, sass/main.sass */
form button, form input#searchsubmit {
  display: inline-block;
  background-color: #c10933;
  color: #f6f6f6;
  padding: 14px 20px;
  text-decoration: none;
  text-align: center;
  border-radius: 4px;
  min-width: 100px;
  -webkit-transition: 0.1s ease-in-out;
  transition: 0.1s ease-in-out;
  -webkit-box-shadow: 0px 1px 0px #900726;
          box-shadow: 0px 1px 0px #900726;
  border: none;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-size: 0.75em;
  font-weight: normal;
  margin-bottom: 20px; }
  /* line 39, sass/variables.sass */
  form button:hover, form input#searchsubmit:hover {
    -webkit-filter: brightness(1.1);
            filter: brightness(1.1);
    -webkit-transform: translateY(-1px);
            transform: translateY(-1px);
    -webkit-box-shadow: 0px 2px 0px #900726;
            box-shadow: 0px 2px 0px #900726; }
  /* line 43, sass/variables.sass */
  form button:active, form input#searchsubmit:active {
    -webkit-transform: translateY(2px);
            transform: translateY(2px);
    -webkit-box-shadow: 0px 0px 0px #900726;
            box-shadow: 0px 0px 0px #900726;
    -webkit-transition: 0.05s ease-in-out;
    transition: 0.05s ease-in-out; }

/* line 406, sass/main.sass */
.liveblog-entry {
  border-top: 0.5px solid rgba(150, 150, 150, 0.5);
  border-bottom: none; }
  /* line 410, sass/main.sass */
  .liveblog-entry .liveblog-meta-time span:last-of-type {
    color: #c10933; }

@media screen and (max-width: 640px) {
  /* line 8, sass/Responsive.sass */
  .post-grid .post-grid-item:first-of-type a .image-holder {
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    width: 100vw;
    max-width: 100vw; }
  /* line 10, sass/Responsive.sass */
  aside.site-sidebar {
    display: none;
    visibility: hidden; }
  /* line 13, sass/Responsive.sass */
  header.site-header nav.main-menu {
    display: block;
    position: fixed;
    z-index: 999;
    right: 0px;
    top: 0px;
    bottom: 0px;
    min-width: 220px;
    padding: 30px;
    background-color: #111717;
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
    -webkit-transition: 0.2s ease-in-out;
    transition: 0.2s ease-in-out; }
    /* line 25, sass/Responsive.sass */
    header.site-header nav.main-menu.visible {
      -webkit-transform: translateX(0px);
              transform: translateX(0px); }
    /* line 28, sass/Responsive.sass */
    header.site-header nav.main-menu i.fa-search {
      display: none;
      visibility: hidden; }
    /* line 31, sass/Responsive.sass */
    header.site-header nav.main-menu img {
      max-width: 25px;
      height: auto;
      opacity: 0.5;
      text-align: right;
      cursor: pointer;
      -webkit-transition: 0.1s ease-in-out;
      transition: 0.1s ease-in-out; }
      /* line 38, sass/Responsive.sass */
      header.site-header nav.main-menu img:hover {
        -webkit-transform: scale(1.1);
                transform: scale(1.1); }
    /* line 40, sass/Responsive.sass */
    header.site-header nav.main-menu ul {
      margin-top: 20px;
      list-style-type: none; }
      /* line 44, sass/Responsive.sass */
      header.site-header nav.main-menu ul li a {
        border-bottom: 0.5px solid rgba(150, 150, 150, 0.5);
        padding: 12px 0px;
        display: block;
        width: 100%;
        color: #969696;
        text-decoration: none;
        -webkit-transition: 0.1s ease-in-out;
        transition: 0.1s ease-in-out; }
        /* line 52, sass/Responsive.sass */
        header.site-header nav.main-menu ul li a:hover {
          color: #e3e3e3; }
      /* line 54, sass/Responsive.sass */
      header.site-header nav.main-menu ul ul.sub-menu {
        margin-top: 0px;
        margin-left: 10px; }
        /* line 57, sass/Responsive.sass */
        header.site-header nav.main-menu ul ul.sub-menu li a {
          font-size: 0.85em;
          padding: 9px 0px; } }

@media screen and (min-width: 500px) {
  /* line 63, sass/Responsive.sass */
  article.post .image-holder, .image-holder.single {
    min-height: 280px; }
  /* line 65, sass/Responsive.sass */
  .post-grid .post-grid-item.trail .image-holder {
    min-height: 180px; } }

@media screen and (min-width: 640px) {
  /* line 71, sass/Responsive.sass */
  .archive-title {
    text-align: center;
    margin: 50px 20px; }
  /* line 75, sass/Responsive.sass */
  .post-list {
    margin-top: 30px; }
    /* line 77, sass/Responsive.sass */
    .post-list article.post {
      background-color: white; }
      /* line 79, sass/Responsive.sass */
      .post-list article.post a {
        display: grid;
        grid-template-columns: minmax(15%, 300px) 1fr; }
      /* line 82, sass/Responsive.sass */
      .post-list article.post .image-holder {
        min-height: 200px;
        grid-column: 1 / 2;
        margin-bottom: 0px; }
      /* line 86, sass/Responsive.sass */
      .post-list article.post .text-panel {
        grid-column: 2 / 3;
        padding: 20px; }
  /* line 91, sass/Responsive.sass */
  header.site-header a.bars {
    display: none;
    visibility: hidden; }
  /* line 94, sass/Responsive.sass */
  header.site-header img {
    max-width: 230px; }
  /* line 96, sass/Responsive.sass */
  header.site-header nav {
    position: relative;
    text-align: right; }
    /* line 99, sass/Responsive.sass */
    header.site-header nav i.fa-search {
      color: #969696;
      cursor: pointer; }
    /* line 103, sass/Responsive.sass */
    header.site-header nav a.close {
      display: none;
      visibility: hidden; }
    /* line 106, sass/Responsive.sass */
    header.site-header nav ul {
      display: inline-block;
      list-style: none;
      text-align: right; }
      /* line 110, sass/Responsive.sass */
      header.site-header nav ul li {
        display: inline-block;
        margin: 5px 20px 5px 0px;
        position: relative; }
        /* line 114, sass/Responsive.sass */
        header.site-header nav ul li.menu-item-has-children::after {
          content: "\f078";
          font-family: 'Font Awesome\ 5 Free';
          font-weight: 900;
          margin-left: 3px;
          color: #969696;
          font-size: 0.95em; }
        /* line 122, sass/Responsive.sass */
        header.site-header nav ul li:hover ul.sub-menu {
          display: inline-block;
          visibility: visible; }
        /* line 125, sass/Responsive.sass */
        header.site-header nav ul li ul.sub-menu {
          position: absolute;
          top: 30px;
          right: 0px;
          background-color: white;
          border: 1px solid #efefef;
          padding: 20px;
          width: inherit;
          display: none;
          visibility: hidden;
          text-align: left;
          z-index: 999; }
          /* line 137, sass/Responsive.sass */
          header.site-header nav ul li ul.sub-menu:before {
            content: "";
            display: block;
            position: absolute;
            top: -13px;
            bottom: 30px;
            left: 5px;
            right: 5px; }
          /* line 145, sass/Responsive.sass */
          header.site-header nav ul li ul.sub-menu li {
            margin-bottom: 10px; }
        /* line 148, sass/Responsive.sass */
        header.site-header nav ul li.current-menu-item a, header.site-header nav ul li.current-menu-item:after {
          color: #c10933; }
        /* line 150, sass/Responsive.sass */
        header.site-header nav ul li a {
          text-decoration: none;
          color: #969696; }
          /* line 153, sass/Responsive.sass */
          header.site-header nav ul li a:hover {
            text-decoration: underline; }
  /* line 155, sass/Responsive.sass */
  .more-stories {
    text-align: center; }
  /* line 157, sass/Responsive.sass */
  main.site-content.home:last-child {
    margin-bottom: 70px; }
  /* line 159, sass/Responsive.sass */
  .grid-title {
    text-align: center;
    position: relative;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    font-size: 2.8em;
    border-bottom: 3px solid #c10933;
    display: inline-block;
    margin: 50px auto 50px auto; }
  /* line 168, sass/Responsive.sass */
  .post-grid {
    grid-template-columns: 1fr 1fr 1fr; }
    /* line 170, sass/Responsive.sass */
    .post-grid:first-of-type {
      margin-top: 30px; }
    /* line 174, sass/Responsive.sass */
    .post-grid:nth-of-type(even) .post-grid-item:first-of-type a {
      background-color: white; }
      /* line 176, sass/Responsive.sass */
      .post-grid:nth-of-type(even) .post-grid-item:first-of-type a .image-holder {
        grid-column: 1 / 3; }
      /* line 178, sass/Responsive.sass */
      .post-grid:nth-of-type(even) .post-grid-item:first-of-type a span, .post-grid:nth-of-type(even) .post-grid-item:first-of-type a h2, .post-grid:nth-of-type(even) .post-grid-item:first-of-type a p {
        grid-column: 3 / 4;
        text-align: left; }
    /* line 181, sass/Responsive.sass */
    .post-grid .post-grid-item:first-of-type {
      grid-column: 1 / 4;
      margin-bottom: 0px; }
      /* line 184, sass/Responsive.sass */
      .post-grid .post-grid-item:first-of-type .text-panel {
        background-color: white;
        padding: 25px;
        z-index: 3; }
      /* line 188, sass/Responsive.sass */
      .post-grid .post-grid-item:first-of-type a {
        background-color: white;
        display: grid;
        grid-column-gap: 15px;
        grid-template-rows: 1fr;
        grid-template-columns: 1fr 1fr 1fr;
        margin-bottom: 15px; }
        /* line 195, sass/Responsive.sass */
        .post-grid .post-grid-item:first-of-type a .image-holder {
          grid-column: 2 / 4;
          min-height: 350px;
          grid-row: 1 / 5;
          -webkit-box-ordinal-group: 0;
              -ms-flex-order: -1;
                  order: -1;
          margin-bottom: 0px; }
        /* line 201, sass/Responsive.sass */
        .post-grid .post-grid-item:first-of-type a span, .post-grid .post-grid-item:first-of-type a h2, .post-grid .post-grid-item:first-of-type a p {
          grid-column: 1 /2;
          text-align: right; }
    /* line 204, sass/Responsive.sass */
    .post-grid .trail a {
      text-align: center;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-pack: start;
          -ms-flex-pack: start;
              justify-content: flex-start; }
      /* line 210, sass/Responsive.sass */
      .post-grid .trail a .text-panel {
        margin: -40px 20px 0px 20px;
        padding: 20px;
        background-color: white;
        z-index: 2; }
      /* line 216, sass/Responsive.sass */
      .post-grid .trail a .image-holder {
        -webkit-box-ordinal-group: 0;
            -ms-flex-order: -1;
                order: -1; }
    /* line 218, sass/Responsive.sass */
    .post-grid .post-grid-item:nth-of-type(4) {
      display: block;
      visibility: visible; }
  /* line 222, sass/Responsive.sass */
  section.call-to-action-bar {
    padding: 120px 20px; }
    /* line 224, sass/Responsive.sass */
    section.call-to-action-bar h2 {
      font-size: 1.9em; }
  /* line 227, sass/Responsive.sass */
  footer {
    padding: 40px 25px;
    text-align: center; }
    /* line 231, sass/Responsive.sass */
    footer nav ul li {
      display: inline-block;
      margin-right: 15px;
      font-size: 1.1em; }
      /* line 235, sass/Responsive.sass */
      footer nav ul li:last-of-type {
        margin-right: 0px; }
  /* line 238, sass/Responsive.sass */
  .image-holder.single {
    height: 450px;
    padding-bottom: 0px; }
  /* line 242, sass/Responsive.sass */
  main.single {
    display: grid;
    grid-template-columns: 2fr 1fr; }
    /* line 245, sass/Responsive.sass */
    main.single article.post {
      background-color: white;
      z-index: 2;
      margin-top: 40px;
      padding: 30px; }
      /* line 250, sass/Responsive.sass */
      main.single article.post.with-image {
        margin-top: -80px; }
      /* line 252, sass/Responsive.sass */
      main.single article.post h1.post-title {
        font-size: 2.5em; }
      /* line 255, sass/Responsive.sass */
      main.single article.post p {
        font-size: 1.05em;
        line-height: 1.6em;
        margin-bottom: 24px; }
      /* line 259, sass/Responsive.sass */
      main.single article.post ol, main.single article.post ul, main.single article.post .wp-block-embed, main.single article.post .wp-block-image, main.single article.post blockquote, main.single article.post pre, main.single article.post audio, main.single article.post video {
        margin-bottom: 24px; }
      /* line 263, sass/Responsive.sass */
      main.single article.post .wp-caption p, main.single article.post img p {
        font-size: 0.9em; }
  /* line 266, sass/Responsive.sass */
  .related-posts-container {
    margin-bottom: 70px; } }

@media screen and (min-width: 1040px) {
  /* line 275, sass/Responsive.sass */
  .post-grid .post-grid-item:first-of-type a h2 {
    font-size: 1.9em; } }
