/* =========================================================
   BASE FIXES
========================================================= */
.table>tbody>tr>td, .table>tbody>tr>th,
.table>tfoot>tr>td, .table>tfoot>tr>th,
.table>thead>tr>td, .table>thead>tr>th{
  border-top: none !important;
}

a:focus, a:hover{
  color: inherit !important;
  text-decoration: none !important;
}

.form-control{
  background: #fafafa;
  border: 1px solid #e3e3e3;
  color: #666;
}
.form-control:focus{ border: 1px solid #ccc; }

.nopadding{ padding:0 !important; margin:0 !important; }
.vcenter{ display:inline-block; vertical-align:middle; float:none; }

.thumbnail{
  background-color:#f1f1f1;
  border:1px solid #e3e3e3;
}
a.thumbnail:hover, a.thumbnail:focus, a.thumbnail.active{ border-color:#344b72; }

.btn-primary{
  color:#aebed9;
  background-color:#344b72;
  border:0;
  transition:all .1s ease-in;
}
.btn-primary:active, .btn-primary:focus, .btn-primary:hover{
  color:#fff !important;
  background-color:#344b72 !important;
}

.panel-title>.small, .panel-title>.small>a, .panel-title>a,
.panel-title>small, .panel-title>small>a{
  color:#aebed9;
}

/* Fix scroll horizontal */
html, body{ overflow-x:hidden !important; }

/* Slider fix */
.swiper-news .swiper-wrapper{
  display:flex !important;
  flex-direction:row !important;
  width:100% !important;
  overflow:hidden !important;
}
.swiper-news .swiper-slide{ width:100% !important; }

/* =========================================================
   ACCOUNT MENU (Mi Cuenta)
========================================================= */
.acc-panel{
  background:none !important;
  padding-left:0 !important;
  height:auto !important;
  margin-top:25px;
  display:flex;
  align-items:center;
  justify-content:flex-end;
}

.account-menu{ position:relative; display:inline-flex; align-items:center; }

.account-trigger{
  display:flex; align-items:center; gap:10px;
  background: rgba(0,0,0,.55);
  border: 1px solid rgba(216,179,91,.60);
  padding: 8px 12px;
  border-radius: 999px;
  cursor:pointer;
  color:#d8b35b;
  transition: .18s ease;
  box-shadow: 0 0 14px rgba(216,179,91,.10);
}
.account-trigger:hover{
  transform: translateY(-1px);
  box-shadow: 0 0 18px rgba(216,179,91,.22);
  border-color: rgba(216,179,91,.90);
}

.user-icon-img{
  width:30px;
  height:30px;
  border-radius:50%;
  border:1px solid rgba(216,179,91,.80);
  box-shadow:0 0 10px rgba(216,179,91,.25);
  background:#000 url('../img/acc-icon.png') center/cover no-repeat;
  display:inline-block;
}

.account-text{ display:flex; flex-direction:column; line-height:1.05; text-align:left; }
.account-text small{ font-size:10px; opacity:.9; color:#caa85a; }
.account-text strong{ font-size:13px; letter-spacing:.2px; color:#f0d38a; }
.caret-mini{ opacity:.85; margin-left:2px; color:#d8b35b; font-weight:900; }

.account-dropdown{
  position:absolute;
  right:0;
  top: calc(100% + 10px);
  min-width: 220px;
  background: rgba(0,0,0,.92);
  border: 1px solid rgba(216,179,91,.55);
  border-radius: 12px;
  padding: 8px;
  box-shadow: 0 18px 45px rgba(0,0,0,.55);
  backdrop-filter: blur(6px);
  opacity:0;
  visibility:hidden;
  transform: translateY(-6px);
  transition: .18s ease;
  z-index: 9999;
}
.account-dropdown a{
  display:block;
  padding: 10px 10px;
  border-radius: 10px;
  color:#e7d29c;
  text-decoration:none;
  font-weight:700;
  transition:.12s ease;
}
.account-dropdown a:hover{
  background: rgba(216,179,91,.10);
  color:#ffe4a8;
}
.dd-sep{ height:1px; margin:6px 6px; background: rgba(216,179,91,.25); }
.dd-danger{ color:#ff6b6b !important; }
.dd-danger:hover{ background: rgba(255,0,0,.08); color:#ff9a9a !important; }

@media (hover:hover) and (pointer:fine){
  .account-menu:hover .account-dropdown{
    opacity:1;
    visibility:visible;
    transform: translateY(0);
  }
}

/* Login */
.account-login{
  display:flex; align-items:center; gap:10px;
  text-decoration:none;
  color:#d8b35b !important;
}

/* =========================================================
   SECTION BANNER (Páginas internas)
   (si algo te sobra, lo tocamos luego, pero esto no rompe)
========================================================= */
#pageTitle, .pageTitle{
  display:none !important;
  height:0 !important;
  margin:0 !important;
  padding:0 !important;
  border:0 !important;
  background:transparent !important;
  overflow:hidden !important;
}

.section-banner{
  max-width: 1000px;
  margin: 0 auto 18px auto;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  border-radius: 12px;
  overflow: hidden;
}
.section-banner img{
  display:block;
  width:100% !important;
  height:auto !important;
  border-radius: 12px;
  box-shadow: 0 0 35px rgba(212,175,55,.35);
}

/* =========================================================
   HOME LAYOUT (CLAVE)
   Sidebar flotante para NO estirar el slider
========================================================= */
.bodyHomePage{
  position: relative;
}

/* Dejar espacio al sidebar flotante */
.bodyHomePage .newsBlock{
  align-items: flex-start !important;
  max-width: calc(100% - 380px);
}

/* Sidebar flotante */
.bodyHomePage .home-sidebar-float{
  position: absolute;
  top: 250px;     /* ajustá si querés subir/bajar */
  right: 60px;
  width: 320px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  z-index: 20;
}

/* Responsive: cae abajo y deja de flotar */
@media (max-width: 1200px){
  .bodyHomePage .home-sidebar-float{
    position: static;
    width: 100%;
    margin: 18px auto 0 auto;
  }
  .bodyHomePage .newsBlock{
    max-width: 100%;
  }
}

/* =========================================================
   HOME SIDEBAR STYLES (Eventos + Cards)
========================================================= */

/* Card base (events + sidecard) */
.bodyHomePage .events-block,
.bodyHomePage .home-sidebar-float .sidecard{
  background: rgba(0,0,0,.45);
  border: 1px solid rgba(255, 199, 76, .18);
  border-radius: 14px;
  box-shadow: 0 10px 35px rgba(0,0,0,.45);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  overflow: hidden;
}

/* Header events */
.bodyHomePage .events-block{ padding: 14px; }
.bodyHomePage .events-block-header{
  display:flex;
  flex-direction:column;
  gap:2px;
  padding-bottom:10px;
  margin-bottom:10px;
  border-bottom: 1px solid rgba(255,199,76,.14);
}
.bodyHomePage .events-title{
  font-weight:700;
  letter-spacing:.4px;
  font-size:13px;
  text-transform:uppercase;
  color:#f3d38a;
}
.bodyHomePage .events-subtitle{
  font-size:11px;
  color: rgba(255,255,255,.55);
}

/* Events rows (sin hover que agrande) */
.bodyHomePage .events-list{ display:flex; flex-direction:column; padding-bottom: 8px; }
.bodyHomePage .event-row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding:10px 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
  margin:0;
}
.bodyHomePage .event-row:last-child{ border-bottom:none; }
.bodyHomePage .event-row:hover{
  background: rgba(255,199,76,.04);
}

.bodyHomePage .event-left{
  display:flex;
  flex-direction:column;
  min-width:0;
}
.bodyHomePage .event-name{
  font-weight:700;
  font-size:12px;
  color: rgba(255,255,255,.92);
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}
.bodyHomePage .event-left small{
  font-size:11px;
  color: rgba(255,255,255,.45);
  margin-top:2px;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}
.bodyHomePage .event-right{
  display:flex;
  flex-direction:column;
  align-items:flex-end;
  text-align:right;
  min-width:110px;
}
.bodyHomePage .event-next{
  font-weight:700;
  font-size:12px;
  color:#f3d38a;
}
.bodyHomePage .event-timer{
  font-size:11px;
  color: rgba(255,255,255,.55);
  margin-top:2px;
}

/* Sidecard header/body */
.bodyHomePage .home-sidebar-float .sidecard{ padding:0; }
.bodyHomePage .sidecard-header{
  padding: 14px 14px 12px 14px;
  border-bottom: 1px solid rgba(255,199,76,.14);
  background: linear-gradient(180deg, rgba(255, 199, 76, .12), rgba(255, 199, 76, 0));
}
.bodyHomePage .sidecard-title{
  font-weight:700;
  font-size:13px;
  letter-spacing:.4px;
  text-transform:uppercase;
  color:#f3d38a;
  text-shadow: 0 0 6px rgba(243,211,138,.35);
}
.bodyHomePage .sidecard-body{
  padding: 8px 14px 12px 14px;
  display:flex;
  flex-direction:column;
}

.bodyHomePage .info-row{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:12px;
  padding:10px 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.bodyHomePage .info-row:last-child{ border-bottom:none; }
.bodyHomePage .info-row:hover{ background: rgba(255,199,76,.04); }

.bodyHomePage .info-row .k{
  font-size:12px;
  color: rgba(255,255,255,.55);
}
.bodyHomePage .info-row .v{
  font-size:12px;
  font-weight:700;
  color:#f3d38a;
  text-align:right;
}
.bodyHomePage .info-sep{
  height:1px;
  background: rgba(255,199,76,.14);
  margin:10px 0;
}

/* Pill on/off */
.bodyHomePage .pill{
  display:inline-flex;
  align-items:center;
  gap:6px;
  padding:3px 9px;
  border-radius:999px;
  font-size:11px;
  font-weight:800;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.25);
}
.bodyHomePage .pill-on{ color:#9ff0b7; border-color: rgba(159,240,183,.25); }
.bodyHomePage .pill-off{ color:#ff9f9f; border-color: rgba(255,159,159,.25); }

/* Staff highlight */
.bodyHomePage .staff-list .info-row .k{
  color: rgba(255,255,255,.92);
  font-weight:600;
}
.bodyHomePage .staff-list .info-row .v{
  color:#f3d38a;
  font-weight:800;
}

/* =========================================================
   DUELS (si duel_rankings.php usa estas clases, queda premium)
   Si no las usa, no rompe nada.
========================================================= */
.bodyHomePage .duelcard .sidecard-subtitle{
  font-size:11px;
  color: rgba(255,255,255,.55);
  display:block;
  margin-top:2px;
}

.bodyHomePage .duel-king-hero{ display:flex; gap:10px; align-items:center; padding:10px 0; }
.bodyHomePage .duel-king-name{ font-weight:800; color: rgba(255,255,255,.92); font-size:13px; }
.bodyHomePage .duel-king-line{ display:flex; gap:6px; margin-top:4px; flex-wrap:wrap; }

.bodyHomePage .duel-pill{
  font-size:10px;
  font-weight:800;
  padding:3px 8px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.25);
}
.bodyHomePage .duel-pill.win{ color:#9ff0b7; border-color: rgba(159,240,183,.25); }
.bodyHomePage .duel-pill.lose{ color:#ff9f9f; border-color: rgba(255,159,159,.25); }
.bodyHomePage .duel-pill.wr{ color:#f3d38a; border-color: rgba(255,199,76,.18); }

.bodyHomePage .duel-head,
.bodyHomePage .duel-row{
  display:grid;
  grid-template-columns: 22px 1fr 26px 26px 38px;
  gap:8px;
  align-items:center;
}
.bodyHomePage .duel-head{
  padding:8px 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
  color: rgba(255,255,255,.55);
  font-size:11px;
  font-weight:700;
}
.bodyHomePage .duel-row{
  padding:9px 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
  font-size:12px;
}
.bodyHomePage .duel-row:last-child{ border-bottom:0; }
.bodyHomePage .duel-name{ color: rgba(255,255,255,.92); font-weight:700; overflow:hidden; text-overflow:ellipsis; white-space:nowrap; }
.bodyHomePage .duel-win{ color:#9ff0b7; font-weight:800; text-align:right; }
.bodyHomePage .duel-lose{ color:#ff9f9f; font-weight:800; text-align:right; }
.bodyHomePage .duel-wr{ font-weight:900; text-align:right; color:#f3d38a; }

/* =========================================================
   HOME LAYOUT DEFINITIVO
   Sidebar a la derecha REAL (no tapa el contenido)
========================================================= */
.bodyHomePage{
  position: relative;
}

/* El bloque principal NO se estira */
.bodyHomePage .newsBlock{
  align-items: flex-start !important;
  padding-right: 360px; /* 320 sidebar + aire */
  box-sizing: border-box;
}

/* Sidebar flotante anclado al centro del layout */
.bodyHomePage .home-sidebar-float{
  position: absolute;
  top: 250px;        /* ajustá altura si querés */
  left: 50%;         /* ancla al centro */
  margin-left: 520px;/* empuja a la derecha del contenido */
  width: 320px;

  display: flex;
  flex-direction: column;
  gap: 14px;
  z-index: 20;

  float: none !important;
  clear: none !important;
}

/* Responsive: cae abajo */
@media (max-width: 1200px){
  .bodyHomePage .home-sidebar-float{
    position: static;
    left: auto;
    margin-left: 0;
    width: 100%;
    margin: 18px auto 0 auto;
  }

  .bodyHomePage .newsBlock{
    padding-right: 0;
  }
}
/* =========================================================
   HOME LAYOUT DEFINITIVO
   Sidebar flotante anclado al wrapper (NO estira slider)
========================================================= */

/* El wrapper es la referencia */
.bodyHomePage .wrapper{
  position: relative;
}

/* Bloque central (slider + news) */
.bodyHomePage .newsBlock{
  align-items: flex-start !important;
  padding-right: 360px; /* espacio real para el sidebar */
  box-sizing: border-box;
}

/* Sidebar flotante DERECHA */
.bodyHomePage .home-sidebar-float{
  position: absolute;
  top: 260px;        /* ajustá altura si querés */
  right: 0;          /* pegado al borde del contenedor */
  width: 320px;

  display: flex;
  flex-direction: column;
  gap: 14px;
  z-index: 20;
}

/* =========================================================
   SIDEBAR CARDS ESTILO
========================================================= */

.bodyHomePage .events-block,
.bodyHomePage .home-sidebar-float .sidecard{
  background: rgba(0,0,0,.45);
  border: 1px solid rgba(255,199,76,.18);
  border-radius: 14px;
  box-shadow: 0 10px 35px rgba(0,0,0,.45);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  overflow: hidden;
}

/* Headers */
.bodyHomePage .events-block{ padding: 14px; }

.bodyHomePage .events-block-header,
.bodyHomePage .sidecard-header{
  padding-bottom:10px;
  margin-bottom:10px;
  border-bottom: 1px solid rgba(255,199,76,.14);
}

.bodyHomePage .events-title,
.bodyHomePage .sidecard-title{
  font-weight:700;
  font-size:13px;
  letter-spacing:.4px;
  text-transform:uppercase;
  color:#f3d38a;
}

/* =========================================================
   EVENTS
========================================================= */

.bodyHomePage .events-list{
  display:flex;
  flex-direction:column;
}

.bodyHomePage .event-row{
  display:flex;
  justify-content:space-between;
  gap:12px;
  padding:10px 0;
  border-bottom:1px solid rgba(255,255,255,.06);
}

.bodyHomePage .event-row:last-child{
  border-bottom:none;
}

.bodyHomePage .event-left{
  display:flex;
  flex-direction:column;
}

.bodyHomePage .event-name{
  font-size:12px;
  font-weight:700;
  color:#fff;
}

.bodyHomePage .event-right{
  text-align:right;
}

.bodyHomePage .event-next{
  font-size:12px;
  font-weight:700;
  color:#f3d38a;
}

.bodyHomePage .event-timer{
/* =========================================================
   HOME LAYOUT - SIDEBAR A LA DERECHA (FUERA DEL CONTENEDOR)
   - Sidebar fijo al viewport
   - El contenido reserva espacio para no taparse
========================================================= */

/* Reservar espacio a la derecha para el sidebar */
.bodyHomePage .newsBlock{
  align-items: flex-start !important;
  padding-right: 420px !important; /* 320 sidebar + margen */
  box-sizing: border-box !important;
}

/* Sidebar SIEMPRE a la derecha del viewport (no del wrapper) */
.bodyHomePage .home-sidebar-float{
  position: fixed !important;
  top: 240px !important;     /* ajustá altura si querés */
  right: 60px !important;    /* más a la derecha */
  width: 320px !important;

  display: flex !important;
  flex-direction: column !important;
  gap: 14px !important;

  z-index: 999 !important;
}

/* Si el header tapa, podés subir/bajar con top */

/* =========================
   RESPONSIVE: abajo en mobile
========================= */
@media (max-width: 1200px){
  .bodyHomePage .home-sidebar-float{
    position: static !important;
    width: 100% !important;
    margin: 18px auto 0 auto !important;
    right: auto !important;
    top: auto !important;
  }

  .bodyHomePage .newsBlock{
    padding-right: 0 !important;
  }
}

/* =========================================================
   HOME SIDEBAR STYLES (Eventos + Cards) - igual que tenías
========================================================= */

.bodyHomePage .events-block,
.bodyHomePage .home-sidebar-float .sidecard{
  background: rgba(0,0,0,.45) !important;
  border: 1px solid rgba(255, 199, 76, .18) !important;
  border-radius: 14px !important;
  box-shadow: 0 10px 35px rgba(0,0,0,.45) !important;
  backdrop-filter: blur(6px) !important;
  -webkit-backdrop-filter: blur(6px) !important;
  overflow: hidden !important;
}

/* Header events */
.bodyHomePage .events-block{ padding: 14px !important; }

.bodyHomePage .events-block-header{
  display:flex !important;
  flex-direction:column !important;
  gap:2px !important;
  padding-bottom:10px !important;
  margin-bottom:10px !important;
  border-bottom: 1px solid rgba(255,199,76,.14) !important;
}

.bodyHomePage .events-title{
  font-weight:700 !important;
  letter-spacing:.4px !important;
  font-size:13px !important;
  text-transform:uppercase !important;
  color:#f3d38a !important;
}
.bodyHomePage .events-subtitle{
  font-size:11px !important;
  color: rgba(255,255,255,.55) !important;
}

/* Events rows */
.bodyHomePage .events-list{ display:flex !important; flex-direction:column !important; padding-bottom: 8px !important; }
.bodyHomePage .event-row{
  display:flex !important;
  align-items:center !important;
  justify-content:space-between !important;
  gap:12px !important;
  padding:10px 0 !important;
  border-bottom: 1px solid rgba(255,255,255,.06) !important;
  margin:0 !important;
}
.bodyHomePage .event-row:last-child{ border-bottom:none !important; }
.bodyHomePage .event-row:hover{ background: rgba(255,199,76,.04) !important; }

.bodyHomePage .event-left{ display:flex !important; flex-direction:column !important; min-width:0 !important; }
.bodyHomePage .event-name{
  font-weight:700 !important;
  font-size:12px !important;
  color: rgba(255,255,255,.92) !important;
  white-space:nowrap !important;
  overflow:hidden !important;
  text-overflow:ellipsis !important;
}
.bodyHomePage .event-left small{
  font-size:11px !important;
  color: rgba(255,255,255,.45) !important;
  margin-top:2px !important;
}

.bodyHomePage .event-right{
  display:flex !important;
  flex-direction:column !important;
  align-items:flex-end !important;
  text-align:right !important;
  min-width:110px !important;
}
.bodyHomePage .event-next{
  font-weight:700 !important;
  font-size:12px !important;
  color:#f3d38a !important;
}
.bodyHomePage .event-timer{
  font-size:11px !important;
  color: rgba(255,255,255,.55) !important;
  margin-top:2px !important;
}

/* Sidecard */
.bodyHomePage .home-sidebar-float .sidecard{ padding:0 !important; }

.bodyHomePage .sidecard-header{
  padding: 14px 14px 12px 14px !important;
  border-bottom: 1px solid rgba(255,199,76,.14) !important;
  background: linear-gradient(180deg, rgba(255, 199, 76, .12), rgba(255, 199, 76, 0)) !important;
}
.bodyHomePage .sidecard-title{
  font-weight:700 !important;
  font-size:13px !important;
  letter-spacing:.4px !important;
  text-transform:uppercase !important;
  color:#f3d38a !important;
  text-shadow: 0 0 6px rgba(243,211,138,.35) !important;
}
.bodyHomePage .sidecard-body{
  padding: 8px 14px 12px 14px !important;
  display:flex !important;
  flex-direction:column !important;
}

.bodyHomePage .info-row{
  display:flex !important;
  justify-content:space-between !important;
  align-items:center !important;
  gap:12px !important;
  padding:10px 0 !important;
  border-bottom: 1px solid rgba(255,255,255,.06) !important;
}
.bodyHomePage .info-row:last-child{ border-bottom:none !important; }
.bodyHomePage .info-row:hover{ background: rgba(255,199,76,.04) !important; }

.bodyHomePage .info-row .k{
  font-size:12px !important;
  color: rgba(255,255,255,.55) !important;
}
.bodyHomePage .info-row .v{
  font-size:12px !important;
  font-weight:700 !important;
  color:#f3d38a !important;
  text-align:right !important;
}
/* =========================================================
   HOME LAYOUT - SIDEBAR A LA DERECHA (FUERA DEL CONTENEDOR)
   - Sidebar fijo al viewport
   - El contenido reserva espacio para no taparse
========================================================= */

/* Reservar espacio a la derecha para el sidebar */
.bodyHomePage .newsBlock{
  align-items: flex-start !important;
  padding-right: 420px !important; /* 320 sidebar + margen */
  box-sizing: border-box !important;
}

/* Sidebar SIEMPRE a la derecha del viewport (no del wrapper) */
.bodyHomePage .home-sidebar-float{
  position: fixed !important;
  top: 240px !important;     /* ajustá altura si querés */
  right: 60px !important;    /* más a la derecha */
  width: 320px !important;

  display: flex !important;
  flex-direction: column !important;
  gap: 14px !important;

  z-index: 999 !important;
}

/* Si el header tapa, podés subir/bajar con top */

/* =========================
   RESPONSIVE: abajo en mobile
========================= */
@media (max-width: 1200px){
  .bodyHomePage .home-sidebar-float{
    position: static !important;
    width: 100% !important;
    margin: 18px auto 0 auto !important;
    right: auto !important;
    top: auto !important;
  }

  .bodyHomePage .newsBlock{
    padding-right: 0 !important;
  }
}

/* =========================================================
   HOME SIDEBAR STYLES (Eventos + Cards) - igual que tenías
========================================================= */

.bodyHomePage .events-block,
.bodyHomePage .home-sidebar-float .sidecard{
  background: rgba(0,0,0,.45) !important;
  border: 1px solid rgba(255, 199, 76, .18) !important;
  border-radius: 14px !important;
  box-shadow: 0 10px 35px rgba(0,0,0,.45) !important;
  backdrop-filter: blur(6px) !important;
  -webkit-backdrop-filter: blur(6px) !important;
  overflow: hidden !important;
}

/* Header events */
.bodyHomePage .events-block{ padding: 14px !important; }

.bodyHomePage .events-block-header{
  display:flex !important;
  flex-direction:column !important;
  gap:2px !important;
  padding-bottom:10px !important;
  margin-bottom:10px !important;
  border-bottom: 1px solid rgba(255,199,76,.14) !important;
}

.bodyHomePage .events-title{
  font-weight:700 !important;
  letter-spacing:.4px !important;
  font-size:13px !important;
  text-transform:uppercase !important;
  color:#f3d38a !important;
}
.bodyHomePage .events-subtitle{
  font-size:11px !important;
  color: rgba(255,255,255,.55) !important;
}

/* Events rows */
.bodyHomePage .events-list{ display:flex !important; flex-direction:column !important; padding-bottom: 8px !important; }
.bodyHomePage .event-row{
  display:flex !important;
  align-items:center !important;
  justify-content:space-between !important;
  gap:12px !important;
  padding:10px 0 !important;
  border-bottom: 1px solid rgba(255,255,255,.06) !important;
  margin:0 !important;
}
.bodyHomePage .event-row:last-child{ border-bottom:none !important; }
.bodyHomePage .event-row:hover{ background: rgba(255,199,76,.04) !important; }

.bodyHomePage .event-left{ display:flex !important; flex-direction:column !important; min-width:0 !important; }
.bodyHomePage .event-name{
  font-weight:700 !important;
  font-size:12px !important;
  color: rgba(255,255,255,.92) !important;
  white-space:nowrap !important;
  overflow:hidden !important;
  text-overflow:ellipsis !important;
}
.bodyHomePage .event-left small{
  font-size:11px !important;
  color: rgba(255,255,255,.45) !important;
  margin-top:2px !important;
}

.bodyHomePage .event-right{
  display:flex !important;
  flex-direction:column !important;
  align-items:flex-end !important;
  text-align:right !important;
  min-width:110px !important;
}
.bodyHomePage .event-next{
  font-weight:700 !important;
  font-size:12px !important;
  color:#f3d38a !important;
}
.bodyHomePage .event-timer{
  font-size:11px !important;
  color: rgba(255,255,255,.55) !important;
  margin-top:2px !important;
}

/* Sidecard */
.bodyHomePage .home-sidebar-float .sidecard{ padding:0 !important; }

.bodyHomePage .sidecard-header{
  padding: 14px 14px 12px 14px !important;
  border-bottom: 1px solid rgba(255,199,76,.14) !important;
  background: linear-gradient(180deg, rgba(255, 199, 76, .12), rgba(255, 199, 76, 0)) !important;
}
.bodyHomePage .sidecard-title{
  font-weight:700 !important;
  font-size:13px !important;
  letter-spacing:.4px !important;
  text-transform:uppercase !important;
  color:#f3d38a !important;
  text-shadow: 0 0 6px rgba(243,211,138,.35) !important;
}
.bodyHomePage .sidecard-body{
  padding: 8px 14px 12px 14px !important;
  display:flex !important;
  flex-direction:column !important;
}

.bodyHomePage .info-row{
  display:flex !important;
  justify-content:space-between !important;
  align-items:center !important;
  gap:12px !important;
  padding:10px 0 !important;
  border-bottom: 1px solid rgba(255,255,255,.06) !important;
}
.bodyHomePage .info-row:last-child{ border-bottom:none !important; }
.bodyHomePage .info-row:hover{ background: rgba(255,199,76,.04) !important; }

.bodyHomePage .info-row .k{
  font-size:12px !important;
  color: rgba(255,255,255,.55) !important;
}
.bodyHomePage .info-row .v{
  font-size:12px !important;
  font-weight:700 !important;
  color:#f3d38a !important;
  text-align:right !important;
}
/* =========================================================
   FIX DEFINITIVO: EVENTOS AL BORDE DERECHO (FUERA DEL WRAPPER)
   Pegar al FINAL del CSS
   ========================================================= */

/* 1) Reservar espacio en el wrapper para que no se tape el contenido */
@media (min-width: 1201px){
  .wrapper{
    padding-right: 360px !important; /* 320 + aire */
  }
}

/* 2) Anclar la columna de eventos al viewport (derecha real) */
@media (min-width: 1201px){
  /* cubro ambos nombres porque en tu CSS existen .eventsBlock y .events-block */
  .eventsBlock,
  .events-block{
    position: fixed !important;
    right: 30px !important;   /* pegado a la derecha */
    top: 160px !important;    /* bajalo/subilo a gusto */
    width: 320px !important;
    z-index: 99999 !important;

    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;

    margin: 0 !important;
    float: none !important;
  }

  /* 3) Evitar que el contenedor lo “empuje” o le aplique layout */
  .newsBlock,
  .newsBlockFlex{
    overflow: visible !important;
  }
}

/* 4) En pantallas chicas vuelve al flujo normal */
@media (max-width: 1200px){
  .wrapper{ padding-right: 0 !important; }

  .eventsBlock,
  .events-block{
    position: static !important;
    width: 100% !important;
    right: auto !important;
    top: auto !important;
  }
}
/* =========================
   HOME - HERO/SLIDER FIX
   Banner 1000x464 centrado + costados transparentes
   ========================= */

/* 1) Que el bloque del slider no “pinte” fondo/borde */
.home-slider,
.home-slider * ,
#homeSlider,
#homeSlider * {
  background: transparent !important;
  box-shadow: none !important;
}

/* Si tu template usa un marco con pseudo-elementos */
.home-slider::before,
.home-slider::after,
#homeSlider::before,
#homeSlider::after {
  content: none !important;
}

/* 2) Forzamos la altura real del hero (464) */
.home-slider,
#homeSlider,
.home-slider .swiper,
#homeSlider .swiper,
.home-slider .swiper-wrapper,
#homeSlider .swiper-wrapper,
.home-slider .swiper-slide,
#homeSlider .swiper-slide {
  height: 464px !important;
  min-height: 464px !important;
}

/* 3) Centramos el banner (1000x464) y dejamos costados libres */
.home-slider .swiper-slide,
#homeSlider .swiper-slide {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  overflow: visible !important; /* importante para que NO recorte */
}

/* 4) El IMG exactamente 1000x464 (sin estirar), centrado */
.home-slider .swiper-slide img,
#homeSlider .swiper-slide img {
  width: 1000px !important;
  height: 464px !important;
  max-width: 100% !important;   /* por si estás en responsive */
  object-fit: cover !important;
  display: block !important;
  margin: 0 auto !important;
}

/* 5) Si hay padding/margen en el contenedor interno que “hace caja” */
.home-slider .container,
#homeSlider .container {
  padding: 0 !important;
  margin: 0 auto !important;
  border: 0 !important;
}

/* 6) Si el slider estaba dentro de un panel con borde dorado */
.home-slider .panel,
#homeSlider .panel,
.home-slider .box,
#homeSlider .box {
  border: 0 !important;
  box-shadow: none !important;
  background: transparent !important;
}
