/* ================================================
   ESTILOS PARA EVENTOS MODERNOS
   ================================================ */

.modern-event-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.modern-event-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* ================================================
   ESTILOS ESPECÍFICOS PARA EVENTOS PRÓXIMOS
   ================================================ */
.modern-event-card.upcoming-event {
  border: 2px solid rgba(34, 197, 94, 0.1);
  position: relative;
}

.modern-event-card.upcoming-event:hover {
  border-color: rgba(34, 197, 94, 0.3);
}

/* Efecto de pulso para eventos próximos */
.modern-event-card.upcoming-event::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, #22c55e, #16a34a, #15803d);
  border-radius: 22px;
  z-index: -1;
  animation: pulse-upcoming 2s infinite;
}

@keyframes pulse-upcoming {
  0% { opacity: 0.4; }
  50% { opacity: 0.8; }
  100% { opacity: 0.4; }
}

/* Ajustes de altura para eventos próximos (más anchos) */
.modern-event-card.upcoming-event .card-image-container {
  height: 320px;
}

.modern-event-card.upcoming-event .card-content {
  padding: 28px;
}

.modern-event-card.upcoming-event .event-title {
  font-size: 1.2rem;
}

/* ================================================
   ESTILOS ESPECÍFICOS PARA EVENTOS HISTÓRICOS
   ================================================ */
.modern-event-card.historical-event {
  border: 2px solid rgba(107, 114, 128, 0.1);
  height: 95%;
}

.modern-event-card.historical-event:hover {
  border-color: rgba(107, 114, 128, 0.3);
}



/* ================================================
   ELEMENTOS COMUNES
   ================================================ */
.event-link {
  text-decoration: none;
  color: inherit;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.card-image-container {
  position: relative;
  height: 240px;
  overflow: hidden;
}

.card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.modern-event-card:hover .card-image {
  transform: scale(1.1);
}

/* ================================================
   OVERLAYS Y EFECTOS
   ================================================ */
.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.3) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}


.image-overlay.historical {
  background: linear-gradient(135deg, rgba(107, 114, 128, 0.2) 0%, rgba(75, 85, 99, 0.4) 100%);
}

.modern-event-card:hover .image-overlay {
  opacity: 1;
}

/* ================================================
   BADGES DE FECHA
   ================================================ */
.date-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: #007bff;
  color: white;
  padding: 8px 12px;
  border-radius: 12px;
  text-align: center;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
  z-index: 3;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.date-badge.upcoming {
  background: #007bff;
  box-shadow: 0 8px 25px rgba(34, 197, 94, 0.4);
  animation: glow-upcoming 2s infinite alternate;
}

.date-badge.historical {
  background: linear-gradient(135deg, #6b7280 0%, #4b5563 100%);
  box-shadow: 0 8px 25px rgba(107, 114, 128, 0.3);
}

@keyframes glow-upcoming {
  from { box-shadow: 0 8px 25px rgba(34, 197, 94, 0.4); }
  to { box-shadow: 0 8px 35px rgba(34, 197, 94, 0.6); }
}

.date-day {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
  display: block;
}

.date-month {
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  opacity: 0.9;
}

/* ================================================
   BADGES DE TIPO DE EVENTO
   ================================================ */
.event-type-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(107, 114, 128, 0.9);
  color: white;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  backdrop-filter: blur(10px);
}

.event-type-badge.upcoming {
  background: linear-gradient(135deg, #22c55e, #16a34a);
  animation: bounce-upcoming 2s infinite;
}

@keyframes bounce-upcoming {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(-4px); }
  60% { transform: translateY(-2px); }
}

/* ================================================
   EFECTOS HOVER
   ================================================ */
.hover-effect {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: all 0.3s ease;
}

.modern-event-card:hover .hover-effect {
  opacity: 1;
}

.hover-icon {
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #333;
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  transform: scale(0.8);
  transition: transform 0.3s ease;
}

.modern-event-card:hover .hover-icon {
  transform: scale(1);
}

/* ================================================
   CONTENIDO DE TARJETAS
   ================================================ */
.card-content {
  padding: 24px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* Ajuste para eventos sin badges inferiores */
.modern-event-card.historical-event .card-content {
  justify-content: center;
}



/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) and (max-width: 1199.98px) {
  .events-section-header.historical-header {
    width: 1300px;
  }

}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
  .events-section-header.historical-header {
    width: 1300px;
  }

}
/* Fondo específico para el área del título de eventos próximos */
.modern-event-card.upcoming-event .card-content {
  background: #efefef;
  animation: pulse-content-upcoming 3s infinite;
}

@keyframes pulse-content-upcoming {
  0%, 100% {
    background: #efefef;
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
  }
  50% {
    background: #ffffff;
    box-shadow: 0 0 0 8px rgba(255, 255, 255, 0.2);
  }
}

/* Fondo para resultados de búsqueda - sin animación */
.views-view--buscador .modern-event-card .card-content,
.views-view--cursos-anteriores-buscador .modern-event-card .card-content {
  background: #efefef;
}

.event-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #2d3748;
  line-height: 1.4;
  margin: 0 0 16px 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.title-highlight {
  color: #667eea;
  font-weight: 700;
}

.title-highlight.upcoming {
  color: #22c55e;
}

.title-highlight.historical {
  color: #6b7280;
}

.source-indicator {
  margin-top: auto;
}

.source-badge {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  background: #007bff !important;
}

.source-badge.formation {
  background: linear-gradient(135deg, #48bb78, #38a169);
  color: white;
}

.source-badge.faculty {
  background: linear-gradient(135deg, #ed8936, #dd6b20);
  color: white;
}

.source-badge.external {
  background: linear-gradient(135deg, #4299e1, #3182ce);
  color: white;
}

/* ================================================
   ANIMACIONES
   ================================================ */
@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.modern-event-card {
  animation: slideInUp 0.6s ease forwards;
}

/* Efecto de carga escalonada */
.col-sm-12:nth-child(1) .modern-event-card { animation-delay: 0.1s; }
.col-sm-12:nth-child(2) .modern-event-card { animation-delay: 0.2s; }
.col-sm-12:nth-child(3) .modern-event-card { animation-delay: 0.3s; }
.col-sm-12:nth-child(4) .modern-event-card { animation-delay: 0.4s; }
.col-sm-12:nth-child(5) .modern-event-card { animation-delay: 0.5s; }
.col-sm-12:nth-child(6) .modern-event-card { animation-delay: 0.6s; }

/* ================================================
   RESPONSIVE DESIGN
   ================================================ */

/* Pantallas grandes */
@media (min-width: 1200px) {
  .modern-event-card.upcoming-event .card-image-container {
    height: 380px;
  }
}

/* Pantallas medianas */
@media (min-width: 992px) and (max-width: 1199px) {
  .modern-event-card.upcoming-event .card-image-container {
    height: 350px;
  }
}

/* Tablets y móviles */
@media (max-width: 768px) {
  .card-image-container {
    height: 200px;
  }

  .modern-event-card.upcoming-event .card-image-container {
    height: 200px;
  }

  .card-content {
    padding: 20px;
  }

  .modern-event-card.upcoming-event .card-content {
    padding: 20px;
  }

  .event-title {
    font-size: 1rem;
  }

  .modern-event-card.upcoming-event .event-title {
    font-size: 1rem;
  }

  .date-badge {
    padding: 10px;
    top: 12px;
    right: 12px;
  }

  .date-day {
    font-size: 1.3rem;
  }

  .event-type-badge {
    top: 12px;
    left: 12px;
    padding: 4px 8px;
    font-size: 0.7rem;
  }
}

/* ================================================
   TÍTULOS DE SECCIÓN MODERNOS
   ================================================ */
.events-section-header {
  margin: 60px 0 40px 0;
  position: relative;
}

.section-title-container {
  display: flex;
  align-items: center;
  gap: 20px;
  position: relative;
}

.title-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.title-icon.upcoming {
  background: linear-gradient(135deg, #22c55e, #16a34a);
  color: white;
  animation: pulse-icon-upcoming 3s infinite;
}

.title-icon.historical {
  background: linear-gradient(135deg, #6b7280, #4b5563);
  color: white;
}

@keyframes pulse-icon-upcoming {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 8px 25px rgba(34, 197, 94, 0.3);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 12px 35px rgba(34, 197, 94, 0.4);
  }
}

.section-title {
  flex: 1;
  margin: 0;
  position: relative;
}

.title-main {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 8px;
  background: linear-gradient(135deg, #2d3748, #4a5568);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-title.upcoming .title-main {
  background: linear-gradient(135deg, #22c55e, #16a34a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-title.historical .title-main {
  background: linear-gradient(135deg, #6b7280, #4b5563);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.title-sub {
  display: block;
  font-size: 1rem;
  font-weight: 500;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 4px;
}

.title-year {
  display: inline-block;
  background: linear-gradient(135deg, #22c55e, #16a34a);
  color: white;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-left: 12px;
  animation: glow-year 2s infinite alternate;
}

@keyframes glow-year {
  from { box-shadow: 0 4px 15px rgba(34, 197, 94, 0.3); }
  to { box-shadow: 0 6px 25px rgba(34, 197, 94, 0.5); }
}

.title-decoration {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 80px;
  height: 4px;
  border-radius: 2px;
}

.title-decoration.upcoming {
  background: linear-gradient(90deg, #22c55e, #16a34a);
  animation: decoration-pulse 2s infinite;
}

.title-decoration.historical {
  background: linear-gradient(90deg, #6b7280, #4b5563);
}

@keyframes decoration-pulse {
  0%, 100% { opacity: 0.7; width: 80px; }
  50% { opacity: 1; width: 100px; }
}

/* Responsive para títulos */
@media (max-width: 768px) {
  .events-section-header {
    margin: 40px 0 30px 0;
  }

  .section-title-container {
    gap: 15px;
  }

  .title-icon {
    width: 50px;
    height: 50px;
  }

  .title-main {
    font-size: 2rem;
  }

  .title-sub {
    font-size: 0.875rem;
    letter-spacing: 1px;
  }

  .title-decoration {
    width: 60px;
  }

  .title-year {
    margin-left: 8px;
    padding: 3px 10px;
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  .section-title-container {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .title-decoration {
    position: relative;
    right: auto;
    top: auto;
    transform: none;
    width: 100px;
    margin: 0 auto;
  }
}

/* ================================================
   ACORDEÓN DE AÑOS - EVENTOS HISTÓRICOS
   ================================================ */

/* Contenedor de la sección histórica para máximo ancho */
.views-view--inicio .views-view__content {
  width: 100%;
}

.views-view--inicio .row {
  margin-left: 0;
  margin-right: 0;
  width: 100%;
}

/* Asegurar ancho completo para eventos históricos */
.views-view-unformatted.views-view-unformatted--inicio--block-1 {
  width: 100%;
  max-width: 100%;
}

.views-view-unformatted.views-view-unformatted--inicio--block-1 .year-accordion-container {
  margin-left: 0;
  margin-right: 0;
}

/* Remover limitaciones de Bootstrap si existen */
.container .year-accordion-container,
.container-fluid .year-accordion-container {
  max-width: 100% !important;
  width: 100% !important;
}

/* Forzar ancho completo en toda la cadena de contenedores */
.views-view--inicio .views-view__content,
.views-view--inicio .view-content,
.views-view--inicio .view-content > .row,
.views-view--inicio .year-accordion-container {
  width: 100% !important;
  max-width: 100% !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

/* Específico para el acordeón */
.year-accordion-container.w-100 {
  flex: 1;
  width: 100% !important;
}

.year-accordion-container {
  margin-bottom: 2rem;
  background: #ffffff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border: 1px solid rgba(0, 0, 0, 0.05);
  width: 100%;
  max-width: 100%;
}

.year-accordion-container:hover {
  box-shadow: 0 8px 35px rgba(0, 0, 0, 0.12);
  transform: translateY(-2px);
}

/* ================================================
   HEADER DEL AÑO
   ================================================ */
.year-header {
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  padding: 0;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  user-select: none;
}

.year-header:hover {
  background: linear-gradient(135deg, #e2e8f0 0%, #cbd5e1 100%);
}

.year-header:focus {
  outline: 3px solid rgba(59, 130, 246, 0.5);
  outline-offset: 2px;
}

.year-header-content {
  display: flex;
  align-items: center;
  padding: 28px 32px;
  position: relative;
  z-index: 2;
}

/* ================================================
   ICONO DEL AÑO
   ================================================ */
.year-icon-container {
  margin-right: 20px;
}

.year-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #6b7280, #4b5563);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(107, 114, 128, 0.3);
}

.year-header:hover .year-icon {
  transform: scale(1.05) rotate(5deg);
  box-shadow: 0 6px 25px rgba(107, 114, 128, 0.4);
}

/* ================================================
   INFORMACIÓN DEL AÑO
   ================================================ */
.year-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.year-title {
  margin: 0;
  font-size: 1.75rem;
  font-weight: 700;
  color: #1f2937;
  transition: color 0.3s ease;
}

.year-header:hover .year-title {
  color: #4b5563;
}

.year-subtitle {
  font-size: 1rem;
  color: #6b7280;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-top: 2px;
}

/* ================================================
   TOGGLE ICON
   ================================================ */
.year-toggle {
  margin-left: 20px;
}

.toggle-icon {
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.year-header:hover .toggle-icon {
  background: rgba(255, 255, 255, 1);
  transform: scale(1.1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.icon-chevron {
  color: #6b7280;
  transition: transform 0.3s ease;
}

/* Rotación del ícono cuando está expandido */
.year-header:not(.collapsed) .icon-chevron {
  transform: rotate(180deg);
}

/* Estado inicial del chevron */
.year-header.collapsed .icon-chevron {
  transform: rotate(0deg);
}

/* ================================================
   BARRA DE PROGRESO
   ================================================ */
.year-progress-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: rgba(107, 114, 128, 0.1);
}

.progress-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #6b7280, #4b5563);
  transition: width 0.6s ease;
}

.year-header:hover .progress-fill {
  width: 100%;
}

/* ================================================
   CONTENIDO COLLAPSIBLE
   ================================================ */
.year-collapse {
  background: #fafafa;
}

.year-content {
  padding: 24px;
  border-top: 1px solid rgba(107, 114, 128, 0.1);
  width: 100%;
}

/* Animación de entrada del contenido */
.year-collapse.show .year-content {
  animation: fadeInUp 0.3s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

@keyframes fadeInUp {
  from {
    opacity: 0.8;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* DESHABILITAR animaciones CSS originales dentro del acordeón */
.year-content .modern-event-card {
  animation: none !important;
  animation-delay: 0s !important;
}

/* Preparar las tarjetas para animación cuando el acordeón está cerrado */
.year-collapse:not(.show) .modern-event-card {
  opacity: 0;
  transform: translateY(20px);
  transition: none;
}

/* Estado base para tarjetas en el acordeón abierto */
.year-collapse.show .modern-event-card {
  opacity: 1;
  transform: none;
  transition: all 0.3s ease;
}

/* Animación simple usando solo CSS para acordeón */
.modern-event-card.accordion-animate {
  animation: accordionSlideIn 0.5s cubic-bezier(0.23, 1, 0.32, 1) forwards !important;
  animation-fill-mode: both !important;
}

.modern-event-card.accordion-animate:nth-child(1) { animation-delay: 0.1s !important; }
.modern-event-card.accordion-animate:nth-child(2) { animation-delay: 0.15s !important; }
.modern-event-card.accordion-animate:nth-child(3) { animation-delay: 0.2s !important; }
.modern-event-card.accordion-animate:nth-child(4) { animation-delay: 0.25s !important; }
.modern-event-card.accordion-animate:nth-child(5) { animation-delay: 0.3s !important; }
.modern-event-card.accordion-animate:nth-child(6) { animation-delay: 0.35s !important; }

@keyframes accordionSlideIn {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Mejora de performance para animaciones */
.modern-event-card.accordion-animate {
  will-change: transform, opacity;
}

.modern-event-card:not(.accordion-animate) {
  will-change: auto;
}

/* ================================================
   ESTADOS ESPECIALES
   ================================================ */

/* Primer año - más destacado */
.year-accordion-container:first-child .year-header {
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
}

.year-accordion-container:first-child .year-header:hover {
  background: linear-gradient(135deg, #e0f2fe 0%, #bae6fd 100%);
}

.year-accordion-container:first-child .year-icon {
  background: linear-gradient(135deg, #0ea5e9, #0284c7);
  box-shadow: 0 4px 15px rgba(14, 165, 233, 0.3);
}

.year-accordion-container:first-child .year-header:hover .year-icon {
  box-shadow: 0 6px 25px rgba(14, 165, 233, 0.4);
}

.year-accordion-container:first-child .progress-fill {
  background: linear-gradient(90deg, #0ea5e9, #0284c7);
}

/* ================================================
   RESPONSIVE DESIGN
   ================================================ */

@media (max-width: 768px) {
  .year-header-content {
    padding: 24px 24px;
    gap: 15px;
  }

  .year-icon-container {
    margin-right: 16px;
  }

  .year-icon {
    width: 50px;
    height: 50px;
  }

  .year-title {
    font-size: 1.5rem;
  }

  .year-subtitle {
    font-size: 0.9rem;
  }

  .year-toggle {
    margin-left: 16px;
  }

  .toggle-icon {
    width: 42px;
    height: 42px;
  }

  .year-content {
    padding: 20px 16px;
  }
}

@media (max-width: 480px) {
  .year-header-content {
    padding: 20px 20px;
  }

  .year-icon {
    width: 45px;
    height: 45px;
  }

  .year-title {
    font-size: 1.25rem;
  }

  .year-subtitle {
    font-size: 0.85rem;
  }

  .toggle-icon {
    width: 38px;
    height: 38px;
  }

  .year-content {
    padding: 16px 12px;
  }
}

/* ================================================
   TRANSICIONES SUAVES
   ================================================ */

.year-collapse {
  transition: none !important;
}

.year-collapse.collapsing {
  transition: height 0.4s ease !important;
}

/* Mejora en la interacción táctil */
@media (hover: none) and (pointer: coarse) {
  .year-header:hover {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  }

  .year-header:active {
    background: linear-gradient(135deg, #e2e8f0 0%, #cbd5e1 100%);
    transform: scale(0.98);
  }
}

/* Efecto de enfoque para accesibilidad */
.year-header:focus-visible {
  outline: 3px solid #3b82f6;
  outline-offset: 2px;
}

/* Indicador de año simple - esquina inferior derecha */
.year-simple {
  position: absolute;
  bottom: 15px;
  right: 15px;
  background: #6c757d;
  color: white;
  padding: 3px 8px;
  border-radius: 12px;
  font-size: 0.7rem;
  font-weight: 600;
  line-height: 1;
  transition: all 0.3s ease;
  opacity: 0.8;
}

.modern-event-card:hover .year-simple {
  background: #495057;
  opacity: 1;
  transform: translateY(-1px);
}
