/* Stream Digital - Studio Rental page
   Builds on assets/css/production-services.css */

.studio-page .production-hero-grid{
  grid-template-columns:minmax(0,.92fr) minmax(0,1.08fr);
}

.studio-hero-showcase{
  position:relative;
  min-width:0;
  padding:13px;
  border:1px solid rgba(255,255,255,.14);
  border-radius:28px;
  background:rgba(1,18,39,.45);
  box-shadow:0 30px 75px rgba(0,0,0,.28);
  backdrop-filter:blur(8px);
}

.studio-hero-photo{
  position:relative;
  overflow:hidden;
  min-height:410px;
  border-radius:18px;
  background:#0b3157;
}

.studio-hero-photo:after{
  content:"";
  position:absolute;
  inset:45% 0 0;
  background:linear-gradient(180deg,transparent,rgba(1,14,31,.48));
  pointer-events:none;
}

.studio-hero-photo img{
  display:block;
  width:100%;
  height:100%;
  min-height:410px;
  object-fit:cover;
}

.studio-feature-pill{
  position:absolute;
  z-index:4;
  display:inline-flex;
  align-items:center;
  min-height:34px;
  padding:0 13px;
  border:1px solid rgba(255,255,255,.22);
  border-radius:999px;
  background:rgba(2,24,49,.80);
  color:#fff;
  box-shadow:0 9px 22px rgba(0,0,0,.18);
  backdrop-filter:blur(8px);
  font-size:9px;
  font-weight:900;
  letter-spacing:.1em;
  text-transform:uppercase;
}

.studio-feature-pill:before{
  content:"";
  width:7px;
  height:7px;
  margin-right:7px;
  border-radius:50%;
  background:#2ed5f2;
  box-shadow:0 0 0 4px rgba(46,213,242,.12);
}

.studio-feature-pill-one{left:28px;bottom:30px}
.studio-feature-pill-two{left:28px;top:30px}
.studio-feature-pill-three{right:28px;top:30px}
.studio-feature-pill-four{right:28px;bottom:30px}

.studio-intro .production-intro-copy p:last-child{margin-bottom:0}
.studio-services-list{padding-top:8px}

.studio-image-placeholder{
  position:relative;
  z-index:2;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  width:100%;
  aspect-ratio:16/10;
  padding:30px;
  border-radius:16px;
  background:
    radial-gradient(circle at 20% 20%,rgba(29,199,255,.16),transparent 34%),
    radial-gradient(circle at 82% 80%,rgba(11,80,170,.15),transparent 38%),
    linear-gradient(145deg,#eef6fb,#dfeaf4);
  color:#103866;
  text-align:center;
  box-shadow:0 14px 35px rgba(6,26,48,.12);
}

.studio-image-placeholder:before{
  content:"+";
  display:grid;
  place-items:center;
  width:46px;
  height:46px;
  margin-bottom:14px;
  border-radius:14px;
  background:#083d72;
  color:#31cce9;
  font-size:25px;
  font-weight:300;
}

.studio-image-placeholder span{
  display:block;
  font-size:1.05rem;
  font-weight:800;
}

.studio-image-placeholder small{
  display:block;
  margin-top:6px;
  color:#6f8396;
  font-size:.7rem;
}

.studio-uses{
  padding:82px 0 88px;
  background:#fff;
}

.studio-uses-heading{
  max-width:760px;
  margin:0 auto 34px;
  text-align:center;
}

.studio-uses-heading h2{
  margin:9px 0 13px;
  color:#103866;
  font-size:clamp(2rem,3.4vw,3.3rem);
  line-height:1.08;
  letter-spacing:-1.2px;
}

.studio-uses-heading p{
  max-width:650px;
  margin:0 auto;
  color:#60758a;
  font-size:.94rem;
  line-height:1.75;
}

.studio-uses-grid{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:15px;
}

.studio-uses-grid article{
  min-height:190px;
  padding:24px 21px;
  border:1px solid #d7e4ed;
  border-radius:19px;
  background:linear-gradient(180deg,#fff,#f3f8fb);
  box-shadow:0 14px 34px rgba(7,38,72,.06);
}

.studio-uses-grid article>span{
  display:block;
  margin-bottom:23px;
  color:#dce8f1;
  font-size:2.6rem;
  font-weight:900;
  line-height:1;
}

.studio-uses-grid h3{
  margin:0 0 8px;
  color:#103866;
  font-size:1.18rem;
}

.studio-uses-grid p{
  margin:0;
  color:#60758a;
  font-size:.8rem;
  line-height:1.65;
}

@media (max-width:1050px){
  .studio-page .production-hero-grid{grid-template-columns:1fr}
  .studio-hero-showcase{max-width:760px}
  .studio-uses-grid{grid-template-columns:1fr 1fr}
}

@media (max-width:700px){
  .studio-hero-showcase{padding:9px;border-radius:20px}
  .studio-hero-photo,.studio-hero-photo img{min-height:270px}
  .studio-hero-photo{border-radius:14px}
  .studio-feature-pill{min-height:30px;padding:0 10px;font-size:7px}
  .studio-feature-pill-one{left:18px;bottom:18px}
  .studio-feature-pill-two{left:18px;top:18px}
  .studio-feature-pill-three{right:18px;top:18px}
  .studio-feature-pill-four{right:18px;bottom:18px}
  .studio-image-placeholder{border-radius:12px;padding:22px}
  .studio-uses{padding:60px 0 64px}
  .studio-uses-grid{grid-template-columns:1fr}
  .studio-uses-grid article{min-height:auto}
}

  .edit-back-link{
  display:inline-flex;
  align-items:center;
  gap:8px;
  margin-bottom:18px;
  color:#b9d2e8;
  font-size:12px;
  font-weight:600;
  text-decoration:none;
  transition:color .2s ease;
}

.edit-back-link:hover{
  color:#22c3e6;
}