.showcase-page{
  gap:16px;
}

.showcase-hero{
  display:grid;
  gap:16px;
}

.showcase-copy{
  display:flex;
  flex-direction:column;
  gap:12px;
  padding:18px;
  border:1px solid var(--line);
  border-radius:22px;
  background:
    linear-gradient(180deg, rgba(125,211,252,.10), rgba(255,255,255,.025)),
    rgba(255,255,255,.035);
}

.showcase-kicker{
  color:var(--muted);
  font-size:12px;
  font-weight:750;
  text-transform:uppercase;
}

.showcase-title{
  font-size:30px;
  line-height:1.08;
  font-weight:850;
  overflow-wrap:anywhere;
  hyphens:auto;
}

.showcase-title.is-long{
  font-size:26px;
}

.showcase-title.is-very-long{
  font-size:23px;
}

.showcase-subtitle{
  color:var(--muted);
  font-size:13px;
  line-height:1.35;
}

.showcase-carousel{
  display:flex;
  gap:10px;
  overflow-x:auto;
  scroll-snap-type:x mandatory;
  margin:2px -18px 0;
  padding:0 18px 4px;
}

.showcase-carousel::-webkit-scrollbar{
  height:8px;
}

.showcase-carousel::-webkit-scrollbar-thumb{
  background:rgba(255,255,255,.14);
  border-radius:99px;
}

.showcase-slide,
.showcase-slide-empty{
  flex:0 0 84%;
  min-width:0;
  height:430px;
  padding:0;
  border:1px solid var(--line);
  border-radius:18px;
  background:rgba(255,255,255,.04);
  overflow:hidden;
  scroll-snap-align:center;
  box-shadow:0 14px 34px rgba(0,0,0,.22);
}

.showcase-slide img{
  width:100%;
  height:100%;
  display:block;
  object-fit:cover;
}

.showcase-fact{
  margin-top:4px;
  padding-top:14px;
  border-top:1px solid var(--line);
}

.showcase-fact-title{
  font-size:18px;
  line-height:1.2;
  font-weight:850;
  margin-bottom:8px;
}

.showcase-text{
  color:rgba(244,246,251,.86);
  font-size:15px;
  line-height:1.48;
}

.showcase-link{
  align-self:flex-start;
  margin-top:4px;
  padding:9px 13px;
  border:1px solid rgba(125,211,252,.24);
  border-radius:999px;
  background:rgba(125,211,252,.08);
  color:rgba(186,230,253,.90);
  font-weight:750;
  text-decoration:none;
}

.showcase-media{
  display:none;
}

@media (min-width:760px){
  .showcase-hero{
    grid-template-columns:minmax(320px, .9fr) minmax(420px, 1.1fr);
    align-items:start;
  }

  .showcase-copy{
    position:sticky;
    top:18px;
    padding:28px;
  }

  .showcase-title{
    font-size:42px;
  }

  .showcase-title.is-long{
    font-size:34px;
  }

  .showcase-title.is-very-long{
    font-size:29px;
  }

  .showcase-carousel{
    display:none;
  }

  .showcase-media{
    display:block;
    columns:3 150px;
    column-gap:10px;
  }

  .showcase-photo,
  .showcase-photo-empty{
    width:100%;
    display:block;
    margin:0 0 10px;
    break-inside:avoid;
    border-radius:16px;
    border:1px solid var(--line);
    background:rgba(255,255,255,.04);
    object-fit:cover;
    cursor:pointer;
    box-shadow:0 14px 34px rgba(0,0,0,.24);
  }

  .showcase-photo{
    aspect-ratio:4 / 5;
  }

  .showcase-photo.is-featured{
    aspect-ratio:4 / 3;
  }

  .showcase-photo-empty{
    min-height:260px;
  }

  .showcase-text{
    font-size:16px;
  }
}

@media (max-width:420px){
  .showcase-slide,
  .showcase-slide-empty{
    flex-basis:88%;
    height:390px;
  }
}

html[data-theme="light"] .showcase-copy{
  background:
    linear-gradient(180deg, rgba(37,99,235,.08), rgba(255,255,255,.76)),
    rgba(255,255,255,.72);
}

html[data-theme="light"] .showcase-text{
  color:rgba(15,23,42,.84);
}

html[data-theme="light"] .showcase-link{
  border-color:rgba(37,99,235,.22);
  background:rgba(37,99,235,.07);
  color:rgba(30,64,175,.92);
}
