/*
 * Páginas de texto: privacidad, condiciones y mapa del sitio.
 *
 * Con tipografías del sistema y no las de Google, a diferencia de la
 * portada: sería incoherente pedirle la IP a un tercero justo en la
 * página que explica cuándo se le pide. También las hace instantáneas.
 */

:root {
  --ink: #191713;
  --surface: #221f19;
  --surface-2: #1e1c17;
  --paper: #f4efe6;
  --accent: #c28d41;
  --accent-hi: #e1ad66;
  --line: rgba(244, 239, 230, 0.14);
  --p-60: rgba(244, 239, 230, 0.6);
  --p-70: rgba(244, 239, 230, 0.7);
  --p-80: rgba(244, 239, 230, 0.8);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--paper);
  font-family: 'Iowan Old Style', 'Palatino Linotype', Palatino, Georgia, serif;
  font-size: 17px;
  line-height: 1.75;
  -webkit-text-size-adjust: 100%;
}

a {
  color: var(--accent-hi);
}

a:hover {
  color: var(--paper);
}

.bar {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 13px 24px;
  border-bottom: 1px solid var(--line);
  background: rgba(25, 23, 19, 0.92);
  backdrop-filter: blur(8px);
  font-size: 14px;
}

.bar .mark {
  display: flex;
  align-items: baseline;
  gap: 5px;
  margin-right: auto;
  font-weight: 600;
  font-size: 21px;
  letter-spacing: 0.05em;
  color: var(--paper);
  text-decoration: none;
}

.bar .mark i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

.bar a.go {
  color: var(--accent-hi);
  text-decoration: none;
}

main {
  max-width: 760px;
  margin: 0 auto;
  padding: 56px 24px 88px;
}

.kicker {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
}

h1 {
  margin: 12px 0 6px;
  font-weight: 400;
  font-size: clamp(30px, 5vw, 44px);
  line-height: 1.12;
  letter-spacing: -0.015em;
}

.updated {
  margin: 0 0 40px;
  font-size: 13.5px;
  color: var(--p-60);
}

h2 {
  margin: 44px 0 10px;
  font-weight: 600;
  font-size: 22px;
  line-height: 1.25;
}

h3 {
  margin: 28px 0 6px;
  font-weight: 600;
  font-size: 17.5px;
}

p {
  margin: 0 0 16px;
  color: var(--p-80);
}

ul {
  margin: 0 0 18px;
  padding-left: 20px;
  color: var(--p-80);
}

li {
  margin-bottom: 8px;
}

strong {
  color: var(--paper);
}

/* Lo que conviene que no pase desapercibido: una regla, no un cuadro de
   colores que la gente aprende a saltarse. */
.note {
  margin: 26px 0;
  padding-left: 18px;
  border-left: 2px solid var(--accent);
  font-size: 15.5px;
  color: var(--p-70);
}

.note p:last-child {
  margin-bottom: 0;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin: 0 0 22px;
  font-size: 14.5px;
}

th,
td {
  padding: 11px 12px 11px 0;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
  color: var(--p-80);
}

th {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 400;
}

td:first-child {
  white-space: nowrap;
  padding-right: 22px;
  color: var(--paper);
}

/* En pantallas estrechas la tabla se desplaza sola en vez de romper la
   página entera. */
.scroll {
  overflow-x: auto;
}

.cols {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 4px 18px;
  margin: 0 0 26px;
  padding: 0;
  list-style: none;
  font-size: 14.5px;
}

.cols a {
  text-decoration: none;
}

footer {
  border-top: 1px solid var(--line);
  padding: 30px 24px 48px;
  background: var(--surface-2);
  font-size: 13.5px;
  color: var(--p-60);
}

footer div {
  max-width: 760px;
  margin: 0 auto;
}

footer a {
  color: var(--accent-hi);
  text-decoration: none;
  margin-right: 18px;
}
