/*
Theme Name: Mi Tema
Theme URI: https://ejemplo.com/
Author: Tu Nombre
Author URI: https://ejemplo.com/
Description: Tema base personalizado para WordPress
Version: 1.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: mi-tema
*/

.navegacion{
    width: 100%;
    position: sticky;
    top:0;
    z-index: 2;
}

  .custom-logo {
    max-height: 40px;
    height: auto;
    width: auto;
    height:40px;
  }

.truncate-3-lines p{
    display: -webkit-box;
    -webkit-line-clamp: 3; /* Número de líneas que quieres mostrar */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.5em;       /* Altura de línea */
    min-height: calc(1.5em * 3); /* Altura mínima = 3 líneas */
}

.truncate-3-lines-title{
    display: -webkit-box;
    -webkit-line-clamp: 3; /* Número de líneas que quieres mostrar */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1em !important;       /* Altura de línea */
    min-height: calc(1em * 4); /* Altura mínima = 3 líneas */
}
.admin-bar .offcanvas{
    top:46px;
}

.cabecera{
    position: sticky;
    top: 72px;
    z-index: 2;
}

.navegacion{
    z-index: 3;
}

@media screen and (min-width: 782px) {
    .cabecera{
        top: 100px;
    }
    .admin-bar .offcanvas {
        top: 32px; /* altura del wpadminbar */
        max-height: calc(100% - 32px);
    }
    .admin-bar .navegacion{
        top:32px;
    }
}



.img-square-wrapper {
    aspect-ratio: 1 / 1;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.img-square {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    object-fit: cover;
}
