.eventos-container {
  max-width: 1100px;
  margin: 40px auto;
  padding: 0 15px;
}

.page-title {
  font-size: 2.4rem;
  font-weight: 700;
  color: #b00000;
  margin-bottom: 25px;
}

/* Tabla desktop */
.custom-table {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
}

.custom-table thead {
  background: #f5f5f5;
}

.custom-table th {
  font-weight: 600;
  color: #444;
}

.evento-link {
  text-decoration: none;
  font-weight: 600;
  color: #b00000;
}

.evento-link:hover {
  text-decoration: underline;
}

/* Cards móviles */
.evento-card {
  border-radius: 10px;
}

.evento-card .card-title a {
  font-size: 1.1rem;
  color: #b00000;
  text-decoration: none;
}

.evento-card .card-title a:hover {
  text-decoration: underline;
}

.evento-card p {
  font-size: 0.95rem;
  color: #444;
  margin-bottom: 6px;
}

/* [MOBILE FIX] Evitar cortes de texto largos en títulos */
.evento-card .card-title a { word-break: break-word; overflow-wrap: anywhere; }

/* Responsive */
@media (max-width: 768px) {
  .page-title {
    font-size: 2rem;
    text-align: center;
  }
  /* [MOBILE FIX] Respiro lateral en móviles */
  .eventos-container { padding-left: 16px; padding-right: 16px; }
}

@media (max-width: 576px) {
  .page-title {
    font-size: 1.6rem;
  }
  /* [MOBILE FIX] Tablas navegables si aparecen en móviles */
  .custom-table, .table { display: block; width: 100%; overflow-x: auto; -webkit-overflow-scrolling: touch; }
}
