/* Releases page — page-local additions over site.css primitives. */

/* Section heading + status chip, reused for "In build" and "Roadmap". */
.releases-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
}

/* Shipped tiles use <h3> for heading order; reset the default heading margin
   the shared .tile__title rule (written for a plain block) doesn't set. */
.releases-tiles .tile__title {
  margin-top: 0;
  margin-bottom: 4px;
}

.releases-tiles .card--tile {
  display: flex;
  flex-direction: column;
}

/* Roadmap rows sit in a <ul> for list semantics — strip default list chrome;
   .roadmap-row already supplies the border/padding rhythm per row. */
.roadmap-grid {
  margin: 0;
  padding: 0;
  list-style: none;
  gap: 0 32px;
}

@media (max-width: 720px) {
  .releases-head {
    margin-bottom: 20px;
  }
}
