/* BWICK LABS — investor relations
   Mirrors investor.gamestop.com — minimalist 2000s corporate IR aesthetic.
   Serif body, small-caps brand, blue underlined links, plain hr dividers.
   No JS, no framework, no images. */

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: #ffffff;
  color: #000000;
  /* Plain Times New Roman everywhere — matches the GameStop IR aesthetic. */
  font-family: "Times New Roman", "Times", "Liberation Serif", serif;
  font-size: 16px;
  line-height: 1.5;
}

body {
  max-width: 940px;
  margin: 0 auto;
  padding: 2em 2em 2em;
}

/* Centered brand header */
header.brand {
  text-align: center;
  margin-bottom: 2em;
}

header.brand h1 {
  /* Plain Times New Roman bold + small-caps. Source is mixed-case ("Bwick
     Labs") so the B and L render as full caps and the rest as small caps,
     mirroring GameStop's "GameStop Corp." treatment. */
  font-family: "Times New Roman", "Times", "Liberation Serif", serif;
  font-size: 2.6em;
  font-weight: bold;
  font-variant-caps: small-caps;
  letter-spacing: 0.01em;
  margin: 0 0 0.55em;
  line-height: 1.1;
}

header.brand .line {
  font-size: 1em;
  margin: 0;
  line-height: 1.4;
}

header.brand .tagline {
  font-size: 1em;
  margin: 0;
  line-height: 1.4;
  font-style: italic;
  font-weight: 600;
}

header.brand .ir {
  font-size: 1em;
  margin-top: 0.5em;
}

/* Plain horizontal rule */
hr {
  border: 0;
  border-top: 1px solid #d0d0d0;
  margin: 1.5em 0;
}

/* Three-column link grid. Narrower than the page so the links cluster
   visually rather than pinning to the absolute edges. */
nav.link-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.85em 2em;
  font-size: 1em;
  margin: 1.5em auto;
  max-width: 760px;
}

nav.link-grid a {
  color: #1f5fc7;
  text-decoration: underline;
}

/* Distribute the row across the full width: column 1 left-aligned (default),
   column 2 centered in its track, column 3 right-aligned to the right edge.
   Without this, three left-aligned items leave dead space on the right and
   the row looks unbalanced against the full-width hr above and below. */
nav.link-grid a:nth-child(1) { justify-self: start; }
nav.link-grid a:nth-child(2) { justify-self: center; }
nav.link-grid a:nth-child(3) { justify-self: end; }

/* The 4th link sits alone on row 2. Block-level + text-align: center inside
   a full-row span centers the visible text horizontally on the page. */
nav.link-grid a.centered {
  grid-column: 1 / -1;
  display: block;
  text-align: center;
}

/* Row 2 (5-link layout) — 2 items aligned vertically with row 1's first two
   columns, leaving column 3 empty (matrix positions (2,1) and (2,2),
   mirroring GameStop's 3+2 with the empty cell on the right). */
nav.link-grid a.row2:nth-of-type(4) { grid-column: 1; justify-self: start; }
nav.link-grid a.row2:nth-of-type(5) { grid-column: 2; justify-self: center; }

/* "Visit" section */
section.visit {
  margin: 1.5em 0;
}

section.visit h2 {
  font-size: 1em;
  font-weight: bold;
  letter-spacing: 0.01em;
  margin: 0 0 0.5em;
}

section.visit p {
  margin: 0 0 0.5em;
}

section.visit a.www {
  color: #1f5fc7;
  text-decoration: underline;
  letter-spacing: 0.01em;
  font-weight: normal;
}

/* Feedback paragraph */
section.feedback {
  margin: 1.5em 0;
}

section.feedback p {
  margin: 0;
}

/* Footer */
footer {
  text-align: center;
  margin: 1.5em 0 0;
  font-size: 1em;
  color: #000;
}

footer .copy { margin: 0 0 0.4em; }

footer a {
  color: #1f5fc7;
  text-decoration: underline;
}

/* General link styling for sub-pages */
a {
  color: #1f5fc7;
  text-decoration: underline;
}
a:visited { color: #1f5fc7; }

.back-link {
  display: inline-block;
  margin: 0 0 1.5em;
  font-size: 0.95em;
}

/* Sub-page sections (kept minimal) */
section.body {
  margin: 1.5em 0;
}

section.body h2 {
  font-size: 1.05em;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin: 0 0 0.5em;
}

section.body p {
  margin: 0 0 0.7em;
  text-align: left;
}

table.spec {
  width: 100%;
  border-collapse: collapse;
  margin: 0.8em 0;
}

table.spec th,
table.spec td {
  text-align: left;
  padding: 0.4em 0.75em 0.4em 0;
  border-bottom: 1px solid #e8e8e8;
  vertical-align: top;
  font-weight: normal;
}

table.spec th {
  font-style: italic;
  color: #444;
  width: 30%;
  white-space: nowrap;
}

ul.news {
  list-style: none;
  padding: 0;
  margin: 0;
}

ul.news li {
  padding: 0.4em 0;
  border-bottom: 1px dotted #d8d8d8;
}

ul.news .date {
  display: inline-block;
  width: 9em;
  color: #555;
  font-style: italic;
}

/* Inert news entries — styled like a link but with no destination. */
ul.news a.inert {
  color: #1f5fc7;
  text-decoration: underline;
  cursor: default;
}

article.release {
  margin: 1em 0;
}

article.release .stamp {
  font-size: 0.95em;
  font-style: italic;
  color: #555;
  margin: 0 0 0.4em;
}

article.release h1 {
  font-size: 1.4em;
  margin: 0.2em 0 1em;
  font-weight: bold;
}

article.release p {
  margin: 0 0 0.8em;
  text-align: left;
}

article.release .dateline {
  font-weight: bold;
}

@media (max-width: 640px) {
  body { padding: 2em 1em; }
  header.brand h1 { font-size: 1.7em; }
  nav.link-grid { grid-template-columns: 1fr; gap: 0.5em; }
  table.spec th { width: 50%; white-space: normal; }
}
