/* Timeline styles for past-presidents.php */
.timeline li {
  border-left: 4px solid #0d6efd;
  padding-left: 1.5rem;
  position: relative;
}
.timeline li:before {
  content: '';
  position: absolute;
  left: -10px;
  top: 10px;
  width: 16px;
  height: 16px;
  background: #fff;
  border: 3px solid #0d6efd;
  border-radius: 50%;
  z-index: 1;
}

/* Facebook post card customizations for photos.php */
.fb-post.rounded-3 {
  border-radius: 1rem !important;
}
.fb-post.border-info {
  border-color: #0dcaf0 !important;
}
.fb-post.p-2 {
  padding: 0.75rem !important;
}

/* Responsive ratio for videos.php (if not using Bootstrap 5+) */
.ratio {
  position: relative;
  width: 100%;
}
.ratio-16x9 {
  aspect-ratio: 16/9;
}
.ratio iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Executive Committee Timeline Styles */
.exec-timeline {
  position: relative;
  margin-left: 1.5rem;
  padding-left: 0.5rem;
}
.exec-timeline-item {
  position: relative;
  padding-left: 2.5rem;
  min-height: 36px;
}
.exec-timeline-line {
  position: absolute;
  left: 10px;
  top: 0;
  width: 4px;
  height: 100%;
  background: #0d6efd;
  border-radius: 2px;
  z-index: 0;
}
.exec-timeline-circle {
  position: absolute;
  left: 0;
  top: 6px;
  width: 24px;
  height: 24px;
  background: #fff;
  border: 4px solid #0d6efd;
  border-radius: 50%;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: #0d6efd;
}
