:root {
  --font-1: 10px;
  --font-2: 12px;
  --font-3: 16px;
  --font-4: 24px;
  --font-5: 42px;
  --font-lores12: "lores-12", sans-serif;
  --font-lores28: "lores-28", sans-serif;
  --gap: 2vw;
  --card-color: #334;
  --color-bg: #1b1b1b;
  --color-bg-50: rgba(20, 20, 20, 0.5);
  --color-bg-30: rgba(20, 20, 20, 0.3);
  --color-bg-10: rgba(20, 20, 20, 0.1);
  --color-text: #aaaaaa;
  --color-grey-dark: #525252;
  --color-grey-med: #999999;
  --color-grey-light: #cccccc;
  --color-grey-50: rgba(130, 130, 130, 0.5);
  --color-grey-30: rgba(130, 130, 130, 0.3);
  --color-grey-10: rgba(130, 130, 130, 0.1);
  --color-white-50: rgba(255, 255, 255, 0.5);
  --color-white-10: rgba(255, 255, 255, 0.1);
  --color-link: rgba(221, 5, 5, 1);
  --color-link-50a: rgba(221, 5, 5, 0.5);
  --color-link-light: red;
  --color-link-hover: #ffffff;
  --color-parchment: #fffbf2;
  --breakpoint: 1000px;
}

* {
  box-sizing: border-box;
}

html {
  font-size: 18px;
  padding: 0;
  margin: 0;
}
@media (min-width: 1000px) {
  html {
    font-size: 18px;
  }
}

body {
  text-rendering: optimizeLegibility;
  min-height: 100vh;
  background-color: var(--color-bg);
  font-family: var(--font-lores12);
  color: var(--color-text);
  font-size: 1rem;
  line-height: 1.75;
  padding: 0;
  margin: 0;
}
@media (max-width: 1000px) {
  body {
    padding: 6rem 0 0;
  }
}
body.p-.p-articles, body.p-.p-updates {
  background-color: var(--color-bg);
}
body.p-articles, body.p-updates {
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-blend-mode: multiply;
  background-color: transparent;
}

abbr {
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-block;
  border-bottom: 1px dotted;
}

::not(.text) li {
  list-style: none;
}

img {
  max-width: 100%;
  vertical-align: middle;
  display: inline-block;
}

figure {
  margin: 0;
  margin-bottom: 10px;
}
figure img {
  border-radius: 2px;
  display: block;
  max-width: 100%;
  border: none;
}
figure figcaption {
  margin: 1rem auto 2rem;
  color: inherit;
  opacity: 0.7;
  font-size: 0.8rem;
}

h1,
h2,
h3,
h4 {
  color: inherit;
}

h1 {
  margin-top: 1rem;
  margin-bottom: 1rem;
  font-family: var(--font-lores28);
  font-size: 2.3rem;
  letter-spacing: 1rem;
  text-transform: uppercase;
}

h2 {
  margin-top: 1rem;
  margin-bottom: 1rem;
  font-size: 2rem;
  letter-spacing: 0.5rem;
  text-transform: uppercase;
}

h3 {
  margin-top: 1rem;
  margin-bottom: 1rem;
  font-size: 1.7rem;
}

h4 {
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
  font-size: 1.5rem;
}

p,
small {
  display: block;
  margin: 0 0 1rem;
}

a {
  transition: opacity 200ms ease, color 0.2s ease;
  color: var(--color-link);
  text-decoration: none;
}
a:hover {
  border-color: inherit;
  color: var(--color-link-hover);
}

.button {
  display: block;
  min-width: 6rem;
  padding: 0.5rem 1rem;
  border: 1px solid var(--color-link);
  border-style: solid;
  border-width: 1px;
  border-radius: 2px;
  text-align: center;
}
.button.off {
  border-color: var(--color-grey-dark);
  color: var(--color-grey-dark);
  pointer-events: none;
}
.button.more {
  display: inline-block;
  word-break: break-all;
}

.text-block {
  display: inline-block;
}

.text-3col {
  column-count: 1;
  margin-bottom: 2rem;
  text-align: left;
}
@media (min-width: 1000px) {
  .text-3col {
    column-count: 3;
    column-gap: 2rem;
    margin-top: 1rem;
    padding: 2rem 0;
    border-top: 1px solid #333;
  }
}
.text-3col h2 {
  margin-top: 0;
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}
.text-3col p {
  line-height: 1.8;
  margin-bottom: 1.8rem;
}

.intro {
  display: flex;
  padding-right: 1rem;
  padding-left: 1rem;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.intro.tiny {
  flex-direction: row;
}

.intro-text {
  margin: 2rem 0;
  font-size: 1.6rem;
  text-align: left;
}

.notice {
  padding: 0.5rem 1rem 1px;
  color: #722;
  font-size: 0.8rem;
  background-color: #fdd;
  border: 1px solid #caa;
  margin: 1rem 0;
}
.notice p {
  margin: 0 0 0.5rem;
}

form.search {
  display: flex;
  justify-items: stretch;
  margin: 3rem auto;
  max-width: 100%;
  font-family: inherit;
  flex-direction: column;
}
@media (min-width: 1000px) {
  form.search {
    max-width: 50rem;
    flex-direction: row;
  }
}
form.search input {
  font-family: inherit;
  line-height: 2rem;
  padding: 1rem 2rem;
  font-size: 1.5rem;
  border-radius: 3px 0 0 3px;
  border: 1px solid #aaa;
  appearance: none;
  -webkit-appearance: none;
  display: block;
  color: var(--color-link);
  background-color: #333;
  margin-right: 0;
}
@media (min-width: 1000px) {
  form.search input {
    border-radius: 3px 3px 0 0;
  }
}
form.search input[type=search] {
  flex-grow: 1;
  background-color: #000;
}
form.search input[type=search]:focus {
  color: #fff;
  outline-color: var(--color-link);
}
@media (min-width: 1000px) {
  form.search input[type=search] {
    border-right-width: 0;
  }
}
form.search input[type=submit] {
  border-color: var(--color-link);
  border-radius: 0 3px 3px 0;
}

header {
  text-align: center;
}
header .page-title {
  margin-top: 0;
  display: block;
  text-align: center;
}

main,
section {
  position: relative;
  z-index: 2;
  display: flex;
  padding: 2rem 0 4rem;
  flex-direction: column;
  align-items: stretch;
  text-align: center;
  border: 1px outset var(--color-grey-30);
  background-color: #222;
  background-image: linear-gradient(45deg, #111, #222);
}
main.hero,
section.hero {
  background-color: transparent;
  background-image: linear-gradient(0deg, #111, rgba(0, 0, 0, 0.2));
  padding-top: 10rem;
}
main.article,
section.article {
  background-color: transparent;
  background-image: linear-gradient(45deg, var(--color-grey-30), var(--color-grey-10));
}
main.update,
section.update {
  background-color: transparent;
  margin-bottom: 3rem;
}

.box-text {
  border: none;
  padding: 1rem;
}
.box-text p {
  max-width: 50vw;
  text-align: center;
  padding: 1rem 2rem;
  color: #777;
  border: 1px inset var(--color-white-10);
}

.wrapper {
  max-width: 71rem;
  padding-right: 1rem;
  padding-left: 1rem;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  text-align: center;
}
@media (min-width: 1000px) {
  .wrapper {
    padding: 0;
    width: 71%;
  }
}
.wrapper.w90 {
  padding: 0;
  width: 90%;
  max-width: none;
}
.wrapper.flex {
  padding: 0;
  display: flex;
  justify-content: flex-start;
}
.wrapper.flex.vert {
  flex-direction: column;
}
.wrapper.flex.hor {
  flex-direction: column;
}
@media (min-width: 1000px) {
  .wrapper.flex.hor {
    flex-direction: row;
  }
}
.wrapper.flex.wrap {
  flex-wrap: wrap;
}

body .section:first-of-type {
  padding-top: 5rem;
}

.tracked {
  letter-spacing: 0.2rem;
  text-transform: uppercase;
}

.summary {
  max-width: 50vw;
  text-align: center;
  margin: 1rem 0;
  padding: 1rem 2rem 0.5rem;
  border: 1px inset var(--color-white-10);
}

.nav li a a:hover {
  opacity: 1;
  color: var(--color-link-light);
}

#eye {
  animation: blink 5s alternate ease infinite;
  transform-origin: 50% 55%;
}

@keyframes blink {
  0% {
    transform: scale(1, 1);
  }
  95% {
    transform: scale(1, 1);
  }
  100% {
    transform: scale(1, 0.3);
  }
}
#lukedorny-observer:hover {
  fill: var(--color-link-light);
}

@media (max-width: 1000px) {
  .nav:focus,
.nav:target {
    display: block;
  }

  .nav li {
    border-bottom: 1px solid var(--color-grey-dark);
  }
  .nav li a {
    width: 100%;
    height: 4rem;
    padding-left: 4rem;
    background-position: 1rem 50%;
    background-size: 2rem 2rem;
    background-repeat: no-repeat;
    border: none;
    text-decoration: none;
    display: flex;
    align-items: center;
  }
  .nav li span {
    color: var(--color-text);
    font-size: 1.6rem;
  }
  .nav li.admin {
    position: static;
  }
}
.update {
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 1000px) {
  .update {
    max-width: calc(70ch + 7rem);
  }
}
.update .update-title {
  margin-top: 1rem;
  font-size: 3rem;
  letter-spacing: 0.2rem;
  text-transform: none;
}

.update-list {
  max-width: 100%;
  text-align: left;
}
@media (min-width: 1000px) {
  .update-list {
    display: grid;
    width: 100%;
    grid-template-columns: repeat(auto-fit, minmax(14rem, 1fr));
    gap: 2vw;
    padding: 0 2vw 2vw;
  }
}
.update-list article {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  flex: 0 0 auto;
  overflow: hidden;
  line-height: 1;
}
.update-list article a {
  border: 1rem solid var(--card-color);
  border-radius: 1rem;
  padding-top: 100%;
  background-color: var(--card-color);
  position: relative;
  overflow: hidden;
}
.update-list article a .screen {
  background-image: linear-gradient(45deg, rgba(0, 0, 0, 0.7) 30%, rgba(255, 255, 255, 0));
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transition: all 0.2s ease;
  overflow: hidden;
  border-radius: 0.8rem;
}
.update-list article a .update-img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 0.8rem;
  overflow: hidden;
}
.update-list article a header,
.update-list article a footer {
  margin: 1vw;
}
.update-list article a p {
  margin: 0;
}
.update-list article a header {
  text-align: left;
}
.update-list article a footer {
  font-size: var(--font-1);
  line-height: 1;
  z-index: 1;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.update-list article a footer * {
  opacity: 0.8;
}
.update-list article a .update-num {
  position: absolute;
  top: 0;
  left: 0;
  padding-right: 0.5rem;
  padding-bottom: 0.5rem;
  border-bottom-right-radius: 0.5rem;
  background-color: var(--card-color);
  color: #aaa;
  line-height: 1;
  font-family: var(--font-lores28);
  font-size: 2rem;
  opacity: 1;
}
.update-list article a .update-num.two {
  top: auto;
  right: -1px;
  bottom: -1px;
  left: auto;
  transform: rotate(180deg);
}
@media (min-width: 1000px) {
  .update-list article a:visited {
    filter: saturate(0%);
  }
}
@media (min-width: 1000px) {
  .update-list article a:hover {
    filter: saturate(100%);
  }
}
@media (min-width: 1000px) {
  .update-list article a:hover .screen {
    opacity: 0.8;
  }
}
.update-list .update-item {
  --card-color: #334;
  height: 90vw;
  position: relative;
  display: flex;
  margin: 0 1rem 2rem;
  padding: 1rem;
  flex-direction: column;
  justify-content: flex-end;
  flex: 0 0 auto;
  background-image: linear-gradient(45deg, #000, #aaa);
  border: 1rem solid var(--card-color);
  border-radius: 1rem;
  overflow: hidden;
  line-height: 1;
}
@media (min-width: 1000px) {
  .update-list .update-item {
    border: 2rem solid var(--card-color);
    width: 13rem;
    height: 18rem;
    border-width: 0.8rem;
    transform-origin: 50% 100%;
    transition: transform 1s ease;
    margin: 0;
    width: 100%;
    height: auto;
  }
}
.update-list .update-item footer {
  font-size: var(--font-1);
  line-height: 1;
  z-index: 1;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.update-list .update-item footer * {
  opacity: 0.8;
}
.update-list .update-item p {
  margin-bottom: 0.2rem;
}
.update-list .update-item .screen {
  background-image: linear-gradient(45deg, rgba(0, 0, 0, 0.4) 30%, rgba(255, 255, 255, 0));
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  top: 0;
  opacity: 0;
  transition: all 0.2s ease;
}
.update-list .update-item .update-icon {
  position: absolute;
  right: -1px;
  bottom: -1px;
  width: 2rem;
  height: 2rem;
  border-style: solid none none solid;
  border-width: 0.5rem;
  border-color: #fff;
  border-radius: 0.5rem 0px 0px;
  background-color: #fff;
  background-image: url("/assets/images/Luke-logo-gifa-mov.gif");
  background-position: 50% 50%;
  background-size: cover;
  display: none;
}
.update-list .update-item .update-img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  mix-blend-mode: overlay;
}
.update-list .update-item .update-num {
  position: absolute;
  top: 0;
  left: 0;
  padding-right: 0.5rem;
  padding-bottom: 0.5rem;
  border-bottom-right-radius: 0.5rem;
  background-color: var(--card-color);
  color: #aaa;
  line-height: 1;
  font-family: var(--font-lores28);
  font-size: 2rem;
  opacity: 1;
}
.update-list .update-item .update-num.two {
  top: auto;
  right: -1px;
  bottom: -1px;
  left: auto;
  transform: rotate(180deg);
}
@media (min-width: 1000px) {
  .update-list .update-item:hover .screen {
    opacity: 0.8;
  }
}
@media (min-width: 1000px) {
  .update-list .update-item:visited {
    filter: saturate(0%);
  }
}
.update-list .update-item.featured .update-num {
  color: #fff;
}

blockquote {
  border-left: 3px solid var(--color-grey-10);
  margin-left: 0;
  padding: 1px 0 1px 1rem;
}
blockquote p {
  margin: 1rem 0;
}

.fit,
img.update-img,
img.article-pic {
  object-fit: cover;
}

time {
  position: relative;
  display: block;
  text-transform: uppercase;
}

.record-meta time,
.article-meta time {
  display: inline;
  text-transform: none;
}

.article-meta img {
  display: inline-block;
  height: 1rem;
  width: 1rem;
  margin-bottom: 3px;
  border-radius: 50%;
}

.admin {
  position: absolute;
  top: 0;
  left: 0;
}

.item-title {
  position: relative;
  margin-bottom: 0.5rem;
  font-family: var(--font-lores28);
}

.article-list {
  display: flex;
  width: auto;
  padding: 1vw;
  justify-content: center;
  flex-wrap: wrap;
  margin: 0 0.5rem;
}
@media (min-width: 1000px) {
  .article-list {
    display: grid;
    gap: 1vw;
    grid-auto-flow: dense;
    grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr));
    width: 100%;
    max-width: 80rem;
    margin: 0 auto;
  }
}
.article-list article {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  margin-bottom: 0.5rem;
}
@media (min-width: 1000px) {
  .article-list article {
    margin: 0;
  }
}
@media (min-width: 1000px) {
  .article-list article:first-child:nth-last-child(n+6) {
    grid-column-start: span 2;
    grid-row-start: span 2;
  }
}
@media (min-width: 1000px) {
  .article-list article:first-child:nth-last-child(n+6) header {
    margin: 2vw;
  }
}
@media (min-width: 1000px) {
  .article-list article:first-child:nth-last-child(n+6) footer {
    font-size: 2rem;
    margin: auto 2vw 2vw;
  }
}
@media (min-width: 1000px) {
  .article-list article:first-child:nth-last-child(n+6) h3 {
    font-size: calc(2vw + 2rem);
  }
}
@media (min-width: 1000px) {
  .article-list article:nth-child(7n) {
    transform: rotate(1deg);
  }
}
@media (min-width: 1000px) {
  .article-list article:nth-child(5n) {
    transform: rotate(-1deg);
  }
}
.article-list article a {
  background-color: var(--color-parchment);
  position: relative;
  display: flex;
  flex-direction: column;
  align-self: stretch;
  text-align: center;
  flex: 1;
}
@media (min-width: 1000px) {
  .article-list article a {
    transition: all 0.2s ease;
    box-shadow: inset 0 0 2.2rem rgba(0, 0, 0, 0.2);
  }
}
.article-list article a figure {
  width: 100%;
  margin: 0;
  padding-top: 100%;
  position: relative;
  overflow: hidden;
}
.article-list article a figure img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 0;
  mix-blend-mode: multiply;
  object-fit: cover;
}
@media (min-width: 1000px) {
  .article-list article a figure img {
    transition: filter 4s ease-in;
    filter: contrast(100) saturate(0);
  }
}
.article-list article a:hover {
  color: initial;
}
@media (min-width: 1000px) {
  .article-list article a:hover {
    box-shadow: none;
  }
}
@media (min-width: 1000px) {
  .article-list article a:hover figure img {
    filter: initial;
    transition: filter 1s ease-out;
  }
}
.article-list article header {
  margin: 2vw;
  text-align: left;
}
@media (min-width: 1000px) {
  .article-list article header {
    margin: 1vw 1vw 4vw;
  }
}
.article-list article header h3 {
  margin: 0;
  line-height: 1;
  font-family: var(--font-lores28);
  font-size: 2rem;
}
.article-list article footer {
  margin: auto 2vw 2vw;
  display: flex;
  filter: sepia(1);
  color: var(--color-bg-50);
  border-top: 1px solid;
}
@media (min-width: 1000px) {
  .article-list article footer {
    margin: auto 1vw 1vw;
  }
}
.article-list article footer .caticon {
  filter: opacity(0.7);
}
.article-list article footer * {
  font-family: var(--font-lores28);
  padding: 0.3vw 0.5vw 0;
  border-left: 1px solid;
}
.article-list article footer :first-child {
  padding-left: 0;
  border-width: 0;
}
.article-list article footer :last-child {
  padding-right: 0;
  margin-left: auto;
  text-align: right;
}

.article-item {
  position: relative;
  display: flex;
  width: 95vw;
  width: 100%;
  height: 130vw;
  margin-right: 2vw;
  margin-bottom: 2vw;
  margin-left: 2vw;
  padding: 9vw;
  text-align: left;
  flex-direction: column;
  align-self: stretch;
  background-color: var(--color-parchment);
}
@media (max-width: 1000px) {
  .article-item {
    min-height: 141vw;
    font-size: 1.5rem;
  }
}
@media (min-width: 1000px) {
  .article-item {
    width: auto;
    height: auto;
    margin: 0;
    padding: 1vw;
  }
}
@media (min-width: 1000px) {
  .article-item:nth-child(7n) {
    transform: rotate(1deg);
  }
}
@media (min-width: 1000px) {
  .article-item:nth-child(5n) {
    transform: rotate(-1deg);
  }
}
.article-item img {
  object-fit: cover;
  width: 92vw;
  height: 92vw;
}
@media (min-width: 1000px) {
  .article-item img {
    height: 17rem;
    width: 100%;
    height: 21vw;
    width: 21vw;
    transition: filter 1s;
    filter: contrast(150) sepia(0.7) brightness(1.6);
    mix-blend-mode: multiply;
  }
}
.article-item .article-title {
  position: relative;
  margin-top: 1rem;
  margin-bottom: 0rem;
  flex: 1 0;
  font-size: calc(2vw + 2rem);
  line-height: 0.9;
  font-family: var(--font-lores28);
  letter-spacing: -1px;
}
@media (min-width: 1000px) {
  .article-item .article-title {
    font-size: calc(2vw + 1rem);
  }
}
.article-item footer {
  font-size: calc(0.7rem + 0.6vw);
  display: flex;
  color: var(--color-text);
  font-family: var(--font-lores28);
  border-top: 1px solid var(--color-grey-30);
}
@media (min-width: 1000px) {
  .article-item footer {
    font-size: var(--font-3);
  }
}
.article-item footer * {
  padding: 0.5vw 0.5vw 0;
  border-left: 1px solid var(--color-grey-30);
}
.article-item footer :first-child {
  padding-left: 0;
  border-width: 0;
}
.article-item footer :last-child {
  margin-right: 0;
  margin-left: auto;
  text-align: right;
  padding-right: 0;
}
.article-item:hover {
  color: #000;
}
@media (min-width: 1000px) {
  .article-item:hover img {
    filter: initial;
  }
}
@media (min-width: 1000px) {
  .article-item:first-child:nth-last-child(n+6) {
    grid-column-start: span 2;
    grid-row-start: span 2;
  }
}
@media (min-width: 1000px) {
  .article-item:first-child:nth-last-child(n+6) img {
    height: 45vw;
    width: 45vw;
  }
}
@media (min-width: 1000px) {
  .article-item:first-child:nth-last-child(n+6) .article-title {
    font-size: 7vw;
  }
}
@media (min-width: 1000px) {
  .article-item:first-child:nth-last-child(n+6) footer {
    font-size: calc(1.5rem + 1vw);
  }
}

.article-num {
  border-bottom-right-radius: 1rem;
}

.article-thumb {
  width: 12rem;
  height: 12rem;
  max-width: 100%;
  border: solid 1px rgba(255, 255, 255, 0.19);
  border-radius: 2px;
  background-color: rgba(121, 69, 69, 0.15);
  background-image: url("/assets/images/Luke-logo-gifa-mov.gif");
  background-position: 50% 50%;
  background-size: cover;
}

.metatext {
  display: flex;
  margin-top: auto;
  justify-content: space-between;
  line-height: 1;
  color: var(--color-text);
}

.title-num {
  opacity: 0.2;
  font-family: var(--font-lores28);
  font-size: 5rem;
  letter-spacing: 0rem;
  text-transform: none;
}

main.page-bg {
  background: transparent none 0 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-blend-mode: multiply;
}

main article {
  position: relative;
}
main article header {
  position: relative;
}
main article header p {
  text-align: left;
}
@media (min-width: 1000px) {
  main article header p {
    text-align: center;
  }
}
main article header h1 {
  background: none;
  margin-top: 0rem;
  margin-bottom: 1rem;
  font-family: var(--font-lores28);
  font-size: 5rem;
  line-height: 1;
  letter-spacing: -0.2rem;
  text-transform: none;
  text-align: left;
}
@media (min-width: 1000px) {
  main article header h1 {
    text-align: center;
    display: flex;
    justify-content: space-between;
  }
}
main article header .item-no {
  margin-left: auto;
  opacity: 0.1;
}
main article.update .featured {
  background-color: var(--color-bg-50);
}
main article .article-meta {
  padding: 1rem 0 0;
  border-top: 1px dashed #525252;
  opacity: 0.5;
  text-align: left;
}
main article.article {
  margin: 0 auto 3rem;
  padding: 0;
  position: relative;
}
@media (min-width: 1000px) {
  main article.article {
    max-width: calc(70ch + 7rem);
  }
}
main article.article.poster {
  background-color: #fffbf2;
  color: #000;
  padding: 4vw;
  max-width: 100%;
}
@media (min-width: 1000px) {
  main article.article.poster {
    width: auto;
    max-width: calc(70ch + 7rem);
  }
}
main article.article.poster a:hover {
  color: var(--color-link);
}
main article.article .color-bars {
  display: flex;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  justify-items: stretch;
}
main article.article .color-bars div {
  height: 10px;
  min-width: 25%;
  background-color: var(--color-link);
}
main article.person .text {
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 1000px) {
  main article.person .text {
    max-width: 40rem;
  }
}
main article.person .id-card {
  background: rgba(255, 255, 255, 0.2);
  background-image: linear-gradient(145deg, rgba(255, 255, 255, 0.2) 0%, transparent 75%, rgba(255, 255, 255, 0.2) 100%);
  color: #333;
  border-radius: 1rem;
  border: 1px outset rgba(255, 255, 255, 0.3);
  padding: 4rem 1rem 1rem;
  position: relative;
  margin: 0 auto;
  box-shadow: 0 1rem 1rem #000;
}
@media (min-width: 1000px) {
  main article.person .id-card {
    max-width: 50%;
  }
}
main article.person .id-card::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translate(-50%, 10px);
  background: #000;
  top: 1rem;
  width: 5rem;
  height: 1rem;
  border-radius: 10px;
  border: 1px inset rgba(255, 255, 255, 0.6);
}
main article.person .id-card .id-paper {
  padding: 2rem;
  background: #ddd;
  background-image: linear-gradient(145deg, rgba(255, 255, 255, 0.2) 0%, transparent 75%, rgba(255, 255, 255, 0.8) 100%);
  position: relative;
  border-radius: 0.6rem;
  text-align: center;
}
main article.person .id-card .meta {
  padding: 1rem;
}
main article.person .id-card .meta h1 {
  margin: 0;
  line-height: 1;
}
main article.person .id-card .meta h2 {
  margin: 0;
  line-height: 1;
  font-size: 1.1rem;
  letter-spacing: 0;
}
main article.person .id-card figure {
  display: block;
  width: 50%;
  margin: 0 auto;
  position: relative;
}
main article.person .id-card figure img {
  display: block;
  width: 100%;
  border-radius: 0.5rem;
}
main article.person .id-card figure:after {
  content: "";
  position: absolute;
  display: block;
  border-radius: 0.5rem;
  top: 0rem;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(145deg, rgba(255, 255, 255, 0.5) 0, transparent 50%, rgba(255, 255, 255, 0.5) 100%);
}
main article.person .levels {
  padding: 0.75rem 1rem;
  text-align: left;
  border: 1px inset #000;
  background-color: #0015ff;
  border-radius: 0.5rem;
  font-size: 0.7rem;
  position: relative;
  color: #fff;
  box-shadow: inset 4px 0 10px #0b035a;
}
main article.person .levels dt {
  margin: 0.2rem 0 0 0rem;
  display: inline-block;
}
main article.person .levels dd {
  display: block;
  margin: 0;
  padding: 4px 0;
}
main article.person .levels dd span {
  text-align: right;
  font-size: 1.2rem;
  line-height: 1;
  position: relative;
  display: inline-block;
}
main article.person .levels dd span::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-image: linear-gradient(90deg, rgba(255, 255, 255, 0.2) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.2) 50%, rgba(255, 255, 255, 0.2) 75%, transparent 75%, transparent);
  z-index: 1;
  background-size: 50px 50px;
  overflow: hidden;
}
main article .article-pic {
  max-width: 100%;
  border-radius: 3px;
  background-color: #525252;
  background-image: none;
  background-size: auto;
  background-repeat: repeat;
}
@media (min-width: 1000px) {
  main article .article-pic {
    width: 75ch;
    height: 75ch;
  }
}
main article .text {
  margin-top: 2rem;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  text-align: left;
}
main article .text h2 {
  line-height: 1.4;
  letter-spacing: 0;
}
main article .text p a {
  overflow-wrap: break-word;
}
main article .text a:hover {
  color: var(--color-link);
  text-decoration: underline;
}
main article .text p {
  margin-bottom: 1.4rem;
}
main article .text figure {
  margin-bottom: 1rem;
}
main article .text figure img {
  border-radius: 3px;
}
main article .text code {
  padding: 1rem;
  border: 1px solid #000;
  box-shadow: inset 0 1rem 1rem -0.5rem #000, inset 0 -1rem 1rem -1rem #ffd;
  color: #ccc;
  text-shadow: 0 0 10px #aaa;
  background-color: #333 !important;
  display: block;
  border-radius: 4px;
  overflow: auto;
}
main article .lower-meta {
  margin-top: 3rem;
  border: 4px solid #333;
  border-width: 4px 0;
}
main article .lower-meta > h3 {
  text-align: left;
  border-top: 4px solid #333;
  padding: 0.5rem 0;
  margin: 0;
  font-size: 1rem;
}
main article .lower-meta p a.button {
  margin: 1rem 1rem 0 0;
}
main article .lower-meta ul {
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  border-top: 1px solid #333;
}
main article .lower-meta ul li {
  text-align: left;
  list-style: none;
}
main article .lower-meta ul li.label {
  padding-right: 1rem;
  min-width: 5rem;
}
main article .lower-meta ul li a {
  display: block;
  padding: 1rem;
  border-left: 1px solid #333;
  text-decoration: none;
}
main article .lower-meta ul.list-related {
  display: block;
  text-align: left;
  display: flex;
  flex-wrap: wrap;
  justify-content: stretch;
}
main article .lower-meta ul.list-related li {
  margin: 0;
}
@media (max-width: 1000px) {
  main article .lower-meta ul.list-related li {
    width: 100%;
  }
}
@media (min-width: 1000px) {
  main article .lower-meta ul.list-related li {
    flex: 0 1 50%;
    border-bottom: 1px solid #333;
  }
}
main article .lower-meta ul.list-related li a {
  border-left: none;
  position: relative;
  padding: 1rem 0 0.5rem 6rem;
  min-height: 7rem;
}
@media (min-width: 1000px) {
  main article .lower-meta ul.list-related li a {
    opacity: 0.8;
  }
}
main article .lower-meta ul.list-related li a article {
  position: static;
}
main article .lower-meta ul.list-related li a figure {
  margin: 0;
}
main article .lower-meta ul.list-related li a img {
  width: 5rem;
  height: 5rem;
  border-radius: 2px;
  background: #aa0000 50% 50% url("/assets/images/sketchbook.jpg");
  background-size: cover;
  object-fit: cover;
  position: absolute;
  top: 1rem;
  left: 0;
}
main article .lower-meta ul.list-related li a header {
  text-align: left;
}
main article .lower-meta ul.list-related li a header h3 {
  font-size: 3rem;
  margin: 0;
  line-height: 1;
  font-family: var(--font-lores28);
  display: block;
}
main article .lower-meta ul.list-related li a footer * {
  font-size: 0.7rem;
  font-family: var(--font-lores12);
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-block;
  margin-right: 0.5rem;
  line-height: 1;
  color: #888;
  border-left: 1px solid #333;
  padding-left: 0.6rem;
}
main article .lower-meta ul.list-related li a footer :first-child {
  border-left: none;
  padding-left: 0;
}
@media (min-width: 1000px) {
  main article .lower-meta ul.list-related li a:hover {
    opacity: 1;
  }
}
@media (min-width: 1000px) {
  main article .lower-meta ul.list-related li:nth-child(even) {
    padding-left: 1rem;
  }
}
@media (min-width: 1000px) {
  main article .lower-meta ul.list-related li:nth-child(odd) {
    border-right: 1px solid #333;
  }
}
main article .lower-meta ul.list-related li:last-child, main article .lower-meta ul.list-related li:nth-child(odd):nth-last-child(2) {
  border-bottom: none;
}
main article.poster .lower-meta {
  border-color: #ccc;
}
main article.poster .lower-meta h3 {
  border-color: #ccc;
}
main article.poster .lower-meta ul {
  border-color: #ccc;
}
main article.poster .lower-meta ul li {
  border-color: #ccc;
}
main article.poster .lower-meta ul li a {
  border-color: #ccc;
}
main article.poster .lower-meta ul li:nth-child(odd) {
  border-color: #ccc;
}
main article figure a img {
  opacity: 1;
  transition: 0.2s opacity ease;
}
main article figure a:hover img {
  opacity: 0.9;
}
main article a#imgfull {
  display: none;
  position: fixed;
  z-index: 999;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.7);
  box-shadow: 0 0 40vmin #000 inset;
  color: #fff;
  text-align: center;
}
main article a#imgfull figcaption {
  margin: 0 auto;
  padding: 10px;
  background-color: #333;
  max-width: 90vw;
  border-radius: 0 0 10px 10px;
  box-shadow: #000 0 5px 20px;
  color: inherit;
}
main article a#imgfull img {
  width: 100vw;
  max-height: 95vh;
  margin-top: 0rem;
  object-fit: cover;
  border-radius: 4px;
}
main article a#imgfull:target {
  display: block;
}

figure.video {
  height: 0;
  justify-self: center;
  margin: 2.4rem auto;
  width: 100%;
  overflow: hidden;
  padding-bottom: 56.25%;
  position: relative;
  border-radius: 5px;
}
figure.video iframe {
  position: absolute;
  border-radius: 5px;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.text.long {
  margin-top: 1rem;
}
@media (min-width: 1000px) {
  .text.long {
    margin-left: auto;
    margin-right: auto;
  }
}

@media (min-width: 1000px) {
  .np-embed {
    margin-top: 2rem;
    margin-right: 1rem;
  }
}

.tracks {
  text-align: left;
}
@media (min-width: 1000px) {
  .tracks {
    margin-left: 1rem;
  }
}
.tracks ol li {
  list-style: decimal;
  padding: 0.5rem 0.5rem;
  line-height: 1.1;
}
.tracks ol li i {
  font-size: 0.7rem;
  display: block;
  opacity: 0.8;
  font-style: normal;
}
.tracks ol li:nth-child(odd) {
  background-color: #333;
}

aside.shared {
  max-width: 71rem;
  margin: 1rem auto;
}

.list-side {
  display: flex;
  padding-left: 0px;
  list-style-type: none;
  margin: 2rem 0 0;
  display: flex;
  align-items: center;
  text-align: center;
}
.list-side li.stop {
  opacity: 0.3;
  font-size: 0.7rem;
  text-transform: uppercase;
  line-height: 1;
}
.list-side li .button {
  position: relative;
  transition: all 0.2s ease;
}
.list-side li .button:not(.off):hover {
  color: var(--color-link-light);
  border-color: inherit;
}
.list-side li.prev {
  margin-right: auto;
}
.list-side li.prev .button {
  left: 0;
}
@media (min-width: 1000px) {
  .list-side li.prev .button:hover {
    left: -1rem;
  }
}
.list-side li.next {
  margin-left: auto;
}
.list-side li.next .button {
  right: 0;
}
@media (min-width: 1000px) {
  .list-side li.next .button:hover {
    right: -1rem;
  }
}

.all-pages {
  display: flex;
  justify-content: stretch;
  flex-direction: column;
  text-align: center;
  margin: 2rem auto;
}
@media (min-width: 1000px) {
  .all-pages {
    place-items: center;
    margin: 3rem auto;
    flex-direction: row;
    justify-content: center;
  }
}
.all-pages a {
  margin: 0.5rem auto;
  display: block;
}
@media (min-width: 1000px) {
  .all-pages a {
    margin: 0 0.5rem;
    display: inline-block;
  }
}

.p-nowplaying {
  background-image: url("/assets/images/np-bg1.png");
  background-position: 50% 7rem;
  background-size: 110vw;
  background-repeat: no-repeat;
  color: var(--color-parchment);
}
.p-nowplaying h1 {
  text-shadow: 0 0 15px #000;
}
@media (min-width: 1000px) {
  .p-nowplaying h1 {
    font-size: 4rem;
  }
}

.np-list {
  display: flex;
  max-width: 100%;
  justify-content: center;
  flex-wrap: wrap;
  text-align: left;
}
.np-list a {
  position: relative;
  display: flex;
  width: 17rem;
  height: 17rem;
  margin: 0 1rem 1rem 0.5rem;
  flex-direction: column;
  justify-content: flex-end;
  background: var(--color-link) url("/assets/images/nowplaying.png") 50% 50% no-repeat;
  background-size: cover;
  transform-origin: 100% 50%;
  transition: 0.2s ease;
  color: #fff;
  border-radius: 4px;
  text-overflow: ellipsis;
}
.np-list a img {
  border-radius: 4px;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: block;
  z-index: 1;
  border: 1px outset #666;
}
.np-list a div {
  display: none;
}
@media (min-width: 1000px) {
  .np-list a div {
    display: block;
    background: #ccc;
    background-size: cover;
    position: absolute;
    width: 97%;
    height: 97%;
    right: 1%;
    top: 1%;
    border-radius: 49%;
    background-color: #ddd;
    transition: 0.5s ease;
    transition: right 1s alternate;
    animation: play 1s infinite linear;
  }
}
@media (min-width: 1000px) {
  .np-list a:hover {
    transform: rotate(-3deg) translate(-1rem, 0);
    z-index: 3;
  }
}
@media (min-width: 1000px) {
  .np-list a:hover div {
    right: -30%;
  }
}
@media (min-width: 1000px) {
  .np-list a.cd div {
    width: 90%;
    height: 90%;
    right: 5%;
    top: 5%;
    box-shadow: 0 0 1px 2px #ddd, 0 0 1px 7px #aaa;
  }
}
@media (min-width: 1000px) {
  .np-list a.cd:hover div {
    right: -30%;
  }
}
.np-list a.r2r {
  background: transparent url("/assets/images/reel.png") 100% 100% no-repeat;
}
.np-list a.r2r div {
  background: transparent url("/assets/images/reel.png") 100% 100% no-repeat;
  background-size: cover;
}
.np-list a.cass div {
  background: transparent url("/assets/images/cassette.png") 100% 100% no-repeat;
  background-size: cover;
  animation: none;
  width: 8rem;
  height: 8rem;
  top: 4rem;
  right: 2rem;
  border-radius: 0;
  border: none;
}
.np-list a.cass div:after {
  animation: play 1.8s 0s infinite linear;
  content: "";
  position: absolute;
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  right: 3.1rem;
  top: 3rem;
  border: 3px dotted #ccf;
  box-shadow: 0 0 1px 2px #ccf;
  background-color: #000;
}
@media (min-width: 1000px) {
  .np-list a.cass:hover div {
    right: -6rem;
  }
}
.np-list a.server {
  position: relative;
}
.np-list a.server:hover:before {
  right: -40%;
}
.np-list a.server:after {
  content: "";
  position: absolute;
  box-shadow: 0 0 4px #666;
  transition: right 1s ease;
  z-index: 0;
  display: block;
  background: transparent url("/assets/images/flop.png") no-repeat 0 0;
  background-size: cover;
  height: 179px;
  width: 78px;
  right: 0;
  top: 20%;
}
.np-list a.server:hover:after {
  right: -50px;
}
.np-list a.server div {
  position: absolute;
  transition: none;
  animation: none;
  top: 132px;
  right: 22px;
  width: 110px;
  height: 110px;
  border: none;
  border-radius: 0 5px 0 0;
  z-index: 1;
  transition: right 1s ease;
}
.np-list a.server:hover div {
  right: -35px;
}
.np-list a.vinyl div, .np-list a.vinyl2 div {
  width: 40%;
  height: 40%;
  right: 95px;
  top: 95px;
}
@media (min-width: 1000px) {
  .np-list a.vinyl:hover div, .np-list a.vinyl2:hover div {
    right: -20%;
  }
}

.np-list .sticker .title {
  font-family: var(--font-lores28);
  font-size: var(--font-4);
}

.sticker {
  background-image: linear-gradient(45deg, rgba(0, 0, 0, 0.1) 30%, rgba(0, 0, 0, 0));
  color: var(--color-grey-light);
  z-index: 2;
  font-size: 1rem;
  margin: 1px;
  padding: 0.4rem 0.4rem 0.2rem 0.5rem;
  background-color: rgba(0, 0, 0, 0.5);
}
.sticker .title {
  color: var(--color-grey-light);
  margin: 0;
  letter-spacing: 0;
  overflow: hidden;
}
.sticker .numbr {
  color: var(--color-grey-light);
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  display: block;
  border: 1px solid var(--color-grey-light);
  padding: 2px 0.5rem;
  line-height: 1;
}

.vinyl .sticker .numbr {
  padding: 5px 5px 5px 12px;
  font-size: 0.8rem;
  box-shadow: 1px 1px 1px #888, -1px -1px 1px #ccc;
  transform: rotate(2deg);
  background-color: #fff;
  color: var(--color-grey-dark);
}
.vinyl .sticker .numbr:before {
  content: "price";
  position: absolute;
  transform: rotate(-90deg);
  left: 0;
  bottom: 10px;
  text-transform: uppercase;
  font-size: 0.3rem;
}

.cass .sticker {
  border: 3px #aaa solid;
  border-width: 6px 0;
  border-radius: 3px;
  text-overflow: ellipsis;
  margin: 0.5rem;
  line-height: 1.1;
  padding: 0.4rem 0.4rem 0.2rem 0.5rem;
  background: #eee;
  color: #000;
  background-image: linear-gradient(45deg, rgba(0, 0, 0, 0.1) 30%, rgba(0, 0, 0, 0));
  display: flex;
  justify-items: stretch;
  align-items: baseline;
}
.cass .sticker .title {
  justify-self: stretch;
  align-items: baseline;
  flex-grow: 1;
  display: inline-block;
  border-bottom: 1px solid #aaa;
  color: var(--color-grey-dark);
}
.cass .sticker .numbr {
  border: none;
  position: static;
  flex-grow: 0;
  color: #fff;
  margin-left: 0.2rem;
  padding: 0.1rem 0.2rem;
  display: flex;
  align-items: center;
  border-radius: 2px;
  background: #333;
  line-height: 1.5;
}

.record-meta .sticker {
  padding: 0 2rem 0 0;
  background-color: transparent;
}
.record-meta .sticker span {
  opacity: 0.5;
  display: block;
  font-size: 0.7rem;
  margin-right: 3px;
  width: 4rem;
  text-align: right;
}
.record-meta .sticker h2 {
  display: flex;
  align-items: baseline;
  justify-items: start;
  margin: 0 0 1rem;
  font-size: 2rem;
  color: #fff;
  opacity: 1;
}
.record-meta .sticker h3 {
  margin: 0 0 1rem;
  line-height: 1;
  font-size: 1.4rem;
}
.record-meta .sticker p {
  margin: 0;
}
.record-meta .sticker .title {
  margin: 0 0 1rem;
}

@keyframes play {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes server {
  0% {
    transform: rotate(40deg);
  }
  3% {
    transform: rotate(47deg);
  }
  65% {
    transform: rotate(47deg);
  }
  70% {
    transform: rotate(42deg);
  }
  72% {
    transform: rotate(42deg);
  }
  90% {
    transform: rotate(45deg);
  }
  95% {
    transform: rotate(40deg);
  }
  100% {
    transform: rotate(40deg);
  }
}
.wrapper.record-intro {
  display: flex;
  flex-direction: column;
  max-width: none;
  width: auto;
  align-items: stretch;
  align-content: stretch;
  justify-content: stretch;
}
@media (min-width: 1000px) {
  .wrapper.record-intro {
    flex-direction: row;
    position: relative;
    justify-content: center;
  }
}

.np-item-full {
  position: relative;
  z-index: 1;
  display: flex;
  width: calc(100vw - 8rem);
  height: calc(100vw - 8rem);
  height: 70vw;
  width: 70vw;
  margin: 0 1rem 1rem 0;
  padding-top: 1rem;
  flex-direction: column;
  justify-content: flex-end;
  align-items: stretch;
  flex: 0 0 auto;
  border: 1px solid #000;
  border-radius: 4px;
  background-image: url("/assets/images/nowplaying.png"), linear-gradient(40deg, transparent, rgba(255, 255, 255, 0.04));
  background-position: 50% 50%, 0px 0px;
  background-size: cover, auto;
  background-repeat: no-repeat, repeat;
  transform-origin: 50% 50%;
  color: #f78484;
}
@media (min-width: 1000px) {
  .np-item-full {
    transform: rotate(-3deg) translate(0rem, 0px);
    transition: all 200ms ease;
    width: 40vw;
    height: 40vw;
    width: calc(30vw - 2rem);
    height: calc(30vw - 2rem);
    margin-right: 2rem;
    position: sticky;
    top: 1rem;
  }
}
.np-item-full .np-format.static {
  position: absolute;
  width: 60vw;
  height: 61vw;
  top: 5vw;
  left: 30vw;
  right: auto;
  bottom: auto;
  border-color: #fff;
  border-radius: 49%;
}
@media (min-width: 1000px) {
  .np-item-full .np-format.static {
    left: 12vw;
    top: 10vw;
    width: 30%;
    height: 30%;
    transition: left 2s ease;
    display: block;
  }
}
@media (max-width: 1000px) {
  .np-item-full .np-format.static.vinyl, .np-item-full .np-format.static.vinyl2 {
    width: 20vw;
    height: 20.5vw;
    left: 60vw;
    top: 45vw;
    z-index: 2;
    background-size: cover;
  }
}
@media (max-width: 1000px) {
  .np-item-full .np-format.static.vinyl:after, .np-item-full .np-format.static.vinyl2:after {
    display: block;
    content: "";
    height: 5px;
    width: 5px;
    background-color: #000;
    position: absolute;
    left: 50%;
    top: 50%;
    margin-left: -2px;
    margin-top: -2px;
    border-radius: 50%;
  }
}
.np-item-full .np-format.static.vinyl, .np-item-full .np-format.static.vinyl2, .np-item-full .np-format.static.cd, .np-item-full .np-format.static.r2r {
  animation: play 1.8s linear infinite forwards;
}
.np-item-full .np-format.static.cd {
  box-shadow: 0 0 1px 0.3rem #ddd, 0 0 1px 0.5rem #fff;
  width: 50vw;
  height: 50vw;
}
@media (min-width: 1000px) {
  .np-item-full .np-format.static.cd {
    width: 90%;
    height: 90%;
    top: 5%;
    left: 10%;
    background-size: cover;
  }
}
.np-item-full .np-format.static.r2r {
  background: transparent url("/assets/images/reel.png") 100% 100% no-repeat;
  background-size: cover;
  width: 90%;
  height: 90%;
  top: 5%;
  left: 5%;
}
.np-item-full .np-format.static.cass {
  background: transparent url("/assets/images/cassette.png") 100% 100% no-repeat;
  background-size: cover;
  animation: none;
  width: 12rem;
  height: 12rem;
  top: 4rem;
  right: 2rem;
  left: auto;
  border-radius: 0;
  border: none;
}
.np-item-full .np-format.static.cass:after {
  animation: play 1.8s 0s infinite linear;
  content: "";
  position: absolute;
  width: 1.6rem;
  height: 1.6rem;
  border-radius: 50%;
  right: 4.6rem;
  top: 4.4rem;
  border: 3px dotted #ccf;
  box-shadow: 0 0 1px 2px #ccf;
  background-color: #000;
}
@media (min-width: 1000px) {
  .np-item-full .np-format.static.cass {
    transition-property: right;
  }
}
.np-item-full .np-format.static.server {
  border: none;
  background-size: cover;
  background-repeat: none;
  border-radius: 0 1vw 0 0;
  top: 55%;
  left: 58vw;
  width: 26vw;
  height: 25vw;
}
@media (min-width: 1000px) {
  .np-item-full .np-format.static.server {
    top: 14vw;
    left: 17vw;
    width: 10vw;
    height: 12vw;
  }
}
.np-item-full .np-format.static.server::before {
  content: "";
  position: absolute;
  z-index: -1;
  display: block;
  background: transparent url("/assets/images/flop.png") no-repeat 0 0;
  background-size: cover;
  height: 39vw;
  width: 17vw;
  left: 49%;
  top: -14.5vw;
}
@media (min-width: 1000px) {
  .np-item-full .np-format.static.server::before {
    height: 21vw;
    width: 9.5vw;
    left: 2.5vw;
    top: -9.2vw;
  }
}
.np-item-full:hover {
  transform: none;
}
@media (min-width: 1000px) {
  .np-item-full:hover .np-format.static {
    left: 22vw;
  }
}
@media (min-width: 1000px) {
  .np-item-full:hover .np-format.static.cass {
    left: auto;
    right: -8rem;
  }
}
@media (min-width: 1000px) {
  .np-item-full:hover .np-format.static.r2r {
    left: 15rem;
  }
}
@media (min-width: 1000px) {
  .np-item-full:hover .np-format.static.cd {
    left: 30%;
  }
}
@media (min-width: 1000px) {
  .np-item-full:hover .np-format.static.server {
    left: 24vw;
  }
}
.np-item-full .np-cover {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-style: solid;
  border-width: 1px;
  border-color: rgba(255, 255, 255, 0.3) rgba(221, 5, 5, 0.3) rgba(221, 5, 5, 0.3) rgba(255, 255, 255, 0.3);
  border-radius: 4px;
  box-shadow: 1vw 1vw 2vw rgba(0, 0, 0, 0.2);
}
.np-item-full.cass {
  background-color: #888;
}
.np-item-full.r2r {
  background-color: #aaa;
}
.np-item-full.cd {
  background-color: #ccc;
}

.page-title {
  font-size: 3rem;
  letter-spacing: 0;
  position: relative;
  text-align: center;
  margin: 10vmin auto;
}
@media (min-width: 1000px) {
  .page-title {
    font-size: 5rem;
  }
}

.numbr.larger {
  font-size: 2rem;
  opacity: 0.3;
  margin: 0;
}

.numbr.massive {
  position: absolute;
  pointer-events: none;
  top: -1rem;
  left: 10%;
  font-size: 40vw;
  opacity: 0.3;
  line-height: 1;
  z-index: -1;
}

.record-meta {
  position: relative;
  margin-bottom: 2rem;
  text-align: left;
  max-width: 71ch;
}
.record-meta h1 {
  margin: 0 3rem 1rem 0;
  font-size: 3rem;
  line-height: 1;
  letter-spacing: 0rem;
}
.record-meta h1 .item-no {
  position: absolute;
  top: 0;
  right: 0;
  opacity: 0.3;
  border-left: 1px solid var(--color-link);
  padding-left: 0.5rem;
}
.record-meta p.label {
  letter-spacing: 1px;
  display: block;
  color: #fff;
  opacity: 0.4;
  text-transform: uppercase;
  font-size: 0.7rem;
}
.record-meta h2 {
  opacity: 0.8;
  font-family: var(--font-lores12);
  font-size: 1.3rem;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0px;
  margin: -1rem 0 1rem;
}
.record-meta .format {
  display: block;
  margin: 1rem 0 2rem;
  padding: 1rem;
  border-style: inset;
  border-radius: 3px;
  border-width: 1px;
  border-color: #000;
  letter-spacing: 6px;
  text-transform: uppercase;
}
@media (min-width: 1000px) {
  .record-meta .format {
    display: inline-block;
    padding-left: 10rem;
    margin-left: -10rem;
  }
}
.record-meta .format .have {
  display: inline-block;
  margin-left: 1rem;
  padding: 0.1rem 0.5rem;
  border-radius: 2px;
  background-color: var(--color-grey-50);
  color: var(--color-grey-light);
  letter-spacing: 2px;
  text-transform: uppercase;
}
.record-meta .text {
  border-top: none;
}

ul.meta {
  margin: 0;
  padding: 0;
  font-size: 0.7rem;
  border-width: 0 1px 1px 0;
  display: flex;
}
ul.meta li {
  margin: 0;
  padding: 0.5rem;
  display: inline-block;
  width: 100%;
  border: 4px inset rgba(50, 50, 50, 0.3);
}
ul.meta li i {
  display: block;
  opacity: 0.6;
  text-transform: uppercase;
  font-style: normal;
  letter-spacing: 1px;
}
ul.meta li strong {
  margin: 0;
  display: inline-block;
  color: #fff;
  white-space: nowrap;
}
@media (min-width: 1000px) {
  ul.meta li strong {
    padding-left: 0;
    font-size: var(--font-4);
  }
}
ul.meta li:last-child {
  border-right: none;
}

body > header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(black, rgba(100, 0, 0, 0.2));
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(0%) blur(10px);
}
@media (max-width: 1000px) {
  body > header {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    z-index: 100;
  }
}
@media (min-width: 1000px) {
  body > header {
    position: relative;
    padding-top: 1rem;
  }
}
body > header a.observer.mobile {
  display: block;
  width: 100%;
  background: transparent url("/assets/images/lukedorny-observer-anim.svg") no-repeat 50%;
}
@media (max-width: 1000px) {
  body > header a.observer.mobile {
    height: 6rem;
    background-size: 4rem;
    background-position: calc(50% + 1.25rem) 50%;
  }
}
@media (min-width: 1000px) {
  body > header a.observer.mobile {
    height: 4rem;
    background-size: 4rem;
    transition: transform 0.2s ease;
  }
}
@media (min-width: 1000px) {
  body > header a.observer.mobile:hover {
    transform: scale(1.1);
  }
}
body > header nav.nav {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (max-width: 1000px) {
  body > header nav.nav {
    position: fixed;
    left: 0;
    top: 6rem;
    width: 100%;
    display: none;
    border-top: 1px solid #000;
  }
}
@media (min-width: 1000px) {
  body > header nav.nav {
    display: flex;
    flex-direction: row;
    justify-content: center;
    border: none;
    overflow: hidden;
  }
}
body > header nav.nav ul {
  margin: 0;
  padding: 0;
}
@media (max-width: 1000px) {
  body > header nav.nav ul {
    width: 100%;
    background-color: var(--color-bg);
    height: 100vh;
  }
}
@media (min-width: 1000px) {
  body > header nav.nav ul {
    box-shadow: none;
    display: flex;
  }
}
body > header nav.nav li {
  list-style: none;
  margin: 0;
  width: 100%;
}
@media (min-width: 1000px) {
  body > header nav.nav li {
    width: auto;
    margin: 0 0;
    display: flex;
  }
}
body > header nav.nav li a {
  display: block;
  padding: 1rem;
  color: #ff0000;
  position: relative;
}
@media (min-width: 1000px) {
  body > header nav.nav li a {
    padding: 0.5rem;
    height: 100%;
    text-transform: uppercase;
    letter-spacing: 1px;
  }
}
body > header nav.nav li a strong {
  text-align: center;
  display: block;
  font-weight: 100;
}
@media (min-width: 1000px) {
  body > header nav.nav li a strong {
    margin-top: 1.5rem;
    transition: all 0.2s ease;
    padding: 0.2rem 1rem;
    background: none;
    border: 3px solid var(--color-link);
    border-radius: 1.2rem;
  }
}
@media (max-width: 1000px) {
  body > header nav.nav li a.active, body > header nav.nav li a:hover {
    background-color: var(--color-grey-med);
    color: var(--color-bg);
  }
}
@media (min-width: 1000px) {
  body > header nav.nav li a.active strong, body > header nav.nav li a:hover strong {
    margin-top: 0.5rem;
    padding-top: 0.1rem;
    position: relative;
    border-color: var(--color-grey-light);
    color: var(--color-grey-light);
    border-bottom-width: 0;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
    padding-bottom: 2rem;
    margin-bottom: -2rem;
  }
}
@media (min-width: 1000px) {
  body > header nav.nav li a .circle {
    background: transparent url("/assets/images/lukedorny-observer-anim.svg") no-repeat 50% 50%;
    background-size: cover;
    border-radius: 50%;
    transform: translate(-50%, 0);
    transition: bottom 0.2s ease;
    height: 2rem;
    width: 2rem;
    display: block;
    position: absolute;
    bottom: -2.1rem;
    left: 50%;
  }
}
@media (min-width: 1000px) {
  body > header nav.nav li a.active .circle {
    bottom: -1rem;
  }
}
@media (min-width: 1000px) {
  body > header nav.nav li a:hover .circle {
    bottom: 0rem;
  }
}
body > header nav.nav li a.observer {
  display: none;
}
@media (min-width: 1000px) {
  body > header nav.nav li a.observer {
    display: block;
  }
}
@media (min-width: 1000px) {
  body > header nav.nav li a.nowplaying .circle {
    background-size: 60%;
    background-color: #000;
    background-image: url("/assets/images/lukedorny-observer-anim.svg");
    animation: play 1.8s 0s infinite linear;
    margin-left: -1rem;
  }
}
@media (min-width: 1000px) {
  body > header nav.nav li a.nowplaying .circle::before {
    content: "";
    border-radius: 47%;
    width: 2rem;
    height: 2rem;
    position: absolute;
    left: -50%;
    bottom: 0;
    transform: translate(50%, 0);
    box-shadow: 0 0 0 2px #333, 0 0 0 3px #000, 0 0 0 6px #333, 0 0 0 7px #000, 0 0 0 9px #333, 0 0 0 10px #000, 0 0 0 14px #333, 0 0 0 15px #000, 0 0 0 20px #333, 0 0 0 21px #000;
  }
}
body > header nav.nav li a.nowplaying:hover .circle {
  bottom: -1rem;
}
@media (min-width: 1000px) {
  body > header nav.nav li a.luxuryluke .circle {
    background: no-repeat 50% 50% transparent url("/assets/images/luxuryluke-raptor.png");
    background-size: cover;
  }
}
body > header nav.nav li a.updates .circle {
  display: none;
}
body > header nav.nav li a.articles .circle {
  display: none;
}
body > header input.toggle,
body > header label.burger {
  display: block;
}
@media (min-width: 1000px) {
  body > header input.toggle,
body > header label.burger {
    display: none;
  }
}
body > header label.burger {
  cursor: pointer;
  position: relative;
  display: block;
  width: 3.1rem;
  height: 3.1rem;
  transform-origin: center;
}
@media (min-width: 1000px) {
  body > header label.burger {
    display: none;
  }
}
body > header label.burger .bun,
body > header label.burger .patty,
body > header label.burger .lettuce,
body > header label.burger .cheese {
  display: block;
  border-radius: 5px 5px 0 0;
  background-color: #f5b453;
  height: 2px;
  width: 2rem;
  position: absolute;
  top: 1.3rem;
  right: 0.7rem;
  transform: translateY(-10px);
  transition: transform 0.2s ease-in-out, opacity 0.2s ease;
}
body > header label.burger .bun {
  height: 4px;
}
body > header label.burger .lettuce {
  background-color: lightgreen;
  margin-right: -1px;
  width: 2.1rem;
  transform: translateY(-5px);
}
body > header label.burger .cheese {
  background-color: yellow;
  border-radius: 5px;
  transform: translateY(-1px);
}
body > header label.burger .patty {
  height: 4px;
  background-color: var(--color-link);
  border-radius: 5px;
  transform: translateY(4px);
}
body > header label.burger .bun.bottom {
  border-radius: 0 0 5px 5px;
  transform: translateY(10px);
}
body > header label.burger:hover span {
  transition: opacity 0.2s;
}
body > header label.burger:hover .bun {
  background-color: #ddd;
  border-radius: 0;
  transform: rotate(90deg);
}
body > header label.burger:hover .bun.bottom {
  transform: rotate(360deg);
}
body > header label.burger:hover .patty,
body > header label.burger:hover .cheese,
body > header label.burger:hover .lettuce {
  opacity: 0;
}
body > header input.toggle {
  display: none;
}
body > header input.toggle:checked {
  z-index: 1000;
}
body > header input.toggle:checked ~ nav.nav {
  display: flex;
}
body > header input.toggle:checked ~ label.burger span {
  border-radius: 5px;
}
body > header input.toggle:checked ~ label.burger span.bun {
  background-color: #ddd;
  transform: rotate(45deg);
}
body > header input.toggle:checked ~ label.burger span.bun.bottom {
  transform: rotate(-45deg);
}
body > header input.toggle:checked ~ label.burger *:not(.bun) {
  opacity: 0;
}
@media (min-width: 1000px) {
  body > header input.toggle {
    display: none;
  }
}

.text {
  margin-top: 1rem;
  margin-bottom: 1rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
  border-top: 1px solid #525252;
  border-bottom: 1px solid #525252;
  text-align: left;
}

.list-cats {
  margin-top: 1rem;
  margin-bottom: 1rem;
  padding-left: 0px;
  justify-content: space-between;
  list-style-type: none;
}

.list-cats-item {
  display: inline-block;
  padding-right: 0.5rem;
  padding-left: 0rem;
}

.cats {
  display: flex;
  padding-right: 1rem;
  padding-left: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  text-align: center;
}

ul.cats {
  display: flex;
  align-items: baseline;
  list-style: none;
}
ul.cats li a.catlink {
  display: inline-block;
  vertical-align: baseline;
  margin: 0 1rem;
}
ul.cats li a.catlink h4 {
  text-transform: uppercase;
  letter-spacing: 0.2rem;
}
ul.cats li a.catlink .catimage {
  max-height: 1.4rem;
  margin-bottom: 1rem;
  object-fit: cover;
}
ul.cats li a.catlink .cathead {
  font-size: 2rem;
}
ul.cats li a.catlink.active {
  color: #fff;
}

.console {
  display: flex;
  background-color: var(--color-grey-10);
  padding: 2rem;
  border: 2px solid #000;
  box-shadow: 0 0 3px 3px #222;
  border-radius: 3px;
}
.console .player {
  display: flex;
  border: inset 2px var(--color-grey-30);
  box-shadow: inset 0 0 20px -5px #0ff;
  color: #0ff;
  padding: 3rem;
}
.console .player .player-cover {
  height: 10rem;
  width: 10rem;
  margin-right: 1rem;
  border-radius: 3px;
}
.console .player .player-meta p.label {
  text-transform: uppercase;
  font-size: 0.7rem;
  letter-spacing: 2px;
  margin: 0;
}
.console .player .player-meta h3 {
  font-size: 1.5rem;
  margin: 0;
}
.console .player .player-meta h4 {
  font-size: 1rem;
  margin: 0;
}
.console .player-recent li {
  display: flex;
  align-items: center;
  font-size: 0.7rem;
  line-height: 1.4;
}
.console .player-recent li img {
  height: 3rem;
  width: 3rem;
  border-radius: 2px;
  margin-right: 1rem;
}
.console .player-recent li div p {
  font-size: 0.7rem;
  margin: 0;
}
.console .player-recent li div p a {
  font-size: 1rem;
}

.panel {
  padding: 3rem 0.5rem 0rem;
  margin: 2vw;
  background-color: #222;
  border: 1px outset var(--color-grey-30);
  background: #222;
  z-index: 3;
  background-image: linear-gradient(45deg, rgba(0, 0, 0, 0.2), rgba(100, 100, 100, 0.2));
  position: relative;
  border-radius: 3px;
  box-shadow: 0 1rem 1rem rgba(0, 0, 0, 0.4), 0 -1rem 2rem rgba(200, 200, 200, 0.1);
  text-align: center;
}
@media (min-width: 1000px) {
  .panel {
    margin: 1rem;
    padding: 7rem 4rem;
  }
}
.panel::before, .panel::after {
  content: "";
  display: block;
  width: 0.5rem;
  border: 1px outset #666;
  background: #333;
  position: absolute;
  top: 47%;
  height: 0.5rem;
  border-radius: 50%;
  left: 1rem;
  box-shadow: 0 0.2rem 0.2rem #000;
}
.panel::after {
  right: 1rem;
  left: auto;
}
.panel .jacks {
  display: block;
  border-radius: 50px;
  padding: 1rem;
  box-shadow: inset 0 5px 8px #000, inset 0 -7px 10px #444;
  margin: 0 auto 2rem;
  line-height: 1.5rem;
  font-size: 0.6rem;
  letter-spacing: 3px;
  color: var(--color-grey-30);
  display: flex;
}
@media (min-width: 1000px) {
  .panel .jacks {
    position: absolute;
    width: auto;
    bottom: 2rem;
    right: 4rem;
    margin: 0;
  }
}
.panel .jacks .label {
  display: none;
}
@media (min-width: 1000px) {
  .panel .jacks .label {
    display: block;
  }
}
.panel .jacks .jack {
  position: relative;
  padding: 0 2rem;
}
.panel .jacks .jack:after {
  content: "";
  position: absolute;
  right: 0.2rem;
  top: 0;
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  background-color: #000;
  border: 4px solid rgba(255, 255, 255, 0.5);
  border-bottom-color: #ddd;
  display: block;
  box-shadow: 0px -2px 2px 1px #fff, 0px 1px 2px 2px #777, -1px -1px 1px 2px #222, 0px 3px 3px 3px #000, 0px 15px 3px 0px #000;
}
.panel .jacks .jack.red {
  padding: 0 0 0 2rem;
}
.panel .jacks .jack.red:after {
  right: auto;
  left: 0.2rem;
  border-color: #a00;
  border-bottom-color: #f00;
}
.panel .jacks .jack.black {
  padding: 0 2rem 0 1rem;
  margin-right: 4px;
}
.panel .jacks .jack.gold {
  padding: 0 2rem 0 1rem;
  margin-left: auto;
}
.panel .jacks .jack.gold:after {
  border-color: #ca0;
  border-bottom-color: #fca;
}
.panel p {
  margin: 0;
}
.panel .power {
  display: block;
  background-color: var(--color-link);
  width: 0.3rem;
  height: 0.3rem;
  font-size: 0.6rem;
  letter-spacing: 3px;
  line-height: 0.3rem;
  color: var(--color-grey-30);
  text-indent: 1.5rem;
  text-transform: uppercase;
  border-radius: 50%;
  box-shadow: 0 0 20px 3px #f00, 0 0 10px 3px #f00;
  position: absolute;
  left: 1rem;
  bottom: 1rem;
}
@media (min-width: 1000px) {
  .panel .power {
    left: 4rem;
    bottom: 2rem;
  }
}
.panel .model {
  display: block;
  font-size: 0.6rem;
  letter-spacing: 3px;
  color: var(--color-white-50);
  text-transform: uppercase;
  line-height: 1;
  position: absolute;
  top: 1rem;
  left: 1rem;
}
@media (min-width: 1000px) {
  .panel .model {
    top: 2rem;
    left: 4rem;
  }
}
.panel .version {
  display: block;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1;
  color: #fff;
  text-shadow: 0 -2px 3px #fff, 0 1px 6px #000, 0 4px 6px #000;
  position: absolute;
  top: 1rem;
  right: 1rem;
}
@media (min-width: 1000px) {
  .panel .version {
    top: 2rem;
    right: 4rem;
  }
}
.panel h1 {
  font-family: var(--font-lores12);
  display: inline-block;
  margin: auto;
  padding: 0.5rem 3rem;
  position: relative;
  background-image: linear-gradient(-15deg, #000, #666, #300, #333, #555, #333, #555, #000, #333);
  background-attachment: fixed;
  background-size: 100% 55%;
  box-shadow: 5px 5px 10px #000, -1px -1px 15px rgba(255, 255, 255, 0.3), -1px -1px 1px #fff;
  border: 0.3rem solid #ccc;
  line-height: 2rem;
  border-radius: 0.7rem;
}
.panel h1::before, .panel h1::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 1vw;
  width: 0.5rem;
  height: 0.5rem;
  display: block;
  background-image: linear-gradient(-45deg, #000, #333, #fff, #aaa);
  border: 0.2rem solid #ccc;
  border-radius: 50%;
  transform: translateY(-50%);
}
.panel h1::after {
  left: auto;
  right: 1vw;
}
@media (max-width: 1000px) {
  .panel h1 {
    font-size: 1.2rem;
    line-height: 1.4;
    letter-spacing: 0;
  }
}
.panel h2 {
  font-size: 1.3rem;
  margin: 0.5rem 0;
}

body.p-nowplaying footer {
  position: relative;
}

.observerwrap {
  position: relative;
  z-index: 3;
  min-height: 7rem;
  padding: 2rem 0 0;
  margin: 0;
  border-bottom: 1px solid #000;
  background-color: #222;
  background-image: linear-gradient(0deg, #222 6rem, rgba(0, 0, 0, 0));
  box-shadow: 0 2rem 1rem rgba(0, 0, 0, 0.3);
}
.observerwrap::before {
  content: "";
  display: block;
  margin: 0 auto;
  width: 6rem;
  height: 6rem;
  position: absolute;
  bottom: -3rem;
  left: 50%;
  transform: translate(-50%, 0);
  border-radius: 50%;
  background-color: #222;
  border-bottom: 1px solid #000;
  box-shadow: 0 2rem 1rem rgba(0, 0, 0, 0.3), 0 -1rem 1rem rgba(100, 100, 100, 0.1);
}
.observerwrap .shoegazer {
  position: absolute;
  z-index: 3;
  background-color: #222;
  background-image: url("/assets/images/lukedorny-observer-anim.svg");
  display: block;
  border-radius: 50%;
  background-position: 50%;
  background-size: 2rem 2rem;
  background-repeat: no-repeat;
  width: 3rem;
  height: 3rem;
  left: 50%;
  bottom: -1.5rem;
  transform: translate(-50%, 0);
  transition: box-shadow 200ms ease;
}
.observerwrap .shoegazer:hover {
  box-shadow: #444 0 0.5rem 1rem 0.5rem, #000 0 -0.5rem 1rem 0.5rem;
  border-color: #222;
}

body > footer {
  position: relative;
  z-index: 1;
  display: flex;
  padding: 0;
  flex-direction: column;
  align-items: stretch;
  border-top: 1px solid #333;
  color: #999;
  font-size: var(--font-2);
}
body > footer:after, body > footer:before {
  position: absolute;
  z-index: 0;
  content: "";
  width: 0.3rem;
  background-color: #a00;
  box-shadow: inset 0 0 3px #000, 1rem 1rem 0.5rem rgba(0, 0, 0, 0.5);
  bottom: 0;
  top: 10%;
  left: 50%;
  transform: rotateZ(5deg);
}
body > footer:after {
  background-color: #333;
  transform: rotateZ(2deg);
  margin-left: 0.3rem;
}
body > footer .flush {
  background-color: #222;
}
body > footer .sticky {
  position: relative;
  background-image: url(/assets/images/bogrid.png), radial-gradient(circle at top, #333, #000);
  background-position: 50% 100%;
  background-repeat: repeat;
  width: 100%;
  max-width: 100%;
  padding: 1rem 2rem;
}
@media (min-width: 1000px) {
  body > footer .sticky {
    position: sticky;
    z-index: -1;
    padding: 5rem 0;
    bottom: 0;
  }
}
body > footer a {
  color: #fff;
}
body > footer a:hover {
  color: #fff;
}
body > footer .warning {
  position: relative;
  padding: 1rem;
  margin: 1rem auto 3rem;
  max-width: 50rem;
  border: 1px solid #555;
  background-color: #fff;
  box-shadow: 0 0 0 1rem #fff;
}
@media (min-width: 1000px) {
  body > footer .warning {
    z-index: -3;
  }
}
body > footer .warning p {
  margin: 1px 0.3rem;
  max-width: 100%;
  color: #777;
}
@media (min-width: 1000px) {
  body > footer .warning p {
    margin: 1px 1rem;
  }
}
body > footer .warning p a {
  color: #aaa;
}
body > footer .warning.dark {
  background-color: #555;
  border-color: #fff;
  z-index: 0;
  box-shadow: 0 0 0 1rem #555;
}
@media (min-width: 1000px) {
  body > footer .warning.dark {
    columns: 2;
  }
}
body > footer .warning.dark p {
  color: #ccc;
}
body > footer .warning.dark p a {
  color: #fff;
}
body > footer .legal {
  text-align: center;
}
@media (min-width: 1000px) {
  body > footer .legal {
    display: flex;
    justify-content: space-between;
    max-width: 50rem;
    margin: auto;
  }
}
body > footer .legal p {
  margin: 2rem 0;
}

.button-soft-grid {
  display: flex;
  padding-top: 2rem;
  padding-bottom: 2rem;
  justify-content: center;
  text-align: center;
  flex-wrap: wrap;
}
@media (min-width: 1000px) {
  .button-soft-grid {
    flex-direction: row;
  }
}
.button-soft-grid a {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  margin: 1rem 0.5rem;
  align-items: stretch;
}
@media (min-width: 1000px) {
  .button-soft-grid a {
    width: 100px;
  }
}
.button-soft-grid a .button-soft {
  display: flex;
  padding: 1rem;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  flex: 0 1 100%;
  border: 2px solid black;
  border-width: 2px 1px;
  border-top-color: rgba(255, 251, 242, 0.33);
  border-radius: 1rem;
  color: white;
  background-color: #201f1f;
  background-image: linear-gradient(to bottom, rgba(66, 57, 36, 0.3), rgba(82, 82, 82, 0.18));
  box-shadow: inset 0 3px 7px 1px rgba(255, 251, 242, 0.1), 0 -18px 31px -14px #525252, 0 10px 10px 0 rgba(0, 0, 0, 0.31), inset 0 -10px 8px 0 rgba(48, 32, 32, 0.5);
}
@media (min-width: 1000px) {
  .button-soft-grid a .button-soft {
    transition: all 0.2s ease;
  }
}
.button-soft-grid a .knob-black-dome {
  display: flex;
  width: 70px;
  height: 70px;
  margin: auto;
  justify-content: center;
  align-items: center;
  border: solid 1px var(--color-link);
  border-radius: 100%;
  background-image: linear-gradient(to bottom, #5d5656, black);
  box-shadow: 0 0 20px 0 var(--color-link), inset 0 -9px 2px -2px var(--color-grey-30), inset 0 6px 3px 0 var(--color-grey-50), 0 10px 10px 0 var(--color-bg-50);
}
.button-soft-grid a .button-dot {
  width: 0.3rem;
  height: 0.3rem;
  border-radius: 100%;
  background-color: #333;
  box-shadow: 0 -2px 2px var(--color-grey-med), 0 0 2px var(--color-grey-dark);
}
@media (min-width: 1000px) {
  .button-soft-grid a .button-dot {
    transition: box-shadow 0.2s ease;
  }
}
.button-soft-grid a .button-dot.medium {
  box-shadow: 0 -4px 4px var(--color-bg), 0 -2px 2px var(--color-grey-med), 0 0 2px var(--color-grey-dark);
  width: 0.7rem;
  height: 0.7rem;
}
.button-soft-grid a p {
  text-transform: uppercase;
  margin: 0;
}
@media (min-width: 1000px) {
  .button-soft-grid a p {
    opacity: 0.5;
    transition: opacity 0.2s ease;
  }
}
.button-soft-grid a .button-image {
  display: block;
  width: 60px;
  height: 60px;
  margin-top: 1rem;
  font-size: 2rem;
}
@media (min-width: 1000px) {
  .button-soft-grid a .button-image {
    opacity: 0.8;
    transform: translate(0, 0);
    transition: opacity 0.2s ease, transform 0.2s ease;
  }
}
@media (min-width: 1000px) {
  .button-soft-grid a:hover .button-image, .button-soft-grid a.current .button-image {
    opacity: 1;
    transform: translate(0, 2px);
  }
}
.button-soft-grid a:hover p, .button-soft-grid a.current p {
  opacity: 1;
}
.button-soft-grid a:hover .button-dot, .button-soft-grid a.current .button-dot {
  background-color: red;
  box-shadow: 0 0 20px 10px var(--color-link);
}
.button-soft-grid a:hover .button-dot.medium, .button-soft-grid a.current .button-dot.medium {
  box-shadow: 0 1px 10px 3px var(--color-link);
}
.button-soft-grid a:hover .knob-black-dome, .button-soft-grid a.current .knob-black-dome {
  box-shadow: 0 0 40px 0 var(--color-link), 0 0 20px 0 var(--color-link), inset 0 -9px 2px -2px var(--color-grey-30), inset 0 6px 3px 0 var(--color-grey-50), 0 10px 10px 0 var(--color-bg-50);
}
.button-soft-grid a:hover .button-soft, .button-soft-grid a.current .button-soft {
  border-top-color: black;
  border-bottom-color: #666666;
  background-color: #3a3636;
  background-image: linear-gradient(to bottom, rgba(82, 82, 82, 0.18), rgba(66, 57, 36, 0.3));
  box-shadow: inset 0 3px 7px 1px rgba(255, 251, 242, 0.1), 0 -8px 31px -14px #525252, 0 10px 10px 0 rgba(0, 0, 0, 0.31), inset 0 -5px 8px 0 rgba(48, 32, 32, 0.5);
}

.satin-knob {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-transform: uppercase;
  cursor: pointer;
}
.satin-knob .satin-knob-outer {
  display: flex;
  width: 104px;
  height: 104px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border: solid 1px var(--color-grey-dark);
  border-top-color: var(--color-grey-light);
  border-bottom-color: var(--color-bg);
  border-radius: 100px;
  background-color: white;
  background-image: linear-gradient(90deg, var(--color-link-50a), var(--color-white-10)), conic-gradient(#ddd, #aaa, #eee, #fff, #fff, #aaa, #333, #333, #aaa, #ddd, #aaa, #ddd);
  box-shadow: 0 -20px 30px 0 var(--color-grey-50), 0 40px 10px 0 var(--color-bg-50);
}
.satin-knob .satin-knob-face {
  display: flex;
  width: 96px;
  height: 96px;
  align-items: center;
  align-self: center;
  border-top-left-radius: 100px;
  border-top-right-radius: 100px;
  border-bottom-left-radius: 100px;
  border-bottom-right-radius: 100px;
  background-image: linear-gradient(77deg, var(--color-grey-10), var(--color-white-10)), conic-gradient(var(--color-grey-10), var(--color-white-50), var(--color-grey-10));
  color: var(--color-bg);
  transform: rotate(-20deg);
  transition: transform 1s ease;
}
.satin-knob:hover .satin-knob-face {
  transform: rotate(210deg);
  transition: transform 5s ease;
}

.toes {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  line-height: 3;
  color: #aaa;
  width: 100%;
}
@media (min-width: 1000px) {
  .toes {
    flex-direction: row;
  }
}
.toes a {
  display: block;
  padding: 3rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  height: 5rem;
  width: 4rem;
  background-size: 3rem;
  font-size: 0.6rem;
  transition: opacity 0.2s ease;
  margin: 2rem;
  position: relative;
}
@media (min-width: 1000px) {
  .toes a {
    opacity: 0.5;
    display: inline-block;
    margin: 0 1rem 0 0;
    height: 2rem;
    width: 4rem;
    padding-top: 1rem;
    background-size: 1rem;
  }
}
.toes a:before {
  position: absolute;
  content: "";
  top: -0.5rem;
  left: 50%;
  width: 0.3rem;
  height: 0.3rem;
  background-color: #333;
  box-shadow: 0 -2px 2px #aaa, 0 0 2px #000;
  transition: box-shadow 0.2s ease;
  border-radius: 50%;
  transform: translate(-50%, 0);
}
@media (min-width: 1000px) {
  .toes a:before {
    top: -2rem;
  }
}
.toes a img {
  position: absolute;
  top: 0;
  left: 50%;
  width: 3rem;
  height: 3rem;
  transform: translate(-50%, 0);
  background: #fff;
  border-radius: 50%;
}
@media (min-width: 1000px) {
  .toes a img {
    width: 1.3rem;
    height: 1.3rem;
  }
}
.toes a.cream img, .toes a.butter img {
  display: none;
}
.toes a:hover {
  opacity: 1;
}
.toes a:hover:before {
  box-shadow: 0 0 20px 10px var(--color-link);
  background-color: var(--color-link);
}
.toes a.cream, .toes a.butter, .toes a.luxbus {
  background-size: contain;
  height: 10rem;
  width: 10rem;
  text-indent: -500rem;
}
.toes a.cream {
  background-image: url("/assets/images/cream-white.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  height: 4rem;
}
@media (min-width: 1000px) {
  .toes a.cream {
    width: 7rem;
    height: 2rem;
  }
}
.toes a.butter {
  background-image: url("/assets/images/butterlabel.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
@media (min-width: 1000px) {
  .toes a.butter {
    width: 2rem;
    height: 2rem;
  }
}
.toes a.luxbus {
  background-image: url("/assets/images/luxbus.png");
}
@media (min-width: 1000px) {
  .toes a.luxbus {
    width: 2rem;
    height: 2rem;
  }
}

.errortrooper {
  display: flex;
  align-content: flex-end;
  flex-direction: column;
  position: relative;
  z-index: 10;
  width: 100vw;
  min-height: 70vh;
  background: #aaa url("/assets/images/lukedorny-observer-anim.svg") 50% 0 no-repeat;
  background-size: cover;
  padding: 5rem;
  box-shadow: 0 10px 30px #000;
}
.errortrooper .errorrapper {
  position: relative;
  display: flex;
  align-content: center;
  flex-direction: column;
  max-width: 30rem;
  text-align: center;
  margin: auto auto 0;
  box-shadow: 0 1rem 1rem rgba(0, 0, 0, 0.4);
  border-radius: 1rem;
  padding: 2rem;
  background-color: rgba(0, 0, 0, 0.4);
}
.errortrooper .errorrapper h1 {
  font-size: 28px;
  letter-spacing: 0;
  margin: 0;
}
.errortrooper .errorrapper p {
  margin: 0;
  font-size: 12px;
}

.cards {
  margin: 0 auto 1rem;
  width: 100%;
  padding: 0;
  position: relative;
  z-index: 2;
}
@media (min-width: 1000px) {
  .cards {
    display: grid;
    padding: 0 2vw;
    grid-gap: 2vw;
    grid-template-columns: repeat(auto-fit, minmax(20vw, 1fr));
    grid-auto-flow: dense;
  }
}
.cards article {
  position: relative;
  overflow: hidden;
  margin: 2vw;
}
@media (min-width: 1000px) {
  .cards article {
    min-height: 22vw;
    display: flex;
    flex-direction: column;
    margin: 0;
  }
}
@media (min-width: 1000px) {
  .cards article.featured {
    grid-column-start: span 2;
    grid-row-start: span 2;
    min-height: 44vw;
  }
}
.cards a {
  background-color: #333;
  position: relative;
  display: flex;
  justify-content: flex-end;
  flex-direction: column;
  line-height: 1;
  font-size: 1rem;
  text-align: left;
  color: #fff;
  border-radius: 5px;
  border: solid 1px #333;
  overflow: hidden;
  background-color: #666;
  background-clip: border-box;
  min-height: 96vw;
}
@media (min-width: 1000px) {
  .cards a {
    min-height: 22vw;
    background-image: linear-gradient(40deg, rgba(0, 0, 0, 0.9), #640000, rgba(100, 0, 0, 0.2), rgba(100, 0, 0, 0.7));
    transition: all 500ms ease;
  }
}
.cards a img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  mix-blend-mode: overlay;
  z-index: 0;
}
@media (min-width: 1000px) {
  .cards a img {
    filter: sepia(0);
  }
}
.cards a div {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
}
@media (min-width: 1000px) {
  .cards a div {
    transition: all 1s ease;
    background-image: linear-gradient(45deg, rgba(100, 0, 0, 0.2), rgba(100, 0, 0, 0.5) 50%);
    opacity: 0.1;
  }
}
.cards a header {
  padding: 4vw;
  margin: 0;
  background: var(--color-bg-50);
  position: relative;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: left;
}
@media (min-width: 1000px) {
  .cards a header {
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    padding: 2vw;
    font-size: 5vw;
  }
}
.cards a h2 {
  font-size: var(--font-5);
  font-family: var(--font-lores28);
  margin: 0;
  letter-spacing: 0;
  line-height: 1;
}
@media (min-width: 1000px) {
  .cards a h2 {
    font-size: 4vw;
  }
}
.cards a time {
  display: inline;
}
.cards a p {
  margin: 0;
  font-size: var(--font-2);
}
@media (min-width: 1000px) {
  .cards a p {
    color: var(--color-text);
  }
}
.cards a.featured {
  position: relative;
  padding: 0;
  border: none;
  text-transform: none;
}
@media (min-width: 1000px) {
  .cards a.featured {
    min-height: 46vw;
  }
}
@media (min-width: 1000px) {
  .cards a.featured header {
    padding: 2vw;
  }
}
@media (min-width: 1000px) {
  .cards a.featured h2 {
    font-size: 7vw;
  }
}
@media (min-width: 1000px) {
  .cards a:visited img {
    filter: sepia(1);
    opacity: 0.5;
  }
}
.cards a:hover {
  background-color: var(--color-link);
}
@media (min-width: 1000px) {
  .cards a:hover * {
    color: var(--color-link-hover);
  }
}
@media (min-width: 1000px) {
  .cards a:hover img {
    opacity: 1;
    filter: sepia(0);
  }
}
@media (min-width: 1000px) {
  .cards a:hover div {
    opacity: 0.5;
    transition-duration: 2s;
  }
}
.cards a.round header {
  padding: 1vw 1vw 0;
  text-align: center;
}
.cards a.round footer {
  text-align: center;
  padding: 0 1vw 1vw;
  position: relative;
  background: var(--color-bg-50);
}

.tiles {
  margin: 0 auto 1rem;
  width: 100%;
  padding: 0 2vw;
  position: relative;
  z-index: 2;
}
@media (min-width: 1000px) {
  .tiles {
    display: grid;
    grid-gap: 1vw;
    grid-template-columns: repeat(auto-fit, minmax(14vw, 1fr));
    grid-auto-flow: dense;
  }
}
.tiles a.card {
  background-color: #333;
  padding: 2vw;
  position: relative;
  display: flex;
  justify-content: flex-end;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1;
  font-size: 1rem;
  text-align: left;
  color: #fff;
  border-radius: 3px;
  border: solid 1px #333;
  overflow: hidden;
  background-color: #666;
  background-clip: border-box;
}
@media (max-width: 1000px) {
  .tiles a.card {
    min-height: 90vw;
    margin-bottom: 1rem;
  }
}
@media (min-width: 1000px) {
  .tiles a.card {
    padding: 1.5vw;
    min-height: 15vw;
    background-image: linear-gradient(40deg, rgba(0, 0, 0, 0.9), #640000, transparent, rgba(100, 0, 0, 0.3));
    transition: all 2s ease;
    font-size: 0.7rem;
    justify-content: space-between;
  }
}
.tiles a.card img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  mix-blend-mode: overlay;
}
@media (min-width: 1000px) {
  .tiles a.card img {
    transition: opacity 2s ease;
  }
}
.tiles a.card h1 {
  position: relative;
  opacity: 1;
  line-height: 1;
  font-size: 15vw;
  letter-spacing: 0;
  margin: 0.5rem 0;
}
@media (min-width: 1000px) {
  .tiles a.card h1 {
    font-size: 2rem;
  }
}
.tiles a.card h2 {
  position: relative;
  opacity: 1;
  line-height: 1;
  font-size: 3rem;
  letter-spacing: 0;
  margin: 0.5rem 0;
  font-family: var(--font-lores28);
}
@media (min-width: 1000px) {
  .tiles a.card h2 {
    font-size: 3vmin;
    margin: 0 0 -4px;
  }
}
.tiles a.card p {
  position: relative;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin: 0.2rem 0;
}
@media (min-width: 1000px) {
  .tiles a.card p {
    opacity: 0.5;
    padding: 0.2rem 0.5rem;
    border: 1px solid;
    display: inline-block;
  }
}
@media (min-width: 1000px) {
  .tiles a.card p.uptop {
    align-self: flex-end;
    margin: 0 0 auto;
  }
}
.tiles a.card time {
  margin: 0;
  text-transform: uppercase;
}
@media (min-width: 1000px) {
  .tiles a.card time {
    opacity: 0.5;
    transform: rotate(90deg);
    position: absolute;
    top: 3.6vw;
    left: -0.4vw;
    margin: 0;
    line-height: 1;
  }
}
.tiles a.card footer {
  font-size: 10px;
  display: flex;
  justify-content: space-between;
  text-transform: uppercase;
  align-items: baseline;
  line-height: 1;
  color: var(--color-text);
}
.tiles a.card div {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
}
@media (min-width: 1000px) {
  .tiles a.card div {
    transition: opacity 2s ease;
    background-image: linear-gradient(45deg, rgba(100, 0, 0, 0.2), rgba(100, 0, 0, 0.5) 50%);
    opacity: 0;
  }
}
@media (min-width: 1000px) {
  .tiles a.card:hover {
    background-color: #f00;
  }
}
@media (min-width: 1000px) {
  .tiles a.card:hover div {
    opacity: 0.5;
    transition-duration: 0.2s;
  }
}
@media (min-width: 1000px) {
  .tiles a.card:hover img {
    opacity: 0.5;
    transition-duration: 0.2s;
  }
}
.tiles a.card:hover p,
.tiles a.card:hover time,
.tiles a.card:hover h1 {
  opacity: 1;
}
@media (min-width: 1000px) {
  .tiles a.card.featured {
    grid-column-start: span 2;
    grid-row-start: span 2;
    min-height: 30vw;
  }
}
@media (min-width: 1000px) {
  .tiles a.card.articles.featured {
    grid-column-start: span 3;
    grid-row-start: span 2;
  }
}
.tiles a.card.round {
  text-align: center;
}
@media (max-width: 1000px) {
  .tiles a.card.round {
    width: 28vmin;
    height: 28vmin;
    min-height: auto;
    min-width: auto;
    float: left;
    margin: 1rem 1rem 0 0;
  }
}
@media (min-width: 1000px) {
  .tiles a.card.round {
    margin: 1rem 1rem 0 0;
  }
}
@media (max-width: 1000px) {
  .tiles a.card.round h2 {
    font-size: 2rem;
  }
}
@media (max-width: 1000px) {
  .tiles a.card.round p {
    font-size: 12px;
  }
}

/*# sourceMappingURL=index.css.map */
