
/* Libro item*/
.container_foto {
    background-color: rgba(57, 62, 93, 0.7);
    padding: 0;
    overflow: hidden;
    max-width: 350px;
    color: white;
  }
  @media (min-width: 992px) {
    .container_foto {
      max-height: 397px;
    }
  }
  
  .container_foto .price-hp {
    font-weight: bold;
  }
  
  .container_foto article {
    display: none;
    padding: 10%;
    position: absolute;
    bottom: 0;
    z-index: 1;
    transition: all 0.5s ease;
  }
  
  .container_foto h2 {
    color: #fff;
    font-weight: 800;
    font-size: 25px;
    border-bottom: #fff solid 1px;
    padding-bottom: 10px;
  }
  
  .container_foto h4 {
    font-weight: 300;
    color: #fff;
    font-size: 16px;
  }
  
  .container_foto img {
    min-height: 397px;
    max-width: 100%;
    top: 0;
    left: 0;
    opacity: 0.9;
    transition: all 0.5s ease;
  }
  
  .container_foto .author {
    color: white;
  }

  .container_foto a {
    text-decoration: none;
    font-weight: bold;
  }
  
  .container_foto a:hover {
    text-decoration: none;
    font-weight: bold;
  }
  
  .view_more {
    background-color: #343642;
    position: absolute;
    width: 100%;
    height: 40px;
    bottom: 0;
    z-index: 1;
    opacity: 0;
    transform: translate(0px, 70px);
    -webkit-transform: translate(0px, 70px);
    -moz-transform: translate(0px, 70px);
    -o-transform: translate(0px, 70px);
    -ms-transform: translate(0px, 70px);
    transition: all 0.2s ease-in-out;
  }
  
  .view_more span {
    font-size: 40px;
    color: #fff;
    position: relative;
    margin: 0 auto;
    width: 100%;
  }

  .text-center {
    text-align: center !important;
  }

  /*hovers*/
  .container_foto:hover {
    cursor: pointer;
  }
  
  .container_foto:hover img {
    opacity: 0.2 !important;
  }
  
  .container_foto:hover article {
    display: block;
    transform: translate(0px, -33px);
    -webkit-transform: translate(0px, -33px);
    -moz-transform: translate(0px, -33px);
    -o-transform: translate(0px, -33px);
    -ms-transform: translate(0px, -33px);
  }
  
  .container_foto:hover .ver_mas {
    transform: translate(0px, 0px);
    -webkit-transform: translate(0px, 0px);
    -moz-transform: translate(0px, 0px);
    -o-transform: translate(0px, 0px);
    -ms-transform: translate(0px, 0px);
    opacity: 1;
  }
  
  /*
  h1, h2, h3 {
    font-family: "Oswald";
  }
  */

  .book-img {
    padding: 11rem 0 5rem 0; /* Respeta el padding original */
    min-height: 100vh; /* Mantiene la altura mínima original */
    display: flex;
    align-items: center;
    justify-content: center;
    background: #F3F5F5; /* Mantén el fondo original */
  }
  
  /* Ajusta el tamaño de la imagen dentro del contenedor */
  .book-img img {
    width: 80%; /* Aumenta el tamaño de la imagen al 80% del ancho del contenedor */
    height: auto; /* Conserva la proporción de la imagen */
    max-height: 90vh; /* Limita la altura máxima de la imagen para no salir de la ventana */
    object-fit: contain; /* Evita que la imagen se deforme dentro del contenedor */
    display: block; /* Elimina cualquier espacio en línea alrededor de la imagen */
    margin: 0 auto; /* Centra la imagen dentro del contenedor */
  }




  
  #authors-list {
    -moz-columns: 150px 3;
    columns: 150px 3;
  }
  
  .book .authors .author:after {
    content: ",";
  }
  .book .authors .author:last-child:after {
    content: "";
  }

  /* Autor Page*/
  .section-author-intro{
    background:#FFF;
    min-height: 100vh;
  }
    .section-author-intro .container-fluid {
      padding: 0;
    }
    .author-info{
      padding:11rem 40px 0 40px;
      background:#FFF;
    }
    .author-img{
      /* padding:11rem 0 5rem 0; */
      display: flex;
      align-items: center;
      justify-content: center;
      background:#F3F5F5;
      min-height: 100vh;
    }
   
    
  .author-description a{
    color:#979797;
    text-decoration:none;
    position:relative;
    transition:all .3s ease;
  }

/* Book extract*/
  .book-extract {
    /*font-family: 'Graphik', sans-serif; */
    font-style: italic;
    font-size: 36px; 
    line-height: 1.5; 
    margin: 20px 0; 
    color: #999; 
}

.filter-select-sm {
  font-size: 0.8rem;
  height: calc(1.5em + 0.5rem + 2px);
  padding: 0.25rem 0.5rem;
}

/* Autores en Circe */

.author-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); /* Define el número de columnas */
  gap: 60px; /* Espacio entre los elementos */
}

.author-list .item {
  display: flex;
  flex-direction: column;
  align-items: center; /* Centra la imagen y el texto */
  text-align: center;
}

.author-list .item a{
  color: #00000066;
  text-decoration:none;
  line-height:2;
  font-size:16px;
  font-weight: 500;
}

.author-list .item a:hover {
  color: #000; 
}

.author-image {
  width: 75%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 50%;
  background-color: #efefef; 
  margin-bottom: 8px; 
}

.author-name a {
  line-height: 1.1 !important; 
  display: inline-block;
}