.mg-block {
  padding: 7rem 0;
}
.mg-block.bg--light {
  background-color: #F6F3F0;
}
.mg-block.bg--light-blue {
  background-color: #EAF4FA;
}
.mg-block.bg--gradient {
  background: linear-gradient(90deg, #162835, #1F5472);
}
.mg-block .mg-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.75rem;
}
.mg-block .mg-filter__btn {
  padding: 0.4rem 1rem;
  border-radius: 100px;
  border: 1px solid rgba(16, 24, 29, 0.2);
  background: transparent;
  font-family: "helvetica-lt-pro", sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #10181D;
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
}
.mg-block .mg-filter__btn.is-active, .mg-block .mg-filter__btn:hover {
  background: #1F3642;
  color: #F6F3F0;
  border-color: #1F3642;
}
.mg-block.bg--gradient .mg-filter__btn {
  border-color: rgba(246, 243, 240, 0.3);
  color: #F6F3F0;
}
.mg-block.bg--gradient .mg-filter__btn.is-active, .mg-block.bg--gradient .mg-filter__btn:hover {
  background: #A3D4F2;
  color: #1F3642;
  border-color: #A3D4F2;
}
.mg-block .mg-grid {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(3, 1fr);
}
.mg-block.cols--2 .mg-grid {
  grid-template-columns: repeat(2, 1fr);
}
.mg-block.cols--3 .mg-grid {
  grid-template-columns: repeat(3, 1fr);
}
.mg-block.cols--4 .mg-grid {
  grid-template-columns: repeat(4, 1fr);
}
.mg-block.cols--5 .mg-grid {
  grid-template-columns: repeat(5, 1fr);
}
.mg-block .mg-item {
  cursor: pointer;
  outline: none;
  border-radius: 5px;
  overflow: hidden;
}
.mg-block .mg-item:focus-visible {
  outline: 2px solid #A3D4F2;
  outline-offset: 2px;
}
.mg-block .mg-item__thumb {
  position: relative;
  overflow: hidden;
  background: #1F3642;
}
.mg-block .mg-item__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 350ms ease;
}
.mg-block .mg-item__thumb.is--ratio-landscape {
  aspect-ratio: 16/9;
}
.mg-block .mg-item__thumb.is--ratio-square {
  aspect-ratio: 1/1;
}
.mg-block .mg-item__thumb.is--ratio-portrait {
  aspect-ratio: 3/4;
}
.mg-block .mg-item__thumb.is--contain {
  background: transparent;
}
.mg-block .mg-item__thumb.is--contain img {
  object-fit: contain;
}
.mg-block .mg-item[data-lightbox]:hover .mg-item__thumb img {
  transform: scale(1.05);
}
.mg-block .mg-item--image:not([data-lightbox]) {
  cursor: default;
}
.mg-block .mg-item__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0);
  transition: background 250ms ease;
}
.mg-block .mg-item__overlay svg {
  width: 40px;
  height: 40px;
  color: #fff;
  opacity: 0;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.4));
  transition: opacity 250ms ease;
}
.mg-block .mg-item[data-lightbox]:hover .mg-item__overlay {
  background: rgba(0, 0, 0, 0.28);
}
.mg-block .mg-item[data-lightbox]:hover .mg-item__overlay svg {
  opacity: 1;
}
.mg-block .mg-item--video[data-lightbox] .mg-item__overlay svg {
  opacity: 0.65;
}
.mg-block .mg-item--video[data-lightbox]:hover .mg-item__overlay {
  background: rgba(0, 0, 0, 0.4);
}
.mg-block .mg-item--video[data-lightbox]:hover .mg-item__overlay svg {
  opacity: 1;
}
.mg-block .mg-item__title {
  font-family: "helvetica-lt-pro", sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: #1F3642;
  line-height: 1.4;
  padding: 0.5rem 0.25rem 0.25rem;
  margin: 0;
}
.mg-block.bg--gradient .mg-item__title {
  color: #F6F3F0;
}
@media screen and (max-width: 1024px) {
  .mg-block.cols--5 .mg-grid, .mg-block.cols--4 .mg-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (max-width: 900px) {
  .mg-block .mg-grid, .mg-block.cols--2 .mg-grid, .mg-block.cols--3 .mg-grid, .mg-block.cols--4 .mg-grid, .mg-block.cols--5 .mg-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 600px) {
  .mg-block .mg-grid, .mg-block.cols--2 .mg-grid, .mg-block.cols--3 .mg-grid, .mg-block.cols--4 .mg-grid, .mg-block.cols--5 .mg-grid {
    grid-template-columns: 1fr;
  }
}

.mg-lightbox {
  position: fixed;
  inset: 0;
  z-index: 10001;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mg-lightbox[hidden] {
  display: none;
}

.mg-lightbox__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  cursor: pointer;
}

.mg-lightbox__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 92vw;
  max-height: 92vh;
}

.mg-lightbox__media {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  max-height: 85vh;
}
.mg-lightbox__media img {
  display: block;
  max-width: 88vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 3px;
}
.mg-lightbox__media iframe {
  display: block;
  width: 80vw;
  height: 45vw;
  max-height: 80vh;
  border: none;
  border-radius: 3px;
}
.mg-lightbox__media video {
  display: block;
  max-width: 88vw;
  max-height: 85vh;
  border-radius: 3px;
}

.mg-lightbox__caption {
  font-family: "helvetica-lt-pro", sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.7);
  margin: 0.75rem 0 0;
  text-align: center;
  max-width: 60ch;
}

.mg-lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: background 180ms ease;
}
.mg-lightbox__nav svg {
  width: 24px;
  height: 24px;
}
.mg-lightbox__nav:hover {
  background: rgba(255, 255, 255, 0.25);
}
.mg-lightbox__nav:focus-visible {
  outline: 2px solid #A3D4F2;
  outline-offset: 2px;
}

.mg-lightbox__prev {
  left: 1.5rem;
}

.mg-lightbox__next {
  right: 1.5rem;
}

.mg-lightbox__close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  z-index: 2;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: background 180ms ease;
}
.mg-lightbox__close svg {
  width: 18px;
  height: 18px;
}
.mg-lightbox__close:hover {
  background: rgba(255, 255, 255, 0.3);
}
.mg-lightbox__close:focus-visible {
  outline: 2px solid #A3D4F2;
  outline-offset: 2px;
}

@media screen and (max-width: 600px) {
  .mg-lightbox__prev {
    left: 0.5rem;
  }
  .mg-lightbox__next {
    right: 0.5rem;
  }
  .mg-lightbox__nav {
    width: 38px;
    height: 38px;
  }
  .mg-lightbox__nav svg {
    width: 18px;
    height: 18px;
  }
  .mg-lightbox__media iframe {
    width: 96vw;
    height: 54vw;
  }
}/*# sourceMappingURL=media-gallery.css.map */