/* ============================================================
   EDITORIAL DIDAXIS == HOJA DE ESTILO PERSONALIZADA PARA OMP
   Open Monograph Press (OMP) == Tema Bootstrap 3 / Manuscript
   Autor editorial: Editorial Didaxis S.A.S.
   Aplica a: editorialdidaxis.com/book/index.php/didaxis
   Paginas: /es/index (portada) y /es/catalog (catalogo)
   ============================================================ */

/* ============================================================
   1. VARIABLES Y TIPOGRAFIA GENERAL (Aplicadas directamente)
   ============================================================ */

body {
  font-family: 'Open Sans', 'Segoe UI', Roboto, Arial, sans-serif;
  color: #2b2b2b;
  line-height: 1.6;
  background-color: #ffffff;
}

h1, h2, h3, h4, h5, h6,
.page_title,
.heading {
  font-family: 'Merriweather', 'Georgia', 'Times New Roman', serif;
  color: #2c3e50;
  font-weight: 700;
  letter-spacing: -0.2px;
}

/* ============================================================
   2. CABECERA Y NAVEGACION
   ============================================================ */

.pkp_structure_head {
  background-color: #ffffff;
  border-bottom: 3px solid #b32834;
  padding: 18px 0 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.pkp_site_name .is_text {
  font-family: 'Merriweather', Georgia, serif;
  font-size: 28px;
  letter-spacing: 1px;
  color: #2c3e50;
  text-transform: uppercase;
}

.pkp_navigation_primary > li > a,
.pkp_navigation_user > li > a {
  font-size: 14px;
  font-weight: 600;
  color: #2c3e50;
  text-transform: none;
  padding: 10px 14px;
  transition: color 0.2s ease, border-color 0.2s ease;
  border-bottom: 2px solid transparent;
}

.pkp_navigation_primary > li > a:hover,
.pkp_navigation_primary > li.active > a {
  color: #b32834;
  border-bottom-color: #b32834;
  background: transparent;
}

/* ============================================================
   3. TITULOS DE PAGINA Y MIGAS
   ============================================================ */

.page_title {
  font-size: 30px;
  margin-bottom: 6px;
  padding-bottom: 8px;
  border-bottom: 2px solid #e5e7eb;
  position: relative;
}

.page_title::after {
  content: '';
  display: block;
  width: 80px;
  height: 3px;
  background: #b32834;
  position: absolute;
  bottom: -2px;
  left: 0;
}

.cmp_breadcrumbs {
  font-size: 13px;
  color: #6c757d;
  background: #fafafa;
  padding: 10px 16px;
  border-radius: 8px;
  margin-bottom: 24px;
}

.cmp_breadcrumbs a {
  color: #b32834;
  text-decoration: none;
}

.cmp_breadcrumbs a:hover {
  text-decoration: underline;
}

/* ============================================================
   4. CATALOGO Y DESTACADOS == TARJETAS 50/50
   ============================================================ */

.cmp_monographs_list .row,
.cmp_monographs .row {
  margin-left: 0;
  margin-right: 0;
}

.obj_monograph_summary {
  display: grid;
  grid-template-columns: 200px 1fr;
  grid-template-areas:
    'coverbox  title'
    'coverbox  authors'
    'coverbox  pubdate'
    'coverbox  doi'
    'coverbox  keywords'
    'coverbox  description'
    'coverbox  spacer';
  grid-template-rows: auto auto auto auto auto auto 1fr;
  align-items: start;
  column-gap: 28px;
  row-gap: 6px;
  padding: 22px;
  margin-bottom: 24px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  min-height: auto;
}

.obj_monograph_summary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.10);
  border-color: #d6d8db;
}

.obj_monograph_summary .coverbox,
.obj_monograph_summary .cover_wrapper {
  grid-area: coverbox;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.obj_monograph_summary .cover {
  grid-area: coverbox;
  margin: 0 auto;
  width: 100%;
  max-width: 180px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.obj_monograph_summary .cover a {
  display: block;
  width: 100%;
  max-width: 170px;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.14);
  transition: transform 0.3s ease;
}

.obj_monograph_summary .cover a:hover {
  transform: scale(1.03);
}

.obj_monograph_summary .cover img {
  width: 100%;
  height: auto;
  display: block;
  border: none;
}

.obj_monograph_summary .galleys,
.obj_monograph_summary .galleys_links,
.obj_monograph_summary .pub-formats,
.obj_monograph_summary .formats {
  grid-area: coverbox;
  align-self: end;
  margin-top: 12px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px;
  width: 100%;
  max-width: 180px;
}

.obj_monograph_summary .galleys a,
.obj_monograph_summary .galley_link,
.obj_monograph_summary .pub-format,
.obj_monograph_summary .format-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 5px 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  background: #2c3e50;
  color: #ffffff !important;
  border-radius: 4px;
  text-decoration: none !important;
  border: 1px solid #2c3e50;
  transition: background 0.2s ease, transform 0.2s ease;
}

.obj_monograph_summary .galleys a:hover,
.obj_monograph_summary .galley_link:hover,
.obj_monograph_summary .pub-format:hover {
  background: #b32834;
  border-color: #b32834;
  color: #ffffff !important;
  transform: translateY(-1px);
}

.obj_monograph_summary a[href*='.pdf'],
.obj_monograph_summary .galley_link.pdf,
.obj_monograph_summary .pub-format.pdf {
  background: #b32834;
  border-color: #b32834;
}

.obj_monograph_summary a[href*='.epub'],
.obj_monograph_summary .galley_link.epub {
  background: #2c8a3c;
  border-color: #2c8a3c;
}

.obj_monograph_summary a[href*='.html'],
.obj_monograph_summary .galley_link.html {
  background: #1d6fa5;
  border-color: #1d6fa5;
}

.obj_monograph_summary a[href*='infograf'],
.obj_monograph_summary .galley_link.infografia {
  background: #c97f1a;
  border-color: #c97f1a;
}

.obj_monograph_summary .published_status,
.obj_monograph_summary .status_published,
.obj_monograph_summary .badge-published {
  grid-area: coverbox;
  align-self: end;
  display: inline-block;
  padding: 5px 12px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
  border-radius: 4px;
  margin: 8px auto 0;
  text-align: center;
}

.obj_monograph_summary .title,
.obj_monograph_summary > h2,
.obj_monograph_summary > h3 {
  grid-area: title;
  font-family: 'Merriweather', Georgia, serif;
  font-size: 21px;
  line-height: 1.32;
  margin: 0 0 10px 0;
  padding: 0;
  color: #b32834;
  font-weight: 700;
  display: block;
  width: 100%;
}

.obj_monograph_summary .title a,
.obj_monograph_summary h2 a,
.obj_monograph_summary h3 a {
  color: #b32834;
  text-decoration: none;
  transition: color 0.2s ease;
}

.obj_monograph_summary .title a:hover,
.obj_monograph_summary h2 a:hover,
.obj_monograph_summary h3 a:hover {
  color: #8c1f29;
  text-decoration: underline;
}

.obj_monograph_summary .subtitle {
  grid-area: title;
  align-self: end;
  font-size: 14px;
  font-style: italic;
  color: #2c3e50;
  margin: 0;
  padding: 0;
  font-weight: 400;
}

.obj_monograph_summary .authors {
  grid-area: authors;
  font-size: 14px;
  color: #2c3e50;
  font-style: italic;
  margin: 0 0 8px 0;
  padding: 0;
  font-weight: 500;
  display: block;
  width: 100%;
  white-space: normal;
  text-align: left;
  line-height: 1.5;
}

.obj_monograph_summary .pub_date,
.obj_monograph_summary .published,
.obj_monograph_summary .date {
  grid-area: pubdate;
  font-size: 13px;
  color: #6c757d;
  margin: 0 0 10px 0;
  padding: 0 0 8px 0;
  border-bottom: 1px dashed #e5e7eb;
  display: block;
  width: 100%;
  white-space: normal;
  text-align: left;
  position: static;
  float: none;
  background: transparent;
  font-weight: 500;
}

.obj_monograph_summary .pub_date::before {
  content: '📅 ';
  margin-right: 4px;
}

.obj_monograph_summary .doi,
.obj_monograph_summary .pub-id,
.obj_monograph_summary [class*='doi'] {
  grid-area: doi;
  font-size: 13px;
  font-family: 'Consolas', 'Monaco', monospace;
  color: #2c3e50;
  margin: 0 0 10px 0;
  padding: 6px 10px;
  background: #f5f6f8;
  border-left: 3px solid #b32834;
  border-radius: 3px;
  display: block;
  width: 100%;
  word-break: break-all;
}

.obj_monograph_summary .doi::before,
.obj_monograph_summary .pub-id::before {
  content: 'DOI: ';
  font-family: 'Open Sans', sans-serif;
  font-weight: 700;
  color: #b32834;
  font-size: 12px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-right: 6px;
}

.obj_monograph_summary .doi a,
.obj_monograph_summary .pub-id a {
  color: #2c3e50;
  text-decoration: none;
}

.obj_monograph_summary .doi a:hover {
  color: #b32834;
  text-decoration: underline;
}

.obj_monograph_summary .keywords,
.obj_monograph_summary .subjects,
.obj_monograph_summary .tags {
  grid-area: keywords;
  font-size: 13px;
  color: #2b2b2b;
  margin: 0 0 10px 0;
  padding: 0;
  display: block;
  width: 100%;
  line-height: 1.6;
}

.obj_monograph_summary .keywords::before,
.obj_monograph_summary .subjects::before {
  content: 'Palabras clave: ';
  font-weight: 700;
  color: #2c3e50;
  font-size: 12px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  display: inline-block;
  margin-right: 6px;
}

.obj_monograph_summary .keywords a,
.obj_monograph_summary .keywords span,
.obj_monograph_summary .subjects a,
.obj_monograph_summary .subjects span,
.obj_monograph_summary .tags a {
  display: inline-block;
  padding: 3px 9px;
  margin: 2px 3px 2px 0;
  background: #eef0f3;
  color: #2c3e50;
  border-radius: 12px;
  font-size: 12px;
  text-decoration: none;
  border: 1px solid #dde0e5;
  transition: background 0.2s ease, color 0.2s ease;
}

.obj_monograph_summary .keywords a:hover,
.obj_monograph_summary .subjects a:hover,
.obj_monograph_summary .tags a:hover {
  background: #b32834;
  color: #ffffff;
  border-color: #b32834;
}

.obj_monograph_summary .series,
.obj_monograph_summary .category,
.obj_monograph_summary .work_type,
.obj_monograph_summary .publication_format,
.obj_monograph_summary .meta {
  display: none;
}

.obj_monograph_summary .description,
.obj_monograph_summary .abstract {
  grid-area: description;
  font-size: 13.5px;
  color: #4a4a4a;
  line-height: 1.55;
  margin: 0;
  padding: 8px 0 0 0;
  border-top: 1px solid #e5e7eb;
  display: block;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 100%;
}

.obj_monograph_summary [class*='month'],
.obj_monograph_summary [class*='day'],
.obj_monograph_summary [class*='year'] {
  position: static !important;
  float: none !important;
  display: inline !important;
  width: auto !important;
  text-align: left !important;
  background: transparent !important;
  color: inherit !important;
  font-size: inherit !important;
  margin: 0 !important;
  padding: 0 !important;
}

.obj_monograph_summary .pub_date,
.obj_monograph_summary .published {
  display: block !important;
  width: 100% !important;
}

/* ============================================================
   5. CONTADOR DE TITULOS
   ============================================================ */

.cmp_announcement_intro,
.heading + p,
.page > p:first-of-type {
  font-size: 14px;
  color: #6c757d;
  margin-bottom: 20px;
}

/* ============================================================
   6. PANEL LATERAL DATOS IMPORTANTES
   ============================================================ */

.pkp_structure_sidebar {
  font-size: 14px;
}

.pkp_block {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  margin-bottom: 22px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  overflow: hidden;
}

.pkp_block .title {
  background: linear-gradient(180deg, #f3f4f6, #e9ecef);
  color: #2c3e50;
  font-family: 'Merriweather', Georgia, serif;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  padding: 12px 16px;
  margin: 0;
  border-bottom: 2px solid #b32834;
  text-align: center;
}

.pkp_block .content {
  padding: 14px 16px;
}

.pkp_block .content p,
.pkp_block .content div {
  margin-bottom: 10px;
  line-height: 1.5;
}

.pkp_block strong {
  color: #2c3e50;
}

/* ============================================================
   7. INSIGNIA DE ACCESO ABIERTO
   ============================================================ */

.pkp_block .content [style*='ACCESO ABIERTO'],
.pkp_block .open_access,
.pkp_block .content p:first-child:not(:has(strong)) {
  background: #d4edda;
  color: #155724;
  text-align: center;
  font-weight: 700;
  letter-spacing: 1.5px;
  padding: 8px 12px;
  border-radius: 4px;
  border: 1px solid #c3e6cb;
  margin-bottom: 14px;
  text-transform: uppercase;
  font-size: 13px;
}

/* ============================================================
   8. PORTADA == SECCION DESTACADO
   ============================================================ */

.heading,
h1.heading {
  font-family: 'Merriweather', Georgia, serif;
  font-size: 26px;
  color: #2c3e50;
  margin: 24px 0 18px;
  padding-bottom: 8px;
  border-bottom: 2px solid #e5e7eb;
  position: relative;
}

.heading::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: #b32834;
  position: absolute;
  bottom: -2px;
  left: 0;
}

/* ============================================================
   9. BUSCADOR
   ============================================================ */

.pkp_search {
  margin-bottom: 20px;
}

.pkp_search input[type='text'],
.pkp_search input[type='search'],
input[name='query'] {
  border: 1px solid #e5e7eb;
  border-radius: 4px 0 0 4px;
  padding: 8px 12px;
  font-size: 14px;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.04);
}

.pkp_search input[type='text']:focus,
.pkp_search input[type='search']:focus {
  border-color: #b32834;
  outline: none;
  box-shadow: 0 0 0 2px rgba(179, 40, 52, 0.15);
}

.pkp_search button,
.pkp_search input[type='submit'],
button[type='submit'] {
  background: #2c3e50;
  color: #fff;
  border: 1px solid #2c3e50;
  padding: 8px 18px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 0 4px 4px 0;
  cursor: pointer;
  transition: background 0.2s ease;
}

.pkp_search button:hover,
.pkp_search input[type='submit']:hover {
  background: #b32834;
  border-color: #b32834;
}

/* ============================================================
   10. PAGINACION
   ============================================================ */

.cmp_pagination,
.pagination {
  text-align: center;
  margin: 30px 0 10px;
}

.cmp_pagination a,
.pagination a,
.pagination li a {
  display: inline-block;
  padding: 8px 14px;
  margin: 0 3px;
  border: 1px solid #e5e7eb;
  border-radius: 4px;
  color: #2c3e50;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.2s ease;
}

.cmp_pagination a:hover,
.pagination a:hover,
.pagination li.active a {
  background: #b32834;
  color: #fff;
  border-color: #b32834;
}

/* ============================================================
   11. PIE DE PAGINA
   ============================================================ */

.pkp_structure_footer_wrapper {
  background: #2c3e50;
  color: #e5e7eb;
  margin-top: 50px;
  padding: 26px 0;
  font-size: 13px;
}

.pkp_structure_footer_wrapper a {
  color: #ffffff;
  text-decoration: underline;
}

.pkp_structure_footer_wrapper a:hover {
  color: #ffd5d8;
}

/* ============================================================
   12. ENLACES GENERALES
   ============================================================ */

a {
  color: #b32834;
  transition: color 0.2s ease;
}

a:hover,
a:focus {
  color: #8c1f29;
}

/* ============================================================
   13. RESPONSIVE == MOVILES Y TABLETAS
   ============================================================ */

@media (max-width: 768px) {

  .obj_monograph_summary {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-areas:
      'coverbox'
      'title'
      'authors'
      'pubdate'
      'doi'
      'keywords'
      'description';
    grid-template-rows: auto;
    justify-items: center;
    text-align: center;
    padding: 16px;
    column-gap: 0;
    row-gap: 10px;
  }

  .obj_monograph_summary .cover {
    width: 65%;
    max-width: 220px;
    margin: 0 auto;
  }

  .obj_monograph_summary .authors,
  .obj_monograph_summary .pub_date {
    text-align: center;
  }

  .obj_monograph_summary .doi,
  .obj_monograph_summary .keywords,
  .obj_monograph_summary .subjects {
    text-align: left;
  }

  .obj_monograph_summary .description {
    text-align: left;
    -webkit-line-clamp: 3;
  }

  .pkp_site_name .is_text {
    font-size: 22px;
  }

  .page_title {
    font-size: 24px;
  }

  .heading {
    font-size: 22px;
  }
}

@media (max-width: 480px) {

  .obj_monograph_summary .cover {
    width: 75%;
    max-width: 220px;
  }

  .obj_monograph_summary .title {
    font-size: 18px;
  }

  .pkp_navigation_primary > li > a {
    padding: 8px 10px;
    font-size: 13px;
  }
}

/* ============================================================
   14. AJUSTES FINALES PARA LA RETICULA DE BOOTSTRAP 3
   ============================================================ */

.pkp_structure_main {
  padding: 16px 24px 30px;
}

.row.has-sidebar .col-md-8 {
  padding-right: 28px;
}

@media (max-width: 991px) {
  .row.has-sidebar .col-md-8 {
    padding-right: 15px;
  }
}

/* ============================================================
   15. OCULTAR BRANDING PLATFORM & WORKFLOW BY OMP/PKP
   ============================================================ */

.pkp_brand_footer,
#pkpBrandFooter,
.pkp_structure_footer .pkp_brand_footer,
.pkp_structure_footer_wrapper .pkp_brand_footer,
.pkp_structure_footer img[alt*='OMP'],
.pkp_structure_footer img[alt*='PKP'],
.pkp_structure_footer a[href*='pkp.sfu.ca'],
.pkp_structure_footer a[href*='openmonographpress'],
.pkp_structure_footer_wrapper a[href*='pkp.sfu.ca'],
.pkp_structure_footer_wrapper a[href*='openmonographpress'],
.pkp_structure_footer_wrapper img[src*='pkp'],
.pkp_structure_footer_wrapper img[src*='omp'],
footer .pkp_brand_footer,
footer img[alt*='PKP'],
footer img[alt*='OMP'],
footer a[href*='pkp.sfu.ca'] {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  height: 0 !important;
  width: 0 !important;
  overflow: hidden !important;
  position: absolute !important;
  left: -9999px !important;
}

.pkp_structure_footer_wrapper .pkp_brand_footer *,
.pkp_structure_footer_wrapper [class*='brand'],
.pkp_structure_footer_wrapper [id*='brand'] {
  display: none !important;
}

/* ============================================================
   EDITORIAL DIDAXIS == PAGINA DETALLE DEL LIBRO
   ============================================================ */

.obj_monograph_full .label,
.obj_monograph_full .authors .label,
.obj_monograph_full .author_bios .label,
.obj_monograph_full .sub_item .label,
.obj_monograph_full .item_author_bios .label {
  display: inline !important;
  padding: 0 !important;
  font-size: inherit !important;
  font-weight: inherit !important;
  line-height: inherit !important;
  color: inherit !important;
  text-align: inherit !important;
  white-space: normal !important;
  vertical-align: inherit !important;
  border-radius: 0 !important;
  background: transparent !important;
  text-shadow: none !important;
  box-shadow: none !important;
  border: none !important;
}

.obj_monograph_full .author_bios .sub_item .label,
.obj_monograph_full .item_author_bios .sub_item .label {
  display: inline-block !important;
  background: #e9ecef !important;
  color: #2c3e50 !important;
  padding: 8px 14px !important;
  border-radius: 4px !important;
  font-weight: 700 !important;
  font-size: 14px !important;
  font-family: 'Merriweather', Georgia, serif !important;
  margin-bottom: 8px !important;
  line-height: 1.4 !important;
}

.obj_monograph_full {
  display: grid !important;
  grid-template-columns: 220px 1fr !important;
  grid-template-areas:
    'cover     title'
    'cover     authors'
    'cover     authors'
    'publicado authors'
    'coleccion .       '
    'formatos  formatos'
    'doi       doi'
    'citation  citation'
    'palabras  palabras'
    'resumen   resumen'
    'contenido contenido'
    'estadisticas estadisticas'
    'derechos  derechos'
    'licencia  licencia'
    'biografias  biografias'
    'referencias referencias' !important;
  column-gap: 28px !important;
  row-gap: 12px !important;
  padding: 30px 32px !important;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid #e9ecef;
  margin-bottom: 30px;
  align-items: start;
}

.obj_monograph_full > .row,
.obj_monograph_full .row,
.obj_monograph_full .main_entry,
.obj_monograph_full .entry_details,
.obj_monograph_full > .row > .col-md-8,
.obj_monograph_full > .row > .col-md-4,
.obj_monograph_full > .row > .col-sm-8,
.obj_monograph_full > .row > .col-sm-4 {
  display: contents !important;
  margin: 0 !important;
  padding: 0 !important;
  width: auto !important;
  max-width: none !important;
  flex: unset !important;
  float: none !important;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
}

.obj_monograph_full .item.galleys,
.obj_monograph_full .item.publication_format,
.obj_monograph_full .item.publication_formats,
.obj_monograph_full [class*='galley'],
.obj_monograph_full [class*='publication_format'],
.obj_monograph_full .pub_format,
.obj_monograph_full .pub_format_file,
.obj_monograph_full .obj_galley_link,
.obj_monograph_full .item_pub_format,
.obj_monograph_full .pub-format-link,
.obj_monograph_full .publication_formats,
.obj_monograph_full .item.files,
.obj_monograph_full .item_files {
  grid-area: formatos !important;
}

.obj_monograph_full .item.galleys,
.obj_monograph_full .item_galleys,
.obj_monograph_full .galleys,
.obj_monograph_full .galleys_links,
.obj_monograph_full .item.publication_format,
.obj_monograph_full .item_publication_format,
.obj_monograph_full .publication_format,
.obj_monograph_full .pub-formats,
.obj_monograph_full .formats,
.obj_monograph_full [class*='publication_format'],
.obj_monograph_full [class*='publication-format'],
.obj_monograph_full .item:has(> ul a[href*='.pdf']),
.obj_monograph_full .item:has(> ul a[href*='.html']),
.obj_monograph_full .item:has(> ul a[href*='infograf']),
.obj_monograph_full .item:has(> ul a[href*='.epub']),
.obj_monograph_full > div:has(> ul a[href*='.pdf']),
.obj_monograph_full > div:has(> ul a[href*='.html']),
.obj_monograph_full > div:has(> ul a[href*='infograf']),
.obj_monograph_full div:has(> ul > li > a[href*='.pdf']),
.obj_monograph_full div:has(> ul > li > a[href*='.html']),
.obj_monograph_full div:has(> ul > li > a[href*='infograf']) {
  margin: 14px 0 0 0 !important;
  padding: 20px 24px !important;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
}

.obj_monograph_full .item.galleys > h2,
.obj_monograph_full .item.galleys > h3,
.obj_monograph_full .galleys > h2,
.obj_monograph_full .galleys > h3,
.obj_monograph_full .publication_format > h2,
.obj_monograph_full .publication_format > h3,
.obj_monograph_full [class*='publication_format'] > h2,
.obj_monograph_full [class*='publication_format'] > h3 {
  font-family: 'Merriweather', Georgia, serif !important;
  font-size: 14px !important;
  color: #2c3e50 !important;
  margin: 0 0 14px 0 !important;
  padding: 0 0 10px 0 !important;
  border-bottom: 2px solid #b32834;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 700;
}

.obj_monograph_full .item_files ul,
.obj_monograph_full .item.files ul,
.obj_monograph_full .publication_formats ul,
.obj_monograph_full .galleys ul,
.obj_monograph_full .item.galleys ul {
  list-style: none !important;
  padding: 0 !important;
  margin: 14px 0 0 0 !important;
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: wrap !important;
  gap: 10px !important;
}

.obj_monograph_full .item_files li,
.obj_monograph_full .item.files li,
.obj_monograph_full .publication_formats li,
.obj_monograph_full .galleys li,
.obj_monograph_full .item.galleys li {
  font-size: 0 !important;
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
  display: flex !important;
  color: transparent !important;
}

.obj_monograph_full .item_files li::before,
.obj_monograph_full .item.files li::before,
.obj_monograph_full .publication_formats li::before,
.obj_monograph_full .galleys li::before,
.obj_monograph_full .item.galleys li::before,
.obj_monograph_full .item_files li::marker,
.obj_monograph_full .item.files li::marker {
  display: none !important;
  content: '' !important;
}

.obj_monograph_full .item_files a,
.obj_monograph_full .item.files a,
.obj_monograph_full .publication_formats a,
.obj_monograph_full .galleys a,
.obj_monograph_full .item.galleys a {
  font-size: 13px !important;
  display: inline-flex !important;
  justify-content: center !important;
  align-items: center !important;
  width: auto !important;
  box-sizing: border-box !important;
  padding: 12px 18px !important;
  background: linear-gradient(135deg, #b32834 0%, #8c1f29 100%) !important;
  color: #ffffff !important;
  border: none !important;
  border-radius: 6px !important;
  text-decoration: none !important;
  font-weight: 700 !important;
  letter-spacing: 0.8px !important;
  text-transform: uppercase !important;
  transition: all 0.25s ease !important;
  box-shadow: 0 2px 8px rgba(179, 40, 52, 0.2) !important;
  white-space: nowrap !important;
  line-height: 1.2 !important;
}

.obj_monograph_full .item_files a::before,
.obj_monograph_full .item.files a::before,
.obj_monograph_full .publication_formats a::before,
.obj_monograph_full .galleys a::before,
.obj_monograph_full .item.galleys a::before {
  content: '📥';
  font-size: 16px;
  line-height: 1;
  margin-right: 8px;
}

.obj_monograph_full a[href*='.pdf']::before {
  content: '📕' !important;
}

.obj_monograph_full a[href*='.html']::before,
.obj_monograph_full a[href*='HTML']::before {
  content: '🌐' !important;
}

.obj_monograph_full a[href*='infograf']::before,
.obj_monograph_full a[href*='INFOGRAF']::before {
  content: '📊' !important;
}

.obj_monograph_full a[href*='.epub']::before {
  content: '📗' !important;
}

.obj_monograph_full .item_files a:hover,
.obj_monograph_full .item.files a:hover,
.obj_monograph_full .publication_formats a:hover,
.obj_monograph_full .galleys a:hover,
.obj_monograph_full .item.galleys a:hover {
  background: linear-gradient(135deg, #8c1f29 0%, #6e1820 100%) !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(179, 40, 52, 0.35) !important;
  color: #ffffff !important;
}

.obj_monograph_full .cover,
.obj_monograph_full .item_cover,
.obj_monograph_full .item.cover_image,
.obj_monograph_full .item_cover_image {
  grid-area: cover !important;
  margin: 0 !important;
  text-align: center;
  padding: 0;
  align-self: start;
}

.obj_monograph_full .cover img,
.obj_monograph_full .item_cover img,
.obj_monograph_full .item.cover_image img {
  width: 100% !important;
  max-width: 220px !important;
  height: auto !important;
  border-radius: 10px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18);
  display: inline-block;
  transition: transform 0.3s ease;
}

.obj_monograph_full .cover img:hover {
  transform: scale(1.03);
}

.obj_monograph_full .pub_date,
.obj_monograph_full .item.date_published,
.obj_monograph_full .item_date_published,
.obj_monograph_full .published_date {
  grid-area: publicado !important;
  margin: 0 !important;
  padding: 12px 18px !important;
  background: #f5f6f8;
  border-left: 4px solid #b32834;
  border-radius: 4px;
  font-size: 14px;
  color: #2c3e50;
  align-self: start;
}

.obj_monograph_full .pub_date .label,
.obj_monograph_full .item.date_published .label {
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.8px !important;
  font-size: 12px !important;
  color: #b32834 !important;
  margin-right: 6px !important;
  display: inline !important;
}

.obj_monograph_full .item.series,
.obj_monograph_full .item_series,
.obj_monograph_full .series {
  grid-area: coleccion !important;
  margin: 0 !important;
  padding: 14px 18px !important;
  background: linear-gradient(135deg, #b32834, #8c1f29);
  color: #ffffff !important;
  border-radius: 6px;
  text-align: center;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  font-size: 13px;
  box-shadow: 0 4px 12px rgba(179, 40, 52, 0.25);
  align-self: start;
}

.obj_monograph_full .item.series a,
.obj_monograph_full .item_series a,
.obj_monograph_full .series a {
  color: #ffffff !important;
  text-decoration: none;
}

.obj_monograph_full .item.series .label,
.obj_monograph_full .item_series .label {
  color: #ffffff !important;
  margin-right: 6px !important;
  display: inline !important;
}

.obj_monograph_full .item.copyright_holder,
.obj_monograph_full .item_copyright_holder,
.obj_monograph_full .copyright_holder,
.obj_monograph_full .item.copyright {
  grid-area: derechos !important;
  margin: 0 !important;
  padding: 18px 24px !important;
  background: linear-gradient(135deg, #fafafa 0%, #f0f0f0 100%);
  border: 1px solid #d6d8db;
  border-left: 4px solid #2c3e50;
  border-radius: 8px;
  font-size: 13px;
  line-height: 1.6;
  color: #4a4a4a;
  align-self: start;
}

.obj_monograph_full .item.copyright_holder .label,
.obj_monograph_full .item_copyright_holder .label,
.obj_monograph_full .copyright_holder .label {
  display: inline-block !important;
  font-weight: 700 !important;
  font-size: 12px !important;
  letter-spacing: 1.2px !important;
  text-transform: uppercase !important;
  color: #2c3e50 !important;
  margin-right: 8px !important;
  padding: 4px 10px !important;
  background: #ffffff !important;
  border-radius: 4px !important;
  border: 1px solid #d6d8db !important;
}

.obj_monograph_full > h1.title,
.obj_monograph_full .main_entry > h1.title,
.obj_monograph_full h1.title {
  grid-area: title !important;
  margin: 0 0 4px 0 !important;
  padding: 0 0 14px 0 !important;
  border-bottom: 3px solid #b32834;
  font-family: 'Merriweather', Georgia, serif !important;
  font-size: 24px !important;
  line-height: 1.28 !important;
  color: #2c3e50 !important;
  font-weight: 700 !important;
  text-align: left;
  background: transparent !important;
  box-shadow: none !important;
  align-self: start;
}

.obj_monograph_full > h1.title::after {
  display: none !important;
}

.obj_monograph_full > .subtitle,
.obj_monograph_full .subtitle {
  grid-column: 2 !important;
  order: 2 !important;
  align-self: end;
  font-family: 'Merriweather', Georgia, serif;
  font-size: 16px;
  font-style: italic;
  color: #5a6c7d;
  margin: 0 !important;
  padding: 4px 0 0 0 !important;
}

.obj_monograph_full .item.authors,
.obj_monograph_full .item_authors,
.obj_monograph_full > .authors {
  grid-area: authors !important;
  margin: 0 !important;
  padding: 0 !important;
  font-size: 14px;
  line-height: 1.6;
  color: #2c3e50;
  align-self: start;
}

.obj_monograph_full .item.authors h2,
.obj_monograph_full .item_authors h2 {
  font-size: 11px !important;
  font-weight: 700 !important;
  letter-spacing: 1.5px !important;
  text-transform: uppercase !important;
  color: #6c757d !important;
  margin: 0 0 6px 0 !important;
  padding: 0 !important;
  position: static !important;
  width: auto !important;
  height: auto !important;
  clip: auto !important;
  font-family: 'Open Sans', sans-serif !important;
}

.obj_monograph_full .item.doi,
.obj_monograph_full .item_doi,
.obj_monograph_full .doi {
  grid-area: doi !important;
  margin: 14px 0 0 0 !important;
  padding: 16px 22px !important;
  background: linear-gradient(135deg, #fff5f6 0%, #fde8ea 100%);
  border: 2px solid #b32834;
  border-radius: 8px;
  font-size: 14px;
  font-family: 'Consolas', 'Monaco', monospace;
  word-break: break-all;
  text-align: center;
  box-shadow: 0 2px 8px rgba(179, 40, 52, 0.08);
}

.obj_monograph_full .item.doi a,
.obj_monograph_full .item_doi a,
.obj_monograph_full .doi a {
  color: #b32834 !important;
  text-decoration: none;
  font-weight: 600;
}

.obj_monograph_full .item.doi a:hover {
  text-decoration: underline;
}

.obj_monograph_full .item.doi .label,
.obj_monograph_full .item_doi .label,
.obj_monograph_full .doi .label {
  font-family: 'Open Sans', sans-serif !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  font-size: 11px !important;
  letter-spacing: 1px !important;
  color: #b32834 !important;
  margin-right: 6px !important;
  display: inline !important;
}

.obj_monograph_full .item.keywords,
.obj_monograph_full .item_keywords,
.obj_monograph_full .keywords,
.obj_monograph_full .item.subjects,
.obj_monograph_full .item_subjects {
  grid-area: palabras !important;
  margin: 0 !important;
  padding: 18px 24px !important;
  background: linear-gradient(135deg, #f8f9fa 0%, #eef0f3 100%);
  border-radius: 8px;
  border-left: 4px solid #2c3e50;
  font-size: 14px;
  line-height: 1.8;
}

.obj_monograph_full .item.keywords .label,
.obj_monograph_full .item_keywords .label,
.obj_monograph_full .keywords .label {
  display: inline-block !important;
  font-weight: 700 !important;
  font-size: 12px !important;
  letter-spacing: 1.5px !important;
  text-transform: uppercase !important;
  color: #b32834 !important;
  margin: 0 10px 8px 0 !important;
  padding: 4px 10px !important;
  background: #ffffff !important;
  border-radius: 4px !important;
  border: 1px solid #b32834 !important;
}

.obj_monograph_full .item.citation,
.obj_monograph_full .item_citation,
.obj_monograph_full .citation_display,
.obj_monograph_full .item.cite,
.obj_monograph_full .cite_block,
.obj_monograph_full .howToCite,
.obj_monograph_full .pkpHowToCite,
.obj_monograph_full .item.howToCite,
.obj_monograph_full [class*='citation'],
.obj_monograph_full [class*='cite_'],
.obj_monograph_full [class*='howToCite'],
.obj_monograph_full [class*='how_to_cite'],
.obj_monograph_full [class*='cite-block'],
.obj_monograph_full div:has(> button[class*='cite']),
.obj_monograph_full div:has(> .cslDemoSet),
.obj_monograph_full div:has(.btn-cite),
.obj_monograph_full div:has(> div[class*='citation_formats']),
.obj_monograph_full *:has(> button:not(.dropdown-toggle)) > div[class*='cite'],
.obj_monograph_full > div:has(> h2:not(.pkp_screen_reader)),
.obj_monograph_full .item:has(> button),
.obj_monograph_full .panel.how-to-cite,
.obj_monograph_full .panel-default.how-to-cite,
.obj_monograph_full div.panel.panel-default.how-to-cite {
  grid-area: citation !important;
  margin: 35px 0 0 0 !important;
  padding: 22px 26px !important;
  background: #f8f9fa !important;
  border: 1px solid #dee2e6 !important;
  border-left: 5px solid #b32834 !important;
  border-radius: 8px !important;
  font-size: 14px !important;
  line-height: 1.7 !important;
  width: 100% !important;
  max-width: 100% !important;
  flex: 0 0 100% !important;
  clear: both !important;
  display: block !important;
  box-sizing: border-box !important;
  box-shadow: none !important;
  overflow: visible !important;
}

.obj_monograph_full .how-to-cite .panel-heading {
  background: transparent !important;
  border: none !important;
  border-bottom: 1px solid #dee2e6 !important;
  padding: 0 0 16px 0 !important;
  margin: 0 0 16px 0 !important;
  border-radius: 0 !important;
}

.obj_monograph_full .item.citation h2,
.obj_monograph_full .citation_display h2,
.obj_monograph_full .item_citation h2,
.obj_monograph_full .how-to-cite .panel-heading,
.obj_monograph_full .how-to-cite .panel-heading h2,
.obj_monograph_full .how-to-cite .panel-heading h3,
.obj_monograph_full .how-to-cite .panel-heading > h2,
.obj_monograph_full .how-to-cite .panel-heading > h3 {
  font-family: 'Merriweather', Georgia, serif !important;
  font-size: 18px !important;
  color: #2c3e50 !important;
  font-weight: 700 !important;
  margin: 0 0 12px 0 !important;
  padding: 0 0 8px 0 !important;
  border-bottom: 1px solid #dee2e6 !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
}

.obj_monograph_full .how-to-cite .panel-body {
  padding: 0 !important;
  background: transparent !important;
}

.obj_monograph_full .how-to-cite #citationOutput,
.obj_monograph_full .how-to-cite .csl-bib-body {
  margin: 0 0 14px 0 !important;
  padding: 0 !important;
  background: transparent !important;
  border: none !important;
  font-size: 14px !important;
  line-height: 1.7 !important;
  color: #2b2b2b !important;
}

.obj_monograph_full .how-to-cite .csl-entry {
  margin: 0 !important;
}

.obj_monograph_full .how-to-cite .csl-entry a {
  color: #b32834 !important;
  text-decoration: none !important;
  word-break: break-all !important;
}

.obj_monograph_full .how-to-cite .csl-entry a:hover {
  text-decoration: underline !important;
}

.obj_monograph_full .how-to-cite .btn-group {
  display: inline-block !important;
  margin: 8px 8px 0 0 !important;
}

.obj_monograph_full .how-to-cite .btn-group > .btn,
.obj_monograph_full .how-to-cite .btn-group .dropdown-toggle {
  padding: 8px 16px !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  border-radius: 4px !important;
}

.obj_monograph_full .item.license,
.obj_monograph_full .item_license,
.obj_monograph_full .license {
  grid-area: licencia !important;
  margin: 0 !important;
  padding: 16px 22px !important;
  background: #fafafa;
  border: 1px solid #e5e7eb;
  border-radius: 6px;
  text-align: center;
  font-size: 13px;
}

.obj_monograph_full .item.license img,
.obj_monograph_full .item_license img,
.obj_monograph_full .license img {
  max-width: 110px !important;
  margin: 0 0 8px 0 !important;
  display: block;
  margin-left: auto !important;
  margin-right: auto !important;
}

.obj_monograph_full .item.abstract,
.obj_monograph_full .item_abstract,
.obj_monograph_full .abstract,
.obj_monograph_full .item.summary {
  grid-area: resumen !important;
  margin: 18px 0 0 0 !important;
  padding: 22px 26px !important;
  background: #fafbfc;
  border-left: 5px solid #b32834;
  border-radius: 6px;
  font-size: 15px;
  line-height: 1.75;
  color: #2b2b2b;
}

.obj_monograph_full .item.abstract h2,
.obj_monograph_full .item_abstract h2,
.obj_monograph_full .abstract h2 {
  font-family: 'Merriweather', Georgia, serif !important;
  font-size: 22px !important;
  color: #2c3e50 !important;
  margin: 0 0 14px 0 !important;
  padding: 0 0 10px 0 !important;
  border-bottom: 2px solid #e5e7eb;
}

.obj_monograph_full .item.chapters,
.obj_monograph_full .item_chapters,
.obj_monograph_full .chapters {
  grid-area: contenido !important;
  margin: 18px 0 0 0 !important;
  padding: 0 !important;
}

.obj_monograph_full .item.chapters h2,
.obj_monograph_full .chapters h2 {
  font-family: 'Merriweather', Georgia, serif !important;
  font-size: 24px !important;
  color: #2c3e50 !important;
  margin: 0 0 16px 0 !important;
  padding: 0 0 10px 0 !important;
  border-bottom: 2px solid #b32834;
}

.obj_monograph_full .item.stats,
.obj_monograph_full .item_stats,
.obj_monograph_full .pkpUsageStats,
.obj_monograph_full .usage_stats,
.obj_monograph_full .pkp_block.usageStats,
.obj_monograph_full .pkp_helpers_progress,
.obj_monograph_full [class*='usageStats'],
.obj_monograph_full [class*='usage_stats'],
.obj_monograph_full [class*='downloads'],
.obj_monograph_full [class*='estadistic'] {
  grid-area: estadisticas !important;
  margin: 18px 0 0 0 !important;
  padding: 26px 30px !important;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  min-height: 480px !important;
  width: 100% !important;
  max-width: 100% !important;
}

.obj_monograph_full .item.stats h2,
.obj_monograph_full .pkpUsageStats h2,
.obj_monograph_full .usage_stats h2 {
  font-family: 'Merriweather', Georgia, serif !important;
  font-size: 22px !important;
  color: #2c3e50 !important;
  margin: 0 0 18px 0 !important;
  padding: 0 0 12px 0 !important;
  border-bottom: 2px solid #b32834 !important;
}

.obj_monograph_full .item.stats canvas,
.obj_monograph_full .pkpUsageStats canvas,
.obj_monograph_full .usage_stats canvas,
.obj_monograph_full .pkp_block.usageStats canvas,
.obj_monograph_full canvas[id*='usageStats'],
.obj_monograph_full canvas[class*='usage'] {
  width: 100% !important;
  max-width: 100% !important;
  height: 420px !important;
  min-height: 380px !important;
  display: block;
}

.obj_monograph_full .item.stats > div,
.obj_monograph_full .pkpUsageStats > div,
.obj_monograph_full .usage_stats > div {
  width: 100% !important;
  max-width: 100% !important;
}

.obj_monograph_full .item.author_bios,
.obj_monograph_full .item_author_bios,
.obj_monograph_full .author_bios {
  grid-area: biografias !important;
  margin: 18px 0 0 0 !important;
  padding: 0 !important;
}

.obj_monograph_full .item.author_bios h2,
.obj_monograph_full .item_author_bios h2,
.obj_monograph_full .author_bios h2 {
  font-family: 'Merriweather', Georgia, serif !important;
  font-size: 24px !important;
  color: #2c3e50 !important;
  margin: 0 0 16px 0 !important;
  padding: 0 0 10px 0 !important;
  border-bottom: 2px solid #b32834;
}

.obj_monograph_full .item.references,
.obj_monograph_full .item_references,
.obj_monograph_full .references {
  grid-area: referencias !important;
  margin: 18px 0 0 0 !important;
  padding: 22px 26px !important;
  background: #fafafa;
  border: 1px solid #e5e7eb;
  border-radius: 6px;
  font-size: 14px;
  line-height: 1.6;
}

.obj_monograph_full .item.references h2,
.obj_monograph_full .references h2 {
  font-family: 'Merriweather', Georgia, serif !important;
  font-size: 20px !important;
  color: #2c3e50 !important;
  margin: 0 0 14px 0 !important;
  padding: 0 0 8px 0 !important;
  border-bottom: 1px solid #e5e7eb;
}

.obj_monograph_full .item.references img[src*='cover'],
.obj_monograph_full .item.references .cover,
.obj_monograph_full .references .cover {
  display: none !important;
}

@media (max-width: 768px) {
  .obj_monograph_full {
    grid-template-columns: 1fr !important;
    column-gap: 0 !important;
    row-gap: 14px !important;
    padding: 20px 18px !important;
  }
  .obj_monograph_full .cover img,
  .obj_monograph_full .item_cover img {
    max-width: 240px !important;
  }
  .obj_monograph_full > h1.title,
  .obj_monograph_full h1.title {
    font-size: 22px !important;
  }
  .obj_monograph_full .item.stats canvas,
  .obj_monograph_full .pkpUsageStats canvas,
  .obj_monograph_full .usage_stats canvas {
    height: 280px !important;
    min-height: 240px !important;
  }
}

.obj_monograph_full .item.chapters > h2 {
  font-family: 'Merriweather', Georgia, serif !important;
  font-size: 24px !important;
  color: #2c3e50 !important;
  margin: 0 0 18px 0 !important;
  padding: 0 0 12px 0 !important;
  border-bottom: 2px solid #b32834 !important;
  position: static !important;
  width: auto !important;
  height: auto !important;
  clip: auto !important;
  overflow: visible !important;
  font-weight: 700 !important;
}

.obj_monograph_full .item.chapters > h2.pkp_screen_reader {
  position: static !important;
  width: auto !important;
  height: auto !important;
  clip: auto !important;
  overflow: visible !important;
}

.obj_monograph_full .item.chapters > ul {
  list-style: none !important;
  list-style-type: none !important;
  padding: 0 !important;
  margin: 0 !important;
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 16px !important;
}

.obj_monograph_full .item.chapters > ul > li {
  list-style: none !important;
  list-style-type: none !important;
  padding: 22px 26px !important;
  margin: 0 !important;
  background: #ffffff !important;
  border: 1px solid #e5e7eb !important;
  border-left: 4px solid #b32834 !important;
  border-radius: 8px !important;
  transition: all 0.25s ease !important;
  display: block !important;
  position: relative;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.obj_monograph_full .item.chapters > ul > li:hover {
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08) !important;
  transform: translateY(-2px);
  border-left-color: #8c1f29 !important;
}

.obj_monograph_full .item.chapters > ul > li::marker,
.obj_monograph_full .item.chapters > ul > li::before {
  content: '' !important;
  display: none !important;
}

.obj_monograph_full .item.chapters > ul {
  counter-reset: chapter-counter;
}

.obj_monograph_full .item.chapters > ul > li {
  counter-increment: chapter-counter;
}

.obj_monograph_full .item.chapters > ul > li::after {
  content: 'Capitulo ' counter(chapter-counter);
  position: absolute;
  top: 14px;
  right: 18px;
  font-family: 'Merriweather', Georgia, serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #b32834;
  background: #fff5f6;
  padding: 4px 10px;
  border-radius: 4px;
  border: 1px solid #f0d0d4;
  display: inline-block !important;
}

.obj_monograph_full .item.chapters > ul > li > a {
  display: block !important;
  text-decoration: none !important;
  margin: 0 80px 8px 0 !important;
  padding: 0 !important;
}

.obj_monograph_full .item.chapters > ul > li > a > .title,
.obj_monograph_full .item.chapters > ul > li > a > div.title {
  font-family: 'Merriweather', Georgia, serif !important;
  font-size: 17px !important;
  font-weight: 700 !important;
  color: #b32834 !important;
  line-height: 1.35 !important;
  margin: 0 !important;
  padding: 0 !important;
  transition: color 0.2s ease;
}

.obj_monograph_full .item.chapters > ul > li > a:hover > .title,
.obj_monograph_full .item.chapters > ul > li > a:hover > div.title {
  color: #8c1f29 !important;
  text-decoration: underline !important;
}

.obj_monograph_full .item.chapters > ul > li > .authors,
.obj_monograph_full .item.chapters > ul > li .authors {
  font-size: 13px !important;
  color: #2c3e50 !important;
  font-style: italic !important;
  margin: 8px 0 12px 0 !important;
  padding: 0 !important;
  font-weight: 500;
  line-height: 1.55;
  grid-area: auto !important;
  background: transparent !important;
  border: none !important;
}

.obj_monograph_full .item.chapters > ul > li > .doi,
.obj_monograph_full .item.chapters > ul > li .doi {
  display: inline-block !important;
  font-family: 'Consolas', 'Monaco', monospace !important;
  font-size: 12px !important;
  background: #fff5f6 !important;
  border: 1.5px solid #b32834 !important;
  border-left: 1.5px solid #b32834 !important;
  border-radius: 4px !important;
  padding: 7px 14px !important;
  margin: 4px 0 !important;
  word-break: break-all;
  color: #2c3e50 !important;
  line-height: 1.4 !important;
  text-align: left !important;
  grid-area: auto !important;
  width: auto !important;
  max-width: 100% !important;
}

.obj_monograph_full .item.chapters > ul > li > .doi a,
.obj_monograph_full .item.chapters > ul > li .doi a {
  color: #b32834 !important;
  text-decoration: none !important;
  font-weight: 600;
}

.obj_monograph_full .item.chapters > ul > li > .doi a:hover {
  text-decoration: underline !important;
}

.obj_monograph_full .item.chapters > ul > li > .files,
.obj_monograph_full .item.chapters > ul > li .files {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 8px !important;
  margin: 14px 0 0 0 !important;
  padding: 0 !important;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  grid-area: auto !important;
  align-items: center;
}

.obj_monograph_full .item.chapters .files [class*='pub_format_'] {
  display: contents !important;
  background: transparent !important;
  border: none !important;
  padding: 0 !important;
  margin: 0 !important;
  box-shadow: none !important;
}

.obj_monograph_full .item.chapters .files [class*='pub_format_'] > .label {
  display: none !important;
}

.obj_monograph_full .item.chapters .files [class*='pub_format_'] > .value {
  display: inline-flex !important;
  flex-wrap: wrap;
  gap: 8px;
  background: transparent !important;
  border: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

.obj_monograph_full .item.chapters .files .label,
.obj_monograph_full .item.chapters .files > span.label,
.obj_monograph_full .item.chapters .files li > span.label {
  display: none !important;
}

.obj_monograph_full .item.chapters > ul > li > .files a,
.obj_monograph_full .item.chapters > ul > li .files a,
.obj_monograph_full .item.chapters .files a {
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
  padding: 7px 14px !important;
  background: #2c3e50 !important;
  color: #ffffff !important;
  border: none !important;
  border-radius: 4px !important;
  text-decoration: none !important;
  font-size: 12px !important;
  font-weight: 600 !important;
  letter-spacing: 0.5px !important;
  text-transform: uppercase !important;
  transition: all 0.2s ease !important;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1) !important;
  white-space: nowrap !important;
  line-height: 1.2 !important;
}

.obj_monograph_full .item.chapters .files a::before {
  content: '📥';
  font-size: 13px;
}

.obj_monograph_full .item.chapters .files a[href*='.pdf']::before,
.obj_monograph_full .item.chapters .files a[href*='PDF']::before {
  content: '📕' !important;
}

.obj_monograph_full .item.chapters .files a[href*='.html']::before,
.obj_monograph_full .item.chapters .files a[href*='HTML']::before {
  content: '🌐' !important;
}

.obj_monograph_full .item.chapters .files a:hover {
  background: #b32834 !important;
  transform: translateY(-1px) !important;
  box-shadow: 0 4px 10px rgba(179, 40, 52, 0.3) !important;
  color: #ffffff !important;
}

/* ============================================================
   CORRECCION DE BOTONES DE LIBRO PRINCIPAL IGUAL A CAPITULOS
   ============================================================ */

.obj_monograph_full .item.files [class*='pub_format_'] > .label,
.obj_monograph_full .item.publication_format [class*='pub_format_'] > .label,
.obj_monograph_full .publication_format [class*='pub_format_'] > .label {
  display: none !important;
}

.obj_monograph_full .item.files [class*='pub_format_'] > .value,
.obj_monograph_full .item.publication_format [class*='pub_format_'] > .value,
.obj_monograph_full .publication_format [class*='pub_format_'] > .value {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 8px !important;
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
}

.obj_monograph_full .item.files [class*='pub_format_'] .value .label,
.obj_monograph_full .item.files [class*='pub_format_'] .value span,
.obj_monograph_full .item.publication_format [class*='pub_format_'] .value .label,
.obj_monograph_full .item.publication_format [class*='pub_format_'] .value span,
.obj_monograph_full .publication_format [class*='pub_format_'] .value .label,
.obj_monograph_full .publication_format [class*='pub_format_'] .value span {
  display: inline-block !important;
  background: transparent !important;
  color: inherit !important;
  padding: 0 !important;
  border: none !important;
  font-weight: inherit !important;
  letter-spacing: inherit !important;
  font-size: inherit !important;
  text-transform: inherit !important;
  min-width: 0 !important;
  margin: 0 !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.obj_monograph_full .item.files [class*='pub_format_'] a,
.obj_monograph_full .item.publication_format [class*='pub_format_'] a,
.obj_monograph_full .publication_format [class*='pub_format_'] a {
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
  padding: 7px 14px !important;
  background: #2c3e50 !important;
  color: #ffffff !important;
  border: none !important;
  border-radius: 4px !important;
  text-decoration: none !important;
  font-size: 12px !important;
  font-weight: 600 !important;
  letter-spacing: 0.5px !important;
  text-transform: uppercase !important;
  transition: all 0.2s ease !important;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1) !important;
  white-space: nowrap !important;
  line-height: 1.2 !important;
}

.obj_monograph_full .item.files [class*='pub_format_'] a:hover,
.obj_monograph_full .item.publication_format [class*='pub_format_'] a:hover,
.obj_monograph_full .publication_format [class*='pub_format_'] a:hover {
  background: #b32834 !important;
  transform: translateY(-1px) !important;
  box-shadow: 0 4px 10px rgba(179, 40, 52, 0.3) !important;
  color: #ffffff !important;
}