@font-face {
  font-family: "Gulim";
  src: url("/assets/fonts/Gulim-Regular-0.woff2") format("woff2"),
    url("/assets/fonts/Gulim-Regular-0.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
*, *::before, *::after {
  box-sizing: border-box;
}
html, body {
  margin: 0;
  padding: 0;
}
body, h1, h2, h3, h4, h5, h6, p, figure, blockquote, dl, dd {
  margin: 0;
}
ul[role="list"], ol[role="list"] {
  list-style: none;
  margin: 0;
  padding: 0;
}
img, picture {
  max-width: 100%;
  display: block;
}
button, input, textarea, select {
  font: inherit;
}
html {
  font-size: 100%;
}
* {
  font-size: 0.95rem!important;
  font-weight: normal!important;
  line-height: 1.25!important;
}
p {
  margin-bottom: 1rem;
}
::selection {
  background: #c0c0c0;
  color: #000;
}
::-moz-selection {
  background: #c0c0c0;
  color: #000;
}
a {
  color: inherit;
  text-decoration: none;
}
h1, h2, h3, h4, h5, h6 {
  line-height: 1.1;
  text-transform: uppercase;
}
body {
  min-height: 100vh;
  text-rendering: optimizeLegibility;
  font-family: "Gulim", system-ui, -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
  letter-spacing: -0.02em;
}
main {
  padding: 1rem;
}
header {
  display: grid;
  margin-bottom: 5vh;
  padding: 1rem;
}
.header-centered {
  text-align: center;
  color: silver;
}
.header-centered * {
  text-transform: none;
  font-size: 1.5rem!important;
  line-height: 1.1!important;
}
.header-centered p {
  margin-bottom: 0;
}
.card {
  padding: 1rem;
  height: fit-content;
  margin: 0 auto;
}
.header-right {
  text-align: right;
}
.grid {
  display: grid;
  gap: 2rem;
}
.meta {
  text-align: center;
}
.types {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  align-items: center;
}
.type {
  text-align: left;
}
.type:nth-child(4), .type:nth-child(5) {
  text-align: right;
}
.types__title {
  text-align: center;
  margin: 0;
}
@media (max-width: 768px) {
  html {
    font-size: 85%!important;
  }
  .meta {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  .types {
    grid-template-columns: repeat(4, auto);
    justify-content: center;
    gap: 0 0.5rem;
  }
  .types__title {
    grid-column: 1 / -1;
    grid-row: 1;
    margin-bottom: 0;
  }
  .type {
    text-align: center;
  }
  .type:nth-child(4), .type:nth-child(5) {
    text-align: center;
  }
}
.description a {
  background-color: #f2f2f2;
}
.thumbs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
  margin-bottom: 1rem;
  justify-content: center;
}
.thumb__counter {
  text-align: center;
  margin-bottom: 0.25rem;
}
figure.thumb img {
  display: block;
  width: 100%;
}
figure.thumb video {
  display: block;
  width: 100%;
  -webkit-mask-image: -webkit-radial-gradient(white, black);
  border: none;
  outline: none;
  background: transparent;
}
body.is-thumb-enlarged::before {
  content: "";
  position: fixed;
  inset: 0;
  background: rgba(255, 255, 255, 0.95);
  z-index: 900;
  animation: fadeIn 0.2s ease-out;
}
.thumb--enlarged {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 90vw;
  max-height: 90vh;
  margin: 0;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: fadeIn 0.2s ease-out;
}
.thumb--enlarged img {
  display: block;
  max-width: 100%;
  max-height: calc(90vh - 3rem);
  width: auto;
  height: auto;
  object-fit: contain;
}
.thumb--enlarged .thumb__counter {
  margin-bottom: 0.5rem;
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes fadeOut {
  from { opacity: 1; }
  to { opacity: 0; }
}
body.is-thumb-closing::before {
  animation: fadeOut 0.2s ease-out forwards;
}
.thumb--closing {
  animation: fadeOut 0.2s ease-out forwards !important;
}
.legal-section {
  margin-top: 3rem;
}
.legal-toggles {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
}
.legal-toggle {
  background: none;
  border: none;
  font: inherit;
  cursor: pointer;
  padding: 0;
  color: inherit;
}
.legal-toggle:hover {
  opacity: 0.7;
}
.legal-panel {
  margin-top: 1rem;
  text-align: left;
  max-width: 60ch;
  margin-left: auto;
  margin-right: auto;
}
.legal-panel h3 {
  margin-bottom: 0.5rem;
}
.legal-panel h2 {
  margin-bottom: 1rem;
}
@media (max-width: 768px) {
  .legal-panel {
    max-width: 100%;
  }
}
.about-centered {
  text-align: center;
  width: 100%;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 2rem;
  gap: 1rem;
  margin-left: auto;
  margin-right: auto;
}
.about-col {
  max-width: 75ch;
  margin: 0 auto;
}
.about-col h3 {
  text-align: center;
}
.about-col p {
  margin-bottom: 1em;
}
.about-col a {
  text-decoration: underline;
}
@media (max-width: 600px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}
.video-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  color: silver;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  z-index: 1100;
  mix-blend-mode: difference;
}
.video-overlay h1 {
  font-size: 4vw!important;
  line-height: 1!important;
}
