@charset "UTF-8";
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

.hide-for-mobile {
  display: block;
}

html, body {
  scroll-behavior: smooth;
  margin: 0;
}

.site {
  padding: 0 25px;
}

.page-wrapper {
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
}

h1, h2, h3, h4, h5, h6, a {
  font-family: sans-serif;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.05em;
}

h1 {
  font-size: 4vw;
}

small {
  color: #595959;
  text-transform: lowercase;
  letter-spacing: 0.05em;
}

strong {
  font-weight: 600;
}

p, ul li {
  font-family: sans-serif;
  letter-spacing: 0.05em;
  line-height: 1.5;
}

h3 {
  margin: 0 0 10px 0;
}

header {
  display: flex;
  justify-content: space-between;
  margin: 2.5% 0;
}
header a {
  padding: 0 5px;
  border: none;
  letter-spacing: 0.2em;
  transition: none;
  color: #595959;
}
header a:hover {
  background: transparent;
  color: #000;
  border: none;
}
header h1 {
  font-size: 42px;
}
header nav {
  display: flex;
  align-items: flex-end;
  margin: 0 0 0 auto;
}
header nav ul {
  display: flex;
}
header nav ul li a {
  padding: 0 5px;
  margin: 0;
  font-weight: 600;
  text-decoration: none;
}
header nav ul li.active a {
  color: #000;
}

footer {
  margin: 2.5% 0;
}
footer nav ul {
  display: flex;
  justify-content: center;
}
footer nav ul li {
  margin: 0 10px;
}
footer nav ul li a {
  display: block;
  margin: 0;
  padding: 0;
  border: none;
}
footer nav ul li a svg {
  width: 35px;
  height: 100%;
}
footer nav ul li a:hover {
  background: transparent;
  color: unset;
  border: none;
}

body .wrapper {
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
}
body.index-page {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}
body.index-page .page-wrapper {
  display: flex;
  justify-content: center;
}
body.index-page h1 {
  text-shadow: 2px 2px 2px #5B5B5B;
}
body.index-page .about-link {
  text-decoration: none;
  color: #000;
  outline: none;
}
body.index-page .about-link .content-wrapper {
  text-align: center;
}
body.index-page .about-link .content-wrapper h2 {
  position: relative;
  padding: 0 0 0.5rem 0;
}
body.index-page .about-link .content-wrapper h2 .accent-bar {
  width: 0;
  height: 2px; /* Adjust the height as needed */
  transition: width 0.2s ease-in-out;
  border: none;
  background-color: #000;
}
body.index-page .about-link:hover h2 .accent-bar, body.index-page .about-link:focus h2 .accent-bar {
  width: 100%;
}
body.articles-page .articles-nav {
  margin: 0 0 5% 0;
}
body.articles-page .articles-nav a {
  margin: 0 7.5px 0 0;
}
body.articles-page #articles .posted-by {
  font-size: 12px;
  margin: 0 0 0.5em 0;
}
body.articles-page #articles .title {
  font-size: 24px;
}
body.articles-page #articles .article {
  padding: 0 0 2.5% 0;
  margin: 0 auto 2.5% auto;
  border-bottom: 4px dotted #000;
}
body.articles-page #articles .article summary::-webkit-details-marker,
body.articles-page #articles .article summary::marker {
  display: none;
  content: "";
}
body.articles-page #articles .article summary p {
  cursor: pointer;
  font-weight: 600;
  font-style: italic;
  font-size: 14px;
  display: inline-block;
}
body.articles-page #articles .article summary p.less {
  display: none;
}
body.articles-page #articles .article[open] summary .less {
  display: block;
}
body.articles-page #articles .article[open] summary .more {
  display: none;
}
body.articles-page #articles .article .copy {
  margin: 15px 0 0 0;
  font-family: sans-serif;
  letter-spacing: 0.05em;
  line-height: 1.5;
}
body.articles-page #articles .article .copy ul {
  margin: 0 0 20px 0;
  list-style: inside;
}
body.articles-page #articles .article .copy ul li {
  margin: 0 0 5px 0;
}
body.about-page .sp-img {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border-radius: 100px;
  display: block;
  margin: 0 auto 2.5% auto;
}
body.about-page .video-wrapper {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 28.25%;
  max-width: 50%;
}
body.about-page .video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

@media (max-width: 1024px) {
  .hide-for-mobile {
    display: none;
  }
}
@media (max-width: 767px) {
  h1 {
    font-size: 12vw;
  }
  .site {
    padding: 5%;
  }
  .site header {
    margin: 0 0 10% 0;
  }
  .site header nav {
    display: block;
  }
  .site header nav:before {
    content: "☰";
    display: block;
    font-size: 24px;
    cursor: pointer;
  }
  .site header nav ul {
    display: none;
  }
  .site header nav.active {
    position: relative;
  }
  .site header nav.active:before {
    content: "✕";
  }
  .site header nav.active ul {
    display: block;
    position: absolute;
    right: 0;
    background: #000;
    padding: 10px;
    box-shadow: 2px 2px 1px 1px #999999;
  }
  .site header nav.active ul li {
    margin: 10px;
  }
  .site header nav.active ul li a {
    color: #969696;
  }
  .site header nav.active ul li.active a {
    color: #ffffff;
  }
  .site footer {
    margin: 10% 0 5% 0;
  }
  .site.articles-page #articles .article {
    padding: 0 0 5% 0;
    margin: 0 0 5% 0;
    max-width: 100%;
  }
  .site.about-page .wrapper .sp-img {
    margin: 0 auto 10% auto;
  }
  .site.about-page .video-wrapper {
    max-width: 100%;
    padding-bottom: 56.25%;
  }
}
@media (min-width: 1024px) {
  body.index-page .about-link .content-wrapper {
    filter: blur(3px);
    transition: filter 0.2s ease-in-out;
  }
  body.index-page .about-link .content-wrapper h1, body.index-page .about-link .content-wrapper h2 {
    letter-spacing: -5px;
    transition: letter-spacing 0.3s ease-in-out, color 0.3s ease-in-out;
  }
  body.index-page .about-link:hover .content-wrapper, body.index-page .about-link:focus .content-wrapper {
    filter: blur(0);
  }
  body.index-page .about-link:hover .content-wrapper h1, body.index-page .about-link:hover .content-wrapper h2, body.index-page .about-link:focus .content-wrapper h1, body.index-page .about-link:focus .content-wrapper h2 {
    letter-spacing: 1px;
  }
}

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