/* ===== VALSUANI GENEALOGY TIMELINE ===== */
/* Vertical timeline for displaying historical generations */

.ar-timeline__heading {
  font-family: 'Raleway', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: #142A5C;
  margin: 2rem 0 0.5rem;
}

.ar-timeline {
  position: relative;
  max-width: 100%;
  width: 100%;
  margin: 0 auto;
  padding: 2rem 0;
  overflow: hidden;
}

/* Vertical gold center line */
.ar-timeline::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  background: linear-gradient(to bottom, transparent, #D0B263 5%, #D0B263 95%, transparent);
}

/* Era labels - full width blue bands */
.ar-timeline-era {
  position: relative;
  z-index: 2;
  margin: 2rem -1rem;
  padding: 0.5rem 2rem;
  background: #142A5C;
  color: #D0B263;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-align: center;
}

/* Individual timeline item — 3-column grid */
.ar-timeline-item {
  display: grid;
  grid-template-columns: 1fr 60px 1fr;
  align-items: center;
  gap: 0;
  margin: 1.5rem 0;
  position: relative;
}

/* Year bubble — center column */
.ar-timeline-year__bubble {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #142A5C;
  color: #D0B263;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-align: center;
  line-height: 1.2;
  box-shadow: 0 0 0 3px #D0B263, 0 2px 12px rgba(20,42,92,0.25);
  position: relative;
  z-index: 3;
  justify-self: center;
}

/* Cards — left and right columns */
.ar-timeline-card {
  background: #ffffff;
  border: 1px solid #e8e0d0;
  border-radius: 6px;
  padding: 1rem 1.25rem;
  box-shadow: 0 2px 10px rgba(20,42,92,0.08);
  position: relative;
  max-width: 340px;
}

/* Left card — arrow points right (toward center) */
.ar-timeline-card--left {
  justify-self: end;
  margin-right: 12px;
}

.ar-timeline-card--left::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -10px;
  transform: translateY(-50%);
  border: 8px solid transparent;
  border-left-color: #ffffff;
  filter: drop-shadow(1px 0 0 #e8e0d0);
}

/* Right card — arrow points left (toward center) */
.ar-timeline-card--right {
  justify-self: start;
  margin-left: 12px;
}

.ar-timeline-card--right::after {
  content: '';
  position: absolute;
  top: 50%;
  left: -10px;
  transform: translateY(-50%);
  border: 8px solid transparent;
  border-right-color: #ffffff;
  filter: drop-shadow(-1px 0 0 #e8e0d0);
}

/* Empty placeholder when card is on one side only */
.ar-timeline-card--empty {
  background: transparent;
  border: none;
  box-shadow: none;
}

/* Card content */
.ar-timeline-card__title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1rem;
  font-weight: 700;
  color: #142A5C;
  margin: 0 0 0.35rem;
  line-height: 1.3;
}

.ar-timeline-card__subtitle {
  font-size: 0.8rem;
  color: #D0B263;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin: 0 0 0.5rem;
}

.ar-timeline-card__body {
  font-size: 0.875rem;
  color: #4a4a4a;
  line-height: 1.6;
  margin: 0;
}

.ar-timeline-card__tag {
  display: inline-block;
  margin-top: 0.5rem;
  padding: 0.2rem 0.5rem;
  background: rgba(208,178,99,0.12);
  border: 1px solid rgba(208,178,99,0.35);
  border-radius: 3px;
  font-size: 0.72rem;
  color: #8a6e1c;
  letter-spacing: 0.04em;
}

/* Verified badge */
.ar-timeline-card__verified {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  margin-top: 0.5rem;
  font-size: 0.72rem;
  color: #2d7a2d;
  font-weight: 600;
}

.ar-timeline-card__doc-link {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.2s;
}

.ar-timeline-card__doc-link:hover {
  color: #1a5a1a;
}

.ar-timeline-card__verified::before {
  content: '✓';
  font-size: 0.75rem;
}

/* ===== MOBILE: stack vertically ===== */
@media (max-width: 640px) {
  .ar-timeline::before {
    left: 27px;
  }

  .ar-timeline-item {
    grid-template-columns: 54px 1fr;
    grid-template-rows: auto auto;
  }

  .ar-timeline-year__bubble {
    grid-column: 1;
    grid-row: 1;
  }

  .ar-timeline-card--left,
  .ar-timeline-card--right {
    grid-column: 2;
    grid-row: 1;
    margin-left: 12px;
    margin-right: 0;
    justify-self: stretch;
    max-width: none;
  }

  .ar-timeline-card--left::after {
    right: auto;
    left: -10px;
    border-left-color: transparent;
    border-right-color: #ffffff;
  }

  .ar-timeline-card--empty {
    display: none;
  }

  .ar-timeline-era {
    margin-left: 0;
    margin-right: 0;
    text-align: left;
    padding-left: 4rem;
  }
}
