@charset "UTF-8";
.wp-block-pulp-gallery {
  padding-top: 50px;
  padding-bottom: 50px;
}
.wp-block-pulp-gallery .container .layout .gallery {
  margin-bottom: 30px;
}
.wp-block-pulp-gallery .container .layout .gallery .photo-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 25px;
  margin: 0 auto;
}
@media (min-width: 992px) {
  .wp-block-pulp-gallery .container .layout .gallery .photo-grid {
    grid-template-columns: 1fr 1fr;
  }
}
.wp-block-pulp-gallery .container .layout .gallery {
  /* Left: single tall image */
}
.wp-block-pulp-gallery .container .layout .gallery .photo-grid__main {
  position: relative;
  border-radius: 3px;
  overflow: hidden;
}
.wp-block-pulp-gallery .container .layout .gallery .photo-grid__main .bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
  background: linear-gradient(0deg, rgba(14, 18, 25, 0.69) 13.58%, rgba(14, 18, 25, 0) 35.19%);
}
.wp-block-pulp-gallery .container .layout .gallery .photo-grid__main img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.wp-block-pulp-gallery .container .layout .gallery {
  /* Right: 2×1 + 1×1 + 1×1 stacked column */
}
.wp-block-pulp-gallery .container .layout .gallery .photo-grid__side {
  display: none;
}
@media (min-width: 992px) {
  .wp-block-pulp-gallery .container .layout .gallery .photo-grid__side {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 25px;
  }
}
.wp-block-pulp-gallery .container .layout .gallery .photo-grid__side img {
  width: 100%;
  height: auto;
  border-radius: 3px;
  margin-bottom: 25px;
}
@media (min-width: 992px) {
  .wp-block-pulp-gallery .container .layout .gallery .photo-grid__side img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    margin-bottom: 0;
  }
}
.wp-block-pulp-gallery .container .layout .gallery .photo-grid__side img {
  /* Top-right image spans both columns */
}
@media (min-width: 992px) {
  .wp-block-pulp-gallery .container .layout .gallery .photo-grid__side img:first-child {
    grid-column: 1/-1;
  }
}
.wp-block-pulp-gallery .container .layout .gallery {
  /* Label overlay (bottom-left of main image) */
}
.wp-block-pulp-gallery .container .layout .gallery .photo-grid__label {
  position: absolute;
  bottom: 30px;
  left: 30px;
  z-index: 15;
}
.wp-block-pulp-gallery .container .layout .gallery .photo-grid__label h4 {
  display: block;
  color: var(--c-white);
}
.wp-block-pulp-gallery .container .layout .gallery .photo-grid__label span {
  font-size: 0.9rem;
  color: var(--c-orange);
}
.wp-block-pulp-gallery .container .layout .gallery {
  /* "More photos" pill button (top-right of main image) */
}
.wp-block-pulp-gallery .container .layout .gallery .photo-grid__more {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--c-white);
  border: none;
  border-radius: 999px;
  padding: 8px 14px;
  cursor: pointer;
  z-index: 20;
}
.wp-block-pulp-gallery .container .layout .gallery .photo-grid__more svg {
  width: 14px;
  height: auto;
  display: inline-block;
  margin-right: 5px;
}
.wp-block-pulp-gallery .container .layout .gallery .photo-grid__more .text {
  display: inline-block;
  color: var(--c-black);
  font-size: var(--fs-100);
  line-height: 1;
  font-weight: 700;
}
.wp-block-pulp-gallery .container .layout .gallery .photo-grid__more:hover {
  background: #f5f5f5;
}
.wp-block-pulp-gallery .container .layout .content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
}
@media (min-width: 768px) {
  .wp-block-pulp-gallery .container .layout .content {
    flex-wrap: nowrap;
  }
}
.wp-block-pulp-gallery .container .layout .content .title {
  width: 100%;
}
@media (min-width: 768px) {
  .wp-block-pulp-gallery .container .layout .content .title {
    width: 50%;
  }
}
@media (min-width: 992px) {
  .wp-block-pulp-gallery .container .layout .content .title {
    width: 45%;
  }
}
@media (min-width: 1200px) {
  .wp-block-pulp-gallery .container .layout .content .title {
    width: 60%;
  }
}
.wp-block-pulp-gallery .container .layout .content .title h4 {
  width: 100%;
}
.wp-block-pulp-gallery .container .layout .content .buttons {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
@media (min-width: 768px) {
  .wp-block-pulp-gallery .container .layout .content .buttons {
    width: auto;
    justify-content: space-between;
  }
}
@media (min-width: 992px) {
  .wp-block-pulp-gallery .container .layout .content .buttons {
    flex-wrap: nowrap;
    width: 40%;
    justify-content: flex-end;
  }
}
.wp-block-pulp-gallery .container .layout .content .buttons .btn {
  text-align: center;
  display: block;
  width: 100%;
  margin-left: 0px;
}
@media (min-width: 992px) {
  .wp-block-pulp-gallery .container .layout .content .buttons .btn {
    width: auto;
  }
}
.wp-block-pulp-gallery .gallery-image {
  cursor: pointer;
  transition: transform 0.2s ease, filter 0.2s ease;
}
.wp-block-pulp-gallery .gallery-image:hover {
  transform: scale(1.02);
  filter: brightness(0.95);
}
.wp-block-pulp-gallery .gallery-image--hidden {
  display: none !important;
}
.wp-block-pulp-gallery .gallery-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
}
.wp-block-pulp-gallery .gallery-modal.is-open {
  display: block;
}
.wp-block-pulp-gallery .gallery-modal .gallery-modal__link {
  margin-top: 20px;
}
.wp-block-pulp-gallery .gallery-modal__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(var(--c-navy-rgb), 0.95);
  backdrop-filter: blur(10px);
}
.wp-block-pulp-gallery .gallery-modal__content {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 20px 20px;
}
@media (min-width: 768px) {
  .wp-block-pulp-gallery .gallery-modal__content {
    padding: 80px 80px 60px;
  }
}
.wp-block-pulp-gallery .gallery-modal__close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  border-radius: 50%;
  color: var(--c-white);
  cursor: pointer;
  transition: background 0.2s ease;
  z-index: 10;
}
.wp-block-pulp-gallery .gallery-modal__close:hover {
  background: rgba(255, 255, 255, 0.2);
}
.wp-block-pulp-gallery .gallery-modal__close:focus {
  outline: 2px solid var(--c-white);
  outline-offset: 2px;
}
.wp-block-pulp-gallery .gallery-modal__prev,
.wp-block-pulp-gallery .gallery-modal__next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  border-radius: 50%;
  color: var(--c-white);
  cursor: pointer;
  transition: background 0.2s ease;
  z-index: 10;
}
@media (min-width: 768px) {
  .wp-block-pulp-gallery .gallery-modal__prev,
  .wp-block-pulp-gallery .gallery-modal__next {
    width: 56px;
    height: 56px;
  }
}
.wp-block-pulp-gallery .gallery-modal__prev:hover,
.wp-block-pulp-gallery .gallery-modal__next:hover {
  background: rgba(255, 255, 255, 0.2);
}
.wp-block-pulp-gallery .gallery-modal__prev:focus,
.wp-block-pulp-gallery .gallery-modal__next:focus {
  outline: 2px solid var(--c-white);
  outline-offset: 2px;
}
.wp-block-pulp-gallery .gallery-modal__prev:disabled,
.wp-block-pulp-gallery .gallery-modal__next:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}
.wp-block-pulp-gallery .gallery-modal__prev {
  left: 20px;
}
@media (min-width: 768px) {
  .wp-block-pulp-gallery .gallery-modal__prev {
    left: 40px;
  }
}
.wp-block-pulp-gallery .gallery-modal__next {
  right: 20px;
}
@media (min-width: 768px) {
  .wp-block-pulp-gallery .gallery-modal__next {
    right: 40px;
  }
}
.wp-block-pulp-gallery .gallery-modal__image-container {
  max-width: 90%;
  max-height: 90%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media (min-width: 768px) {
  .wp-block-pulp-gallery .gallery-modal__image-container {
    max-width: 80%;
    max-height: 80%;
  }
}
.wp-block-pulp-gallery .gallery-modal__image {
  max-width: 100%;
  max-height: calc(90vh - 120px);
  width: auto;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 4px;
  animation: fadeIn 0.3s ease;
}
@media (min-width: 768px) {
  .wp-block-pulp-gallery .gallery-modal__image {
    max-height: calc(90vh - 140px);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.wp-block-pulp-gallery .gallery-modal__counter {
  margin-top: 20px;
  color: var(--c-white);
  font-size: 14px;
  font-weight: 500;
  text-align: center;
}
@media (min-width: 768px) {
  .wp-block-pulp-gallery .gallery-modal__counter {
    font-size: 16px;
    margin-top: 30px;
  }
}
