/* Gallery repair-story upgrade */
.gallery-story-intro{
  display:grid;
  grid-template-columns:minmax(0,1fr) auto;
  gap:22px;
  align-items:center;
  margin:6px 0 22px;
  padding:24px;
  border:1px solid rgba(143,36,28,.2);
  background:#fff7e8;
  box-shadow:0 14px 35px rgba(43,27,13,.08);
}
.gallery-story-intro h3{
  margin:6px 0 8px;
  font-size:clamp(30px,3.4vw,46px);
  line-height:.95;
}
.gallery-story-intro p{margin:0;color:#5b4937}
.gallery-category-row{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin:18px 0 24px;
}
.gallery-category-row span{
  display:inline-flex;
  min-height:38px;
  align-items:center;
  padding:8px 12px;
  border:1px solid rgba(143,36,28,.24);
  background:#120d09;
  color:#fff4df;
  border-radius:999px;
  font-size:12px;
  font-weight:950;
  text-transform:uppercase;
  letter-spacing:.05em;
}
.gallery-story-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:22px;
  margin:22px 0 44px;
}
.gallery-story-card{
  display:block;
  text-decoration:none;
  color:inherit;
  background:#111;
  border:1px solid rgba(224,190,135,.28);
  box-shadow:0 18px 45px rgba(0,0,0,.22);
  overflow:hidden;
}
.gallery-story-card:hover{transform:translateY(-3px);border-color:rgba(217,155,43,.7)}
.gallery-story-card img{
  display:block;
  width:100%;
  aspect-ratio:4/3;
  object-fit:cover;
  background:#050505;
}
.gallery-story-card div{padding:18px}
.gallery-story-card h3{
  margin:4px 0 8px;
  color:#f4d6a0;
  font-size:24px;
  line-height:1.05;
}
.gallery-story-card p{color:#d9bd8c;margin:0 0 12px}
.gallery-story-card b{color:#fff4df;text-transform:uppercase;font-size:13px;letter-spacing:.06em}
.gallery-live-feed{
  margin:34px 0 28px;
}
.repair-story-panel{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:18px;
  margin:28px 0;
}
.repair-story-panel>div,
.repair-story-template-note{
  padding:24px;
  border:1px solid rgba(23,19,15,.14);
  background:#fff7e8;
  box-shadow:0 12px 30px rgba(43,27,13,.08);
}
.repair-story-panel h2,
.repair-story-template-note h2{
  margin:6px 0 10px;
  font-size:30px;
  line-height:1;
}
.story-cta{
  background:#120d09;
  color:#fff4df;
}
.story-cta p{color:#f3d6aa}
@media(max-width:900px){
  .gallery-story-intro{grid-template-columns:1fr}
  .gallery-story-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
  .repair-story-panel{grid-template-columns:1fr}
}
@media(max-width:560px){
  .gallery-story-grid{grid-template-columns:1fr}
}
