.project-list__container {
  max-width: 100%;
}
.project-list__filters {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 2rem;
}
.project-list__filter-options {
  display: flex;
  gap: 23px;
}
.project-list__filter-options input[type=radio] {
  display: none;
}
.project-list__filter-options label {
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  font-weight: 300;
  line-height: 1;
  color: var(--wp--preset--color--white);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  position: relative;
  overflow: visible;
}
.project-list__filter-options label span {
  display: inline-block;
  padding-top: 2px;
}
.project-list__filter-options label::before {
  content: "";
  width: 20px;
  height: 20px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  display: block;
  transition: all 0.3s ease;
}
.project-list__filter-options label::after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  border: 6px solid var(--wp--preset--color--white);
  border-radius: 50%;
  background: transparent;
  opacity: 0;
  transition: all 0.3s ease;
  box-shadow: 0 0 10px 2px var(--wp--preset--color--white);
}
.project-list__filter-options label:hover::before {
  border-color: rgb(255, 255, 255);
}
.project-list__filter-options input[type=radio]:checked + label::before {
  border-color: var(--wp--preset--color--white);
}
.project-list__filter-options input[type=radio]:checked + label::after {
  opacity: 1;
}
.project-list__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
@media (max-width: 768px) {
  .project-list__grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}
.project-list__no-results {
  grid-column: 1/-1;
  text-align: center;
  padding: 3rem;
  color: #666;
}

.project-list__item {
  cursor: pointer;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.project-list__item.hidden {
  display: none;
}

.project-list__media {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: #f0f0f0;
}

.project-list__video,
.project-list__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.project-list__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 61.3%, rgba(0, 0, 0, 0.7) 100.06%);
  pointer-events: none;
}

.project-list__info {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--wp--preset--color--white);
  z-index: 2;
}

.project-list__icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
}
.project-list__icon svg {
  width: 100%;
  height: 100%;
}

.project-list__text {
  font-size: 14px;
  font-weight: 400;
}
.project-list__text strong {
  font-weight: 700;
}

.project-list__lightbox {
  display: none !important;
}

.project-list__lightbox-video,
.project-list__lightbox-slider {
  display: flex;
  align-items: center;
  justify-content: center;
  max-height: 80vh;
  max-height: 80dvh;
}
.project-list__lightbox-video iframe, .project-list__lightbox-video video,
.project-list__lightbox-slider iframe,
.project-list__lightbox-slider video {
  display: block;
  max-width: 100% !important;
  max-height: 80vh !important;
  max-height: 80dvh !important;
  object-fit: contain;
  object-position: center;
  border-radius: 8px;
  width: 100%;
  height: auto;
}
.project-list__lightbox-video iframe,
.project-list__lightbox-slider iframe {
  height: 80vh !important;
  height: 80dvh !important;
  width: 80vw !important;
  aspect-ratio: 16/9;
}
.project-list__lightbox-video .glide,
.project-list__lightbox-slider .glide {
  height: 100%;
}
.project-list__lightbox-video .glide__track, .project-list__lightbox-video .glide__slides,
.project-list__lightbox-slider .glide__track,
.project-list__lightbox-slider .glide__slides {
  height: 100%;
}
.project-list__lightbox-video .glide__slide,
.project-list__lightbox-slider .glide__slide {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
}
.project-list__lightbox-video .glide__slide iframe, .project-list__lightbox-video .glide__slide video, .project-list__lightbox-video .glide__slide img,
.project-list__lightbox-slider .glide__slide iframe,
.project-list__lightbox-slider .glide__slide video,
.project-list__lightbox-slider .glide__slide img {
  max-width: 100%;
  max-height: 80vh;
  max-height: 80dvh;
  object-fit: cover;
  display: block;
  object-fit: contain;
  border-radius: 8px;
}
.project-list__lightbox-video .glide__arrows,
.project-list__lightbox-slider .glide__arrows {
  position: absolute;
  top: 50%;
  left: -40px;
  right: -40px;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  pointer-events: none;
}
.project-list__lightbox-video .glide__arrows .glide__arrow,
.project-list__lightbox-slider .glide__arrows .glide__arrow {
  pointer-events: auto;
  background: unset !important;
  padding: 0;
  border: none;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.project-list__lightbox-video .glide__arrows .glide__arrow--right,
.project-list__lightbox-slider .glide__arrows .glide__arrow--right {
  transform: rotate(180deg);
}

@media (max-width: 768px) {
  .project-list__filters {
    position: sticky;
    top: 0;
    background: var(--wp--preset--color--black);
    z-index: 3;
    padding-block: 1.5rem;
    margin-bottom: 1rem;
  }
}

/*# sourceMappingURL=block-style.css.map */
