/* ==========================================================================
   Openn™ — Lab pages (lab.html, lab-post.html) — page-scoped styles
   Reuses .journal-hero / .journal-grid / .journal-card / .post-* from styles.css
   ========================================================================== */

/* listing header: giant title sits left, like the case/work pages */
.journal-hero__content {
  align-items: flex-start;
}

.journal-hero__label {
  padding-bottom: 1rem;
}

/* post hero: category pill next to the date */
.post-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-pill);
  background-color: var(--grey-50);
  border: 1px solid var(--grey-100);
  font-family: var(--font-label);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.post-hero__author {
  color: var(--grey-300);
  font-size: 0.875rem;
  font-weight: 500;
}

/* "more from the lab" heading row */
.lab-more__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
}

@media (max-width: 767px) {
  .journal-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .journal-card__texts {
    width: 100%;
  }
}
