/*! HTML5 Boilerplate v9.0.1 | MIT License | https://html5boilerplate.com/ */

/* main.css 3.0.0 | MIT License | https://github.com/h5bp/main.css#readme */
/*
 * What follows is the result of much research on cross-browser styling.
 * Credit left inline and big thanks to Nicolas Gallagher, Jonathan Neal,
 * Kroc Camen, and the H5BP dev community and team.
 */

/* ==========================================================================
   Base styles: opinionated defaults
   ========================================================================== */

html {
  color: #222;
  font-size: 1em;
  line-height: 1.4;
}

/*
 * Remove text-shadow in selection highlight:
 * https://twitter.com/miketaylr/status/12228805301
 *
 * Customize the background color to match your design.
 */

::-moz-selection {
  background: #b3d4fc;
  text-shadow: none;
}

::selection {
  background: #b3d4fc;
  text-shadow: none;
}

/*
 * A better looking default horizontal rule
 */

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
}

/*
 * Remove the gap between audio, canvas, iframes,
 * images, videos and the bottom of their containers:
 * https://github.com/h5bp/html5-boilerplate/issues/440
 */

audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}

/*
 * Remove default fieldset styles.
 */

fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}

/*
 * Allow only vertical resizing of textareas.
 */

textarea {
  resize: vertical;
}


/* ==========================================================================
   Author's custom styles
   ========================================================================== */

/* fuente descargable */

@font-face {
    font-family: 'sabonregular';
    src: url('../fonts/sabon-webfont.woff2') format('woff2'),
         url('../fonts/sabon-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

/* General */

html {
  font-family: "Garamond", "sabonregular", serif;
  font-weight: normal;
} 

body {
  margin: 0;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.bloque-contenido {
  width: 1320px;
  margin-left: auto;
  margin-right: auto; 
}

#normal-wrapper {
  margin: 0em 0 1em 0; /* 1em debajo de la última imagen */
}


#normal-wrapper img {
  width: 100%;
}

main .bloque-contenido ul {
  padding: 1.5em;
  border: thin solid #eae8e4;
  max-width: 50%; 
}

/* Cabecera */

#header-wrapper {
  border-bottom: none;
}

#header-pagina {
  padding-top: 0.5em;
  padding-bottom: 0.5em;
  display: flex;
  column-gap: 48px;
  align-items: center;
  font-family: "sabonregular", serif;
  font-size: 1.2rem;
}

#header-pagina ul {
  display: flex;
  column-gap: 32px;
}

#logo {
  height: 80px;
}

/* Pie */

#footer1 {
  display: flex;
  column-gap: 2.66%;
  font-family: "sabonregular", serif;
  font-size: 0.85rem;
}

#footer1 section {
  width: 23%;
}

.titulo-footer {
  font-family: "Garamond", serif;
  font-weight: regular;
  font-size: 1rem;
  margin-bottom: 2em;
}
#footer2 {
  display: flex;
  justify-content: space-between;
  padding: 1.5em 0 1.5em 0;
  font-size: 0.85rem;  
}

#footer2 p {
  margin: 0;
}

#footer2 ul {
  display: flex;  
  align-items: flex-end;    
}

#footer2 li:first-child::after, #footer2 li:nth-child(2)::after {
  content: '-';
  margin-left: 0.2em;
  margin-right: 0.2em;
}

/* Enlaces */

#header-pagina a, #header-pagina a:link, #header-pagina a:visited {
  color: #222;
  text-decoration: none;
}

#header-pagina a.actual {
  text-decoration: underline;
}

main a:link, main a:hover {
  text-decoration: none;
}

#footer-pagina a, #footer-pagina a:link, #footer-pagina a:visited {
  color: #222;
}

#footer-pagina a:hover, #footer-pagina a:focus {
  text-decoration: none;
}

main ul a, main ul a:link, main ul a:visited {
  color: #222;
}

main ul a:hover, main ul a:focus {
  color: #6f77c7;
}

/* Estilos generales */ 

h1 {
  font-size: 2rem;
  margin-top: 0;
}

h2 {
  font-size: 1.2rem;  
}

h2.uppercase {
  text-transform: uppercase;
}

h2.small {
  font-size: 1rem;
}

h2.border {
  border-bottom: thin solid #eae8e4;
  padding-bottom: 1.5em;
  margin-bottom: 2em;  
}

h3 {
  font-family: "sablonregular", serif;
  font-weight: normal;
  font-size: 1.3rem;
  line-height: 1.1em;
}


/* Contenido página autor */

#autor-wrapper {
  background-color: #f0f1f9;
  padding-top: 64px;
  padding-bottom: 64px;
}

#autor {
  display: flex;
  column-gap: 64px;
}

#autor img {
  width: 400px;
}

#autor a {
  font-family: "sablonregular", serif;
}

#autor a::before {
  content: url('../img/right-arrow.png');
  margin-right: 8px;
}

#bloque-libros {
  margin-top: 140px;
}

#libros {
  display: flex;
  column-gap: 24px;
}

.libro {
  width: 210px;
}

#bloque-prensa {
  margin-top: 60px;
}

/* Actualidad */
.tres-columnas {
  display: flex;
  flex-wrap: wrap;
  column-gap: 2.66%;
}

.tres-columnas article {
  box-sizing: border-box;
  width: 31%;
}

article footer {
  color: #6f77c7;
}

/* ==========================================================================
   Helper classes
   ========================================================================== */

/*
 * Hide visually and from screen readers
 */

.hidden,
[hidden] {
  display: none !important;
}

/*
 * Hide only visually, but have it available for screen readers:
 * https://snook.ca/archives/html_and_css/hiding-content-for-accessibility
 *
 * 1. For long content, line feeds are not interpreted as spaces and small width
 *    causes content to wrap 1 word per line:
 *    https://medium.com/@jessebeach/beware-smushed-off-screen-accessible-text-5952a4c2cbfe
 */

.visually-hidden {
  border: 0;
  clip: rect(0, 0, 0, 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
  width: 1px;
  /* 1 */
}

/*
 * Extends the .visually-hidden class to allow the element
 * to be focusable when navigated to via the keyboard:
 * https://www.drupal.org/node/897638
 */

.visually-hidden.focusable:active,
.visually-hidden.focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  white-space: inherit;
  width: auto;
}

/*
 * Hide visually and from screen readers, but maintain layout
 */

.invisible {
  visibility: hidden;
}

/*
 * Clearfix: contain floats
 *
 * The use of `table` rather than `block` is only necessary if using
 * `::before` to contain the top-margins of child elements.
 */

.clearfix::before,
.clearfix::after {
  content: "";
  display: table;
}

.clearfix::after {
  clear: both;
}

/* ==========================================================================
   EXAMPLE Media Queries for Responsive Design.
   These examples override the primary ('mobile first') styles.
   Modify as content requires.
   ========================================================================== */

@media only screen and (min-width: 35em) {
  /* Style adjustments for viewports that meet the condition */
}

@media print,
  (-webkit-min-device-pixel-ratio: 1.25),
  (min-resolution: 1.25dppx),
  (min-resolution: 120dpi) {
  /* Style adjustments for high resolution devices */
}

/* ==========================================================================
   Print styles.
   Inlined to avoid the additional HTTP request:
   https://www.phpied.com/delay-loading-your-print-css/
   ========================================================================== */

@media print {
  *,
  *::before,
  *::after {
    background: #fff !important;
    color: #000 !important;
    /* Black prints faster */
    box-shadow: none !important;
    text-shadow: none !important;
  }

  a,
  a:visited {
    text-decoration: underline;
  }

  a[href]::after {
    content: " (" attr(href) ")";
  }

  abbr[title]::after {
    content: " (" attr(title) ")";
  }

  /*
   * Don't show links that are fragment identifiers,
   * or use the `javascript:` pseudo protocol
   */
  a[href^="#"]::after,
  a[href^="javascript:"]::after {
    content: "";
  }

  pre {
    white-space: pre-wrap !important;
  }

  pre,
  blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }

  tr,
  img {
    page-break-inside: avoid;
  }

  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }

  h2,
  h3 {
    page-break-after: avoid;
  }
}

/* Reader (header) siempre visible */
#header-wrapper {
  position: sticky;
  top: 0;
  z-index: 10;
  background: #fff; /* fondo blanco para que se vea sobre las imágenes */
  border-bottom: none; /* sin línea gris */
  padding: 0.5em 1em;
}

/* Slides apiladas verticalmente */
#normal-wrapper {
  width: 100%;
}

.slide {
  width: 100%;
  height: auto; /* altura proporcional a la imagen */
}

.slide img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}



/* Contacto y redes sociales: tipografía regular y sin mayúsculas */
#footer1 section,
#footer2 ul {
  font-family: "Garamond", "sabonregular", serif; /* Garamond */
  font-weight: normal;  /* regular, no bold */
  text-transform: none; /* sin mayúsculas */
  font-size: 0.85rem;   /* tamaño consistente */
  letter-spacing: 0.02em; /* ligero tracking opcional */
}




/*.image-wrapper {
  position: relative;
  display: inline-block;
}

/*.image-wrapper .tooltip {
  visibility: hidden;
  position: absolute;
  bottom: 8px;   /* altura desde la base de la imagen */
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(0,0,0,0.7);
    color: #fff;
    padding: 0.3em 0.6em;
    border-radius: 4px;
    font-family: "Garamond", serif;
    font-size: 0.85rem;
    white-space: nowrap;
    pointer-events: none;
    z-index: 10;
  }

/*.image-wrapper:hover .tooltip {
  visibility: visible;
}
