/**
Theme Name: Astra Child
Author: Brainstorm Force
Author URI: http://wpastra.com/about/
Description: Astra Child Theme
Version: 1.0.0
License: GNU General Public License v2 or later
Text Domain: astra-child
Template: astra
*/

/* ================================
   BLOQUES REGISTRADOS / NO REGISTRADOS
   ================================ */

#contenedor-registrados, 
#contenedor-no-registrados {
    display: none;
    text-align: center;
}

/* ================================
   RCP TABLAS
   ================================ */

rcp_registration_total_details rcp-table, 
table, td, th {
    border: 0px solid var(--ast-border-color);
}

/* ================================
   OCULTA NAVEGACION DE ENTRADAS
   ================================ */

.post-navigation { 
    display: none !important; 
}

/* ================================
   CARDS RESPONSIVE
   ================================ */

@media (max-width: 1024px) {
  .cardcontainer {
    max-width: 100% !important;
  }
}

@media (min-width: 1025px) {
  .cardcontainer {
    width: calc(50% - 5px) !important;
  }
}

/* ================================
   MENU STICKY GLOBAL (PC + MOVIL)
   Compatible con Admin Bar
   ================================ */

/* Altura real del header según Astra */
:root {
  --mh: 30px;
}

/* Compensación para que el contenido no quede debajo */
body {
  padding-top: var(--mh);
}

/* Header fijo */
#masthead {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 9999;
}

/* Ajuste cuando estás logueado (admin bar WP) */
body.admin-bar #masthead {
  top: 32px;
}

/* Admin bar más alta en móvil */
@media (max-width: 782px) {
  body.admin-bar #masthead {
    top: 46px;
  }
}
