.stream-intro{
  overflow-x:clip;
  max-width:100%;
  padding-top:76px;
  padding-bottom:80px;
  background:linear-gradient(180deg,var(--hero-top),var(--hero-bottom));
}
.stream-intro__grid{
  display:grid;
  grid-template-columns:minmax(0,1.15fr) minmax(0,.85fr);
  align-items:center;
  gap:clamp(28px,5vw,76px);
}
.stream-intro__copy h1{
  max-width:12em;
  margin:24px 0;
  font-size:clamp(52px,5vw,68px);
}
.stream-intro__lead{
  max-width:33em;
  margin-bottom:0;
  color:var(--text-muted);
  font-size:19px;
  line-height:1.75;
}
.stream-intro__actions{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:32px;
}
.stream-intro__panel{
  box-shadow:var(--shadow-harbor);
}
.stream-intro__panel-label{
  margin-bottom:16px;
  color:var(--accent-dark);
  font-size:13px;
  font-weight:800;
}
.stream-intro__checks{
  display:grid;
  gap:12px;
}
.stream-intro__checks .card{
  display:flex;
  align-items:baseline;
  gap:18px;
  padding:18px 20px;
}
.stream-intro__checks strong{
  flex:none;
  color:var(--accent-dark);
  font-size:18px;
}
.stream-intro__checks span{
  color:var(--text-muted);
}
.stream-intro__foot{
  margin:20px 0 0;
  color:var(--text-muted);
  font-size:14px;
}
.stream-reading{
  max-width:920px;
  margin-inline:auto;
}
.stream-reading > .badge{
  margin-bottom:20px;
}
.stream-reading .prose{
  max-width:78ch;
  color:var(--text-muted);
  line-height:1.9;
}
.stream-reading .prose strong,
.stream-reading .prose h3{
  color:var(--text);
}
.stream-section-head{
  display:flex;
  align-items:end;
  justify-content:space-between;
  gap:32px;
  margin-bottom:24px;
}
.stream-section-head .badge{
  margin-bottom:20px;
}
.stream-section-head .sec-heading{
  margin-bottom:0;
}
.stream-section-head > p{
  max-width:39ch;
  margin:0;
  color:var(--text-muted);
}
.stream-section-head a,
.stream-reading a:not(.btn):not(.stream-next__link){
  text-decoration-color:var(--accent-dark);
  text-underline-offset:4px;
}
.stream-table-note{
  max-width:76ch;
  margin:18px 0 0;
  color:var(--text-muted);
  font-size:14px;
}
.stream-issues{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:16px;
  margin:28px 0;
}
.stream-issues h3{
  margin:0 0 12px;
  font-size:18px;
}
.stream-issues p{
  margin:0;
  font-size:15px;
}
.stream-next{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:16px;
  margin-top:32px;
}
.stream-next__link{
  display:flex;
  flex-direction:column;
  gap:10px;
  text-decoration:none;
  transition:transform .2s,box-shadow .2s;
}
.stream-next__link:hover{
  transform:translateY(-3px);
  box-shadow:var(--shadow-card);
}
.stream-next__link span{
  color:var(--text-muted);
  font-size:14px;
}
.stream-next__link strong{
  color:var(--accent-dark);
  font-size:18px;
}
.stream-next__link strong span{
  color:inherit;
  font-size:inherit;
}
@media(max-width:768px){
  .stream-intro{
    padding-top:54px;
    padding-bottom:60px;
  }
  .stream-intro__grid{
    grid-template-columns:1fr;
  }
  .stream-intro__copy h1{
    font-size:clamp(28px,7vw,40px);
  }
  .stream-section-head{
    display:block;
  }
  .stream-section-head > p{
    margin-top:16px;
  }
}
@media(max-width:640px){
  .stream-intro__lead{
    font-size:16px;
  }
  .stream-issues,
  .stream-next{
    grid-template-columns:1fr;
  }
}
@media(prefers-reduced-motion:reduce){
  .stream-next__link{
    transition:none;
  }
}