/* --- CABECERA FINAL: MODERNA Y POTENTE --- */

/* 1. EL CONTENEDOR (La franja de fondo) */
.site-header-image, .header-image, #masthead .header-image {
    background-image: none !important;
    /* Un gris un poco más claro que el menú para que se diferencie sutilmente */
    background-color: #222222 !important; 
    /* Le damos un poco más de aire (40px) para que el texto grande respire */
    padding-top: 40px !important;    
    padding-bottom: 40px !important; 
    height: auto !important;
    min-height: 0 !important;
    /* Opcional: Una línea fina abajo para separar del menú */
    border-bottom: 1px solid #333333 !important; 
}

/* 2. LIMPIEZA INTERNA (Igual que antes) */
.site-branding, .site-branding-wrapper {
    padding: 0 !important;
    margin: 0 auto !important;
    border: none !important;
    background: transparent !important;
    max-width: 100% !important;
}

/* 3. EL TÍTULO (Aquí está el cambio grande) */
.site-title a {
    color: #ffffff !important;      /* Blanco puro */
    font-size: 48px !important;     /* ¡Mucho más grande! (Antes era ~30px) */
    font-weight: 700 !important;    /* Más gordita (Bold) */
    text-transform: uppercase !important;
    letter-spacing: 2px !important; /* Separamos las letras para toque elegante */
    line-height: 1.1 !important;
}

/* 4. EL SUBTÍTULO (La descripción) */
.site-description {
    color: #aaaaaa !important;      /* Gris plata para que no compita con el título */
    font-size: 14px !important;     /* Tamaño legible */
    font-weight: 400 !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    margin-top: 10px !important;    /* Lo separamos un poco del título */
    opacity: 1 !important;
}

/* AJUSTE PARA MÓVIL (Para que no quede gigante en el teléfono) */
@media only screen and (max-width: 767px) {
    .site-title a { font-size: 32px !important; }
    .header-image { padding-top: 25px !important; padding-bottom: 25px !important; }
}

/* Ocultar bloque de noticias relacionadas */
.yarpp-related, 
.related-posts,
[class*="related-"] {
    display: none !important;
}