/*
Theme Name: papyriSJGSM
Theme URI: https://sjgsm.com/
Author: Jimmy
Description: Tema personalizado SJGSM basado en Papyrus 10.
Version: 6.00
Text Domain: papyrus-10
*/

/* =========================================================
   papyriSJGSM — v06.00 (DERIVADA DE v05.00 BASELINE)
   ---------------------------------------------------------
   Este archivo es la versión v06.00 del CSS.
   BASE: papyriSJGSM v02.1 (congelada).

   Regla de trabajo:
   - v02.1 no se modifica.
   - v05.00 queda congelada como baseline.
   - v06.00 es la evolución controlada vigente.
   - Cambios nuevos → v07, v08, ...

   Objetivo de v06.00:
   - Mantener íntegra la base visual y conductual congelada v04.6
   - Consolidar # con slug visual definitivo "ext"
   - Optimizar la hoja sin alterar tamaños, RRSS, parallax ni respiración
   - Unificar tokens CSS repetidos y notas internas
   - Corregir índices, referencias y cierre documental de versión

   ÍNDICE STYLE.CSS — papyriSJGSM v06.00
   ---------------------------------------------------------
   00) Fuentes (carga desde functions.php)
   01) Base Papyrus — html/body + fondo global
   02) Layout global / page wrapper
   03) Header
   04) Navegación principal
   04-B) Nav — Home icon (Ojo de Horus)
   05) Tipografía — posts y contenido
   06) Área de contenido / posts (layout)
   07) Comentarios
   08) Sidebar
   09) Footer
   10) Formularios (buscador + forms)
   11) Utilidades / alineaciones
   12) Fondos por página (referencia — gestionados en 16/19)
   13) Reservada / vacía
   14) Títulos de post — tablilla title_post.webp
   15) Sombra de widgets y contenido posts
   16) Video backgrounds — @ / $ / & / # (fondos fijos)
   17) Social icons — inline (centro posts)
   18) Hovers SJGSM — utilidades
   19) HOME — fondo visual (vídeo + fallback)
   50) CSS editorial S.J.G.S.M.
     50.01) Global / layout responsive
     50.02) Widget fecha + location weather
     50.03) Widget Meta — estilo S.J.G.S.M.
     50.04) Navegación Previous / Next — botones egipcios
     50.05) Tipografía global S.J.G.S.M. (Cinzel)
     50.06) Menú superior — S.J.G.S.M. @ $ & #
     50.07) Fix nav — centrado real (desktop + móvil)
     50.08) Nav — centrado eje real del post (móvil)
     50.09) RRSS — separación botones solo móvil
     50.10) RRSS — una sola línea + centrado (desktop)
   96) Formularios — overrides puntuales
   97) Parallax / experimentos temporales
   98) Layout 1080 escritorio — producción
   99) Laboratorio / overrides puntuales
   ========================================================= */


/* =========================================================
   00) FUENTES (CARGA DESDE FUNCTIONS.PHP)
   ========================================================= */

/*
   Nota:
   – Papyrus-10 sigue siendo el tema padre.
   – La fuente Cinzel se carga desde functions.php (sin @import en CSS).
   – Este MASTER controla ya las imágenes (carpeta /papyriSJGSM/images/)
     y el CSS editorial S.J.G.S.M.
*/

:root {
    --sjgsm-page-width: 760px;
    --sjgsm-content-width: 505px;
    --sjgsm-sidebar-width: 200px;
    --sjgsm-post-offset: 65px;
    --sjgsm-color-papyrus: #f4e9c8;
    --sjgsm-color-brown: #4c3c2d;
    --sjgsm-color-brown-hover: #7e532a;
    --sjgsm-color-lapis: #2f5aa6;
    --sjgsm-color-gold: #d4b86e;
    --sjgsm-gold: rgba(212,175,55,1);
    --sjgsm-gold-glow: rgba(212,175,55,.35);
    --sjgsm-shadow: rgba(0,0,0,.45);
    --sjgsm-transition-fast: .25s ease;
    --sjgsm-transition-soft: .35s ease;
}


/* =========================================================
   01) BASE PAPYRUS — HTML/BODY + FONDO GLOBAL
   ========================================================= */

body {
    font: 80%/150% Arial, "Trebuchet MS", Tahoma;
    color: #000000;
    background-color: var(--sjgsm-color-papyrus); /* tono papiro */
    background-image: url("images/body_bg.webp");
    background-position: center top;
    background-repeat: repeat;
    background-attachment: fixed;
    margin: 0;
    padding: 0;
}


/* =========================================================
   02) LAYOUT GLOBAL / PAGE WRAPPER
   ========================================================= */

#page {
    margin: 0 auto 0;
    width: var(--sjgsm-page-width);
    position: relative;
    z-index: 1;
}

#page_back {
    background: url("images/content.webp");
    position: relative;
    z-index: 1;
}




/* 02-B) Capa de contenido sobre fondos/vídeo */
#nav,
#header,
#content,
#sidebar,
#footer {
    position: relative;
    z-index: 1;
}


/* =========================================================
   03) HEADER
   ========================================================= */

#header {
    width: var(--sjgsm-page-width);
    height: 150px;
    background: url("images/header_bg.webp") no-repeat;
    margin: 0;
}

#header_box {
    width: 600px;
    padding: 70px 0 0 140px;
}

#header h1 {
    font: bold 36px/100% "Trebuchet MS", Tahoma, Arial;
    color: var(--sjgsm-color-brown);
    border-bottom: none;
}

#header h1 a {
    color: var(--sjgsm-color-brown);
    text-decoration: none;
}

#header h1 a:hover {
    color: var(--sjgsm-color-brown-hover);
    text-decoration: none;
}

#header p {
    color: var(--sjgsm-color-brown);
    font-size: 15px;
}


/* =========================================================
   04) NAVEGACIÓN PRINCIPAL
   ========================================================= */

#nav {
    width: var(--sjgsm-page-width);
    height: 80px;
}

#nav ul {
    list-style: none;
    margin: 0;
    padding: 0 0 0 40px;
}

#nav li {
    list-style: none;
    display: inline;
    float: left;
    margin: 0 0 0 10px;
}

#nav a {
    font: bold 15px/100% Arial, Helvetica, sans-serif;
    display: block;
    color: var(--sjgsm-color-brown);
    text-decoration: none;
    padding: 10px 13px 13px 13px;
    margin: 0;
    background: url("images/nav.webp") bottom;
}

#nav a:hover,
#nav .current_page_item a {
    padding: 25px 13px 13px 13px;
}

#nav .left {
    float: left;
}

#nav .right {
    float: right;
}


/* =========================================================
   04-B) NAV — HOME ICON (OJO DE HORUS)
   ---------------------------------------------------------
   • Home sustituido por icono Horus
   • Reposo: café oscuro (papiro)
   • Hover: lapislázuli mineral
   • Home activo: halo dorado + respiración ultra-lenta
   • Efecto relieve: "sale" al hover sin romper nav.webp
   ========================================================= */

#nav ul.left > li:first-child > a {
    position: relative;
}

/* BASE (reposo) */
#nav ul.left > li:first-child > a::before {
    content: "𓂀";
    display: block;
    text-align: center;
    font-size: 30px;
    line-height: 0.5;
    /* café oscuro papiro */
    color: var(--sjgsm-color-brown);
    /* bold limpio (engrosado sutil) */
    text-shadow:
        0 0 0 currentColor,
        0.6px 0 currentColor,
       -0.6px 0 currentColor;
    transform: scale(1.06);
    transition:
        color .35s ease,
        text-shadow .35s ease,
        transform .35s ease;
}

/* HOVER — lapislázuli mineral + "sale hacia fuera" */
#nav ul.left > li:first-child > a:hover::before {
    color: #2f5aa6; /* lapis mineral */
    text-shadow:
        0 0 2px rgba(18,38,88,.75),
        0 0 7px rgba(47,90,166,.45),
        0 6px 10px rgba(0,0,0,.25); /* sombra proyectada */
    transform: translateY(-2px) scale(1.16);
}

/* HOME ACTIVO — halo dorado + respiración ultra-lenta */
body.home #nav ul.left > li:first-child > a::before {
    color: var(--sjgsm-color-brown); /* mantiene café */
    text-shadow:
        0 0 0 currentColor,
        0.6px 0 currentColor,
       -0.6px 0 currentColor,
        0 0 8px rgba(210,170,90,.35); /* halo dorado suave */
    animation: sjgsm-horus-breathe 7.5s ease-in-out infinite;
}

/* HOME + HOVER — lapis gana, conserva toque dorado */
body.home #nav ul.left > li:first-child > a:hover::before {
    color: #2f5aa6;
    text-shadow:
        0 0 2px rgba(18,38,88,.75),
        0 0 7px rgba(47,90,166,.45),
        0 0 10px rgba(210,170,90,.25);
    transform: translateY(-2px) scale(1.18);
}

/* Respiración (micro-zoom + micro-brillo, muy sutil) */
@keyframes sjgsm-horus-breathe {
    0%, 100% {
        transform: scale(1.06);
        filter: none;
    }
    50% {
        transform: scale(1.10);
        filter: brightness(1.06);
    }
}


/* =========================================================
   05) TIPOGRAFÍA — POSTS Y CONTENIDO
   (tamaños títulos, texto, h2–h4, listas)
   ========================================================= */

a {
    color: #4c3c2d;
    text-decoration: underline;
}

a:hover {
    color: var(--sjgsm-color-brown-hover);
}

img {
    border: none;
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}

p {
    padding: 0 0 15px 0;
    margin: 0;
    color: #000000;
    text-align: justify;
}

h1,
h2 {
    color: #4c3c2d;
    margin: 0 0 2px;
    border-bottom: 1px dotted #242424;
    letter-spacing: -1px;
    font: normal 190%/100% "Trebuchet MS", Tahoma, Arial;
    padding-bottom: 3px;
}

h2 a {
    color: #4c3c2d;
    text-decoration: none;
}

h2 a:hover {
    color: var(--sjgsm-color-brown-hover);
}

h3 {
    font: normal 140%/100% "Trebuchet MS", Tahoma, Arial;
    color: #4c3c2d;
    margin: 10px 0 5px;
}

h4 {
    font: normal 130%/100% "Trebuchet MS", Tahoma, Arial;
    color: #4c3c2d;
    margin: 10px 0 5px;
}

ul {
    list-style-type: circle;
}

blockquote {
    border-left: 5px #4c3c2d solid;
    margin: 0 0 0 10px;
    padding: 5px;
}

/* --- TÍTULO DE POST (CONTROL EXPLÍCITO) --- */
.post-title h2,
.post-title h2 a {
    font-size: 150%;
    line-height: 1;
    font-family: "Trebuchet MS", Tahoma, Arial;
    font-weight: normal;
}


/* =========================================================
   06) ÁREA DE CONTENIDO / POSTS (LAYOUT)
   ========================================================= */

#content {
    padding: 10px 0 30px 0;
    float: left;
    width: var(--sjgsm-content-width);
    display: flow-root;
    overflow: visible;
}

.post {
    clear: both;
    padding-top: 15px;
}

#title_back {
    background: url("images/title_post.webp") no-repeat;
    width: var(--sjgsm-content-width);
    float: left;
    padding: 5px 0 15px 0;
}

.post-date {
    width: 45px;
    height: 45px;
    float: left;
    margin-left: 5px;
}

.post-month {
    font: bold 16px Impact, Arial, Tahoma;
    text-transform: uppercase;
    color: #4c3c2d;
    text-align: center;
    display: block;
    line-height: 11px;
    padding-top: 8px;
    margin-left: -2px;
}

.post-day {
    font: bold 16px Impact, Arial, Tahoma;
    text-transform: uppercase;
    color: #4c3c2d;
    text-align: center;
    display: block;
    line-height: 18px;
    padding-top: 5px;
    margin-left: -2px;
}

.post-title {
    float: left;
    margin-left: 15px;
    width: 420px;
}

.entry {
    clear: both;
    padding: 10px 0 0 var(--sjgsm-post-offset);
}

.navigation {
    clear: both;
    padding: 10px 0 0 var(--sjgsm-post-offset);
}


/* =========================================================
   07) COMENTARIOS
   ========================================================= */

.commentlist {
    margin: 10px 0;
    padding-left: 20px;
    line-height: 130%;
}

.commentlist li {
    padding: 5px 10px;
}

.commentlist cite {
    font-weight: bold;
    font-style: normal;
    font-size: 120%;
    color: #4c3c2d;
}

.commentlist cite a {
    color: #4c3c2d;
}

.commentlist cite a:hover {
    color: var(--sjgsm-color-brown-hover);
}

.commentlist small {
    margin-bottom: 5px;
    display: block;
    font-size: 87%;
}

#commentform {
    margin-top: 10px;
    font: 110% Arial, Helvetica, sans-serif;
}

#commentform p {
    padding: 6px 0;
    margin: 0;
}

#commentform label {
    color: #4c3c2d;
    font-size: 87%;
}

#commentform input {
    width: var(--sjgsm-sidebar-width);
    border: 1px solid #a29161;
    padding: 3px;
    margin-top: 3px;
    color: #775e24;
}

#commentform textarea {
    width: 476px;
    height: 115px;
    border: 1px solid #a29161;
    padding: 2px;
    margin-top: 3px;
    color: #775e24;
}

#commentform #submit {
    font: bold 12px Arial, Helvetica, sans-serif;
    color: #4c3c2d;
    border: none;
    float: right;
    width: 155px;
    height: 50px;
    cursor: pointer;
}


/* =========================================================
   08) SIDEBAR
   ========================================================= */

#sidebar {
    float: right;
    padding: 20px 30px 20px 0;
    width: 200px;
    color: #4c3c2d;
    overflow: hidden;
}

#sidebar_back,
.sidebar_back {
    margin: 10px 0 0 0;
    padding: 0;
}

/* Título sidebar (h2 o .sidebartitle) */
#sidebar h2,
#sidebar .sidebartitle {
    font: normal 140%/100% "Trebuchet MS", Tahoma, Arial;
    color: #4c3c2d;
    margin: 20px 0 2px;
    border-bottom: 1px solid #4c3c2d;
}

/* Texto / enlaces sidebar */
#sidebar a {
    color: #4c3c2d;
    text-decoration: none;
}

#sidebar a:hover {
    color: var(--sjgsm-color-brown-hover);
    text-decoration: none;
}

/* Listas nivel 1 */
#sidebar ul {
    margin: 0;
    padding: 0;
}

#sidebar ul li {
    list-style: none;
    margin: 0;
    padding: 1px 10px 10px 15px;
    border: none;
}

/* Listas nivel 2 */
#sidebar ul li ul {
    padding: 0;
    margin: 0;
}

#sidebar ul li ul li {
    padding: 2px 0 2px 10px;
    border-bottom: 1px solid #4c3c2d;
}

/* Listas nivel 3 */
#sidebar ul li ul li ul li {
    padding: 1px 0 1px 10px;
    border: none;
}

/* Sub-pages */
ul.list-page li ul li,
li.widget_pages li ul li {
    padding-left: 10px;
}

/* Calendar widget */
li.widget_calendar td {
    padding: 1px 7px;
}

/* Text widget */
.textwidget {
    padding-top: 5px;
}


/* =========================================================
   09) FOOTER
   ========================================================= */

#footer {
    clear: both;
    width: var(--sjgsm-page-width);
    height: 84px;
    background: url("images/footer_bg.webp") bottom no-repeat;
    position: relative;
    bottom: -50px;
    color: #4c3c2d;
    font-size: 95%;
    margin: 0 0 40px 0;
    padding: 10px 0 10px 0;
}

#footer a {
    color: #4c3c2d;
}

#footer a:hover {
    color: var(--sjgsm-color-brown-hover);
}

#footer p {
    color: #4c3c2d;
    text-align: center;
    margin: 0;
    padding: 0;
}


/* =========================================================
   10) BUSCADOR — cápsula dark dorado (opción B)
   ========================================================= */

#searchform {
    margin: 0 10px 0 0;
    padding: 7px 11px 15px 11px;
    display: flex;
    align-items: center;
}

#searchform div {
    display: flex;
    align-items: center;
    flex-direction: row;
    background: #2a2520;
    border: 1px solid #d4b86e;
    border-radius: 999px;
    padding: 3px 14px 3px 8px;
    gap: 5px;
    transition: border-color .25s ease, box-shadow .25s ease;
}

#searchform div:focus-within {
    border-color: #C8A96E;
    box-shadow: 0 0 0 2px rgba(200,169,110,.18), 0 3px 10px rgba(0,0,0,.4);
}

/* Botón Horus — va primero (izquierda) */
#searchform .ss {
    order: -1;
    width: 28px;
    height: 28px;
    border: none !important;
    background: none !important;
    padding: 0;
    margin: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

#searchform .ss .sjgsm-horus {
    display: block;
    font-size: 20px;
    line-height: 1;
    color: #d4b86e;
    transition: color .2s ease, transform .2s ease;
}

#searchform .ss:hover .sjgsm-horus {
    color: #f0d080;
    transform: scale(1.12);
}

/* Input */
#searchform .s {
    border: none !important;
    background: transparent !important;
    outline: none !important;
    box-shadow: none !important;
    width: 110px;
    height: 22px;
    padding: 0 2px;
    color: #d4b86e;
    font-family: 'Cinzel', serif;
    font-size: 11px;
    letter-spacing: 1px;
    caret-color: #d4b86e;
}

#searchform .s::placeholder {
    color: #444;
    font-size: 13px;
    letter-spacing: 2px;
}


/* =========================================================
   11) UTILIDADES / ALINEACIONES
   ========================================================= */

.center {
    text-align: center;
}

img.center,
img[align="center"] {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.alignleft {
    float: left;
}

img.alignleft,
img[align="left"] {
    float: left;
    margin: 2px 10px 5px 0;
}

.alignright {
    float: right;
}

img.alignright,
img[align="right"] {
    float: right;
    margin: 2px 0 5px 10px;
}

.clear {
    clear: both;
}

hr.clear {
    clear: both;
    visibility: hidden;
    margin: 0;
    padding: 0;
}

/* Compatibilidad legacy: mantiene el wrap clásico solo dentro del contenido */
.entry img:not(.alignleft):not(.alignright):not(.aligncenter):not(.alignnone):not(.center),
.entry a img:not(.alignleft):not(.alignright):not(.aligncenter):not(.alignnone):not(.center) {
    float: left;
    margin: 2px 10px 5px 0;
}

/* Alineación de imágenes solo cuando el contenido la solicita */
.entry img.alignleft,
.entry-content img.alignleft,
.post img.alignleft {
    float: left;
    margin: 2px 10px 5px 0;
}

.entry img.alignright,
.entry-content img.alignright,
.post img.alignright {
    float: right;
    margin: 2px 0 5px 10px;
}

.entry img.aligncenter,
.entry-content img.aligncenter,
.post img.aligncenter,
.entry img.center,
.entry img[align="center"] {
    display: block;
    margin-left: auto;
    margin-right: auto;
    float: none;
}

/* Proteger estructuras modernas para no heredar el float legacy */
.entry figure img,
.entry .wp-block-image img,
.entry .wp-block-gallery img,
.entry .blocks-gallery-item img,
.entry .gallery img,
.entry .wp-caption img,
.entry .avatar {
    float: none;
    margin-right: 0;
}

@media (max-width: 600px) {
    .entry img:not(.alignleft):not(.alignright):not(.aligncenter):not(.alignnone):not(.center),
    .entry a img:not(.alignleft):not(.alignright):not(.aligncenter):not(.alignnone):not(.center) {
        float: none;
        display: block;
        margin: 10px auto;
    }
}


/* =========================================================
   12) FONDOS POR PÁGINA (S.J.G.S.M., @, $, &)
   ---------------------------------------------------------
   NOTA (v05.00):
   - Los fondos de @ / $ / & / # se gestionan en la SECCIÓN 16.
   - HOME se gestiona en la SECCIÓN 19.
   - Esta sección queda como referencia/documentación.
   ========================================================= */

/* =========================================================
   13) RESERVADA / VACÍA
   ---------------------------------------------------------
   Se mantiene vacía para conservar la numeración histórica.
   ========================================================= */


/* =========================================================
   14) TÍTULOS DE POST — TABLILLA title_post.webp
   ========================================================= */

.post-title {
    transform-style: preserve-3d;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

@media (hover: hover) and (pointer: fine) {
    .post-title:hover {
        transform: rotateX(-4deg) rotateY(8deg) translateZ(10px);
        box-shadow: 0 12px 32px rgba(0, 0, 0, 0.5);
    }
}


/* =========================================================
   15) SOMBRA DE FORMA — WIDGETS + CONTENIDO DE POSTS
   ========================================================= */

/* Widgets */
#sidebar .widget img {
    transition: filter 0.25s ease, transform 0.25s ease;
}

@media (hover: hover) and (pointer: fine) {
    #sidebar .widget img:hover {
        filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.55));
        transform: translateY(-2px);
    }
}

/* Contenido de posts (mismo efecto) */
#content img,
#content video,
#content iframe,
.post img,
.post video,
.post iframe,
.entry-content img,
.entry-content video,
.entry-content iframe {
    transition: filter 0.25s ease, transform 0.25s ease;
    max-width: 100%;
    height: auto;
}

@media (hover: hover) and (pointer: fine) {
    #content img:hover,
    #content video:hover,
    #content iframe:hover,
    .post img:hover,
    .post video:hover,
    .post iframe:hover,
    .entry-content img:hover,
    .entry-content video:hover,
    .entry-content iframe:hover {
        filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.55));
        transform: translateY(-2px);
    }
}


/* =========================================================
   16) VIDEO BACKGROUNDS — @ / $ / & / # (FONDOS FIJOS)
   ---------------------------------------------------------
   - HOME se gestiona EXCLUSIVAMENTE en la sección 19.
   - Esta sección solo cubre:
     @ LAB  (page-id-1000) — images/bg-lab-tile.webp
     $ XYZ  (page-id-1016) — images/bg-xyz-tile.webp
     & ABC  (page-id-1088) — images/bg-abc-tile.webp
     # HASH / EXT (page-id-3225) — images/bg-hash-tile.webp
   ========================================================= */

/* 16.01) Seguros: nunca mostrar vídeos "alternativos" @/$/&/# */
body.page-id-1000 #sjgsm-bg-video-lab,
body.page-id-1016 #sjgsm-bg-video-xyz,
body.page-id-1088 #sjgsm-bg-video-abc,
body.page-id-3225 #sjgsm-bg-video-hash,
body.sjgsm-page-lab #sjgsm-bg-video-lab,
body.sjgsm-page-xyz #sjgsm-bg-video-xyz,
body.sjgsm-page-abc #sjgsm-bg-video-abc,
body.sjgsm-page-hash #sjgsm-bg-video-hash {
    display: none !important;
}

/* 16.02) Motor único de fondo fijo (capa ::before) — @ / $ / & / #
   ---------------------------------------------------------
   - Se mantienen a propósito ambos caminos:
     • page-id-*       = respaldo físico
     • sjgsm-page-*    = capa semántica robusta
   - v05.00 NO elimina esta duplicidad para no arriesgar regresiones.
   --------------------------------------------------------- */
body.page-id-1000::before,
body.page-id-1016::before,
body.page-id-1088::before,
body.page-id-3225::before,
body.sjgsm-page-lab::before,
body.sjgsm-page-xyz::before,
body.sjgsm-page-abc::before,
body.sjgsm-page-hash::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    transform: translate3d(0, 0, 0);
    will-change: auto;
}

/* Asignación de imágenes */
body.page-id-1000::before,
body.sjgsm-page-lab::before { background-image: url("images/bg-lab-tile.webp"); }

body.page-id-1016::before,
body.sjgsm-page-xyz::before { background-image: url("images/bg-xyz-tile.webp"); }

body.page-id-1088::before,
body.sjgsm-page-abc::before { background-image: url("images/bg-abc-tile.webp"); }

body.page-id-3225::before,
body.sjgsm-page-hash::before { background-image: url("images/bg-hash-tile.webp"); }

/* 16.03) Desktop/Tablet: "breathing" SOLO @/$/&/# */
@media (min-width: 769px) {
    body.page-id-1000::before,
    body.page-id-1016::before,
    body.page-id-1088::before,
    body.page-id-3225::before,
    body.sjgsm-page-lab::before,
    body.sjgsm-page-xyz::before,
    body.sjgsm-page-abc::before,
    body.sjgsm-page-hash::before {
        transform: translate3d(0, var(--sjgsm-parallax-y, 0px), 0);
        will-change: transform;
    }
}

/* 16.04) MÓVIL: fixed background effect estable SOLO @/$/&/# */
@media (max-width: 768px) {
    body.page-id-1000::before,
    body.page-id-1016::before,
    body.page-id-1088::before,
    body.page-id-3225::before,
    body.sjgsm-page-lab::before,
    body.sjgsm-page-xyz::before,
    body.sjgsm-page-abc::before,
    body.sjgsm-page-hash::before {
        transform: translate3d(0, 0, 0) !important;
        will-change: auto !important;
    }
}


/* =========================================================
   17) SOCIAL ICONS INLINE — CENTRADO + LAPIS REPOSO SJGSM
   ========================================================= */

.navigation.sjgsm-nav-block { clear: both; }

.navigation.sjgsm-nav-block .sjgsm-nav-links { text-align: center; }

.navigation.sjgsm-nav-block .sjgsm-social-inline {
    margin: 25px 0 0;
    text-align: center;
}

/* reposo lapis */
.navigation.sjgsm-nav-block .sjgsm-social-inline a {
    display: inline-block;
    margin: 0;
    border: 1px solid #2f5aa6;
    border-radius: 999px;
    padding: 4px;
    box-shadow: 0 3px 10px rgba(0,0,0,.25);
    transition: all var(--sjgsm-transition-fast);
}

.navigation.sjgsm-nav-block .sjgsm-social-inline img {
    width: 30px;
    height: 30px;
    opacity: .9;
    transition: all var(--sjgsm-transition-fast);
}

/* hover oro */
.navigation.sjgsm-nav-block .sjgsm-social-inline a:hover {
    border-color: #FFD700;
    transform: translateY(-3px) scale(1.08);
    box-shadow:
        0 6px 18px rgba(0,0,0,.35),
        0 0 12px rgba(255,215,0,.35);
}

.navigation.sjgsm-nav-block .sjgsm-social-inline a:hover img { opacity: 1; }


/* =========================================================
   18) HOVERS SJGSM — UTILIDADES (MASTER)
   ---------------------------------------------------------
   - No pisa PREVIOUS/NEXT (50.04) ni META (50.03) ni RRSS (17).
   - Tokens reutilizados centralizados ya en :root (sección 00).
   - Solo deja clase utilitaria opcional.
   ========================================================= */

/* Clase utilitaria (solo si la usas en HTML) */
.sjgsm-hover-3d {
    display: inline-block;
    transition: all var(--sjgsm-transition-fast);
}

@media (hover: hover) and (pointer: fine) {
    .sjgsm-hover-3d:hover {
        transform: translateY(-3px) scale(1.04);
        filter: drop-shadow(0 6px 10px var(--sjgsm-shadow))
                drop-shadow(0 0 6px var(--sjgsm-gold-glow));
    }
}


/* =========================================================
   19) HOME — FONDO VISUAL (VÍDEO + FALLBACK)
   ---------------------------------------------------------
   - Base negra mientras carga
   - Vídeo fijo de fondo para desktop/tablet
   - WebP fijo como fallback detrás del vídeo
   - En móvil, por defecto se oculta el vídeo
   - Si functions.php activa body.sjgsm-home-video-mobile-on,
     se muestra el vídeo también en móvil y se apaga el WebP
   ========================================================= */

/* 19.01) Base HOME */
body.home {
    background-color: #000000;
}

/* 19.02) Vídeo de fondo HOME */
body.home #sjgsm-bg-video {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    z-index: 0;
    pointer-events: none;
    display: block;
}

/* 19.03) Limpieza de capas antiguas HOME */
body.home #sjgsm-layer1,
body.home #sjgsm-layer2,
body.home #sjgsm-layer3,
body.home #sjgsm-layer4 {
    display: none !important;
}

/* 19.04) Fallback HOME detrás del vídeo */
body.home::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 0 !important;
    pointer-events: none;
    background-image: url("images/Layer1-Home.webp");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    transform: translate3d(0,0,0);
    will-change: auto;
}

/* 19.05) Móvil — comportamiento por defecto */
@media (max-width: 768px) {
    body.home #sjgsm-bg-video {
        display: none !important;
    }
}

/* 19.06) Switch móvil ON — mostrar vídeo y apagar fallback */
@media (max-width: 768px) {
    body.sjgsm-home-video-mobile-on.home #sjgsm-bg-video {
        display: block !important;
    }

    body.sjgsm-home-video-mobile-on.home::before {
        content: none !important;
        background-image: none !important;
    }
}


/* =========================================================
   50) CSS EDITORIAL S.J.G.S.M. (ANTES EN EL PLUGIN)
   ========================================================= */


/* 50.01) GLOBAL / LAYOUT RESPONSIVE */

@media (max-width: 768px) {

    body,
    html,
    #page,
    #wrapper,
    .background,
    .bg,
    .parallax,
    .fixed,
    .site-background {
        background-attachment: scroll !important;
        background-position: center top !important;
    }

}

/* Ocultar comentarios globalmente */
.comments-area,
#comments,
.comment-respond {
    display: none !important;
}


/* 50.02) WIDGET FECHA + LOCATION WEATHER
   ---------------------------------------------------------
   - MASTER vigente
   - Layout final aprobado:
     2 arriba + punto central + 2 abajo
   - Recupera el tamaño visual del LAB bueno
   - Borde dorado final igual al widget del tiempo
   ========================================================= */

.sjgsm-date-widget {
    background: radial-gradient(circle at top, #3b2a16 0%, #050508 65%, #010101 100%);
    color: #f3e7cf;

    /* GOLD OUTER BORDER — MATCH WEATHER WIDGET */
    border: none !important;
    outline: 1px solid #FFD700 !important;
    outline-offset: 0 !important;
    border-radius: 14px !important;
    box-sizing: border-box !important;
    overflow: hidden !important;

    padding: 14px 22px;
    max-width: 230px;
    margin: 0 auto;
    text-align: center;
    box-shadow: 0 10px 20px rgba(0,0,0,0.6);
    font-family: "Georgia", "Times New Roman", serif;
}

.sjgsm-date-weekday {
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    color: #f0e6cf;
    margin-bottom: 1px;
}

.sjgsm-date-day {
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 1;
    color: #d4b86e;
    margin-bottom: 12px;
}

.sjgsm-date-month {
    font-size: 1.1rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #8fb1cc;
    margin-bottom: 2px;
}

.sjgsm-date-year {
    font-size: 0.85rem;
    color: #cbbfa3;
    margin-bottom: 0;
}

.sjgsm-date-timebar {
    margin-top: 8px;
    padding-top: 7px;
    border-top: 1px solid rgba(139, 107, 47, 0.30);

    display: grid;
    grid-template-columns: 1fr auto 1fr;
    grid-template-areas:
        "local-label sep utc-label"
        "local-value sep utc-value";
    align-items: center;
    justify-items: center;
    column-gap: 14px;
    row-gap: 6px;
}

.sjgsm-date-time-label {
    display: block;
    margin: 0;
    padding: 0;

    font-family: "Helvetica Neue", Arial, sans-serif !important;
    font-size: 0.62rem;
    line-height: 1;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #d4b86e;

    font-weight: 300 !important;
    font-synthesis: none;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

.sjgsm-date-time-value {
    display: block;
    margin: 0;
    padding: 0;

    font-family: "Helvetica Neue", Arial, sans-serif !important;
    font-size: 0.78rem;
    line-height: 1;
    letter-spacing: 0.01em;
    color: #f0e6cf;

    font-weight: 300 !important;
    font-synthesis: none;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

.sjgsm-date-time-label-local { grid-area: local-label; }
.sjgsm-date-time-label-utc   { grid-area: utc-label; }

.sjgsm-date-time-value-local { grid-area: local-value; }
.sjgsm-date-time-value-utc   { grid-area: utc-value; }

.sjgsm-date-time-sep {
    grid-area: sep;
    display: block;
    margin: 0;
    padding: 0;

    font-family: "Helvetica Neue", Arial, sans-serif !important;
    font-size: 0.62rem;
    line-height: 1;
    color: rgba(212, 184, 110, 0.72);

    font-weight: 300 !important;
    align-self: center;
    transform: translateY(5px);
}

.sjgsm-date-label {
    display: none !important;
}

.widget_location_weather {
    margin-top: -18px !important;
}

@media (max-width: 768px) {
    .sjgsm-date-widget {
        padding: 13px 18px 12px;
    }

    .sjgsm-date-weekday {
        font-size: 1.04rem;
    }

    .sjgsm-date-day {
        font-size: 3.0rem;
        margin-bottom: 10px;
    }

    .sjgsm-date-month {
        font-size: 1.02rem;
    }

    .sjgsm-date-year {
        font-size: 0.82rem;
    }

    .sjgsm-date-timebar {
        margin-top: 7px;
        padding-top: 6px;
        column-gap: 12px;
        row-gap: 5px;
    }

    .sjgsm-date-time-label {
        font-size: 0.58rem;
    }

    .sjgsm-date-time-value {
        font-size: 0.72rem;
    }

    .sjgsm-date-time-sep {
        font-size: 0.58rem;
        transform: translateY(4px);
    }
}


/* =========================================================
   50.02-B) Widget fecha + línea astronómica (EN)
   ---------------------------------------------------------
   - NO toca el calendario congelado
   - Solo afecta a .sjgsm-date-widget-astro
   - Línea astronómica en 2 filas centradas
   ========================================================= */

.sjgsm-date-widget-astro .sjgsm-date-astro-line {
    margin-top: 12px;
    padding-top: 10px;
    border-top: 1px solid rgba(139, 107, 47, 0.18);

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;

    text-align: center;
}

.sjgsm-date-widget-astro .sjgsm-date-astro-row {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    white-space: nowrap;

    font-family: "Helvetica Neue", Arial, sans-serif !important;
    font-size: 0.54rem;
    line-height: 1.15;
    letter-spacing: 0.01em;
    color: #ddd1ba;

    font-weight: 300 !important;
    font-synthesis: none;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

.sjgsm-date-widget-astro .sjgsm-date-astro-icon {
    display: inline-block;
    font-size: 0.62rem;
    line-height: 1;
    transform: translateY(-0.5px);
    font-weight: 300 !important;
    opacity: 0.92;
}

.sjgsm-date-widget-astro .sjgsm-date-astro-icon-sun {
    color: #d4b86e;
}

.sjgsm-date-widget-astro .sjgsm-date-astro-icon-moon {
    color: #8fb1cc;
}

.sjgsm-date-widget-astro .sjgsm-date-astro-text {
    display: inline-block;
    font-weight: 300 !important;
}

@media (max-width: 768px) {
    .sjgsm-date-widget-astro .sjgsm-date-astro-line {
        margin-top: 10px;
        padding-top: 8px;
        gap: 5px;
    }

    .sjgsm-date-widget-astro .sjgsm-date-astro-row {
        font-size: 0.50rem;
    }

    .sjgsm-date-widget-astro .sjgsm-date-astro-icon {
        font-size: 0.58rem;
    }
}

/* =========================================================
   50.03) WIDGET META — ESTILO S.J.G.S.M.
   TEXTO CAFÉ + LAPIS REPOSO + ORO HOVER
   ========================================================= */

.widget_meta {
    background: #ffffff !important;
    /* LAPIS MINERAL REPOSO */
    border: 1px solid #2f5aa6 !important;
    border-radius: 15px;
    padding: 12px 16px;
    width: 90%;
    margin: 12px auto;
    /* profundidad panel */
    box-shadow: 0 6px 22px rgba(0,0,0,.25);
    font-family: "Georgia","Times New Roman",serif;
    display: block;
    text-align: left;
    position: relative;
}

/* panel hover oro */
.widget_meta:hover {
    border-color: #FFD700 !important;
}

/* brillo dorado ultra sutil */
.widget_meta::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 15px;
    pointer-events: none;
    background: linear-gradient(
        120deg,
        rgba(255,215,0,.15) 0%,
        rgba(255,215,0,.04) 25%,
        transparent 45%
    );
    opacity: .45;
}

.widget_meta .sidebartitle {
    display: none !important;
}

.widget_meta ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* TEXTO BASE — BOLD CAFÉ */
.widget_meta ul li a {
    position: relative;
    display: block;
    padding: 10px 12px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: .05em;
    text-transform: uppercase;
    color: #4c2f16 !important;
    text-decoration: none;
    border-bottom: 1px solid rgba(0,0,0,.18);
    border-radius: 999px;
    overflow: visible;
    z-index: 0;
    transition: all var(--sjgsm-transition-fast);
}

.widget_meta ul li:last-child a {
    border-bottom: none !important;
}

/* icono Horus */
.widget_meta ul li a::before {
    content: "𓂀 ";
    margin-right: 10px;
    font-size: 1.5em;
    color: #4c2f16 !important;
}

/* HOVER METÁLICO LIMPIO */
.widget_meta ul li a:hover {
    color: #FFF2A8 !important;
    transform: translateY(-2px) scale(1.02);
    background: linear-gradient(90deg,#0f2f5c,#caa24b) !important;
    border: 1px solid rgba(255,215,0,.6);
    box-shadow:
        0 4px 14px rgba(0,0,0,.35),
        0 0 10px rgba(255,215,0,.35);
    text-shadow: 0 0 8px rgba(255,242,168,.9);
}

/* icono hover */
.widget_meta ul li a:hover::before {
    color: #FFF2A8 !important;
}

/* responsive */
@media (max-width: 768px) {
    .widget_meta {
        width: 92%;
        padding: 10px 14px;
    }
    .widget_meta ul li a {
        padding: 10px 12px;
        font-size: 0.9rem;
    }
    .widget_meta ul li a::before {
        font-size: 1.2em;
    }
}


/* =========================================================
   50.04) NAVEGACIÓN PREVIOUS / NEXT — BOTONES EGIPCIOS
   LAPIS REPOSO + ORO HOVER + ELEVACIÓN RRSS
   ========================================================= */

.navigation {
    text-align: center;
    margin: 40px 0 40px;
    font-family: "Georgia","Times New Roman",serif;
    /* IMPORTANTE: evita el desplazamiento por .navigation en Sección 06 */
    padding: 0 !important;
}

.navigation a,
.nav-previous a,
.nav-next a {
    display: inline-block;
    padding: 12px 12px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    text-decoration: none;
    color: #593616;
    /* hilo lapis mineral reposo */
    border: 1px solid #2f5aa6;
    border-radius: 999px;
    background: rgba(255,255,255,0.85);
    /* profundidad premium */
    box-shadow:
        0 0 0 1px rgba(0,0,0,.12),
        0 4px 14px rgba(0,0,0,.25);
    transition: transform .25s ease, box-shadow .25s ease, background .18s ease, border-color .18s ease;
}

/* OJO DE HORUS */
.navigation a::before,
.nav-previous a::before,
.nav-next a::before {
    content: "𓂀";
    display: inline-block;
    margin-right: 1px;
    font-size: 1.5rem;
    line-height: 1;
    vertical-align: -1px;
}

/* HOVER — oro + elevación tipo RRSS */
.navigation a:hover,
.nav-previous a:hover,
.nav-next a:hover,
.navigation .previous-entries a:hover::after,
.navigation .next-entries a:hover::after {
    color: #FFF2A8 !important;
    text-shadow:
        0 0 8px rgba(255,242,168,.95),
        0 0 18px rgba(255,242,168,.55),
        0 2px 0 rgba(0,0,0,.40) !important;
}

.navigation a:hover,
.nav-previous a:hover,
.nav-next a:hover {
    border-color: #FFD700 !important;
    background: linear-gradient(90deg,#123a74,#caa24b) !important;
    box-shadow:
        0 0 0 1px rgba(255,215,0,.55),
        0 6px 18px rgba(0,0,0,.35);
    /* elevación igual RRSS */
    transform: translateY(-3px) scale(1.08);
}

/* Texto renderizado */
.navigation .previous-entries a,
.navigation .next-entries a {
    font-size: 0 !important;
    white-space: nowrap;
    position: relative;
}

/* asegurar Horus visible */
.navigation .previous-entries a::before,
.navigation .next-entries a::before {
    font-size: 1.15rem !important;
}

.navigation .previous-entries a::after,
.navigation .next-entries a::after {
    color: inherit;
    text-shadow: inherit;
    font-size: .95rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.navigation .previous-entries a::after { content: " ⟪⟪⟪ 𓅂𓆄"; }
.navigation .next-entries a::after { content: " ⟫⟫⟫ 𓆄𓅂"; }

/* Responsive */
@media (max-width: 768px) {
    .navigation {
        margin: 40px 0 30px;
    }
    .navigation a,
    .nav-previous a,
    .nav-next a {
        font-size: 1.05rem;
        padding: 10px 20px;
    }
    .navigation .previous-entries a::after,
    .navigation .next-entries a::after {
        font-size: 1.05rem;
    }
}

/* Alinear navegación con el bloque del post */
.navigation {
    width: 90%;
    margin-left: auto !important;
    margin-right: auto !important;
}


/* 50.05) TIPOGRAFÍA GLOBAL S.J.G.S.M. (CINZEL) */

h1,
h2,
h3,
h1 a,
h2 a,
h3 a,
.entry-title,
.entry-title a,
.posttitle,
.posttitle a,
.page-title,
h1.page-title,
.site-title,
.site-title a,
#site-title,
#site-title a {
    font-family: "Cinzel", serif !important;
    font-weight: 900 !important;
    letter-spacing: 0.05em !important;
    text-transform: uppercase !important;
}

/* Compactación para títulos de posts */
.post h1,
.post h1 a,
.post h2,
.post h2 a,
.posttitle,
.posttitle a,
.entry-title,
.entry-title a {
    letter-spacing: -0.03em !important;
}

/* Refuerzo tipográfico específico para la página # (ext) */
body.page-id-3225 .post-title h2,
body.page-id-3225 .post-title h2 a,
body.page-id-3225 .entry-title,
body.page-id-3225 .entry-title a,
body.page-id-3225 .page-title,
body.page-id-3225 .page-title a,
body.sjgsm-page-hash .post-title h2,
body.sjgsm-page-hash .post-title h2 a,
body.sjgsm-page-hash .entry-title,
body.sjgsm-page-hash .entry-title a,
body.sjgsm-page-hash .page-title,
body.sjgsm-page-hash .page-title a {
    font-family: "Cinzel", serif !important;
    font-weight: 900 !important;
    letter-spacing: 0.05em !important;
    text-transform: uppercase !important;
}


/* 50.06) MENÚ SUPERIOR — S.J.G.S.M. @ $ & # */

#nav ul.left > li > a {
    font-family: "Cinzel", serif !important;
    font-weight: 900 !important;
    letter-spacing: 0.05em !important;
    text-transform: uppercase !important;
    font-size: 1.1rem !important;
    color: #4E3524 !important;
    padding-bottom: 20px;
    border-bottom: 0;
    transition: color 0.15s ease-out, background-color 0.15s ease-out;
}

#nav ul.left > li > a:hover {
    color: #fff !important;
    background-color: #0b4fa7 !important;
}

#nav ul.left li.current_page_item > a,
#nav ul.left li.current-menu-item > a,
body.home #nav ul.left > li:first-child > a {
    color: #4E3524 !important;
    background-color: transparent !important;
    border-bottom: 0 !important;
}


/* =========================================================
   50.07) FIX NAV — CENTRADO REAL (SJGSM + CATEGORY SCROLL + MÓVIL)
   ---------------------------------------------------------
   A) navigation.sjgsm-nav-block (BACK + RRSS) centrado con eje de posts
   B) page-category-scroll.php (OLDER/NEWER) sin floats + centrado
   C) MÓVIL: forzar centrado "de verdad" respecto al bloque del post
   ========================================================= */

/* A) SJGSM NAV BLOCK — CENTRADO CON POSTS (DESKTOP) */
@media (min-width: 769px) {
    .navigation.sjgsm-nav-block {
        padding-left: 65px !important;   /* mismo eje que .entry */
        box-sizing: border-box;
    }
}

.navigation.sjgsm-nav-block .sjgsm-nav-links {
    text-align: center;
}

.navigation.sjgsm-nav-block .sjgsm-social-inline {
    text-align: center;
}

/* B) PAGE CATEGORY SCROLL — CENTRADO CON POSTS (DESKTOP) */
@media (min-width: 769px) {
    body.page-template-page-category-scroll-php .navigation {
        text-align: center !important;
        padding-left: 65px !important;   /* mismo eje que .entry */
        box-sizing: border-box;
    }
}

body.page-template-page-category-scroll-php .navigation .alignleft,
body.page-template-page-category-scroll-php .navigation .alignright {
    float: none !important;
    display: inline-block !important;
    margin: 10px 12px !important;
}

/* C) MÓVIL — TODO CENTRADO CON EL BLOQUE DEL POST */
@media (max-width: 768px) {

    /* 1) En móvil, el eje del post YA NO lleva el offset 65 */
    .navigation.sjgsm-nav-block {
        padding-left: 0 !important;
    }

    body.page-template-page-category-scroll-php .navigation {
        padding-left: 0 !important;
    }

    /* 2) Forzar centrado robusto */
    .navigation.sjgsm-nav-block,
    body.page-template-page-category-scroll-php .navigation {
        width: 100% !important;
        margin-left: auto !important;
        margin-right: auto !important;
        text-align: center !important;
        box-sizing: border-box !important;
    }

    /* 3) Nav-links: centrado normal */
    .navigation.sjgsm-nav-block .sjgsm-nav-links {
        text-align: center !important;
    }

    /* 4) RRSS: flex para centrar el grupo */
    .navigation.sjgsm-nav-block .sjgsm-social-inline {
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        flex-wrap: wrap !important;
        text-align: center !important;
    }

    /* 5) Category scroll: centrados sin floats */
    body.page-template-page-category-scroll-php .navigation .alignleft,
    body.page-template-page-category-scroll-php .navigation .alignright {
        float: none !important;
        display: inline-block !important;
        margin: 10px 12px !important;
        text-align: center !important;
    }
}


/* =========================================================
   50.08) NAV — CENTRADO EJE REAL DEL POST (MÓVIL)
   ---------------------------------------------------------
   • Centra PREVIOUS / NEXT respecto al eje real del post
   • Igual offset que .entry (65px)
   • NO toca .navigation.sjgsm-nav-block (lo gobierna 50.07)
   ========================================================= */

@media (max-width: 768px) {

    .entry .navigation,
    #content .navigation {
        margin-left: 65px !important;
        width: calc(100% - 65px) !important;
        margin-right: 0 !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
        text-align: center !important;
        box-sizing: border-box !important;
    }

    .entry .navigation .sjgsm-nav-links,
    #content .navigation .sjgsm-nav-links {
        text-align: center !important;
    }

}


/* =========================================================
   50.09) RRSS — SEPARACIÓN BOTONES SOLO MÓVIL
   ---------------------------------------------------------
   • Controla distancia entre iconos RRSS en móvil
   • Override de sección 17
   ========================================================= */

@media (max-width: 768px) {
    /* separación + tamaño del bocadillo RRSS en móvil */
    .navigation.sjgsm-nav-block .sjgsm-social-inline a {
        margin: 0 3px;
        padding: 6px !important; /* ← tamaño del bocadillo */
    }
}


/* =========================================================
   50.10) RRSS — UNA SOLA LÍNEA + CENTRADO SOLO RRSS
   ---------------------------------------------------------
   • Solo afecta a los iconos RRSS
   • NO toca PREVIOUS / NEXT
   ========================================================= */

@media (min-width: 769px) {

    .navigation.sjgsm-nav-block .sjgsm-social-inline {
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        flex-wrap: nowrap !important;
        white-space: nowrap !important;
        width: calc(100% - 65px) !important;
        margin: 25px 0 0 65px !important;
        transform: translateX(-30px) !important;
        text-align: center !important;
        box-sizing: border-box !important;
        gap: 1px !important;
    }

    .navigation.sjgsm-nav-block .sjgsm-social-inline a {
        flex: 0 0 auto !important;
        margin: 0 3px !important;
        padding: 10px !important;
    }

    .navigation.sjgsm-nav-block .sjgsm-social-inline img {
        width: 28px !important;
        height: 28px !important;
    }

}


/* =========================================================
   96) FORMULARIOS — OVERRIDES PUNTUALES
   ========================================================= */

/* (vacío por ahora) */


/* =========================================================
   97) PARALLAX / EXPERIMENTOS TEMPORALES
   ========================================================= */

/* (vacío por ahora) */


/* =========================================================
   98) LAYOUT 1080 ESCRITORIO — PRODUCCIÓN
   ========================================================= */

/* (vacío por ahora) */


/* =========================================================
   99) LABORATORIO / OVERRIDES PUNTUALES
   ========================================================= */




/* FIN STYLE.CSS — papyriSJGSM v06.00 */