/**
 * Annual Reports Carousel Styles
 * 
 * Estilos para el scroll horizontal de reportes anuales
 */

/* Contenedor con scroll horizontal */
.reports__item__reports {
  display: flex !important;
  flex-direction: row !important;
  gap: 20px !important;
  overflow-x: auto !important;
  overflow-y: hidden !important;
  padding: 20px 0 !important;
  scroll-behavior: smooth !important;
  -webkit-overflow-scrolling: touch !important;
}

/* Ocultar scrollbar en navegadores webkit (Chrome, Safari) pero mantener funcionalidad */
.reports__item__reports::-webkit-scrollbar {
  height: 8px;
}

.reports__item__reports::-webkit-scrollbar-track {
  background: #f5f3f1;
  border-radius: 4px;
}

.reports__item__reports::-webkit-scrollbar-thumb {
  background: var(--olive, #BABC16);
  border-radius: 4px;
}

.reports__item__reports::-webkit-scrollbar-thumb:hover {
  background: #9a9d13;
}

/* Cada reporte tiene ancho fijo para mantener consistencia */
.reports__item__reports__report {
  flex-shrink: 0 !important;
  width: 250px !important;
  min-width: 250px !important;
  background-color: #f5f3f1;
  display: flex;
  flex-direction: column;
  padding: 40px !important;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.reports__item__reports__report:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.reports__item__reports__report > span {
  color: var(--olive);
  text-align: center;
  font-family: Raleway;
  font-size: 32px;
  font-style: normal;
  font-weight: 400;
  line-height: 19.8px;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-align: start;
  display: inline-block;
  margin-bottom: 10px;
}

.reports__item__reports__report > a {
  color: #FFF;
  text-align: center;
  font-family: Raleway;
  font-size: 9px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px;
  letter-spacing: 1px;
  text-decoration: none;
  line-height: 30px;
  padding: 0px 5px;
  height: 30px;
  margin-bottom: 10px;
  background-color: var(--olive);
  transition: background-color 0.2s ease;
}

.reports__item__reports__report > a:hover {
  background-color: #9a9d13;
}

/* Responsive: En mobile, ajustar ancho de reportes */
@media (max-width: 768px) {
  .reports__item__reports__report {
    width: 200px !important;
    min-width: 200px !important;
    padding: 30px 20px !important;
    font-size: 0.9em;
  }
  
  .reports__item__reports__report > span {
    font-size: 28px;
  }
}



