/* ================================================
   Sprint Judicial — Estilos personalizados
   ================================================ */

/* --------------------------------------------------
   Sombra de texto en cabeceras de posts y paginas
   Hace legible el texto blanco sobre imagenes claras
   -------------------------------------------------- */

/* Titulo principal del post */
.post-heading h1 {
    text-shadow:
        0 1px 4px rgba(0, 0, 0, 0.85),
        0 2px 12px rgba(0, 0, 0, 0.65);
}

/* Subtitulo del post */
.post-heading .subheading {
    text-shadow:
        0 1px 3px rgba(0, 0, 0, 0.85),
        0 2px 10px rgba(0, 0, 0, 0.6);
}

/* "Posteado por / fecha" */
.post-heading .meta,
.post-heading .meta a {
    text-shadow:
        0 1px 3px rgba(0, 0, 0, 0.85),
        0 2px 8px rgba(0, 0, 0, 0.6);
}

/* Tags en la cabecera del post */
.post-heading .tag {
    text-shadow:
        0 1px 2px rgba(0, 0, 0, 0.7);
}

/* --------------------------------------------------
   Cabecera principal del sitio (pagina de inicio)
   -------------------------------------------------- */

.site-heading h1 {
    text-shadow:
        0 1px 4px rgba(0, 0, 0, 0.85),
        0 2px 14px rgba(0, 0, 0, 0.65);
}

.site-heading .subheading {
    text-shadow:
        0 1px 3px rgba(0, 0, 0, 0.85),
        0 2px 10px rgba(0, 0, 0, 0.6);
}
