/* RISE gallery — first real-photo collection */
.gallery-showcase{
  padding:28px 0 90px;
  border-top:1px solid rgba(216,174,90,.14);
}
.gallery-intro{
  max-width:760px;
  margin:0 auto 34px;
  text-align:center;
}
.gallery-intro p:last-child{
  margin:12px auto 0;
  color:#aaa59b;
  font-size:1.05rem;
  line-height:1.6;
}
.gallery-grid{
  columns:3 280px;
  column-gap:22px;
}
.gallery-item{
  display:block;
  break-inside:avoid;
  margin:0 0 22px;
  padding:7px;
  background:rgba(0,0,0,.28);
  border:1px solid rgba(216,174,90,.14);
  box-shadow:0 16px 30px rgba(0,0,0,.28);
  transition:transform .28s ease,border-color .28s ease,box-shadow .28s ease;
}
.gallery-item:hover,.gallery-item:focus-visible{
  transform:translateY(-3px);
  border-color:rgba(216,174,90,.42);
  box-shadow:0 22px 40px rgba(0,0,0,.42);
}
.gallery-item img{
  display:block;
  width:100%;
  height:auto;
}
@media(max-width:850px){
  .gallery-showcase{padding-bottom:70px}
  .gallery-grid{columns:2 220px;column-gap:16px}
  .gallery-item{margin-bottom:16px;padding:5px}
}
@media(max-width:560px){
  .gallery-grid{columns:1}
  .gallery-intro{margin-bottom:26px}
}
