* {
  margin: 0;
  padding: 0;
}

:root {
  --padding: 1.5rem;
  --color-black: #000;
  --color-white: #fff;
  --color-grey: #777;
  --color-light: #efefef;
  --color-text: var(--color-black);
  --color-text-grey: var(--color-grey);
  --color-background: var(--color-white);
  --color-code-light-grey:  #cacbd1;
  --color-code-comment:     #a9aaad;
  --color-code-white:       #c5c9c6;
  --color-code-red:         #d16464;
  --color-code-orange:      #de935f;
  --color-code-yellow:      #f0c674;
  --color-code-green:       #a7bd68;
  --color-code-aqua:        #8abeb7;
  --color-code-blue:        #7e9abf;
  --color-code-purple:      #b294bb;
  --font-family-sans: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  --font-family-mono: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, Courier, monospace;
}

html {
  font-family: var(--font-family-sans);
  color: var(--color-text);
  background: var(--color-background);
}
img {
  width: 100%;
}
body {
  padding: var(--padding);
  max-width: 60rem;
  margin: 0 auto;
  line-height: 1.5em;
}
li {
  list-style: none;
}
a {
  color: currentColor;
  text-decoration: none;
}
.menu a[aria-current] {
  text-decoration: underline;
}

button {
  font: inherit;
  background: none;
  border: 0;
  color: currentColor;
  cursor: pointer;
}
strong, b {
  font-weight: 600;
}
small {
  font-size: inherit;
  color: var(--color-text-grey);
}
.header {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 6rem;
  align-items: baseline;
}
.menu {
  display: flex;
}
.menu a {
  padding: 1rem;
  display: block;
}
.section {
  padding: 3rem 0;
}
.grid {
  --columns: 12;
  --gutter: 3rem;
  display: grid;
  grid-gap: var(--gutter);
  grid-template-columns: 1fr;
}
.grid > .column {
  margin-bottom: var(--gutter);
}
.autogrid {
  --gutter: 3rem;
  --min: 10rem;
  display: grid;
  grid-gap: var(--gutter);
  grid-template-columns: repeat(auto-fit, minmax(var(--min), 1fr));
  grid-auto-flow: dense;
}
h1, h2, h3, h4, h5, h6 {
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
}
h1 {
  font-weight: 500;
}
h2 {
  font-weight: 500;
  margin: 1rem 0;
  font-size: 1.25rem;
}
h2.cat {
	color: #bdacac;
	font-size: 2rem;
	text-transform: uppercase;
}

article.vinylstories h2.cat {
	margin-top: 0;
	font-size: 1rem;
	color: #bdacac;
	text-align: right;
}
h3,
h4 {
  font-weight: 500;
}
.subheading {
  color: #4e4e4e;
}
.text {
  line-height: 1.5em;
  max-width: 40rem;
  margin: auto;
}
.text a {
  text-decoration: underline;
}
.text aside a {
  text-decoration: none;
}
.text p,
.text ul,
.text ol {
  margin-bottom: 1.5rem;
}
.text ul,
.text ol {
  margin-left: 1rem;
}
.text ul > li {
  list-style: disc;
}
.text ul.grid > li {
  list-style: none;
}
.text ul.grid {
	margin-left: 0;
}
.text ol > li {
  list-style: numeric;
}
.text h1,
.h1,
.intro {
  font-size: 3rem;
  margin: 3rem 0;
  line-height: 1;
}
.text h2,
.h2,
.blog-article h2 {
  font-size: 2rem;
  font-weight: 600;
  margin: 3rem 0;
  line-height: 1;
}
.text h3,
.h3 {
  font-weight: 600;
  margin: 1.5rem 0;
}
.text h1 + h2 {
  margin-top: -2rem;
}
.text hr {
  margin: 6rem 0;
}
.text blockquote {
  font-size: 1.25rem;
  line-height: 1.5em;
  /* border-left: 2px solid var(--color-black); */
  /* padding-left: 1rem; */
  margin: 2rem 1rem 2rem 2rem;
}
.text blockquote footer {
  margin-top: 1rem;
  font-size: 1rem;
  font-style: italic;
}
.text figure {
  margin: 3rem 0;
}
.text figcaption {
  padding-top: .75rem;
  color: var(--color-text-grey);
}

hr {
  border: 0;
  background: currentColor;
  height: 2px;
  width: 1.5rem;
  margin: 6rem auto;
}
.align-center {
  text-align: center;
}

.img {
  position: relative;
  display: block;
  --w: 1;
  --h: 1;
  padding-bottom: calc(100% / var(--w) * var(--h));
  background: var(--color-black);
}
.img img {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 0;
}
.video iframe {
	width: 100%;
	height: 300px;
	background: var(--color-black);
	border: none;
}
.img-caption,
.video-caption {
  padding-top: .75rem;
  line-height: 1.5em;
}
.footer {
  padding: 9rem 0 6rem;
  line-height: 1.5em;
}
/*.footer:before {
  content: "";
  display: block;
  width: 1.5rem;
  height: 2px;
  background: var(--color-black);
  margin-bottom: 1.5rem;
}*/
.footer ul,
.footer p {
  color: var(--color-text-grey);
}
.footer p {
  max-width: 15rem;
}
.footer a:hover {
  color: var(--color-text);
}

footer .copyright {
  font-size: 0.8rem;
}

html.vinylstories {
	background: black;
	color: white;
}
html.vinylstories blockquote {
	border: none;
	font-style: italic;
	text-transform: uppercase;
}
.vinylstories .text footer ul > li {
	list-style: none;
}
article.vinylstories {
  background-color: black;
  padding: 1rem;
}
html.vinylstories article.vinylstories {
	background-color: white;
}
article.vinylstories * {
  color: white;
}
html.vinylstories article.vinylstories * {
	color: black;
}
article.vinylstories .text {
  padding-bottom: 1em;
}

aside .blog-article-excerpt figure, aside .blog-article-excerpt h2 {
  margin: 0.5em 0;
} 

aside .blog-article-excerpt h2, aside .blog-article-excerpt p {
  line-height: 1.5em;
  font-size: 1rem;
}

aside .blog-article-excerpt p {
  font-size: 0.8em;
}

@media screen and (min-width: 48rem) {
  body {
    --padding: 3rem;
  }
  .grid {
    grid-template-columns: repeat(12, 1fr);
  }
  .grid > .column {
    grid-column: span var(--columns);
  }
  figure.left {
  	float: left;
  	margin: 0 1rem 1rem 0;
  	width: 50%;
  	max-width: 300px;
  }
	figure.right {
  	float: right;
  	margin: 0 0 1rem 1rem;
  	width: 50%;
  	max-width: 300px;
  }
  .vinylstories .e-content {
  	column-count: 2;
  	column-gap: 3rem;
  	margin-bottom: 4rem;
  }
  .vinylstories figure {
  	margin: 1rem 0;
  }
  html.vinylstories blockquote {
  	padding: 0;
  }
  .vinylstories footer {
  	text-align: right;
  }

}


@media screen and (min-width: 90rem) {
	figure.left {
		margin-left: -20%;
	}
	figure.right {
		margin-right: -20%;
	}
	html.vinylstories .e-content {
		column-gap: 4rem;
	}
  	html.vinylstories blockquote {
  		margin-left: -2rem;
  	}
}

@media screen and (max-width: 800px) {

  .menu a:first-child {
    padding-left: 0;
  }
}

@media screen and (max-width: 54rem) {

  header.header {
    display: block;
  }

  .header > a:first-child {
    display: block;
    font-weight: bold;
    border-bottom: 1px solid black;
    padding: 1rem 0;
    margin: 1rem 0;
  }

  .menu {
    display: block;
  }

  .menu a {
    display: block;
    padding: 0.5rem 0;
  }
}