/* SIMPLE / OLD INTERNET / RESPONSIVE — POETIC VERSION */

body{
  font-family: Georgia, "Times New Roman", Times, serif;
  font-size: 15px;
  line-height: 1.55;

  background: #f7e1db;
  color: #cc6f63;

  margin: 0;
  text-align: center;
}

/* contenedor */
.wrap{
  max-width: 42em;
  padding: 40px 18px;
  margin: 0 auto;
}

/* título principal (The Wounded Body) */
h1{
  font-size: 28px;
  font-weight: bold;
  margin: 0 0 18px 0;
  color: #8c3b33;
  letter-spacing: 0.04em;
  line-height: 1.2;
}

/* FIX: el título en páginas internas es un link, pero no debe verse rojo */
h1 a{
  color: inherit;
  text-decoration: none;
}

h1 a:visited{
  color: inherit;
}

h1 a:hover{
  color: inherit;
  text-decoration: underline; /* opcional: puedes quitarlo si no quieres */
}

/* intro (home) */
.intro{
  font-size: 13px;
  margin-bottom: 16px;
  color: #cc6f63;
}

/* NUEVO: subtítulo de página interna (Art, Medicine, etc.) */
.page-title{
  font-size: 18px;
  font-weight: bold;
  color: #8c3b33;
  margin-bottom: 16px;
}

/* línea */
hr{
  border: 0;
  border-top: 1px solid #e3a79d;
  margin: 16px 0 22px 0;
}

/* LINKS (menos subrayado: aparece al hover) */
a{
  color: #b3001b;
  text-decoration: none;
}

a:visited{
  color: #7a0011;
}

a:hover{
  color: #5c000b;
  text-decoration: underline;
}

/* LISTA (home) */
.map{
  list-style: none;
  padding: 0;
  margin: 0;
}

.map > li{
  margin: 0 0 32px 0;
}

/* títulos de categorías */
.topic{
  font-size: 20px;
  display: block;
  margin-bottom: 8px;
  color: #8c3b33;
  letter-spacing: 0.02em;
}

.topic:hover{
  color: #5c000b;
  text-decoration: underline;
}

/* segundo nivel */
.map ul{
  list-style: none;
  padding: 0;
  margin: 0;
}

.map ul li{
  font-size: 14px;
  margin: 2px 0;
}

.map ul li a{
  color: #c56d63;
}

.map ul li a:visited{
  color: #a94f46;
}

.map ul li a:hover{
  color: #5c000b;
  text-decoration: underline;
}

/* SEE ALSO (susurro) */
.seealso{
  font-size: 12px;
  margin-top: 12px;
  color: #d19a92;
}

.seealso a{
  color: #d19a92;
}

.seealso a:visited{
  color: #c7887f;
}

.seealso a:hover{
  color: #5c000b;
  text-decoration: underline;
}

/* ---- PÁGINAS INTERNAS ---- */
h2{
  font-size: 20px;
  font-weight: normal;
  margin: 32px 0 8px 0;
  color: #8c3b33;
  letter-spacing: 0.02em;
}

p{
  font-size: 14px;
  margin: 0 0 12px 0;
  color: #c56d63;
}

/* línea corta */
.section-break{
  width: 40px;
  height: 1px;
  background: #e3a79d;
  margin: 16px auto 16px auto;
}

/* crédito */
.credit{
  font-size: 12px;
  margin-top: 12px;
  color: #c58c84;
}

/* IMAGES (simple + responsive) */
.img{
  max-width: 100%;
  height: auto;
  display: block;
  margin: 16px auto;
}

/* opcional: si quieres que NO sean enormes */
.figure{
  margin: 18px 0;
}

.caption{
  font-size: 12px;
  margin: 6px 0 0 0;
  color: #d19a92; /* suave, como see also */
}

/* enlace a PDF como nota */
a[href$=".pdf"]{
  color: #b3001b;
  text-decoration: underline;
   font-size: 12px;
}

/* CURSOR */
body{
  cursor: url("images/cursor.png") 16 16, auto;
}

a{
  cursor: url("images/cursor.png") 16 16, pointer;
}

p, h1, h2{
  cursor: text;
}