/* group.css — shared layout for the listing pages (news, portfolio), the
   article pages under /pages/news/, and the venture pages.
   Styled from the site's own conventions: #0a0a0a page ground, pure-black
   blocks, thin uppercase titles, dashed 1px hairlines at 70% white, dotted
   underlined links, 2px image radius, 50px pills. Prefixed gp-. */

/* ---------------- hero ---------------- */

.gp-hero {
  min-height: 50vh;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 1.1rem;
  padding: 8rem 40px 2.6rem;
  border-bottom: rgba(255, 255, 255, 0.7) 1px dashed;
}

.gp-eyebrow {
  margin: 0;
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.525);
}

.gp-hero h1 {
  margin: 0;
  color: #fff;
  font-size: clamp(2.3rem, 5.6vw, 4.6rem);
  font-weight: 100;
  letter-spacing: -1px;
  line-height: 1.06;
  text-transform: uppercase;
  max-width: 20ch;
  text-wrap: balance;
}

.gp-hero-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 2.5rem;
  flex-wrap: wrap;
  margin-top: 0.4rem;
}

.gp-stand {
  margin: 0;
  max-width: 52ch;
  color: rgba(255, 255, 255, 0.525);
  font-size: 1rem;
  font-weight: 100;
  line-height: 1.65;
}

.gp-meta {
  margin: 0;
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.525);
  white-space: nowrap;
}

.gp-hero-link,
.gp-more {
  color: #fff;
  font-size: 0.8rem;
  font-weight: 300;
  text-decoration: underline dotted rgba(255, 255, 255, 0.7) 1px;
  text-underline-offset: 2px;
  white-space: nowrap;
}

.gp-hero-link:hover,
.gp-more:hover { text-decoration-color: #00e7b1; }

/* ---------------- card grid ---------------- */

.gp-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(330px, 100%), 1fr));
  gap: 14px;
  padding: 2.6rem 40px 6rem;
}

.gp-card {
  background-color: black;
  padding: 25px 30px 22px;
  color: white;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.gp-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 2px;
  display: block;
}

.gp-card-meta {
  margin: 0;
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.525);
}

.gp-card h2 {
  margin: 0 0 0.4rem;
  color: #fff;
  font-size: 1.45rem;
  font-weight: 100;
  text-transform: uppercase;
  line-height: 1.25;
  letter-spacing: 0;
  padding-bottom: 0.5rem;
  border-bottom: rgba(255, 255, 255, 0.7) 1px dashed;
}

.gp-card-text {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
  font-weight: 200;
  line-height: 1.75;
}

.gp-card .gp-more { margin-top: auto; align-self: flex-start; padding-top: 0.6rem; }

/* ---------------- article ---------------- */

.gp-article {
  max-width: 760px;
  margin: 0 auto;
  padding: 3.4rem 40px 5.5rem;
}

.gp-article p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1rem;
  font-weight: 200;
  line-height: 1.85;
  margin: 0 0 1.35rem;
}

.gp-article h2 {
  color: #fff;
  font-size: 1.35rem;
  font-weight: 100;
  text-transform: uppercase;
  margin: 2.5rem 0 1rem;
  padding-bottom: 0.5rem;
  border-bottom: rgba(255, 255, 255, 0.7) 1px dashed;
}

.gp-article a {
  color: #fff;
  text-decoration: underline dotted rgba(255, 255, 255, 0.7) 1px;
  text-underline-offset: 2px;
}

.gp-article a:hover { text-decoration-color: #00e7b1; }

.gp-links {
  border-top: rgba(255, 255, 255, 0.7) 1px dashed;
  margin-top: 3rem;
  padding-top: 1.5rem;
  display: flex;
  gap: 1.6rem 2.4rem;
  flex-wrap: wrap;
}

.gp-links a { font-size: 0.8rem; font-weight: 300; }

/* ---------------- ownership columns (portfolio) ---------------- */

.gp-own { padding: 4.5rem 40px 5rem; }

.gp-own > h2 {
  color: #fff;
  font-size: clamp(1.6rem, 3.4vw, 2.4rem);
  font-weight: 100;
  text-transform: uppercase;
  margin: 0 0 2.2rem;
  padding-bottom: 0.6rem;
  border-bottom: rgba(255, 255, 255, 0.7) 1px dashed;
}

.gp-own-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(250px, 100%), 1fr));
  gap: 2.2rem;
}

.gp-own-grid h3 {
  color: #fff;
  font-size: 0.85rem;
  font-weight: 300;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin: 0 0 0.6rem;
}

.gp-own-grid p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.88rem;
  font-weight: 200;
  line-height: 1.72;
  margin: 0;
}

/* ---------------- timeline (about) ---------------- */

.gp-timeline { padding: 4.5rem 40px 5rem; }

.gp-timeline > h2 {
  color: #fff;
  font-size: clamp(1.6rem, 3.4vw, 2.4rem);
  font-weight: 100;
  text-transform: uppercase;
  margin: 0 0 1.6rem;
}

.gp-tl-row {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 2rem;
  padding: 1.1rem 0;
  border-top: rgba(255, 255, 255, 0.45) 1px dashed;
}

.gp-tl-row:last-of-type { border-bottom: rgba(255, 255, 255, 0.45) 1px dashed; }

.gp-tl-label {
  margin: 0;
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.525);
  padding-top: 0.3rem;
}

.gp-tl-row p:last-child {
  margin: 0;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.95rem;
  font-weight: 200;
  line-height: 1.7;
  max-width: 62ch;
}

.gp-tl-more { margin: 1.6rem 0 0; }

/* ---------------- closing brand section ---------------- */

.gp-brand {
  min-height: 50vh;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 1.6rem;
  padding: 4rem 40px;
}

.gp-brand img { width: 52px; height: auto; }

.gp-brand p {
  margin: 0;
  color: #fff;
  font-size: clamp(1.8rem, 4.6vw, 3.2rem);
  font-weight: 100;
  text-transform: uppercase;
  line-height: 1.12;
  text-wrap: balance;
}

.gp-brand a {
  color: #fff;
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 50px;
  padding: 0.65rem 1.7rem;
  transition: 0.3s ease;
}

.gp-brand a:hover { border-color: #00e7b1; color: #00e7b1; }

/* ---------------- mobile ---------------- */

@media only screen and (max-width: 812px) {
  .gp-hero {
    min-height: 0;
    padding: 6.2rem 1rem 1.6rem;
    gap: 0.8rem;
  }
  .gp-hero h1 { font-size: clamp(1.9rem, 8.6vw, 2.6rem); letter-spacing: -0.5px; }
  .gp-hero-row { flex-direction: column; align-items: flex-start; gap: 0.9rem; margin-top: 0.2rem; }
  .gp-stand { font-size: 0.92rem; }

  .gp-grid { grid-template-columns: 1fr; padding: 1.4rem 1rem 3.5rem; gap: 12px; }
  .gp-card { padding: 20px 18px 18px; }
  .gp-card h2 { font-size: 1.25rem; }

  .gp-article { padding: 2.2rem 1rem 3.5rem; }
  .gp-article p { font-size: 0.95rem; }

  .gp-own, .gp-timeline { padding: 2.8rem 1rem 3rem; }
  .gp-own-grid { grid-template-columns: 1fr; gap: 1.6rem; }
  .gp-tl-row { grid-template-columns: 1fr; gap: 0.3rem; padding: 0.95rem 0; }
  .gp-tl-label { padding-top: 0; }

  .gp-brand { min-height: 38vh; padding: 3rem 1rem; }
}
