/* ======================================================
   DESIGN TOKENS (GLOBAL)
====================================================== */

:root {
    --primary: #13787f;
    --primary-dark: #0f5c63;

    --text-on-dark: #ffffff;

    --panel-bg: #f7f7f7;
    --panel-bg-soft: #eaeaea;
    --panel-bg-muted: #f2f2f2;

    --border-soft: #d1d1d1;
    --border-card: #dcdcdc;

    --radius-sm: 4px;
    --radius-md: 6px;
    --radius-lg: 10px;
    --radius-xl: 16px;

    --shadow-soft: 0 2px 6px rgba(0,0,0,0.08);
    --shadow-badge: 0 2px 6px rgba(0,0,0,0.25);
    --shadow-glow: 0 0 10px rgba(37,197,162,0.6);

    /* ESTADOS TORNEO */
    --estado-hoy: #e53935;
    --estado-manana: #ff9800;
    --estado-finsemana: #25c5a2;
    --estado-proximo: #2e7d32;
    --estado-mes: #1e88e5;
    --estado-lejano: #607d8b;
}


/* ======================================================
   NORMALIZACIÓN DE ENLACES
====================================================== */

.entry-content a{
    color: var(--primary);
    text-decoration: underline;
}

.entry-content a:hover{
    color: var(--primary-dark);
}


/* ======================================================
   OVERRIDES CONTROLADOS POR COMPONENTE
====================================================== */

.entry-content .tw-reset-links a{
    color: inherit;
    text-decoration: none;
}