/* ============================================================
   Press kit page, /press/kit/.
   The press INDEX is a directory: text only, no images. The KIT is
   the opposite, on purpose. Outlets ask to SEE an asset before they
   download it, so every asset on this page renders inline at a size
   a person can judge, with the download beside it. Nothing here is
   behind a login, a form, or a redirect.
   ============================================================ */

.kit-wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px 72px;
}

/* ---------- the terms strip at the top ---------- */

.kit-terms {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  padding: 18px 20px;
  margin: 0 0 40px;
  font-size: 14.5px;
  line-height: 1.6;
}

.kit-terms strong { color: var(--text); }
.kit-terms p { margin: 0 0 8px; color: var(--text-mid); }
.kit-terms p:last-child { margin: 0; }

/* ---------- the big download row ---------- */

.kit-grab {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin: 0 0 44px;
}

.kit-grab-note {
  font-size: 13.5px;
  color: var(--text-dim);
  flex: 1 1 240px;
}

/* ---------- section heads inside the kit ---------- */

.kit-head {
  margin: 48px 0 6px;
  font-size: 22px;
}

.kit-head:first-of-type { margin-top: 0; }

.kit-sub {
  margin: 0 0 22px;
  font-size: 14.5px;
  color: var(--text-mid);
  max-width: 720px;
}

/* ---------- asset grid ---------- */

.kit-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
}

.kit-grid.kit-grid-3 { grid-template-columns: repeat(3, 1fr); }

.kit-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* The preview is a LINK to the full file, so a click views it in the
   browser and a right-click saves it. Two behaviors, one control. */
.kit-shot {
  display: block;
  background: #05070b;
  line-height: 0;
}

.kit-shot img {
  width: 100%;
  height: auto;
  display: block;
}

/* Logos sit on a checker-free flat panel with breathing room, because
   a transparent PNG on a dark card reads as a cropped image otherwise. */
.kit-shot-pad {
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 180px;
}

.kit-shot-pad img { max-width: 100%; width: auto; max-height: 220px; }

.kit-meta {
  padding: 14px 16px 16px;
  border-top: 1px solid var(--line);
}

.kit-name {
  font-size: 15px;
  font-weight: 600;
  margin: 0 0 4px;
}

.kit-caption {
  font-size: 13.5px;
  color: var(--text-mid);
  margin: 0 0 10px;
  line-height: 1.5;
}

.kit-file {
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: .02em;
  color: var(--text-dim);
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: baseline;
}

.kit-file a { text-decoration: none; }
.kit-file a:hover { text-decoration: underline; }

/* ---------- fact sheet table ---------- */

.kit-facts {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.kit-fact-row {
  display: grid;
  grid-template-columns: 210px 1fr;
  gap: 20px;
  padding: 13px 18px;
  border-bottom: 1px solid var(--line);
  font-size: 14.5px;
}

.kit-fact-row:last-child { border-bottom: 0; }
.kit-fact-row:nth-child(odd) { background: var(--panel); }

.kit-fact-row > div:first-child {
  color: var(--text-dim);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding-top: 3px;
}

/* ---------- boilerplate block, meant to be copied verbatim ---------- */

.kit-boiler {
  border-left: 2px solid var(--accent);
  padding: 4px 0 4px 18px;
  margin: 0 0 18px;
  max-width: 760px;
  color: var(--text-mid);
}

.kit-boiler p { margin: 0 0 14px; }
.kit-boiler p:last-child { margin: 0; }

/* ---------- video block ---------- */

.kit-video {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  overflow: hidden;
  max-width: 860px;
}

.kit-video-frame {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  background: #05070b;
}

.kit-video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

@media (max-width: 900px) {
  .kit-grid,
  .kit-grid.kit-grid-3 { grid-template-columns: 1fr; }
  .kit-fact-row { grid-template-columns: 1fr; gap: 4px; }
}
