.office-art-container {
  display: flex;
  align-items: stretch;
  gap: 17px;
  margin-top: 17px;
  margin-right: 17px;
}

.office-art-container > .flex-2 {
  background-color: #EEECED;
}

.oa-sticky-block {
  position: sticky;
  top: 70px;
  display: flex;
  flex-direction: column;
  gap: 27px;
  padding: 33px 39px;
  box-sizing: border-box;
}

.oa-author-photo {
  width: 150px;
  height: 150px;
}

.oa-author-photo > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.oa-about-author {
  display: flex;
  flex-direction: column;
  gap: 17px;
}

.oa-author-social {
  width: fit-content;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.oa-img-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 17px;
}

.oa-img-item {
  position: relative;
  grid-column: 1 / 3;
  max-height: 510px;
  overflow: hidden;
}

.grid-one-column {
  grid-column: span 1;
}

.oa-img-item:last-child {
  max-height: 1150px;
}

.oa-img-item > img {
  position: relative;
  z-index: 1;
  width: 100%;
  object-fit: cover;
  object-position: center center;
}

.oa-img-description {
  position: absolute;
  left: 17px;
  bottom: 17px;
  z-index: 2;
  padding: 6px 9px;
  box-sizing: border-box;
  background: #1D1D1F4D;
  backdrop-filter: blur(2px);
}

.oa-previous-artists {
  display: flex;
  flex-direction: column;
  margin-top: 17px;
  margin-right: 17px;
  background-color: #EEECED;
  padding: 33px 39px;
  box-sizing: border-box;
}

.oa-previous-artists-list {
  display: flex;
  justify-content: center;
  gap: 31px;
  margin-top: 28px;
  padding: 0;
}

.oa-previous-artists-list > li {
  max-width: 265px;
  flex: 1;
  list-style-type: none;
}

.oa-previous-artists-list > li > a {
  display: flex;
  flex-direction: column;
  gap: 10px;
  cursor: pointer;
  color: #000000;
  text-decoration: none;
}

.oa-previous-artists-list > li img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.oa-gallery-slider {
  position: fixed !important;
  z-index: 9999 !important;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none !important;
  background-color: rgba(0, 0, 0, 0.7) !important;
}


.oa-gallery-slider .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
}

.oa-gallery-slider .swiper-slide img {
  width: 90%;
  max-height: 580px !important;
  object-fit: cover;
}

.btn-close-oa-gallery {
  position: absolute;
  z-index: 20;
  top: 5%;
  right: 5%;
  background-color: transparent;
  border: 0;
  outline: 0;
  cursor: pointer;
}

.btn-close-oa-gallery > img {
  pointer-events: none;
}

.oa-slider-active {
  display: block !important;
}

@media screen and (min-width: 1600px) {
  .oa-gallery-slider .swiper-slide {
    max-height: 720px !important;
  }
}

@media screen and (max-width: 800px) {
  .office-art-container {
    flex-direction: column;
  }

  .oa-sticky-block {
    position: static;
  }

  .oa-previous-artists-list {
    flex-direction: column;
  }

  .oa-previous-artists-list > li {
    max-width: 100%;
  }

  .oa-previous-artists-list > li img {
    height: 320px;
  }

  .grid-one-column {
    grid-column: span 2;
  }

  .oa-slider-active {
    display: none !important;
  }
}

@media screen and (max-width: 480px) {
  .oa-sticky-block {
    padding: 28px 17px;
  }

  .oa-previous-artists {
    padding: 28px 17px;
  }
}