/* ═══════════════════════════════════════════════
   CubeLabs — Shared Base Styles
   ═══════════════════════════════════════════════ */

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: Georgia, 'Times New Roman', serif;
  color: #333;
  background: #fff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 50px 32px 80px;
}

/* ── HEADER (unificado) ── */
header {
  text-align: center;
  padding: 30px 0 40px;
  border-bottom: 3px solid #000;
  margin-bottom: 50px;
}

.logo-mark {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #000;
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  letter-spacing: 0;
}
}

.site-title {
  font-size: 1.6em;
  font-weight: normal;
  margin: 0 0 4px;
}
.site-title a { color: inherit; text-decoration: none; }
.site-title a:hover { opacity: 0.7; }

.site-sub {
  font-size: 0.85em;
  color: #666;
  font-style: italic;
}

/* ── Navigation ── */
nav {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 24px;
  font-size: 0.85em;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

nav a {
  color: #666;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s;
}

nav a:hover {
  color: #000;
  border-bottom-color: #000;
}

/* ── Section header (reutilizable) ── */
.section-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 32px;
}
.section-header h1 {
  font-size: 1.3em;
  font-weight: normal;
  border: none;
  padding: 0;
  margin: 0;
}
.section-header h1 span { color: #000; }
.section-header .count { font-size: 0.78em; color: #888; white-space: nowrap; }

/* ── Section items ── */
.section-item {
  border-bottom: 1px solid #eee;
  padding-bottom: 24px;
  margin-bottom: 24px;
}
.section-item:last-child { border-bottom: none; }

.section-item h2 {
  font-size: 1.1em;
  font-weight: 700;
  margin: 0 0 4px;
}
.section-item h2 a { color: #000; text-decoration: none; }
.section-item h2 a:hover { text-decoration: underline; }

.section-item .meta {
  font-size: 0.82em;
  color: #888;
  margin-bottom: 4px;
}

.section-item p {
  font-size: 0.92em;
  color: #444;
  line-height: 1.6;
}

/* ── Footer ── */
footer {
  margin-top: 60px;
  padding-top: 20px;
  border-top: 1px solid #eee;
  font-size: 0.8em;
  color: #999;
  text-align: center;
}
