/**
 * Tamaño del logo en header — compartido index, detalle y demás páginas.
 * Sobrescribe img { max-width: 100% } de Bootstrap en el logo del sitio.
 */
.site-header .header-main .site-brand {
    flex-shrink: 0;
    max-width: 190px;
}

.site-header .header-main .site-brand a {
    display: inline-flex;
    align-items: center;
    line-height: 0;
}

.site-header .header-main .site-brand img.desktop-logo {
    width: 190px;
    max-width: 190px;
    height: auto;
}

.site-header .header-main .site-brand img.mobile-logo {
    width: 93px;
    max-width: 93px;
    height: auto;
}

.site-canvas .canvas-header .site-brand img {
    width: 127px;
    max-width: 127px;
    height: auto;
}

@media (max-width: 767px) {
    .site-header .header-main .site-brand {
        max-width: 120px;
    }

    .site-header .header-main .site-brand img.mobile-logo {
        width: 100px;
        max-width: 100px;
    }
}
