:root {
  --color-background: #000000;
  --color-text: #fff;
  --color-text-light: #000;
  --color-link: #01fd34;
  --color-border: #b0b0b0;
  --font-body: "ABCSimon", "Helvetica", "Arial", "sans-serif";
}

@font-face {
  font-family: "ABCSimon";
  src: url("../../../assets/fonts/ABC Simon/ABC Simon Mono/ABCSimonMono-Regular-Trial.woff2") format("woff2"), url("../../../assets/fonts/ABC Simon/ABC Simon Mono/ABCSimonMono-Regular-Trial.woff") format("woff");
}
html {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

*,
*:before,
*:after {
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
}

::-moz-selection {
  background: var(--color-text);
  color: var(--color-link);
}

::selection {
  background: var(--color-text);
  color: var(--color-link);
}

::-webkit-input-placeholder {
  color: var(--color-text);
  font-size: 0.8rem;
  font-weight: 400;
}

::-moz-placeholder {
  color: var(--color-text);
  font-size: 0.8rem;
  font-weight: 400;
}

:-ms-input-placeholder {
  color: var(--color-text);
  font-size: 0.8rem;
  font-weight: 400;
}

::-ms-input-placeholder {
  color: var(--color-text);
  font-size: 0.8rem;
  font-weight: 400;
}

::placeholder {
  color: var(--color-text);
  font-size: 0.8rem;
  font-weight: 400;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 200;
  line-height: 1.5;
  color: var(--color-text);
  background-color: var(--color-background);
}
@media screen and (min-width: 48em) {
  body.home {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

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

ul,
ol {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

li > ul,
li > ol {
  margin-bottom: 0;
}

dt {
  font-weight: bold;
}

dd {
  margin: 0 1.5em 1.5em;
}

img {
  height: auto;
  max-width: 100%;
}

figure {
  margin: 0;
}

a {
  color: var(--color-text);
  -webkit-transition: all 200ms ease;
  transition: all 200ms ease;
  text-decoration: none;
}
a:hover, a:focus, a:active {
  color: var(--color-link);
  text-decoration: none;
}
a:focus {
  outline: thin dotted;
}
a:hover, a:active {
  outline: 0;
}
@media screen and (max-width: 48em) {
  a {
    -webkit-transition: none;
    transition: none;
  }
}

.wrap {
  width: 85%;
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.main {
  position: relative;
  padding-bottom: 60px;
}

.header-top {
  margin-top: 10px;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
  font-size: 0.75rem;
}
.header-top div:nth-child(2) {
  grid-column: 5/span 2;
}
@media screen and (min-width: 48em) {
  .header-top div:nth-child(1) {
    grid-column-start: 4;
  }
}

.header-link {
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media screen and (min-width: 48em) {
  .header-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (min-width: 64em) {
  .header-grid {
    grid-template-columns: repeat(6, 1fr);
  }
}

.header {
  text-align: center;
  padding-top: 40px;
  margin-bottom: 60px;
  text-transform: lowercase;
}
.header a {
  display: inline-block;
  text-transform: uppercase;
}

.header-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  text-transform: uppercase;
  text-align: left;
}
.header-content:nth-child(2) {
  grid-column: span 3;
}

.header-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  font-weight: 1.3;
}

.header-logo {
  display: inline-block;
  margin-bottom: 1em;
  text-decoration: none;
  text-align: left;
  -webkit-transition: color 400ms ease;
  transition: color 400ms ease;
  color: var(--color-text);
}
.header-logo:hover {
  color: var(--color-link);
}

.header-collection {
  text-align: right;
}
@media screen and (max-width: 48em) {
  .header-collection {
    width: 150px;
  }
}

.insta-hover {
  display: none;
}

.header-instagram {
  width: 18px;
  height: 18px;
  margin-left: 10px;
}
.header-instagram img {
  max-width: 100%;
  vertical-align: text-top;
}
.header-instagram img:hover svg {
  fill: #000;
}

.footer {
  font-size: 0.7rem;
  margin-bottom: 90px;
  font-weight: 400;
}
.has-filter .footer {
  visibility: hidden;
}
.has-overlay .footer {
  opacity: 0.4;
}
@media screen and (min-width: 48em) {
  .footer {
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}

.footer-copyright {
  margin: 0;
  text-transform: uppercase;
  color: var(--color-text-light);
  font-weight: 400;
}
@media screen and (min-width: 48em) {
  .footer-copyright br {
    display: none;
  }
}

.footer-extra {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  color: var(--color-text-light);
  position: relative;
  z-index: 999;
}
.footer-extra:hover {
  color: var(--color-text-light);
}
.footer-extra:hover path {
  fill: var(--color-link);
}
@media screen and (max-width: 48em) {
  .footer-extra {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
  .footer-extra .footer-cde-logo svg {
    margin-left: 0;
  }
}

.footer-extra-content {
  text-transform: uppercase;
}
@media screen and (min-width: 48em) {
  .footer-extra-content {
    text-align: right;
  }
}

.footer-cde-text svg {
  height: 20px;
  width: 190px;
}

.footer-cde-logo svg {
  position: relative;
  width: 50px;
  height: 50px;
  margin-left: 15px;
  margin-right: 15px;
}

.home-container {
  display: none;
  position: absolute;
  z-index: 1;
}

.home-container.is-active {
  display: block;
}

.home-box {
  background-color: var(--color-background);
  padding: 20px;
  font-weight: 400;
  z-index: 999;
  margin-top: -20px;
  border-top: 1px solid;
  border-bottom: 1px solid;
  min-height: 400px;
}
@media screen and (min-width: 48em) {
  .home-box {
    max-width: 600px;
  }
  .home .home-box {
    margin-top: 65px;
  }
}
.home-box p {
  margin: 0;
  margin-bottom: 1em;
}
.home-box p:last-child {
  margin-bottom: 0;
}

.home-box a {
  color: var(--color-text);
  padding: 1px 0;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.home-box a:hover {
  border-bottom: none;
  color: var(--color-link);
  text-decoration: none;
}

.home-search,
.home-info {
  left: 0;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  width: 100%;
  max-width: 600px;
  min-height: 400px;
  margin-left: -20px;
}
@media screen and (max-width: 48em) {
  .home-search,
  .home-info {
    width: calc(100% + 20px);
  }
}

.home-search {
  padding: 0;
}

.home-intro {
  right: 0;
  max-width: 850px;
}

.home-about {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  position: absolute;
  width: 100%;
  z-index: 9;
  background-color: #fff;
  margin-left: -20px;
}
@media screen and (min-width: 48em) {
  .home .home-about {
    margin-top: 65px;
  }
  .home .home-about .home-box {
    margin-top: 0;
  }
}
@media screen and (max-width: 48em) {
  .home-about {
    width: calc(100% + 20px);
  }
}

.home-about-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.home-about-content p:last-of-type {
  margin-bottom: 0;
}

.home-about-image {
  width: 100%;
  top: 0;
  -o-object-fit: cover;
     object-fit: cover;
  background-color: #000;
  margin-top: 20px;
}
.home-about-image p {
  margin: 0;
  padding: 10px;
  background-color: #000;
  color: rgba(255, 255, 255, 0.5);
  position: absolute;
  bottom: 0;
  font-size: 0.7rem;
  text-transform: uppercase;
}
.home-about-image p a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.home-about-image p a:hover {
  color: rgb(255, 255, 255);
  text-decoration: none;
  color: var(--color-link);
}
.home-about-image p img {
  opacity: 0.4;
}
@media screen and (min-width: 48em) {
  .home-about-image {
    position: absolute;
    z-index: -1;
    margin-top: 0;
  }
}

.no-scroll {
  overflow: hidden;
}

.h-banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 999;
  display: none;
}

.h-banner-link {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
}

.h-banner {
  width: 100%;
  height: calc(100vh - 80px);
  overflow: hidden;
}
.h-banner img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.h-banner:hover .h-banner-link {
  color: var(--color-link);
}

.h-banner-title {
  width: 100%;
  height: 40px;
  padding-inline: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: var(--color-background);
  color: var(--color-text);
  text-transform: uppercase;
}

.h-banner-content {
  width: 100%;
  height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  background-color: var(--color-link);
  padding-inline: 20px;
  color: var(--color-text-light);
  text-transform: uppercase;
  font-weight: 600;
}
.h-banner-content img {
  width: 22px;
  height: 22px;
}
.h-banner-content span {
  text-decoration: underline;
  text-underline-offset: 3px;
}
.h-banner-content span:hover {
  color: var(--color-text);
  text-decoration: none;
}

.project-list {
  visibility: hidden;
  padding-top: 100px;
  padding-bottom: 200px;
  margin-bottom: 50px;
  min-height: 400px;
}

.pl-slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
}

.pl-cover {
  display: none;
}

.pl-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 48em) {
  .pl-item {
    max-width: 80%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.pl-photo-wrapper {
  position: relative;
}
.has-overlay .pl-photo-wrapper::after {
  content: "";
  border: 10px solid #000;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}
@media screen and (min-width: 48em) {
  .pl-photo-wrapper {
    height: calc(100vh - 280px);
  }
}

.pl-photo {
  position: relative;
}
@media screen and (min-width: 64em) {
  .pl-photo {
    height: 100%;
  }
}

.pl-desc {
  color: var(--color-link);
  border-radius: 12px;
  z-index: 99;
  position: absolute;
  left: 20px;
  bottom: 60px;
  font-size: 1.3rem;
  white-space: pre-wrap;
  line-height: 1.1;
}
.pl-desc p {
  margin: 0;
}
@media screen and (min-width: 48em) {
  .pl-desc {
    font-size: 1.8rem;
    bottom: 30px;
    left: 0;
  }
}

.projects-list {
  margin: 0 auto;
  padding: 0;
  list-style: none;
  text-align: center;
}

.projects-item {
  margin-bottom: 40px;
}
.projects-item a {
  color: var(--color-text);
  -webkit-box-shadow: none;
          box-shadow: none;
  text-decoration: none;
}
.projects-item a a:hover {
  color: var(--color-text);
}
.projects-item a a:hover img {
  -webkit-transition: opacity 400ms ease;
  transition: opacity 400ms ease;
  opacity: 0.75;
}

.project {
  text-align: center;
}

.project-desc {
  margin-left: 20px;
  margin-right: 20px;
  font-size: 1.2rem;
}
@media screen and (min-width: 48em) {
  .project-desc {
    width: 40%;
    margin-left: auto;
    margin-right: auto;
  }
}

.project-slider {
  width: 90%;
  margin: 40px auto 0;
  padding-bottom: 40px;
}
.project-slider .frame {
  max-width: 1200px;
}
@media screen and (min-width: 48em) {
  .project-slider {
    width: 80%;
    margin: 80px auto 0;
    padding-bottom: 80px;
  }
}

.glide {
  height: 100%;
}

.glide__nav {
  position: absolute;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  z-index: 1;
}
.glide__nav a {
  display: block;
  width: 50%;
  height: 100%;
}

.glide__track {
  cursor: pointer;
  height: 100%;
}

.glide__bullets {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  width: 100%;
  z-index: 99;
  margin-bottom: 20px;
}
@media screen and (min-width: 48em) {
  .glide__bullets {
    position: absolute;
    margin-top: 90px;
  }
}

.glide__bullet-indicator {
  width: 3px;
  height: 3px;
  border-radius: 4px;
  background-color: #fff;
  display: inline-block;
}
.glide__bullet--active .glide__bullet-indicator {
  background-color: var(--color-link);
}

.glide__bullet {
  cursor: pointer;
  padding: 25px 0;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.projects-list {
  margin: 0 auto;
  padding: 0;
  list-style: none;
  text-align: center;
}

.projects-item {
  margin-bottom: 40px;
}

.projects-item-title a {
  color: var(--color-text);
  -webkit-box-shadow: none;
          box-shadow: none;
  text-decoration: none;
}
.projects-item-title a:hover {
  color: var(--color-text);
}
.projects-item-title a:hover img {
  -webkit-transition: opacity 400ms ease;
  transition: opacity 400ms ease;
  opacity: 0.75;
}

.project {
  text-align: center;
}

.project-desc {
  margin-left: 20px;
  margin-right: 20px;
  font-size: 1.2rem;
  line-height: 1.5;
}
@media screen and (min-width: 48em) {
  .project-desc {
    width: 40%;
    margin-left: auto;
    margin-right: auto;
  }
}

@media screen and (min-width: 48em) {
  .slider {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.frame {
  position: relative;
  font-size: 0;
  line-height: 0;
  overflow: hidden;
  white-space: nowrap;
}
@media screen and (min-width: 48em) {
  .frame {
    margin: 0 20px;
  }
}

.slides {
  display: inline-block;
  padding: 0;
}
.slides li {
  width: 100%;
  max-width: 100%;
  position: relative;
  display: inline-block;
  vertical-align: top;
}

.prev,
.next {
  display: none;
  cursor: pointer;
  -webkit-transition: opacity 300ms ease;
  transition: opacity 300ms ease;
  -webkit-filter: brightness(1);
          filter: brightness(1);
}
.prev img,
.next img {
  width: 100px;
}
@media screen and (min-width: 48em) {
  .prev,
  .next {
    display: block;
  }
}
.prev.disabled:hover, .prev.disabled,
.next.disabled:hover,
.next.disabled {
  opacity: 0;
  cursor: default;
}
.prev:hover,
.next:hover {
  -webkit-filter: brightness(100);
          filter: brightness(100);
}

.next {
  right: 0;
}

.prev {
  left: 0;
}

.frame-container {
  position: relative;
  max-width: 100%;
}

.about-text-container {
  border-top: 1px solid;
  border-bottom: 1px solid;
  margin-top: 40px;
}

.about-text {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 0;
  text-align: center;
}
.about-text p:first-child,
.about-text p:last-child {
  margin-top: 0;
  margin-bottom: 0;
}

.about-cover {
  text-align: center;
}
@media screen and (min-width: 48em) {
  .about-cover {
    margin: 0 auto;
    width: 600px;
  }
}

.nav-filter {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  text-transform: uppercase;
  margin-bottom: 30px;
  gap: 10px;
  font-weight: 500;
}
@media screen and (min-width: 48em) {
  .nav-filter {
    grid-template-columns: repeat(3, 1fr);
    margin-bottom: 10px;
  }
}
@media screen and (min-width: 64em) {
  .nav-filter {
    grid-template-columns: repeat(6, 1fr);
  }
}
@media screen and (max-width: 48em) {
  .nav-filter {
    border-bottom: 0;
  }
}

.nav-filter li {
  position: relative;
}
.nav-filter li a {
  display: block;
  color: var(--color-text);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.nav-filter li a:hover {
  color: var(--color-link);
  text-decoration: none;
}
@media screen and (min-width: 48em) {
  .nav-filter li {
    margin-bottom: 24px;
  }
}

.filter-content {
  display: none;
  position: absolute;
  z-index: 1;
  font-weight: 500;
  width: 100%;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
  background-color: var(--color-background);
}
@media screen and (min-width: 48em) {
  .filter-content {
    width: auto;
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (min-width: 64em) {
  .filter-content {
    border-bottom: 0;
    grid-template-columns: repeat(6, 1fr);
  }
}

.home .filter-content {
  display: grid;
}

.filter-column {
  padding-bottom: 2rem;
}
.filter-column h4 {
  margin-bottom: 0;
  font-weight: 300;
}

.filter-column-desc {
  border: none;
  padding-left: 20px;
}
@media screen and (min-width: 48em) {
  .filter-column-desc {
    grid-column: 1/4;
  }
}
@media screen and (min-width: 64em) {
  .filter-column-desc {
    grid-column: auto;
  }
}

.filter-group {
  margin-top: 1rem;
}
.filter-group h4 {
  font-weight: 500;
}
.filter-group a {
  display: block;
  -webkit-transition: none;
  transition: none;
  padding-block: 1px;
}
.filter-group a:hover {
  color: var(--color-link);
}

.filter-active {
  display: grid;
}

.cover-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  margin-top: 10px;
  margin-bottom: 10px;
}
@media screen and (min-width: 48em) {
  .cover-content {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.cover-photo {
  max-width: 500px;
}
.cover-photo img {
  display: block;
}

.cover-info {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 2rem;
  padding-top: 4rem;
  padding-left: 20px;
  line-height: 1.45;
  color: var(--color-text);
  font-weight: 500;
  border-top: 1px solid;
  border-bottom: 1px solid;
}
.cover-info h3 {
  text-transform: uppercase;
  font-weight: 400;
}
.cover-info p {
  margin: 0;
}
.cover-info a {
  color: #fff;
}

.cover-notes,
.cover-photographer,
.cover-band {
  margin-bottom: 3rem;
}
.cover-notes h3,
.cover-photographer h3,
.cover-band h3 {
  margin: 0 0 10px;
  font-size: 0.8rem;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.cover-notes .cover-name,
.cover-photographer .cover-name,
.cover-band .cover-name {
  margin-bottom: 6px;
}
.cover-notes strong,
.cover-photographer strong,
.cover-band strong {
  margin-top: 3px;
  display: inline-block;
  font-weight: 400;
  color: var(--color-link);
}

a.cover-link {
  color: var(--color-text);
  text-decoration: underline;
  text-underline-offset: 4px;
}
a.cover-link:hover {
  background-color: transparent;
  color: var(--color-link);
  text-decoration: none;
}

.collection-container {
  width: 90%;
  margin: 80px auto;
}

.collection-list {
  margin: 0 0 20px;
  padding: 0;
  list-style: none;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 10px;
  gap: 10px;
}
.collection-list li.hide {
  display: none;
}
.collection-list.is-hidden {
  visibility: hidden;
}
@media screen and (min-width: 48em) {
  .collection-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (min-width: 64em) {
  .collection-list {
    grid-template-columns: repeat(6, 1fr);
  }
}

.collection-cover {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-top: 20px;
  font-size: 0.75rem;
  border-bottom: 1px solid;
}
.collection-cover img {
  display: block;
  -o-object-fit: contain;
     object-fit: contain;
  -webkit-transition: all 400ms ease;
  transition: all 400ms ease;
}
.collection-cover a {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
}
.collection-cover a:hover {
  color: var(--color-link);
}
.collection-cover a:hover img {
  -webkit-filter: grayscale(1) brightness(0.5);
          filter: grayscale(1) brightness(0.5);
}
.collection-cover a:hover .cover-title {
  visibility: hidden;
}
@media screen and (min-width: 48em) {
  .collection-cover {
    margin-top: 0;
  }
}

.collection-cover-wrapper {
  padding-block: 10px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.collection-cover-section + .collection-cover-section {
  margin-top: 10px;
}

.collection-cover-content {
  font-weight: 500;
  line-height: 1.45;
  -webkit-transition: border-radius 400ms ease;
  transition: border-radius 400ms ease;
  margin-top: 4px;
}
.collection-cover-content p {
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.collection-cover-content strong {
  font-weight: 400;
}

.search-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 10px;
}

.search-input {
  border: none;
  border-radius: 0;
  margin: 0;
  padding: 12px 20px 10px;
  width: 100%;
  font-weight: 400;
  background-color: transparent;
  text-overflow: ellipsis;
  width: 100%;
  border-bottom: 1px solid var(--color-text);
  font-family: var(--font-body);
  color: var(--color-link);
}
.search-input:focus {
  outline: none;
}
.search-input:focus + .search-button img {
  -webkit-animation: blink-animation 2s steps(5, start) infinite;
          animation: blink-animation 2s steps(5, start) infinite;
}

.search-label {
  color: var(--color-link);
  font-weight: 700;
  text-transform: uppercase;
  padding-left: 10px;
  margin-top: 2px;
}

.search-button {
  position: absolute;
  right: 10px;
  margin-top: 2px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: transparent;
  border: none;
  color: var(--color-link);
  padding-right: 0;
  font-weight: 700;
}
@media screen and (max-width: 48em) {
  .search-button {
    display: none;
  }
}

.pagination {
  margin-top: 10px;
  margin-bottom: 10px;
  font-weight: 500;
  padding-block: 8px;
  font-weight: 700;
}
.pagination ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}
.pagination a {
  display: inline-block;
  height: 24px;
  text-align: center;
  line-height: 26px;
  color: var(--color-text);
  font-weight: 400;
  border-bottom: 1px solid;
}
.pagination a:hover {
  color: var(--color-link);
  border-bottom: none;
}
.has-filter .pagination {
  visibility: hidden;
}
.pagination .active {
  color: var(--color-link);
}

@keyframes blink-animation {
  to {
    visibility: hidden;
  }
}
@-webkit-keyframes blink-animation {
  to {
    visibility: hidden;
  }
}