/* ============================================================
   Archivo informational pages
   Shared styles for footer-linked starter pages.
   ============================================================ */

.info-body { min-height: 100vh; }

.info-hero {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 46px 22px 44px;
}

.info-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 34px;
  align-items: stretch;
}

.info-hero__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.info-hero h1 {
  font-size: clamp(2.35rem, 5vw, 4.4rem);
  letter-spacing: -0.035em;
  line-height: 1.02;
  margin: 18px 0 18px;
}

.info-hero__sub {
  max-width: 680px;
  color: var(--ink-soft);
  font-size: 1.1rem;
  line-height: 1.7;
}

.info-hero__panel {
  border-radius: var(--r-lg);
  padding: 28px;
  align-self: stretch;
}

.info-hero__panel h2 {
  font-size: 1.2rem;
  margin-bottom: 12px;
}

.info-hero__panel p,
.info-hero__panel li {
  color: var(--ink-soft);
  line-height: 1.6;
}

.info-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 16px;
}

.info-list li {
  position: relative;
  padding-left: 24px;
}

.info-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--grad-green);
  box-shadow: 0 0 0 5px var(--green-glow);
}

.info-section {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 34px 22px;
}

.info-section--last { padding-bottom: 96px; }

.info-section__head {
  max-width: 720px;
  margin-bottom: 22px;
}

.info-section__head h2 {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  letter-spacing: -0.025em;
  margin-bottom: 10px;
}

.info-section__head p {
  color: var(--ink-soft);
  line-height: 1.7;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.info-grid--two { grid-template-columns: repeat(2, minmax(0, 1fr)); }

.info-card {
  border-radius: var(--r);
  padding: 24px;
  min-height: 100%;
}

.info-card h3 {
  font-size: 1.08rem;
  margin-bottom: 10px;
}

.info-card p {
  color: var(--ink-soft);
  line-height: 1.65;
}

.info-card small {
  display: block;
  margin-bottom: 10px;
  color: var(--green);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.info-table {
  overflow: hidden;
  border-radius: var(--r);
}

.info-row {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 22px;
  padding: 20px 24px;
  border-bottom: 1px solid var(--glass-brd);
}

.info-row:last-child { border-bottom: 0; }

.info-row strong { color: var(--ink); }
.info-row p { color: var(--ink-soft); }

.info-row--release strong {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.release-version {
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.release-delta {
  color: var(--green-deep);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--green-glow);
  color: var(--green-deep);
  font-weight: 800;
  font-size: 0.82rem;
}

.status-pill::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
}

.info-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  color: var(--green-deep);
  font-weight: 800;
}

.info-link:hover { color: var(--green); }

.footer__cols a[hidden],
.nav__links a[hidden],
.nav__mobile a[hidden] {
  display: none;
}

/* The press page is no longer part of the public site. Older shared footer
   markup may retain its link until those footers are regenerated. */
a[href="press.html"] { display: none !important; }

/* ---- Version collapsible ---- */
.version-list { display: flex; flex-direction: column; gap: 12px; }

.version-item {
  border-radius: var(--r);
  overflow: hidden;
}

.version-header {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 22px;
  cursor: pointer;
  font-weight: 600;
  list-style: none;
}

.version-header::-webkit-details-marker { display: none; }

.version-tag {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 999px;
  background: var(--green-glow);
  color: var(--green-deep);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.version-label {
  flex: 1;
  color: var(--ink-soft);
  font-size: 0.95rem;
  font-weight: 500;
}

.version-chevron {
  transition: transform 0.3s var(--ease);
  color: var(--ink-soft);
}

.version-item[open] > .version-header .version-chevron {
  transform: rotate(180deg);
}

.version-body {
  padding: 0 22px 22px;
}

.version-intro {
  color: var(--ink-soft);
  line-height: 1.7;
  margin-bottom: 16px;
}

.version-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.version-features li {
  position: relative;
  padding-left: 22px;
  color: var(--ink-soft);
  line-height: 1.6;
  font-size: 0.95rem;
}

.version-features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--grad-green);
  box-shadow: 0 0 0 4px var(--green-glow);
}

.version-features li strong {
  color: var(--ink);
}

@media (max-width: 860px) {
  .info-hero__grid,
  .info-grid,
  .info-grid--two {
    grid-template-columns: 1fr;
  }

  .info-row {
    grid-template-columns: 1fr;
    gap: 6px;
  }
}

@media (max-width: 560px) {
  .info-hero {
    padding-top: 60px;
  }

  .info-card,
  .info-hero__panel {
    padding: 20px;
  }
}
