/* Custom CSS */
:root {
  --gold: #d1c196;
}

main {
  background-color: #0c0d0e;
  color: #efefef;
}

hr {
    border: 1px solid rgba(256,256,256,0.8);
}

header figure .responsive-embed.banner-widescreen {
    background-color: #0c0d0e;
}

article {
  position: relative;
  background: #0c0d0e url(background-cover.jpg) no-repeat 0 0;
  background-size: cover;
  &::before {
    content: '';
    background: linear-gradient(#0c0d0e, rgba(12, 13, 14, 0.8));
    position: absolute;
    height: 100%;
    width: 100%;
    opacity: 0.8;
  }
  & > * {
    position: relative;
  }
}
@media (min-width: 640px) {
  article {
      background-attachment: fixed;
  }
}

@media print, screen and (min-width: 64em) {
  main > aside {
    margin: 1rem 0 0;
  }
}

h1,
h2,
h3,
h4,
h5 {
  color: var(--gold);
  padding-top: 0;
}

h1 {
  font-size: 3rem;
  line-height: 1.2;
}

h2 {
  font-size: 2.5rem;
}

main>article a,
main>article a:visited,
main>article a:hover,
.a2a .a2a_dd,
.a2a .a2a_dd:hover {
  color: var(--gold);
}

.article-category a {
  background: rgba(256, 256, 256, 0.1) !important;
  border-color: var(--gold);
  color: var(--gold) !important;
  transition: all .2s ease-in-out;

  &:hover {
    opacity: 1;
    text-decoration: none;
    background-color: var(--gold) !important;
    color: #0c0d0e !important;
  }
}

.stat {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.1;
  color: var(--gold);

  br {
    display: none;
  }

  .label {
    display: block;
    font-size: 0.5em;
    line-height: 1.1;
  }

  @media (min-width: 1025px) {
    font-size: 4rem;
  }
}

.grid-container+.grid-container {
  margin-top: 1rem;

  @media (min-width: 1025px) {
    margin-top: 2.5rem;
  }
}


main>article {
  margin-bottom: 0;
  padding-bottom: 1.5rem;

  @media print,
  screen and (min-width: 64em) {
    padding-bottom: 2.66rem;
  }
}