﻿/**
 * ZOAH Timeline Styles
 * Custom styles para la pagina Quienes Somos - Timeline
 * Linea de tiempo con CSS puro (sin imagen)
 * 
 * @package G5Plus_Hebes_Child
 * @version 2.0.0
 */

/* === VARIABLES CSS === */
:root {
  --zoah-primary-color: #7B2D8E;
  --zoah-secondary-color: #E91E63;
  --zoah-accent-color: #FFD700;
  --zoah-text-color: #333;
  --zoah-text-light: #666;
  --zoah-bg-light: #F8F5F9;
  --zoah-white: #FFFFFF;
  --zoah-font-primary: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --zoah-timeline-width: 6px;
  --zoah-node-size: 24px;
}

/* === WRAPPER === */
.zoah-timeline-wrapper {
  background-color: var(--zoah-white);
  width: 100%;
  overflow: hidden;
}

/* === HERO SECTION === */
.zoah-timeline-wrapper .hero-section {
  text-align: center;
  padding: 4rem 2rem 3rem;
  background: linear-gradient(to bottom, var(--zoah-white), var(--zoah-bg-light));
}

.zoah-timeline-wrapper .hero-section__title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--zoah-text-color);
  margin-bottom: 0.5rem;
  font-family: var(--zoah-font-primary);
}

.zoah-timeline-wrapper .hero-section__subtitle {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--zoah-primary-color);
  font-family: var(--zoah-font-primary);
  margin: 0;
}

/* === TIMELINE === */
.zoah-timeline-wrapper .timeline {
  position: relative;
  max-width: 1300px;
  margin: 0 auto;
  padding: 4rem 2rem 6rem;
  overflow: visible;
}

/* Imagen de fondo de la hoja - detrás de todos los componentes */
.zoah-timeline-wrapper .timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  max-width: 800px;
  height: 100%;
  background-image: url('https://zoahvenezuela.com/wp-content/uploads/2025/10/Hoja-Zoah.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.2;
  z-index: 0;
  pointer-events: none;
}

/* Efecto de brillo en la línea (decorativo) */
.zoah-timeline-wrapper .timeline::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg,
    rgba(255, 255, 255, 0.4) 0%,
    rgba(255, 255, 255, 0.2) 30%,
    rgba(255, 255, 255, 0.1) 50%,
    rgba(255, 255, 255, 0.2) 70%,
    rgba(255, 255, 255, 0.4) 100%);
  transform: translateX(-350%);
  z-index: 1;
}

/* Timeline Items */
.zoah-timeline-wrapper .timeline-item {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 140px;
  z-index: 2;
  margin-bottom: 0;
}

/* Espaciado específico para cada año */
.zoah-timeline-wrapper .timeline-item:nth-child(1) {
  margin-bottom: 1rem;
}

.zoah-timeline-wrapper .timeline-item:nth-child(2) {
  margin-bottom: 1rem;
}

.zoah-timeline-wrapper .timeline-item:nth-child(3) {
  margin-bottom: 1rem;
}

.zoah-timeline-wrapper .timeline-item:nth-child(4) {
  margin-bottom: 1rem;
}

.zoah-timeline-wrapper .timeline-item:nth-child(5) {
  margin-bottom: 1rem;
}

.zoah-timeline-wrapper .timeline-item:nth-child(6) {
  margin-bottom: 1rem;
}

.zoah-timeline-wrapper .timeline-item:nth-child(7) {
  margin-bottom: 1rem;
}

.zoah-timeline-wrapper .timeline-item:nth-child(8) {
  margin-bottom: 1rem;
}

.zoah-timeline-wrapper .timeline-item:nth-child(9) {
  margin-bottom: 1rem;
}

.zoah-timeline-wrapper .timeline-item:nth-child(10) {
  margin-bottom: 4rem;
}

.zoah-timeline-wrapper .timeline-item--left {
  justify-content: flex-end;
}

.zoah-timeline-wrapper .timeline-item--right {
  justify-content: flex-start;
}

/* Timeline Node - Círculos en la línea */
/*.zoah-timeline-wrapper .timeline-item__node {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: var(--zoah-node-size);
  height: var(--zoah-node-size);
  background-color: var(--zoah-white);
  border: 4px solid var(--zoah-primary-color);
  border-radius: 50%;
  z-index: 3;
  box-shadow: 
    0 0 0 8px rgba(123, 45, 142, 0.15),
    0 4px 12px rgba(123, 45, 142, 0.3);
}*/

/* Timeline Connector */
.zoah-timeline-wrapper .timeline-item__connector {
  position: absolute;
  width: 80px;
  height: 2px;
  background-color: var(--zoah-primary-color);
  z-index: 2;
}

.zoah-timeline-wrapper .timeline-item--left .timeline-item__connector {
  right: 50%;
  margin-right: 12px;
}

.zoah-timeline-wrapper .timeline-item--right .timeline-item__connector {
  left: 50%;
  margin-left: 12px;
}

/* Timeline Connector para imágenes del lado derecho */
.zoah-timeline-wrapper .timeline-item--right .timeline-item__image-connector {
  margin-top: 96px;
  position: absolute;
  width: 80px;
  height: 2px;
  background-color: var(--zoah-primary-color);
  z-index: 2;
  right: 50%;
  margin-right: 12px;
}

/* Timeline Content */
.zoah-timeline-wrapper .timeline-item__content {
  position: absolute;
  width: 180px;
  padding: 0;
}

.zoah-timeline-wrapper .timeline-item--left .timeline-item__content {
  text-align: left;
  left: calc(50% - 410px);
}

/* Reglas específicas para desktop - Solo se aplican en pantallas mayores a 767px */
@media (min-width: 768px) {
  .zoah-timeline-wrapper .timeline-item--left .timeline-item__content--2015 {
    text-align: left;
    left: calc(50% - 475px) !important;
  }

  .zoah-timeline-wrapper .timeline-item--left .timeline-item__content--2017 {
    text-align: left;
    left: calc(50% - 479px);
  }

  .zoah-timeline-wrapper .timeline-item--left .timeline-item__content--2022 {
    text-align: left;
    left: calc(50% - 479px) !important;
  }

  .zoah-timeline-wrapper .timeline-item--left .timeline-item__content--2024 {
    text-align: left;
    left: calc(50% - 479px) !important;
  }

  .zoah-timeline-wrapper .timeline-item--left .timeline-item__content--2026 {
    text-align: left;
    left: calc(50% - 410px) !important;
  }
}

.zoah-timeline-wrapper .timeline-item--right .timeline-item__content {
  text-align: left;
  right: calc(50% - 410px);
}

.zoah-timeline-wrapper .timeline-item--right .timeline-item__content--2016 {
  text-align: left;
  right: calc(50% - 504px);
}

.zoah-timeline-wrapper .timeline-item--right .timeline-item__content--2002 {
  text-align: left;
  right: calc(50% - 480px);
}

.zoah-timeline-wrapper .timeline-item--right .timeline-item__content--2018 {
  text-align: left;
  right: calc(50% - 513px);
}

.zoah-timeline-wrapper .timeline-item--right .timeline-item__content--2023 {
  text-align: left;
  right: calc(50% - 504px);
}

.zoah-timeline-wrapper .timeline-item--right .timeline-item__content--2025 {
  text-align: left;
  right: calc(50% - 504px);
}

.zoah-timeline-wrapper .timeline-item--right .timeline-item__content--2015 {
  text-align: left;
  right: calc(50% - 470px) !important;
}

.zoah-timeline-wrapper .timeline-item--right .timeline-item__content--2017 {
  text-align: left;
  right: calc(50% - 475px);
}

.zoah-timeline-wrapper .timeline-item--right .timeline-item__content--2022 {
  text-align: left;
  right: calc(50% - 410px);
}

.zoah-timeline-wrapper .timeline-item--right .timeline-item__content--2024 {
  text-align: left;
  right: calc(50% - 410px);
}

.zoah-timeline-wrapper .timeline-item--right .timeline-item__content--2026 {
  text-align: left;
  right: calc(50% - 410px);
}

.zoah-timeline-wrapper .timeline-item__year {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--zoah-primary-color);
  margin-bottom: 0.5rem;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--zoah-font-primary);
}

.zoah-timeline-wrapper .timeline-item--left .timeline-item__year {
  left: 50%;
  margin-left: 80px;
}

.zoah-timeline-wrapper .timeline-item--right .timeline-item__year {
  right: 50%;
  margin-right: 80px;
}

.zoah-timeline-wrapper .timeline-item__title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--zoah-primary-color);
  margin-bottom: 0.3rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1.3;
  font-family: var(--zoah-font-primary);
}

.zoah-timeline-wrapper .timeline-item__description {
  /*font-size: 0.8rem;*/
  font-size: 14px;
  color: var(--zoah-text-light);
  line-height: 1.4;
  font-family: var(--zoah-font-primary);
}

/* Timeline List */
.zoah-timeline-wrapper .timeline-item__list {
  margin: 0.5rem 0 0 0;
  padding-left: 1.2rem;
  list-style-type: disc;
}

.zoah-timeline-wrapper .timeline-item__list li {
  font-size: 14px;
  color: var(--zoah-text-light);
  line-height: 1.6;
  font-family: var(--zoah-font-primary);
  margin-bottom: 0.25rem;
}

.zoah-timeline-wrapper .timeline-item__list li:last-child {
  margin-bottom: 0;
}

/* Timeline Image Circle */
.zoah-timeline-wrapper .timeline-item__image {
  position: absolute;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  border: 5px solid var(--zoah-primary-color);
  overflow: hidden;
  z-index: 4;
  background-color: var(--zoah-white);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  top: 50%;
  transform: translateY(-50%);
}

.zoah-timeline-wrapper .timeline-item--left .timeline-item__image {
  margin-top: 48px;
  left: calc(50% - 220px);
}

.zoah-timeline-wrapper .timeline-item--right .timeline-item__image {
  right: calc(50% - 220px);
}

.zoah-timeline-wrapper .timeline-item__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Special styling for 2026 item without image */
.zoah-timeline-wrapper .timeline-item--2026 .timeline-item__content {
  left: calc(50% - 479px) !important;
}

/* Timeline Arrow Decorations - Imágenes de flechas según posición */
.zoah-timeline-wrapper .timeline-item__arrow {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -4rem;
  z-index: 2;
  width: 60px;
  height: 145px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

/* Primera flecha (primer artículo - 2002) */
.zoah-timeline-wrapper .timeline-item:nth-child(1) .timeline-item__arrow {
  background-image: url('https://zoahvenezuela.com/wp-content/uploads/2025/10/f1.png');
}

/* Última flecha (último artículo - 2026) */
.zoah-timeline-wrapper .timeline-item:nth-child(10) .timeline-item__arrow {
  background-image: url('https://zoahvenezuela.com/wp-content/uploads/2025/10/f4.png');
}

/* Flechas para artículos del lado izquierdo (2015, 2017, 2022, 2024) */
.zoah-timeline-wrapper .timeline-item--left .timeline-item__arrow {
  background-image: url('https://zoahvenezuela.com/wp-content/uploads/2025/10/f2.png');
}

/* Flechas para artículos del lado derecho (2016, 2018, 2023, 2025) - excepto el primero y el último */
.zoah-timeline-wrapper .timeline-item--right:not(:nth-child(1)):not(:nth-child(10)) .timeline-item__arrow {
  background-image: url('https://zoahvenezuela.com/wp-content/uploads/2025/10/f3.png');
}

/* Footer Section */
.zoah-timeline-wrapper .timeline-footer {
  text-align: center;
  padding: 2rem;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--zoah-primary-color);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-family: var(--zoah-font-primary);
}

/* === RESPONSIVE === */
@media (max-width: 991px) {
  .zoah-timeline-wrapper .timeline-item__content {
    width: 160px;
  }

  .zoah-timeline-wrapper .timeline-item--left .timeline-item__content {
    left: calc(50% - 340px);
  }

  .zoah-timeline-wrapper .timeline-item--right .timeline-item__content {
    right: calc(50% - 340px);
  }

  .zoah-timeline-wrapper .timeline-item__image {
    width: 110px;
    height: 110px;
  }

  .zoah-timeline-wrapper .timeline-item--left .timeline-item__image {
    left: calc(50% - 180px);
  }

  .zoah-timeline-wrapper .timeline-item--right .timeline-item__image {
    right: calc(50% - 180px);
  }

  .zoah-timeline-wrapper .timeline-item--left .timeline-item__year {
    margin-left: 60px;
  }

  .zoah-timeline-wrapper .timeline-item--right .timeline-item__year {
    margin-right: 60px;
  }
}

@media (max-width: 767px) {
  .zoah-timeline-wrapper .hero-section {
    padding: 3rem 1.5rem 2.5rem;
  }

  .zoah-timeline-wrapper .hero-section__title,
  .zoah-timeline-wrapper .hero-section__subtitle {
    font-size: 1.8rem;
    line-height: 1.3;
  }

  .zoah-timeline-wrapper .timeline {
    padding: 2rem 1rem 3rem;
  }

  /* Línea vertical centrada */
  .zoah-timeline-wrapper .timeline::before {
    left: 50%;
    width: 4px;
    background: linear-gradient(180deg,
      var(--zoah-primary-color) 0%,
      var(--zoah-primary-color) 100%);
    opacity: 0.3;
    transform: translateX(-50%);
  }
  
  .zoah-timeline-wrapper .timeline::after {
    left: 50%;
    width: 2px;
    opacity: 0.5;
    transform: translateX(-50%);
  }

  /* Timeline Items - Layout en fila */
  .zoah-timeline-wrapper .timeline-item {
    display: flex !important;
    flex-direction: row !important;
    align-items: flex-start !important;
    position: relative !important;
    padding: 0;
    min-height: auto;
    margin-bottom: 3rem !important;
  }
  
  /* Reset de todos los nth-child margins */
  .zoah-timeline-wrapper .timeline-item:nth-child(1),
  .zoah-timeline-wrapper .timeline-item:nth-child(2),
  .zoah-timeline-wrapper .timeline-item:nth-child(3),
  .zoah-timeline-wrapper .timeline-item:nth-child(4),
  .zoah-timeline-wrapper .timeline-item:nth-child(5),
  .zoah-timeline-wrapper .timeline-item:nth-child(6),
  .zoah-timeline-wrapper .timeline-item:nth-child(7),
  .zoah-timeline-wrapper .timeline-item:nth-child(8),
  .zoah-timeline-wrapper .timeline-item:nth-child(9),
  .zoah-timeline-wrapper .timeline-item:nth-child(10) {
    margin-bottom: 3rem !important;
  }

  /* Nodo - círculo en la línea central */
  .zoah-timeline-wrapper .timeline-item__node {
    position: absolute;
    left: 50%;
    top: 45px;
    transform: translateX(-50%);
    width: 14px;
    height: 14px;
    border-width: 3px;
    background-color: var(--zoah-white);
    border-color: var(--zoah-primary-color);
    border-radius: 50%;
    z-index: 3;
  }

  /* Conector - oculto en mobile */
  .zoah-timeline-wrapper .timeline-item__connector,
  .zoah-timeline-wrapper .timeline-item__image-connector {
    display: none !important;
  }

  /* Items del lado DERECHO (2002, 2016, 2018, 2023, 2025) */
  .zoah-timeline-wrapper .timeline-item--right {
    justify-content: flex-start !important;
    padding-left: calc(50% + 15px) !important;
  }

  /* Items del lado IZQUIERDO (2015, 2017, 2022, 2024, 2026) */
  .zoah-timeline-wrapper .timeline-item--left {
    justify-content: flex-end !important;
    padding-right: calc(50% + 15px) !important;
    flex-direction: row-reverse !important;
  }

  /* Año - posicionamiento absoluto */
  .zoah-timeline-wrapper .timeline-item__year {
    position: absolute !important;
    font-size: 1.8rem;
    color: var(--zoah-primary-color);
    font-weight: 700;
    line-height: 1;
    margin: 0 !important;
    width: auto !important;
    z-index: 2;
  }

  /* Año para items del lado DERECHO */
  .zoah-timeline-wrapper .timeline-item--right .timeline-item__year {
    left: calc(50% + 15px);
    top: 8px;
  }

  /* Año para items del lado IZQUIERDO */
  .zoah-timeline-wrapper .timeline-item--left .timeline-item__year {
    right: calc(50% + 15px);
    top: 8px;
  }

  /* Imagen circular */
  .zoah-timeline-wrapper .timeline-item__image {
    position: relative !important;
    width: 85px;
    height: 85px;
    flex-shrink: 0;
    left: auto !important;
    right: auto !important;
    top: auto !important;
    transform: none !important;
    border-width: 4px;
    margin-top: 0 !important;
  }

  /* Imagen para items del lado DERECHO - a la izquierda del texto */
  .zoah-timeline-wrapper .timeline-item--right .timeline-item__image {
    margin: 0 0.75rem 0 0 !important;
  }

  /* Imagen para items del lado IZQUIERDO - a la derecha del texto */
  .zoah-timeline-wrapper .timeline-item--left .timeline-item__image {
    margin: 0 0 0 0.75rem !important;
  }

  /* Contenido de texto */
  .zoah-timeline-wrapper .timeline-item__content {
    position: relative !important;
    width: auto !important;
    flex: 1;
    padding: 0 !important;
    margin: 0 !important;
    left: auto !important;
    right: auto !important;
    overflow: visible;
  }

  /* Texto alineado a la izquierda para items del lado DERECHO */
  .zoah-timeline-wrapper .timeline-item--right .timeline-item__content {
    text-align: left !important;
  }

  /* Texto alineado a la derecha para items del lado IZQUIERDO */
  .zoah-timeline-wrapper .timeline-item--left .timeline-item__content {
    text-align: right !important;
  }

  .zoah-timeline-wrapper .timeline-item__title {
    font-size: 0.85rem;
    margin-bottom: 0.35rem;
    line-height: 1.3;
    font-weight: 700;
    color: var(--zoah-primary-color);
  }

  .zoah-timeline-wrapper .timeline-item__description {
    font-size: 0.75rem;
    line-height: 1.4;
    color: var(--zoah-text-light);
  }

  .zoah-timeline-wrapper .timeline-item__list {
    margin-top: 0.5rem;
    padding-left: 1.2rem;
    text-align: left !important;
  }

  /* Lista alineada a la derecha para items del lado IZQUIERDO */
  .zoah-timeline-wrapper .timeline-item--left .timeline-item__list {
    padding-left: 0;
    padding-right: 1.2rem;
    text-align: right !important;
    list-style-position: inside;
  }

  .zoah-timeline-wrapper .timeline-item__list li {
    font-size: 0.75rem;
    line-height: 1.5;
  }

  /* Ocultar la imagen de fondo de la hoja en mobile */
  .zoah-timeline-wrapper .timeline::before {
    display: none !important;
  }

  /* Ocultar la línea vertical central del timeline en mobile */
  .zoah-timeline-wrapper .timeline::after {
    display: none !important;
  }

  /* Flechas - OCULTAS en mobile */
  .zoah-timeline-wrapper .timeline-item__arrow {
    display: none !important;
  }

  /* ===== AJUSTES ESPECÍFICOS PARA 2002 EN MOBILE ===== */
  
  /* 2002: Cambiar a diseño de dos columnas (imagen izquierda, texto derecha) */
  .zoah-timeline-wrapper .timeline-item--2002 {
    display: grid !important;
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
    gap: 0;
    padding: 0 1rem !important;
    align-items: start;
  }

  /* Ocultar el nodo para 2002 */
  .zoah-timeline-wrapper .timeline-item--2002 .timeline-item__node {
    display: none;
  }

  /* Año encima de la imagen - columna izquierda, fila 1 */
  .zoah-timeline-wrapper .timeline-item--2002 .timeline-item__year {
    position: static !important;
    grid-column: 1;
    grid-row: 1;
    font-size: 1.8rem;
    margin-bottom: 0.5rem !important;
    left: auto !important;
    top: auto !important;
  }

  /* Imagen en columna izquierda, fila 2 */
  .zoah-timeline-wrapper .timeline-item--2002 .timeline-item__image {
    grid-column: 1;
    grid-row: 2;
    margin: 0 1rem 0 0 !important;
    width: 100px;
    height: 100px;
  }

  /* Contenido de texto en columna derecha, abarcando ambas filas */
  .zoah-timeline-wrapper .timeline-item--2002 .timeline-item__content {
    grid-column: 2;
    grid-row: 1 / 3;
    align-self: center;
    text-align: left !important;
    padding-left: 1.5rem; /* Añade espacio entre la imagen y el texto */
  }

  /* ===== AJUSTES ESPECÍFICOS PARA 2016 EN MOBILE ===== */
  
  /* 2016: Cambiar a diseño de dos columnas (imagen izquierda, texto derecha) */
  .zoah-timeline-wrapper .timeline-item--2016 {
    display: grid !important;
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
    gap: 0;
    padding: 0 1rem !important;
    align-items: start;
  }

  .zoah-timeline-wrapper .timeline-item--2016 .timeline-item__node {
    display: none;
  }

  .zoah-timeline-wrapper .timeline-item--2016 .timeline-item__year {
    position: static !important;
    grid-column: 1;
    grid-row: 1;
    font-size: 1.8rem;
    margin-bottom: 0.5rem !important;
    left: auto !important;
    top: auto !important;
  }

  .zoah-timeline-wrapper .timeline-item--2016 .timeline-item__image {
    grid-column: 1;
    grid-row: 2;
    margin: 0 1rem 0 0 !important;
    width: 100px;
    height: 100px;
  }

  .zoah-timeline-wrapper .timeline-item--2016 .timeline-item__content {
    grid-column: 2;
    grid-row: 1 / 3;
    align-self: center;
    text-align: left !important;
    padding-left: 1.5rem; /* Añade espacio entre la imagen y el texto */
  }

  /* ===== AJUSTES ESPECÍFICOS PARA 2018 EN MOBILE ===== */
  
  /* 2018: Cambiar a diseño de dos columnas (imagen izquierda, texto derecha) */
  .zoah-timeline-wrapper .timeline-item--2018 {
    display: grid !important;
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
    gap: 0;
    padding: 0 1rem !important;
    align-items: start;
  }

  .zoah-timeline-wrapper .timeline-item--2018 .timeline-item__node {
    display: none;
  }

  .zoah-timeline-wrapper .timeline-item--2018 .timeline-item__year {
    position: static !important;
    grid-column: 1;
    grid-row: 1;
    font-size: 1.8rem;
    margin-bottom: 0.5rem !important;
    left: auto !important;
    top: auto !important;
  }

  .zoah-timeline-wrapper .timeline-item--2018 .timeline-item__image {
    grid-column: 1;
    grid-row: 2;
    margin: 0 1rem 0 0 !important;
    width: 100px;
    height: 100px;
  }

  .zoah-timeline-wrapper .timeline-item--2018 .timeline-item__content {
    grid-column: 2;
    grid-row: 1 / 3;
    align-self: center;
    text-align: left !important;
    padding-left: 1.5rem; /* Añade espacio entre la imagen y el texto */
  }

  /* ===== AJUSTES ESPECÍFICOS PARA 2023 EN MOBILE ===== */
  
  /* 2023: Cambiar a diseño de dos columnas (imagen izquierda, texto derecha) */
  .zoah-timeline-wrapper .timeline-item--2023 {
    display: grid !important;
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
    gap: 0;
    padding: 0 1rem !important;
    align-items: start;
  }

  .zoah-timeline-wrapper .timeline-item--2023 .timeline-item__node {
    display: none;
  }

  .zoah-timeline-wrapper .timeline-item--2023 .timeline-item__year {
    position: static !important;
    grid-column: 1;
    grid-row: 1;
    font-size: 1.8rem;
    margin-bottom: 0.5rem !important;
    left: auto !important;
    top: auto !important;
  }

  .zoah-timeline-wrapper .timeline-item--2023 .timeline-item__image {
    grid-column: 1;
    grid-row: 2;
    margin: 0 1rem 0 0 !important;
    width: 100px;
    height: 100px;
  }

  .zoah-timeline-wrapper .timeline-item--2023 .timeline-item__content {
    grid-column: 2;
    grid-row: 1 / 3;
    align-self: center;
    text-align: left !important;
    padding-left: 1.5rem; /* Añade espacio entre la imagen y el texto */
  }

  /* ===== AJUSTES ESPECÍFICOS PARA 2025 EN MOBILE ===== */
  
  /* 2025: Cambiar a diseño de dos columnas (imagen izquierda, texto derecha) */
  .zoah-timeline-wrapper .timeline-item--2025 {
    display: grid !important;
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
    gap: 0;
    padding: 0 1rem !important;
    align-items: start;
  }

  .zoah-timeline-wrapper .timeline-item--2025 .timeline-item__node {
    display: none;
  }

  .zoah-timeline-wrapper .timeline-item--2025 .timeline-item__year {
    position: static !important;
    grid-column: 1;
    grid-row: 1;
    font-size: 1.8rem;
    margin-bottom: 0.5rem !important;
    left: auto !important;
    top: auto !important;
  }

  .zoah-timeline-wrapper .timeline-item--2025 .timeline-item__image {
    grid-column: 1;
    grid-row: 2;
    margin: 0 1rem 0 0 !important;
    width: 100px;
    height: 100px;
  }

  .zoah-timeline-wrapper .timeline-item--2025 .timeline-item__content {
    grid-column: 2;
    grid-row: 1 / 3;
    align-self: center;
    text-align: left !important;
    padding-left: 1.5rem; /* Añade espacio entre la imagen y el texto */
  }

  /* ===== AJUSTES ESPECÍFICOS PARA 2015 EN MOBILE ===== */
  
  /* 2015: Cambiar a diseño de dos columnas (texto izquierda, imagen derecha) */
  .zoah-timeline-wrapper .timeline-item--2015 {
    display: grid !important;
    grid-template-columns: 1fr auto;
    grid-template-rows: auto auto;
    gap: 0;
    padding: 0 1rem !important;
    align-items: start;
  }

  .zoah-timeline-wrapper .timeline-item--2015 .timeline-item__node {
    display: none;
  }

  .zoah-timeline-wrapper .timeline-item--2015 .timeline-item__year {
    position: static !important;
    grid-column: 2;
    grid-row: 1;
    font-size: 1.8rem;
    margin-bottom: 0.5rem !important;
    left: auto !important;
    top: auto !important;
    text-align: right;
  }

  .zoah-timeline-wrapper .timeline-item--2015 .timeline-item__image {
    grid-column: 2;
    grid-row: 2;
    margin: 0 0 0 1rem !important;
    width: 100px;
    height: 100px;
  }

  .zoah-timeline-wrapper .timeline-item--2015 .timeline-item__content {
    grid-column: 1;
    grid-row: 1 / 3;
    align-self: center;
    text-align: left !important;
  }

  .zoah-timeline-wrapper .timeline-item--2015 .timeline-item__title {
    text-align: left !important;
  }

  .zoah-timeline-wrapper .timeline-item--2015 .timeline-item__description {
    text-align: left !important;
  }

  .zoah-timeline-wrapper .timeline-item--2015 .timeline-item__list {
    text-align: left !important;
    padding-left: 1.2rem !important;
    padding-right: 0 !important;
  }

  /* ===== AJUSTES ESPECÍFICOS PARA 2017 EN MOBILE ===== */
  
  /* 2017: Cambiar a diseño de dos columnas (texto izquierda, imagen derecha) */
  .zoah-timeline-wrapper .timeline-item--2017 {
    display: grid !important;
    grid-template-columns: 1fr auto;
    grid-template-rows: auto auto;
    gap: 0;
    padding: 0 1rem !important;
    align-items: start;
  }

  .zoah-timeline-wrapper .timeline-item--2017 .timeline-item__node {
    display: none;
  }

  .zoah-timeline-wrapper .timeline-item--2017 .timeline-item__year {
    position: static !important;
    grid-column: 2;
    grid-row: 1;
    font-size: 1.8rem;
    margin-bottom: 0.5rem !important;
    left: auto !important;
    top: auto !important;
    text-align: right;
  }

  .zoah-timeline-wrapper .timeline-item--2017 .timeline-item__image {
    grid-column: 2;
    grid-row: 2;
    margin: 0 0 0 1rem !important;
    width: 100px;
    height: 100px;
  }

  .zoah-timeline-wrapper .timeline-item--2017 .timeline-item__content {
    grid-column: 1;
    grid-row: 1 / 3;
    align-self: center;
    text-align: left !important;
  }

  .zoah-timeline-wrapper .timeline-item--2017 .timeline-item__title {
    text-align: left !important;
  }

  .zoah-timeline-wrapper .timeline-item--2017 .timeline-item__description {
    text-align: left !important;
  }

  .zoah-timeline-wrapper .timeline-item--2017 .timeline-item__list {
    text-align: left !important;
    padding-left: 1.2rem !important;
    padding-right: 0 !important;
  }

  /* ===== AJUSTES ESPECÍFICOS PARA 2022 EN MOBILE ===== */
  
  /* 2022: Cambiar a diseño de dos columnas (texto izquierda, imagen derecha) */
  .zoah-timeline-wrapper .timeline-item--2022 {
    display: grid !important;
    grid-template-columns: 1fr auto;
    grid-template-rows: auto auto;
    gap: 0;
    padding: 0 1rem !important;
    align-items: start;
  }

  .zoah-timeline-wrapper .timeline-item--2022 .timeline-item__node {
    display: none;
  }

  .zoah-timeline-wrapper .timeline-item--2022 .timeline-item__year {
    position: static !important;
    grid-column: 2;
    grid-row: 1;
    font-size: 1.8rem;
    margin-bottom: 0.5rem !important;
    left: auto !important;
    top: auto !important;
    text-align: right;
  }

  .zoah-timeline-wrapper .timeline-item--2022 .timeline-item__image {
    grid-column: 2;
    grid-row: 2;
    margin: 0 0 0 1rem !important;
    width: 100px;
    height: 100px;
  }

  .zoah-timeline-wrapper .timeline-item--2022 .timeline-item__content {
    grid-column: 1;
    grid-row: 1 / 3;
    align-self: center;
    text-align: left !important;
  }

  .zoah-timeline-wrapper .timeline-item--2022 .timeline-item__title {
    text-align: left !important;
  }

  .zoah-timeline-wrapper .timeline-item--2022 .timeline-item__description {
    text-align: left !important;
  }

  .zoah-timeline-wrapper .timeline-item--2022 .timeline-item__list {
    text-align: left !important;
    padding-left: 1.2rem !important;
    padding-right: 0 !important;
  }

  /* ===== AJUSTES ESPECÍFICOS PARA 2024 EN MOBILE ===== */
  
  /* 2024: Cambiar a diseño de dos columnas (texto izquierda, imagen derecha) */
  .zoah-timeline-wrapper .timeline-item--2024 {
    display: grid !important;
    grid-template-columns: 1fr auto;
    grid-template-rows: auto auto;
    gap: 0;
    padding: 0 1rem !important;
    align-items: start;
  }

  .zoah-timeline-wrapper .timeline-item--2024 .timeline-item__node {
    display: none;
  }

  .zoah-timeline-wrapper .timeline-item--2024 .timeline-item__year {
    position: static !important;
    grid-column: 2;
    grid-row: 1;
    font-size: 1.8rem;
    margin-bottom: 0.5rem !important;
    left: auto !important;
    top: auto !important;
    text-align: right;
  }

  .zoah-timeline-wrapper .timeline-item--2024 .timeline-item__image {
    grid-column: 2;
    grid-row: 2;
    margin: 0 0 0 1rem !important;
    width: 100px;
    height: 100px;
  }

  .zoah-timeline-wrapper .timeline-item--2024 .timeline-item__content {
    grid-column: 1;
    grid-row: 1 / 3;
    align-self: center;
    text-align: left !important;
  }

  .zoah-timeline-wrapper .timeline-item--2024 .timeline-item__title {
    text-align: left !important;
  }

  .zoah-timeline-wrapper .timeline-item--2024 .timeline-item__description {
    text-align: left !important;
  }

  .zoah-timeline-wrapper .timeline-item--2024 .timeline-item__list {
    text-align: left !important;
    padding-left: 1.2rem !important;
    padding-right: 0 !important;
  }

  /* ===== AJUSTES ESPECÍFICOS PARA 2026 EN MOBILE ===== */
  
  /* 2026: Cambiar a diseño de dos columnas (texto izquierda, sin imagen) */
  .zoah-timeline-wrapper .timeline-item--2026 {
    display: grid !important;
    grid-template-columns: 1fr auto;
    grid-template-rows: auto auto;
    gap: 0;
    padding: 0 1rem !important;
    align-items: start;
  }

  .zoah-timeline-wrapper .timeline-item--2026 .timeline-item__node {
    display: none;
  }

  .zoah-timeline-wrapper .timeline-item--2026 .timeline-item__year {
    position: static !important;
    grid-column: 2;
    grid-row: 1;
    font-size: 1.8rem;
    margin-bottom: 0.5rem !important;
    left: auto !important;
    top: auto !important;
    text-align: right;
  }

  .zoah-timeline-wrapper .timeline-item--2026 .timeline-item__content {
    grid-column: 1;
    grid-row: 1 / 3;
    align-self: center;
    text-align: left !important;
    left: auto !important;
    margin-left: 0 !important;
  }

  .zoah-timeline-wrapper .timeline-item--2026 .timeline-item__title {
    text-align: left !important;
  }

  .zoah-timeline-wrapper .timeline-item--2026 .timeline-item__description {
    text-align: left !important;
  }

  .zoah-timeline-wrapper .timeline-item--2026 .timeline-item__list {
    text-align: left !important;
    padding-left: 1.2rem !important;
    padding-right: 0 !important;
  }

  .zoah-timeline-wrapper .timeline-footer {
    font-size: 1rem;
    padding: 1.5rem 1rem;
  }
}

/* === MOBILE ESPECÍFICO: 320px === */
@media (max-width: 320px) {
  .zoah-timeline-wrapper .hero-section {
    padding: 2.5rem 1rem 2rem;
  }

  .zoah-timeline-wrapper .hero-section__title,
  .zoah-timeline-wrapper .hero-section__subtitle {
    font-size: 1.4rem;
  }

  .zoah-timeline-wrapper .timeline {
    padding: 1.5rem 0.5rem 2.5rem;
  }

  .zoah-timeline-wrapper .timeline-item__year {
    font-size: 1.5rem;
  }

  .zoah-timeline-wrapper .timeline-item__image {
    width: 70px;
    height: 70px;
    border-width: 3px;
  }

  .zoah-timeline-wrapper .timeline-item--right .timeline-item__image {
    margin-right: 0.5rem !important;
  }

  .zoah-timeline-wrapper .timeline-item--left .timeline-item__image {
    margin-left: 0.5rem !important;
  }

  .zoah-timeline-wrapper .timeline-item__title {
    font-size: 0.72rem;
  }

  .zoah-timeline-wrapper .timeline-item__description {
    font-size: 0.68rem;
    line-height: 1.35;
  }

  .zoah-timeline-wrapper .timeline-item__list {
    padding-left: 1rem;
    margin-top: 0.4rem;
  }

  .zoah-timeline-wrapper .timeline-item--left .timeline-item__list {
    padding-right: 1rem;
  }

  .zoah-timeline-wrapper .timeline-item__list li {
    font-size: 0.68rem;
    line-height: 1.4;
  }

  /* Ajustes específicos para 2002 en 320px */
  .zoah-timeline-wrapper .timeline-item--2002 {
    padding: 0 0.5rem !important;
  }

  .zoah-timeline-wrapper .timeline-item--2002 .timeline-item__year {
    font-size: 1.5rem;
  }

  .zoah-timeline-wrapper .timeline-item--2002 .timeline-item__image {
    width: 75px;
    height: 75px;
    margin-right: 0.75rem !important;
  }

  .zoah-timeline-wrapper .timeline-item--2002 .timeline-item__title {
    font-size: 0.72rem;
  }

  .zoah-timeline-wrapper .timeline-item--2002 .timeline-item__description {
    font-size: 0.68rem;
  }

  /* Ajustes específicos para 2015 en 320px */
  .zoah-timeline-wrapper .timeline-item--2015 {
    padding: 0 0.5rem !important;
  }

  .zoah-timeline-wrapper .timeline-item--2015 .timeline-item__year {
    font-size: 1.5rem;
  }

  .zoah-timeline-wrapper .timeline-item--2015 .timeline-item__image {
    width: 75px;
    height: 75px;
    margin-left: 0.75rem !important;
  }

  .zoah-timeline-wrapper .timeline-item--2015 .timeline-item__title {
    font-size: 0.72rem;
  }

  .zoah-timeline-wrapper .timeline-item--2015 .timeline-item__description {
    font-size: 0.68rem;
  }

  /* Ajustes específicos para 2017, 2022, 2024, 2026 en 320px */
  .zoah-timeline-wrapper .timeline-item--2017 {
    padding: 0 0.5rem !important;
  }

  .zoah-timeline-wrapper .timeline-item--2017 .timeline-item__year {
    font-size: 1.5rem;
  }

  .zoah-timeline-wrapper .timeline-item--2017 .timeline-item__image {
    width: 75px;
    height: 75px;
    margin-left: 0.75rem !important;
  }

  .zoah-timeline-wrapper .timeline-item--2017 .timeline-item__title {
    font-size: 0.72rem;
  }

  .zoah-timeline-wrapper .timeline-item--2017 .timeline-item__description {
    font-size: 0.68rem;
  }

  .zoah-timeline-wrapper .timeline-item--2022 {
    padding: 0 0.5rem !important;
  }

  .zoah-timeline-wrapper .timeline-item--2022 .timeline-item__year {
    font-size: 1.5rem;
  }

  .zoah-timeline-wrapper .timeline-item--2022 .timeline-item__image {
    width: 75px;
    height: 75px;
    margin-left: 0.75rem !important;
  }

  .zoah-timeline-wrapper .timeline-item--2022 .timeline-item__title {
    font-size: 0.72rem;
  }

  .zoah-timeline-wrapper .timeline-item--2022 .timeline-item__description {
    font-size: 0.68rem;
  }

  .zoah-timeline-wrapper .timeline-item--2024 {
    padding: 0 0.5rem !important;
  }

  .zoah-timeline-wrapper .timeline-item--2024 .timeline-item__year {
    font-size: 1.5rem;
  }

  .zoah-timeline-wrapper .timeline-item--2024 .timeline-item__image {
    width: 75px;
    height: 75px;
    margin-left: 0.75rem !important;
  }

  .zoah-timeline-wrapper .timeline-item--2024 .timeline-item__title {
    font-size: 0.72rem;
  }

  .zoah-timeline-wrapper .timeline-item--2024 .timeline-item__description {
    font-size: 0.68rem;
  }

  .zoah-timeline-wrapper .timeline-item--2026 {
    padding: 0 0.5rem !important;
  }

  .zoah-timeline-wrapper .timeline-item--2026 .timeline-item__year {
    font-size: 1.5rem;
  }

  .zoah-timeline-wrapper .timeline-item--2026 .timeline-item__title {
    font-size: 0.72rem;
  }

  .zoah-timeline-wrapper .timeline-item--2026 .timeline-item__description {
    font-size: 0.68rem;
  }

  /* Ajustes para 2016 en 320px */
  .zoah-timeline-wrapper .timeline-item--2016 .timeline-item__year {
    font-size: 1.5rem;
  }

  .zoah-timeline-wrapper .timeline-item--2016 .timeline-item__image {
    width: 75px;
    height: 75px;
    margin-right: 0.75rem !important;
  }

  .zoah-timeline-wrapper .timeline-item--2016 .timeline-item__title {
    font-size: 0.72rem;
  }

  .zoah-timeline-wrapper .timeline-item--2016 .timeline-item__description {
    font-size: 0.68rem;
  }

  /* Ajustes para 2018 en 320px */
  .zoah-timeline-wrapper .timeline-item--2018 .timeline-item__year {
    font-size: 1.5rem;
  }

  .zoah-timeline-wrapper .timeline-item--2018 .timeline-item__image {
    width: 75px;
    height: 75px;
    margin-right: 0.75rem !important;
  }

  .zoah-timeline-wrapper .timeline-item--2018 .timeline-item__title {
    font-size: 0.72rem;
  }

  .zoah-timeline-wrapper .timeline-item--2018 .timeline-item__description {
    font-size: 0.68rem;
  }

  /* Ajustes para 2023 en 320px */
  .zoah-timeline-wrapper .timeline-item--2023 .timeline-item__year {
    font-size: 1.5rem;
  }

  .zoah-timeline-wrapper .timeline-item--2023 .timeline-item__image {
    width: 75px;
    height: 75px;
    margin-right: 0.75rem !important;
  }

  .zoah-timeline-wrapper .timeline-item--2023 .timeline-item__title {
    font-size: 0.72rem;
  }

  .zoah-timeline-wrapper .timeline-item--2023 .timeline-item__description {
    font-size: 0.68rem;
  }

  /* Ajustes para 2025 en 320px */
  .zoah-timeline-wrapper .timeline-item--2025 .timeline-item__year {
    font-size: 1.5rem;
  }

  .zoah-timeline-wrapper .timeline-item--2025 .timeline-item__image {
    width: 75px;
    height: 75px;
    margin-right: 0.75rem !important;
  }

  .zoah-timeline-wrapper .timeline-item--2025 .timeline-item__title {
    font-size: 0.72rem;
  }

  .zoah-timeline-wrapper .timeline-item--2025 .timeline-item__description {
    font-size: 0.68rem;
  }
}

/* === MOBILE: 360px === */
@media (min-width: 321px) and (max-width: 360px) {
  .zoah-timeline-wrapper .timeline {
    padding: 1.75rem 0.6rem 2.75rem;
  }

  .zoah-timeline-wrapper .timeline-item__year {
    font-size: 1.6rem;
  }

  .zoah-timeline-wrapper .timeline-item__image {
    width: 75px;
    height: 75px;
  }

  .zoah-timeline-wrapper .timeline-item--right .timeline-item__image {
    margin-right: 0.6rem !important;
  }

  .zoah-timeline-wrapper .timeline-item--left .timeline-item__image {
    margin-left: 0.6rem !important;
  }

  .zoah-timeline-wrapper .timeline-item__title {
    font-size: 0.75rem;
  }

  .zoah-timeline-wrapper .timeline-item__description {
    font-size: 0.7rem;
  }

  .zoah-timeline-wrapper .timeline-item__list li {
    font-size: 0.7rem;
  }

  /* Ajustes para 2002 en 360px */
  .zoah-timeline-wrapper .timeline-item--2002 .timeline-item__year {
    font-size: 1.6rem;
  }

  .zoah-timeline-wrapper .timeline-item--2002 .timeline-item__image {
    width: 80px;
    height: 80px;
  }

  .zoah-timeline-wrapper .timeline-item--2002 .timeline-item__title {
    font-size: 0.75rem;
  }

  .zoah-timeline-wrapper .timeline-item--2002 .timeline-item__description {
    font-size: 0.7rem;
  }

  /* Ajustes para 2015 en 360px */
  .zoah-timeline-wrapper .timeline-item--2015 .timeline-item__year {
    font-size: 1.6rem;
  }

  .zoah-timeline-wrapper .timeline-item--2015 .timeline-item__image {
    width: 80px;
    height: 80px;
  }

  .zoah-timeline-wrapper .timeline-item--2015 .timeline-item__title {
    font-size: 0.75rem;
  }

  .zoah-timeline-wrapper .timeline-item--2015 .timeline-item__description {
    font-size: 0.7rem;
  }

  /* Ajustes para 2017, 2022, 2024, 2026 en 360px */
  .zoah-timeline-wrapper .timeline-item--2017 .timeline-item__year,
  .zoah-timeline-wrapper .timeline-item--2022 .timeline-item__year,
  .zoah-timeline-wrapper .timeline-item--2024 .timeline-item__year,
  .zoah-timeline-wrapper .timeline-item--2026 .timeline-item__year {
    font-size: 1.6rem;
  }

  .zoah-timeline-wrapper .timeline-item--2017 .timeline-item__image,
  .zoah-timeline-wrapper .timeline-item--2022 .timeline-item__image,
  .zoah-timeline-wrapper .timeline-item--2024 .timeline-item__image {
    width: 80px;
    height: 80px;
  }

  .zoah-timeline-wrapper .timeline-item--2017 .timeline-item__title,
  .zoah-timeline-wrapper .timeline-item--2022 .timeline-item__title,
  .zoah-timeline-wrapper .timeline-item--2024 .timeline-item__title,
  .zoah-timeline-wrapper .timeline-item--2026 .timeline-item__title {
    font-size: 0.75rem;
  }

  .zoah-timeline-wrapper .timeline-item--2017 .timeline-item__description,
  .zoah-timeline-wrapper .timeline-item--2022 .timeline-item__description,
  .zoah-timeline-wrapper .timeline-item--2024 .timeline-item__description,
  .zoah-timeline-wrapper .timeline-item--2026 .timeline-item__description {
    font-size: 0.7rem;
  }

  /* Ajustes para 2016 en 360px */
  .zoah-timeline-wrapper .timeline-item--2016 .timeline-item__year {
    font-size: 1.6rem;
  }

  .zoah-timeline-wrapper .timeline-item--2016 .timeline-item__image {
    width: 80px;
    height: 80px;
  }

  .zoah-timeline-wrapper .timeline-item--2016 .timeline-item__title {
    font-size: 0.75rem;
  }

  .zoah-timeline-wrapper .timeline-item--2016 .timeline-item__description {
    font-size: 0.7rem;
  }

  /* Ajustes para 2018 en 360px */
  .zoah-timeline-wrapper .timeline-item--2018 .timeline-item__year {
    font-size: 1.6rem;
  }

  .zoah-timeline-wrapper .timeline-item--2018 .timeline-item__image {
    width: 80px;
    height: 80px;
  }

  .zoah-timeline-wrapper .timeline-item--2018 .timeline-item__title {
    font-size: 0.75rem;
  }

  .zoah-timeline-wrapper .timeline-item--2018 .timeline-item__description {
    font-size: 0.7rem;
  }

  /* Ajustes para 2023 en 360px */
  .zoah-timeline-wrapper .timeline-item--2023 .timeline-item__year {
    font-size: 1.6rem;
  }

  .zoah-timeline-wrapper .timeline-item--2023 .timeline-item__image {
    width: 80px;
    height: 80px;
  }

  .zoah-timeline-wrapper .timeline-item--2023 .timeline-item__title {
    font-size: 0.75rem;
  }

  .zoah-timeline-wrapper .timeline-item--2023 .timeline-item__description {
    font-size: 0.7rem;
  }

  /* Ajustes para 2025 en 360px */
  .zoah-timeline-wrapper .timeline-item--2025 .timeline-item__year {
    font-size: 1.6rem;
  }

  .zoah-timeline-wrapper .timeline-item--2025 .timeline-item__image {
    width: 80px;
    height: 80px;
  }

  .zoah-timeline-wrapper .timeline-item--2025 .timeline-item__title {
    font-size: 0.75rem;
  }

  .zoah-timeline-wrapper .timeline-item--2025 .timeline-item__description {
    font-size: 0.7rem;
  }
}

/* === MOBILE: 375px === */
@media (min-width: 361px) and (max-width: 375px) {
  .zoah-timeline-wrapper .timeline-item__year {
    font-size: 1.65rem;
  }

  .zoah-timeline-wrapper .timeline-item__image {
    width: 78px;
    height: 78px;
  }

  .zoah-timeline-wrapper .timeline-item--right .timeline-item__image {
    margin-right: 0.65rem !important;
  }

  .zoah-timeline-wrapper .timeline-item--left .timeline-item__image {
    margin-left: 0.65rem !important;
  }

  .zoah-timeline-wrapper .timeline-item__title {
    font-size: 0.77rem;
  }

  .zoah-timeline-wrapper .timeline-item__description {
    font-size: 0.72rem;
  }

  .zoah-timeline-wrapper .timeline-item__list li {
    font-size: 0.72rem;
  }

  /* Ajustes para 2002 en 375px */
  .zoah-timeline-wrapper .timeline-item--2002 .timeline-item__year {
    font-size: 1.65rem;
  }

  .zoah-timeline-wrapper .timeline-item--2002 .timeline-item__image {
    width: 85px;
    height: 85px;
  }

  .zoah-timeline-wrapper .timeline-item--2002 .timeline-item__title {
    font-size: 0.77rem;
  }

  .zoah-timeline-wrapper .timeline-item--2002 .timeline-item__description {
    font-size: 0.72rem;
  }

  /* Ajustes para 2015 en 375px */
  .zoah-timeline-wrapper .timeline-item--2015 .timeline-item__year {
    font-size: 1.65rem;
  }

  .zoah-timeline-wrapper .timeline-item--2015 .timeline-item__image {
    width: 85px;
    height: 85px;
  }

  .zoah-timeline-wrapper .timeline-item--2015 .timeline-item__title {
    font-size: 0.77rem;
  }

  .zoah-timeline-wrapper .timeline-item--2015 .timeline-item__description {
    font-size: 0.72rem;
  }

  /* Ajustes para 2017, 2022, 2024, 2026 en 375px */
  .zoah-timeline-wrapper .timeline-item--2017 .timeline-item__year,
  .zoah-timeline-wrapper .timeline-item--2022 .timeline-item__year,
  .zoah-timeline-wrapper .timeline-item--2024 .timeline-item__year,
  .zoah-timeline-wrapper .timeline-item--2026 .timeline-item__year {
    font-size: 1.65rem;
  }

  .zoah-timeline-wrapper .timeline-item--2017 .timeline-item__image,
  .zoah-timeline-wrapper .timeline-item--2022 .timeline-item__image,
  .zoah-timeline-wrapper .timeline-item--2024 .timeline-item__image {
    width: 85px;
    height: 85px;
  }

  .zoah-timeline-wrapper .timeline-item--2017 .timeline-item__title,
  .zoah-timeline-wrapper .timeline-item--2022 .timeline-item__title,
  .zoah-timeline-wrapper .timeline-item--2024 .timeline-item__title,
  .zoah-timeline-wrapper .timeline-item--2026 .timeline-item__title {
    font-size: 0.77rem;
  }

  .zoah-timeline-wrapper .timeline-item--2017 .timeline-item__description,
  .zoah-timeline-wrapper .timeline-item--2022 .timeline-item__description,
  .zoah-timeline-wrapper .timeline-item--2024 .timeline-item__description,
  .zoah-timeline-wrapper .timeline-item--2026 .timeline-item__description {
    font-size: 0.72rem;
  }

  /* Ajustes para 2016, 2018, 2023, 2025 en 375px */
  .zoah-timeline-wrapper .timeline-item--2016 .timeline-item__year,
  .zoah-timeline-wrapper .timeline-item--2018 .timeline-item__year,
  .zoah-timeline-wrapper .timeline-item--2023 .timeline-item__year,
  .zoah-timeline-wrapper .timeline-item--2025 .timeline-item__year {
    font-size: 1.65rem;
  }

  .zoah-timeline-wrapper .timeline-item--2016 .timeline-item__image,
  .zoah-timeline-wrapper .timeline-item--2018 .timeline-item__image,
  .zoah-timeline-wrapper .timeline-item--2023 .timeline-item__image,
  .zoah-timeline-wrapper .timeline-item--2025 .timeline-item__image {
    width: 85px;
    height: 85px;
  }

  .zoah-timeline-wrapper .timeline-item--2016 .timeline-item__title,
  .zoah-timeline-wrapper .timeline-item--2018 .timeline-item__title,
  .zoah-timeline-wrapper .timeline-item--2023 .timeline-item__title,
  .zoah-timeline-wrapper .timeline-item--2025 .timeline-item__title {
    font-size: 0.77rem;
  }

  .zoah-timeline-wrapper .timeline-item--2016 .timeline-item__description,
  .zoah-timeline-wrapper .timeline-item--2018 .timeline-item__description,
  .zoah-timeline-wrapper .timeline-item--2023 .timeline-item__description,
  .zoah-timeline-wrapper .timeline-item--2025 .timeline-item__description {
    font-size: 0.72rem;
  }
}

/* === MOBILE: 384px - 393px === */
@media (min-width: 376px) and (max-width: 393px) {
  .zoah-timeline-wrapper .timeline-item__year {
    font-size: 1.7rem;
  }

  .zoah-timeline-wrapper .timeline-item__image {
    width: 80px;
    height: 80px;
  }

  .zoah-timeline-wrapper .timeline-item--right .timeline-item__image {
    margin-right: 0.7rem !important;
  }

  .zoah-timeline-wrapper .timeline-item--left .timeline-item__image {
    margin-left: 0.7rem !important;
  }

  .zoah-timeline-wrapper .timeline-item__title {
    font-size: 0.8rem;
  }

  .zoah-timeline-wrapper .timeline-item__description {
    font-size: 0.74rem;
  }

  .zoah-timeline-wrapper .timeline-item__list li {
    font-size: 0.74rem;
  }

  /* Ajustes para 2002 en 384px-393px */
  .zoah-timeline-wrapper .timeline-item--2002 .timeline-item__year {
    font-size: 1.7rem;
  }

  .zoah-timeline-wrapper .timeline-item--2002 .timeline-item__image {
    width: 90px;
    height: 90px;
  }

  .zoah-timeline-wrapper .timeline-item--2002 .timeline-item__title {
    font-size: 0.8rem;
  }

  .zoah-timeline-wrapper .timeline-item--2002 .timeline-item__description {
    font-size: 0.74rem;
  }

  /* Ajustes para 2015 en 384px-393px */
  .zoah-timeline-wrapper .timeline-item--2015 .timeline-item__year {
    font-size: 1.7rem;
  }

  .zoah-timeline-wrapper .timeline-item--2015 .timeline-item__image {
    width: 90px;
    height: 90px;
  }

  .zoah-timeline-wrapper .timeline-item--2015 .timeline-item__title {
    font-size: 0.8rem;
  }

  .zoah-timeline-wrapper .timeline-item--2015 .timeline-item__description {
    font-size: 0.74rem;
  }

  /* Ajustes para 2017, 2022, 2024, 2026 en 384px-393px */
  .zoah-timeline-wrapper .timeline-item--2017 .timeline-item__year,
  .zoah-timeline-wrapper .timeline-item--2022 .timeline-item__year,
  .zoah-timeline-wrapper .timeline-item--2024 .timeline-item__year,
  .zoah-timeline-wrapper .timeline-item--2026 .timeline-item__year {
    font-size: 1.7rem;
  }

  .zoah-timeline-wrapper .timeline-item--2017 .timeline-item__image,
  .zoah-timeline-wrapper .timeline-item--2022 .timeline-item__image,
  .zoah-timeline-wrapper .timeline-item--2024 .timeline-item__image {
    width: 90px;
    height: 90px;
  }

  .zoah-timeline-wrapper .timeline-item--2017 .timeline-item__title,
  .zoah-timeline-wrapper .timeline-item--2022 .timeline-item__title,
  .zoah-timeline-wrapper .timeline-item--2024 .timeline-item__title,
  .zoah-timeline-wrapper .timeline-item--2026 .timeline-item__title {
    font-size: 0.8rem;
  }

  .zoah-timeline-wrapper .timeline-item--2017 .timeline-item__description,
  .zoah-timeline-wrapper .timeline-item--2022 .timeline-item__description,
  .zoah-timeline-wrapper .timeline-item--2024 .timeline-item__description,
  .zoah-timeline-wrapper .timeline-item--2026 .timeline-item__description {
    font-size: 0.74rem;
  }

  /* Ajustes para 2016, 2018, 2023, 2025 en 384px-393px */
  .zoah-timeline-wrapper .timeline-item--2016 .timeline-item__year,
  .zoah-timeline-wrapper .timeline-item--2018 .timeline-item__year,
  .zoah-timeline-wrapper .timeline-item--2023 .timeline-item__year,
  .zoah-timeline-wrapper .timeline-item--2025 .timeline-item__year {
    font-size: 1.7rem;
  }

  .zoah-timeline-wrapper .timeline-item--2016 .timeline-item__image,
  .zoah-timeline-wrapper .timeline-item--2018 .timeline-item__image,
  .zoah-timeline-wrapper .timeline-item--2023 .timeline-item__image,
  .zoah-timeline-wrapper .timeline-item--2025 .timeline-item__image {
    width: 90px;
    height: 90px;
  }

  .zoah-timeline-wrapper .timeline-item--2016 .timeline-item__title,
  .zoah-timeline-wrapper .timeline-item--2018 .timeline-item__title,
  .zoah-timeline-wrapper .timeline-item--2023 .timeline-item__title,
  .zoah-timeline-wrapper .timeline-item--2025 .timeline-item__title {
    font-size: 0.8rem;
  }

  .zoah-timeline-wrapper .timeline-item--2016 .timeline-item__description,
  .zoah-timeline-wrapper .timeline-item--2018 .timeline-item__description,
  .zoah-timeline-wrapper .timeline-item--2023 .timeline-item__description,
  .zoah-timeline-wrapper .timeline-item--2025 .timeline-item__description {
    font-size: 0.74rem;
  }
}

/* === MOBILE: 402px - 414px === */
@media (min-width: 394px) and (max-width: 414px) {
  .zoah-timeline-wrapper .timeline-item__year {
    font-size: 1.75rem;
  }

  .zoah-timeline-wrapper .timeline-item__image {
    width: 82px;
    height: 82px;
  }

  .zoah-timeline-wrapper .timeline-item--right .timeline-item__image {
    margin-right: 0.72rem !important;
  }

  .zoah-timeline-wrapper .timeline-item--left .timeline-item__image {
    margin-left: 0.72rem !important;
  }

  .zoah-timeline-wrapper .timeline-item__title {
    font-size: 0.82rem;
  }

  .zoah-timeline-wrapper .timeline-item__description {
    font-size: 0.76rem;
  }

  .zoah-timeline-wrapper .timeline-item__list li {
    font-size: 0.76rem;
  }

  /* Ajustes para 2002 en 402px-414px */
  .zoah-timeline-wrapper .timeline-item--2002 .timeline-item__year {
    font-size: 1.75rem;
  }

  .zoah-timeline-wrapper .timeline-item--2002 .timeline-item__image {
    width: 95px;
    height: 95px;
  }

  .zoah-timeline-wrapper .timeline-item--2002 .timeline-item__title {
    font-size: 0.82rem;
  }

  .zoah-timeline-wrapper .timeline-item--2002 .timeline-item__description {
    font-size: 0.76rem;
  }

  /* Ajustes para 2015 en 402px-414px */
  .zoah-timeline-wrapper .timeline-item--2015 .timeline-item__year {
    font-size: 1.75rem;
  }

  .zoah-timeline-wrapper .timeline-item--2015 .timeline-item__image {
    width: 95px;
    height: 95px;
  }

  .zoah-timeline-wrapper .timeline-item--2015 .timeline-item__title {
    font-size: 0.82rem;
  }

  .zoah-timeline-wrapper .timeline-item--2015 .timeline-item__description {
    font-size: 0.76rem;
  }

  /* Ajustes para 2017, 2022, 2024, 2026 en 402px-414px */
  .zoah-timeline-wrapper .timeline-item--2017 .timeline-item__year,
  .zoah-timeline-wrapper .timeline-item--2022 .timeline-item__year,
  .zoah-timeline-wrapper .timeline-item--2024 .timeline-item__year,
  .zoah-timeline-wrapper .timeline-item--2026 .timeline-item__year {
    font-size: 1.75rem;
  }

  .zoah-timeline-wrapper .timeline-item--2017 .timeline-item__image,
  .zoah-timeline-wrapper .timeline-item--2022 .timeline-item__image,
  .zoah-timeline-wrapper .timeline-item--2024 .timeline-item__image {
    width: 95px;
    height: 95px;
  }

  .zoah-timeline-wrapper .timeline-item--2017 .timeline-item__title,
  .zoah-timeline-wrapper .timeline-item--2022 .timeline-item__title,
  .zoah-timeline-wrapper .timeline-item--2024 .timeline-item__title,
  .zoah-timeline-wrapper .timeline-item--2026 .timeline-item__title {
    font-size: 0.82rem;
  }

  .zoah-timeline-wrapper .timeline-item--2017 .timeline-item__description,
  .zoah-timeline-wrapper .timeline-item--2022 .timeline-item__description,
  .zoah-timeline-wrapper .timeline-item--2024 .timeline-item__description,
  .zoah-timeline-wrapper .timeline-item--2026 .timeline-item__description {
    font-size: 0.76rem;
  }

  /* Ajustes para 2016, 2018, 2023, 2025 en 402px-414px */
  .zoah-timeline-wrapper .timeline-item--2016 .timeline-item__year,
  .zoah-timeline-wrapper .timeline-item--2018 .timeline-item__year,
  .zoah-timeline-wrapper .timeline-item--2023 .timeline-item__year,
  .zoah-timeline-wrapper .timeline-item--2025 .timeline-item__year {
    font-size: 1.75rem;
  }

  .zoah-timeline-wrapper .timeline-item--2016 .timeline-item__image,
  .zoah-timeline-wrapper .timeline-item--2018 .timeline-item__image,
  .zoah-timeline-wrapper .timeline-item--2023 .timeline-item__image,
  .zoah-timeline-wrapper .timeline-item--2025 .timeline-item__image {
    width: 95px;
    height: 95px;
  }

  .zoah-timeline-wrapper .timeline-item--2016 .timeline-item__title,
  .zoah-timeline-wrapper .timeline-item--2018 .timeline-item__title,
  .zoah-timeline-wrapper .timeline-item--2023 .timeline-item__title,
  .zoah-timeline-wrapper .timeline-item--2025 .timeline-item__title {
    font-size: 0.82rem;
  }

  .zoah-timeline-wrapper .timeline-item--2016 .timeline-item__description,
  .zoah-timeline-wrapper .timeline-item--2018 .timeline-item__description,
  .zoah-timeline-wrapper .timeline-item--2023 .timeline-item__description,
  .zoah-timeline-wrapper .timeline-item--2025 .timeline-item__description {
    font-size: 0.76rem;
  }
}

/* === MOBILE: 428px - 440px === */
@media (min-width: 415px) and (max-width: 440px) {
  .zoah-timeline-wrapper .timeline-item__year {
    font-size: 1.8rem;
  }

  .zoah-timeline-wrapper .timeline-item__image {
    width: 85px;
    height: 85px;
  }

  .zoah-timeline-wrapper .timeline-item--right .timeline-item__image {
    margin-right: 0.75rem !important;
  }

  .zoah-timeline-wrapper .timeline-item--left .timeline-item__image {
    margin-left: 0.75rem !important;
  }

  .zoah-timeline-wrapper .timeline-item__title {
    font-size: 0.85rem;
  }

  .zoah-timeline-wrapper .timeline-item__description {
    font-size: 0.78rem;
  }

  .zoah-timeline-wrapper .timeline-item__list li {
    font-size: 0.78rem;
  }

  /* Ajustes para 2002 en 428px-440px */
  .zoah-timeline-wrapper .timeline-item--2002 .timeline-item__year {
    font-size: 1.8rem;
  }

  .zoah-timeline-wrapper .timeline-item--2002 .timeline-item__image {
    width: 100px;
    height: 100px;
  }

  .zoah-timeline-wrapper .timeline-item--2002 .timeline-item__title {
    font-size: 0.85rem;
  }

  .zoah-timeline-wrapper .timeline-item--2002 .timeline-item__description {
    font-size: 0.78rem;
  }

  /* Ajustes para 2015 en 428px-440px */
  .zoah-timeline-wrapper .timeline-item--2015 .timeline-item__year {
    font-size: 1.8rem;
  }

  .zoah-timeline-wrapper .timeline-item--2015 .timeline-item__image {
    width: 100px;
    height: 100px;
  }

  .zoah-timeline-wrapper .timeline-item--2015 .timeline-item__title {
    font-size: 0.85rem;
  }

  .zoah-timeline-wrapper .timeline-item--2015 .timeline-item__description {
    font-size: 0.78rem;
  }

  /* Ajustes para 2017, 2022, 2024, 2026 en 428px-440px */
  .zoah-timeline-wrapper .timeline-item--2017 .timeline-item__year,
  .zoah-timeline-wrapper .timeline-item--2022 .timeline-item__year,
  .zoah-timeline-wrapper .timeline-item--2024 .timeline-item__year,
  .zoah-timeline-wrapper .timeline-item--2026 .timeline-item__year {
    font-size: 1.8rem;
  }

  .zoah-timeline-wrapper .timeline-item--2017 .timeline-item__image,
  .zoah-timeline-wrapper .timeline-item--2022 .timeline-item__image,
  .zoah-timeline-wrapper .timeline-item--2024 .timeline-item__image {
    width: 100px;
    height: 100px;
  }

  .zoah-timeline-wrapper .timeline-item--2017 .timeline-item__title,
  .zoah-timeline-wrapper .timeline-item--2022 .timeline-item__title,
  .zoah-timeline-wrapper .timeline-item--2024 .timeline-item__title,
  .zoah-timeline-wrapper .timeline-item--2026 .timeline-item__title {
    font-size: 0.85rem;
  }

  .zoah-timeline-wrapper .timeline-item--2017 .timeline-item__description,
  .zoah-timeline-wrapper .timeline-item--2022 .timeline-item__description,
  .zoah-timeline-wrapper .timeline-item--2024 .timeline-item__description,
  .zoah-timeline-wrapper .timeline-item--2026 .timeline-item__description {
    font-size: 0.78rem;
  }

  /* Ajustes para 2016, 2018, 2023, 2025 en 428px-440px */
  .zoah-timeline-wrapper .timeline-item--2016 .timeline-item__year,
  .zoah-timeline-wrapper .timeline-item--2018 .timeline-item__year,
  .zoah-timeline-wrapper .timeline-item--2023 .timeline-item__year,
  .zoah-timeline-wrapper .timeline-item--2025 .timeline-item__year {
    font-size: 1.8rem;
  }

  .zoah-timeline-wrapper .timeline-item--2016 .timeline-item__image,
  .zoah-timeline-wrapper .timeline-item--2018 .timeline-item__image,
  .zoah-timeline-wrapper .timeline-item--2023 .timeline-item__image,
  .zoah-timeline-wrapper .timeline-item--2025 .timeline-item__image {
    width: 100px;
    height: 100px;
  }

  .zoah-timeline-wrapper .timeline-item--2016 .timeline-item__title,
  .zoah-timeline-wrapper .timeline-item--2018 .timeline-item__title,
  .zoah-timeline-wrapper .timeline-item--2023 .timeline-item__title,
  .zoah-timeline-wrapper .timeline-item--2025 .timeline-item__title {
    font-size: 0.85rem;
  }

  .zoah-timeline-wrapper .timeline-item--2016 .timeline-item__description,
  .zoah-timeline-wrapper .timeline-item--2018 .timeline-item__description,
  .zoah-timeline-wrapper .timeline-item--2023 .timeline-item__description,
  .zoah-timeline-wrapper .timeline-item--2025 .timeline-item__description {
    font-size: 0.78rem;
  }
}

/* ========================================
   AJUSTES INDIVIDUALES POR AÑO
   Aquí puedes personalizar cada elemento de cada año de forma independiente
======================================== */

/* === 2002 - NONNA === */
/* Ajustes específicos para el año 2002 */
.zoah-timeline-wrapper .timeline-item--2002 {
  /* margin-bottom: 8rem; */ /* Ya definido arriba */
}

.zoah-timeline-wrapper .timeline-item__node--2002 {
  /* Personaliza el círculo del nodo */
}

.zoah-timeline-wrapper .timeline-item__connector--2002 {
  /* Personaliza la línea horizontal conectora */
}

.zoah-timeline-wrapper .timeline-item__year--2002 {
  /* Personaliza la posición y estilo del año */
}

.zoah-timeline-wrapper .timeline-item__content--2002 {
  /* Personaliza el contenido de texto */
  margin-top: -30px;
  width: 240px; /* Ampliado de 180px a 240px */
}

.zoah-timeline-wrapper .timeline-item__image--2002 {
  /* Personaliza la imagen circular */
}

.zoah-timeline-wrapper .timeline-item__arrow--2002 {
  /* Personaliza la flecha decorativa */
}

/* === 2015 - CREACIÓN 1ERA FÓRMULA === */
.zoah-timeline-wrapper .timeline-item--2015 {
  /* margin-bottom: 8rem; */
}

.zoah-timeline-wrapper .timeline-item__node--2015 {
  /* Personaliza el círculo del nodo */
}

.zoah-timeline-wrapper .timeline-item__connector--2015 {
  /* Personaliza la línea horizontal conectora */
  margin-top: 95px;
}

.zoah-timeline-wrapper .timeline-item__year--2015 {
  /* Personaliza la posición y estilo del año */
  margin-top: 33px;
}

.zoah-timeline-wrapper .timeline-item__content--2015 {
  /* Personaliza el contenido de texto */
  margin-top: 80px;
  width: 270px; /* Ancho por defecto */
}

.zoah-timeline-wrapper .timeline-item__image--2015 {
  /* Personaliza la imagen circular */
}

.zoah-timeline-wrapper .timeline-item__arrow--2015 {
  /* Personaliza la flecha decorativa */
}

/* === 2016 - PERFECCIONAMOS FÓRMULA === */
.zoah-timeline-wrapper .timeline-item--2016 {
  /* margin-bottom: 8rem; */
}

.zoah-timeline-wrapper .timeline-item__node--2016 {
  /* Personaliza el círculo del nodo */
}

.zoah-timeline-wrapper .timeline-item__connector--2016 {
  /* Personaliza la línea horizontal conectora */
  margin-top: 80px;
}

.zoah-timeline-wrapper .timeline-item__year--2016 {
  /* Personaliza la posición y estilo del año */
    margin-top: 34px;
}

.zoah-timeline-wrapper .timeline-item__content--2016 {
  /* Personaliza el contenido de texto */
  margin-top: 48px;
  width: 270px; /* Ampliado de 180px a 240px */
}

.zoah-timeline-wrapper .timeline-item__image--2016 {
  /* Personaliza la imagen circular */
  margin-top: 33px;
}

.zoah-timeline-wrapper .timeline-item__arrow--2016 {
  /* Personaliza la flecha decorativa */
}

/* === 2017 - NUEVA IMAGEN === */
.zoah-timeline-wrapper .timeline-item--2017 {
  /* margin-bottom: 8rem; */
}

.zoah-timeline-wrapper .timeline-item__node--2017 {
  /* Personaliza el círculo del nodo */
}

.zoah-timeline-wrapper .timeline-item__connector--2017 {
  /* Personaliza la línea horizontal conectora */
  margin-top: 96px;
}

.zoah-timeline-wrapper .timeline-item__year--2017 {
  /* Personaliza la posición y estilo del año */
  margin-top: 34px;
}

.zoah-timeline-wrapper .timeline-item__content--2017 {
  /* Personaliza el contenido de texto */
  margin-top: 84px;
  width: 250px; /* Ancho por defecto */
}

.zoah-timeline-wrapper .timeline-item__image--2017 {
  /* Personaliza la imagen circular */
}

.zoah-timeline-wrapper .timeline-item__arrow--2017 {
  /* Personaliza la flecha decorativa */
}

/* === 2018 - INICIA PRODUCCIÓN === */
.zoah-timeline-wrapper .timeline-item--2018 {
  /* margin-bottom: 8rem; */
}

.zoah-timeline-wrapper .timeline-item__node--2018 {
  /* Personaliza el círculo del nodo */
}

.zoah-timeline-wrapper .timeline-item__connector--2018 {
  /* Personaliza la línea horizontal conectora */
  margin-top: 80px;
}

.zoah-timeline-wrapper .timeline-item__year--2018 {
  /* Personaliza la posición y estilo del año */
  margin-top: 30px;
}

.zoah-timeline-wrapper .timeline-item__content--2018 {
  /* Personaliza el contenido de texto */
  margin-top: 20px;
  width: 280px; /* Ampliado de 180px a 240px */
}

.zoah-timeline-wrapper .timeline-item__image--2018 {
  /* Personaliza la imagen circular */
  margin-top: 30px;
}

.zoah-timeline-wrapper .timeline-item__arrow--2018 {
  /* Personaliza la flecha decorativa */
}

/* === 2022 - APERTURA DE LABORATORIO === */
.zoah-timeline-wrapper .timeline-item--2022 {
  /* margin-bottom: 8rem; */
}

.zoah-timeline-wrapper .timeline-item__node--2022 {
  /* Personaliza el círculo del nodo */
}

.zoah-timeline-wrapper .timeline-item__connector--2022 {
  /* Personaliza la línea horizontal conectora */
  margin-top: 95px;
}

.zoah-timeline-wrapper .timeline-item__year--2022 {
  /* Personaliza la posición y estilo del año */
  margin-top: 35px;
}

.zoah-timeline-wrapper .timeline-item__content--2022 {
  /* Personaliza el contenido de texto */
  margin-top: 70px;
  width: 230px; /* Ancho por defecto */
}

.zoah-timeline-wrapper .timeline-item__image--2022 {
  /* Personaliza la imagen circular */
}

.zoah-timeline-wrapper .timeline-item__arrow--2022 {
  /* Personaliza la flecha decorativa */
}

/* === 2023 - CRECE LA MARCA === */
.zoah-timeline-wrapper .timeline-item--2023 {
  /* margin-bottom: 8rem; */
}

.zoah-timeline-wrapper .timeline-item__node--2023 {
  /* Personaliza el círculo del nodo */
}

.zoah-timeline-wrapper .timeline-item__connector--2023 {
  /* Personaliza la línea horizontal conectora */
  margin-top: 73px;
}

.zoah-timeline-wrapper .timeline-item__year--2023 {
  /* Personaliza la posición y estilo del año */
  margin-top: 30px;
}

.zoah-timeline-wrapper .timeline-item__content--2023 {
  /* Personaliza el contenido de texto */
  width: 267px; /* Ampliado de 180px a 240px */
}

.zoah-timeline-wrapper .timeline-item__image--2023 {
  /* Personaliza la imagen circular */
  margin-top: 38px;
}

.zoah-timeline-wrapper .timeline-item__arrow--2023 {
  /* Personaliza la flecha decorativa */
}

/* === 2024 - CRECE LA MARCA (CONTINUACIÓN) === */
.zoah-timeline-wrapper .timeline-item--2024 {
  /* margin-bottom: 8rem; */
}

.zoah-timeline-wrapper .timeline-item__node--2024 {
  /* Personaliza el círculo del nodo */
}

.zoah-timeline-wrapper .timeline-item__connector--2024 {
  /* Personaliza la línea horizontal conectora */
  margin-top: 96px;
}

.zoah-timeline-wrapper .timeline-item__year--2024 {
  /* Personaliza la posición y estilo del año */
  margin-top: 35px;
}

.zoah-timeline-wrapper .timeline-item__content--2024 {
  /* Personaliza el contenido de texto */
  margin-top: 90px;
  width: 220px; /* Ancho por defecto */
}

.zoah-timeline-wrapper .timeline-item__image--2024 {
  /* Personaliza la imagen circular */
}

.zoah-timeline-wrapper .timeline-item__arrow--2024 {
  /* Personaliza la flecha decorativa */
}

/* === 2025 - NUEVOS LANZAMIENTOS === */
.zoah-timeline-wrapper .timeline-item--2025 {
  /* margin-bottom: 8rem; */
}

.zoah-timeline-wrapper .timeline-item__node--2025 {
  /* Personaliza el círculo del nodo */
}

.zoah-timeline-wrapper .timeline-item__connector--2025 {
  /* Personaliza la línea horizontal conectora */
  margin-top: 80px;
}

.zoah-timeline-wrapper .timeline-item__year--2025 {
  /* Personaliza la posición y estilo del año */
  margin-top: 30px;
}

.zoah-timeline-wrapper .timeline-item__content--2025 {
  /* Personaliza el contenido de texto */
  margin-top: 50px;
  width: 266px; /* Ampliado de 180px a 240px */
}

.zoah-timeline-wrapper .timeline-item__image--2025 {
  /* Personaliza la imagen circular */
  margin-top: 40px;
}

.zoah-timeline-wrapper .timeline-item__arrow--2025 {
  /* Personaliza la flecha decorativa */
}

/* === 2026 - CONTINÚA LA EXPANSIÓN === */
.zoah-timeline-wrapper .timeline-item--2026 {
  /* margin-bottom: 4rem; */
}

.zoah-timeline-wrapper .timeline-item__node--2026 {
  /* Personaliza el círculo del nodo */
}

.zoah-timeline-wrapper .timeline-item__connector--2026 {
  /* Personaliza la línea horizontal conectora */
  margin-top: 70px;
}

.zoah-timeline-wrapper .timeline-item__year--2026 {
  /* Personaliza la posición y estilo del año */
  margin-top: 30px;
}

.zoah-timeline-wrapper .timeline-item__content--2026 {
  /* Personaliza el contenido de texto */
  width: 230px; /* Ancho por defecto */
}

.zoah-timeline-wrapper .timeline-item__image--2026 {
  /* Personaliza la imagen circular */
}

.zoah-timeline-wrapper .timeline-item__arrow--2026 {
  /* Flecha especial para el final de la timeline - configurada con nth-child(10) arriba */
}

/* ========================================
   EJEMPLO DE PERSONALIZACIÓN
======================================== */

/* Ejemplo: Ajustar posición del año 2015 */
/*
.zoah-timeline-wrapper .timeline-item__year--2015 {
  margin-left: 100px;
}
*/

/* Ejemplo: Cambiar tamaño de la imagen del 2022 */
/*
.zoah-timeline-wrapper .timeline-item__image--2022 {
  width: 160px;
  height: 160px;
  left: calc(50% - 240px);
}
*/

/* Ejemplo: Mover el contenido del 2018 */
/*
.zoah-timeline-wrapper .timeline-item__content--2018 {
  right: calc(50% - 450px);
}
*/
