.gallery {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  box-sizing: border-box;
  column-count: 3;
  column-gap: 40px;
  padding-left: 16px;
  padding-right: 16px;
}

.gallery-item {
  display: inline-block;
  width: 100%;
  box-sizing: border-box;
  break-inside: avoid;
  -webkit-column-break-inside: avoid;
  page-break-inside: avoid;
  vertical-align: top;
}

.gallery-item > a {
  display: block;
  width: 100%;
  text-decoration: none;
}

.gallery-item img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
}

/* VIEWER BASE */

.gallery-viewer {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  background: #fff0dd;
  overflow: auto;
}

.gallery-viewer.is-open {
  display: block;
}

.gallery-viewer__inner {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 26px 28px;
  box-sizing: border-box;
}

/* DESKTOP COMPOSITION */

.gallery-viewer__layout {
  width: 100%;
  max-width: 1700px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 58px;
  align-items: start;
  justify-content: center;
}

.gallery-viewer__image-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 0;
  padding-left: 72px;
  padding-right: 72px;
  align-self: center;
}

.gallery-viewer__image {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 84vh;
  cursor: zoom-in;
  opacity: 1;
  transition: opacity 0.32s ease;
}

.gallery-viewer__image.is-fading {
  opacity: 0;
}

/* Orientation tuning */

.gallery-viewer.is-landscape .gallery-viewer__layout {
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 54px;
  max-width: 1760px;
}

.gallery-viewer.is-landscape .gallery-viewer__image {
  max-height: 83vh;
}

.gallery-viewer.is-portrait .gallery-viewer__layout {
  grid-template-columns: minmax(0, 960px) 350px;
  gap: 58px;
  max-width: 1580px;
}

.gallery-viewer.is-portrait .gallery-viewer__image {
  max-height: 84vh;
}

/* CAPTION SIDE */

.gallery-viewer__meta {
  position: sticky;
  top: 78px;
  align-self: start;
  text-align: left;
  color: #bd893c;
  max-width: 340px;
  padding-right: 28px;
  padding-top: 0;
  opacity: 1;
  transition: opacity 0.24s ease;
}

.gallery-viewer__meta.is-fading {
  opacity: 0;
}

.gallery-viewer__title {
  margin: 0;
  color: #bd893c;
  font-size: 1.68rem;
  line-height: 1.08;
  font-weight: 400;
  letter-spacing: 0;
  word-break: normal;
  overflow-wrap: break-word;
}

.gallery-viewer__subtitle {
  margin: 18px 0 0;
  color: #bd893c;
  font-size: 1.08rem;
  line-height: 1.28;
  font-style: italic;
  opacity: 1;
}

.gallery-viewer__meta-tools {
  margin-top: 28px;
}

/* SHARE */

.gallery-viewer__share {
  display: inline-block;
  width: 24px;
  height: 24px;
  padding: 0;
  border: 0;
  background-color: transparent;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 22px 22px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23bd893c' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M7 17c0-4.5 3-8 8-8h3'/%3E%3Cpath d='M14 5l4 4-4 4'/%3E%3C/svg%3E");
  cursor: pointer;
  opacity: 0.96;
  transition: transform 0.15s ease, opacity 0.15s ease;
}

.gallery-viewer__share:hover {
  transform: translateX(1px);
  opacity: 1;
}

/* CLOSE */

.gallery-viewer__close {
  position: fixed;
  top: 18px;
  right: 24px;
  background: none;
  border: 0;
  color: #bd893c;
  font-size: 56px;
  line-height: 1;
  cursor: pointer;
  padding: 0;
  z-index: 10002;
  opacity: 0.95;
}

/* ARROWS */

.gallery-viewer__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: 0;
  color: #bd893c;
  cursor: pointer;
  padding: 0;
  opacity: 0.92;
  z-index: 10001;
}

.gallery-viewer__nav:hover {
  opacity: 1;
}

.gallery-viewer__nav-icon {
  display: block;
  font-size: 74px;
  line-height: 1;
  font-weight: 300;
}

.gallery-viewer__nav--prev {
  left: 12px;
}

.gallery-viewer__nav--next {
  right: 12px;
}

.gallery-viewer__nav--next.is-exit {
  opacity: 0.65;
}

.gallery-viewer__nav--next.is-exit:hover {
  opacity: 0.85;
}

.gallery-viewer__nav.is-hidden, .gallery-viewer__nav:disabled {
  display: none;
}

/* ZOOM MODE 1 */

.gallery-viewer.is-zoomed .gallery-viewer__inner {
  padding: 24px;
}

.gallery-viewer.is-zoomed .gallery-viewer__layout {
  max-width: 1800px;
  grid-template-columns: 1fr;
  gap: 0;
}

.gallery-viewer.is-zoomed .gallery-viewer__meta, .gallery-viewer.is-zoomed .gallery-viewer__nav {
  display: none;
}

.gallery-viewer.is-zoomed .gallery-viewer__image-wrap {
  width: 100%;
  padding-left: 0;
  padding-right: 0;
}

.gallery-viewer.is-zoomed .gallery-viewer__image {
  max-width: 96vw;
  max-height: 92vh;
  cursor: zoom-in;
}

/* ZOOM MODE 2 */

.gallery-viewer.is-fullsize .gallery-viewer__inner {
  align-items: flex-start;
  justify-content: flex-start;
  padding: 34px;
}

.gallery-viewer.is-fullsize .gallery-viewer__layout {
  max-width: none;
  width: 100%;
  display: block;
}

.gallery-viewer.is-fullsize .gallery-viewer__image-wrap {
  display: block;
  text-align: center;
  padding-left: 0;
  padding-right: 0;
}

.gallery-viewer.is-fullsize .gallery-viewer__image {
  max-width: none;
  max-height: none;
  width: auto;
  height: auto;
  cursor: zoom-out;
}

.gallery-viewer.is-fullsize .gallery-viewer__meta, .gallery-viewer.is-fullsize .gallery-viewer__nav {
  display: none;
}

/* LARGE LAPTOP / SMALL DESKTOP */

@media screen and (max-width: 1399px) {
  .gallery-viewer__layout, .gallery-viewer.is-landscape .gallery-viewer__layout, .gallery-viewer.is-portrait .gallery-viewer__layout {
    max-width: 1460px;
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 42px;
  }
}

@media screen and (max-width: 1399px) {
  .gallery-viewer__image-wrap {
    padding-left: 62px;
    padding-right: 62px;
  }
}

@media screen and (max-width: 1399px) {
  .gallery-viewer__meta {
    max-width: 300px;
    padding-right: 24px;
    top: 66px;
  }
}

@media screen and (max-width: 1399px) {
  .gallery-viewer__title {
    font-size: 1.52rem;
  }
}

@media screen and (max-width: 1399px) {
  .gallery-viewer__subtitle {
    font-size: 1rem;
  }
}

@media screen and (max-width: 1399px) {
  .gallery-viewer__nav-icon {
    font-size: 64px;
  }
}

/* TABLET */

@media screen and (max-width: 991px) {
  .gallery {
    column-count: 2;
    column-gap: 28px;
  }
}

@media screen and (max-width: 991px) {
  .gallery-viewer__layout, .gallery-viewer.is-landscape .gallery-viewer__layout, .gallery-viewer.is-portrait .gallery-viewer__layout {
    grid-template-columns: 1fr;
    gap: 28px;
    max-width: 920px;
  }
}

@media screen and (max-width: 991px) {
  .gallery-viewer__image-wrap {
    padding-left: 72px;
    padding-right: 72px;
  }
}

@media screen and (max-width: 991px) {
  .gallery-viewer__meta {
    position: static;
    top: auto;
    max-width: 680px;
    margin: 0 auto;
    padding-right: 0;
    padding-top: 0;
    text-align: center;
  }
}

@media screen and (max-width: 991px) {
  .gallery-viewer__title {
    font-size: 1.5rem;
    line-height: 1.08;
  }
}

@media screen and (max-width: 991px) {
  .gallery-viewer__subtitle {
    font-size: 1rem;
  }
}

@media screen and (min-width: 768px) and (max-width: 991px) {
  .gallery-item img {
    max-height: 68vh;
    object-fit: contain;
  }
}

/* MOBILE */

@media screen and (max-width: 767px) {
  .gallery {
    column-count: 1;
    column-gap: 0;
  }
}

@media screen and (max-width: 767px) {
  .album-period-title {
    font-size: 23px !important;
  }
}

@media screen and (max-width: 767px) {
  .gallery-viewer__nav {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  .gallery-viewer__image-wrap {
    padding-left: 0;
    padding-right: 0;
  }
}

@media screen and (max-width: 767px) {
  .gallery-item {
    display: block;
    width: 100%;
    margin-bottom: 54px;
  }
}

@media screen and (max-width: 767px) {
  .gallery-item > a {
    display: block;
    width: 100%;
  }
}

@media screen and (max-width: 767px) {
  .gallery-item > a img {
    display: block;
    width: 100%;
    height: auto;
    max-height: 72vh;
    object-fit: contain;
  }
}

@media screen and (max-width: 767px) {
  .gallery .gallery-item .gallery-title {
    margin: 16px 0 0 !important;
    color: #bd893c !important;
    font-size: 1.26rem !important;
    line-height: 1.1 !important;
    font-weight: 400 !important;
    letter-spacing: 0 !important;
    word-break: normal !important;
    overflow-wrap: break-word !important;
    text-align: left !important;
  }
}

@media screen and (max-width: 767px) {
  .gallery .gallery-item .gallery-subtitle {
    display: block !important;
    margin: 11px 0 0 !important;
    color: #bd893c !important;
    font-size: 0.9rem !important;
    line-height: 1.26 !important;
    font-style: italic !important;
    text-align: left !important;
    opacity: 1 !important;
  }
}

@media screen and (max-width: 767px) {
  .gallery .gallery-item .gallery-item__share {
    display: block !important;
    width: 24px;
    height: 24px;
    margin-top: 6px !important;
    margin-right: 0 !important;
    margin-bottom: 0 !important;
    margin-left: 0 !important;
    padding: 0;
    border: 0;
    background-color: transparent;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 22px 22px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23bd893c' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M7 17c0-4.5 3-8 8-8h3'/%3E%3Cpath d='M14 5l4 4-4 4'/%3E%3C/svg%3E");
    cursor: pointer;
    opacity: 0.96;
  }
}

@media screen and (max-width: 767px) {
  .gallery .gallery-item .gallery-item__share:active {
    opacity: 1;
  }
}

@media screen and (max-width: 767px) {
  .gallery-lightbox-mobile {
    position: fixed;
    inset: 0;
    z-index: 10020;
    display: none;
    background: #4a4238;
    overflow: hidden;
  }
}

@media screen and (max-width: 767px) {
  .gallery-lightbox-mobile.is-open {
    display: block;
  }
}

@media screen and (max-width: 767px) {
  .gallery-lightbox-mobile__inner {
    position: relative;
    width: 100%;
    height: 100%;
    padding: 16px 16px 24px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
}

@media screen and (max-width: 767px) {
  .gallery-lightbox-mobile__image {
    display: block;
    width: auto;
    height: auto;
    max-width: calc(100vw - 32px);
    max-height: calc(100vh - 120px);
    object-fit: contain;
  }
}

@media screen and (max-width: 767px) {
  .gallery-lightbox-mobile__share {
    display: block;
    width: 30px;
    height: 30px;
    margin-top: 18px;
    padding: 0;
    border: 0;
    background-color: transparent;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 22px 22px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23bd893c' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M7 17c0-4.5 3-8 8-8h3'/%3E%3Cpath d='M14 5l4 4-4 4'/%3E%3C/svg%3E");
    cursor: pointer;
    opacity: 0.96;
  }
}

@media screen and (max-width: 767px) {
  .gallery-lightbox-mobile__close {
    position: fixed;
    top: 14px;
    right: 18px;
    width: 30px;
    height: 30px;
    padding: 0;
    border: 0;
    background: none;
    color: #bd893c;
    font-size: 42px;
    line-height: 1;
    z-index: 10021;
    cursor: pointer;
  }
}

@media screen and (max-width: 575px) {
  .gallery {
    padding-left: 14px;
    padding-right: 14px;
  }
}

