/* Adventure with Alphabet — Our Books Gallery, 2026-09-06 */
.our-books-managed-gallery{
  width:min(1500px,calc(100% - 48px));
  margin:46px auto;
  padding:clamp(30px,4vw,48px) 0 clamp(34px,4vw,50px);
  border-radius:30px;
  overflow:hidden;
  background:linear-gradient(135deg,rgba(249,246,224,.92),rgba(236,246,231,.92));
  border:1px solid rgba(108,139,102,.12);
}
.our-books-managed-gallery[hidden]{display:none!important}
.our-books-gallery-heading{
  text-align:center;
  padding:0 24px;
}
.our-books-gallery-heading .eyebrow{
  margin:0 0 5px;
}
.our-books-gallery-heading h2{
  margin:0;
  font-size:clamp(1.85rem,3vw,2.5rem)!important;
  line-height:1.12!important;
  font-weight:500;
}
.our-books-managed-gallery .moving-image-reel{
  width:100%;
  max-width:none;
  margin:28px auto 0;
  mask-image:linear-gradient(90deg,transparent,#000 4%,#000 96%,transparent);
  -webkit-mask-image:linear-gradient(90deg,transparent,#000 4%,#000 96%,transparent);
}
.our-books-managed-gallery .moving-image-reel-track{
  gap:18px;
  padding:10px 24px 16px;
}
.our-books-managed-gallery .moving-image-reel-item{
  width:340px;
  flex:0 0 340px;
  border-radius:24px;
}
.our-books-managed-gallery .moving-image-reel-item img{
  width:100%;
  height:250px;
  object-fit:cover;
  object-position:center;
}
@media(max-width:720px){
  .our-books-managed-gallery{
    width:min(100% - 24px,1500px);
    margin:32px auto;
    border-radius:24px;
  }
  .our-books-managed-gallery .moving-image-reel-item{
    width:270px;
    flex-basis:270px;
  }
  .our-books-managed-gallery .moving-image-reel-item img{height:205px}
}
@media(prefers-reduced-motion:reduce){
  .our-books-managed-gallery .moving-image-reel{
    overflow-x:auto;
    mask-image:none;
    -webkit-mask-image:none;
  }
}
