/* ============================
   TIMELINE WRAPPER
   ============================ */
/*$font-stack: 'Segoe UI', 'Helvetica Neue', sans-serif;*/
.prj.timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem 0 2rem 2.75rem;
  /* Vertical line */
}
.prj.timeline::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 86px;
  width: 4px;
  background-color: #ddd;
}
.prj.timeline {
  /* ============================
  TIMELINE ITEM
  ============================ */
}
.prj.timeline .timeline-item {
  position: relative;
  display: flex;
  align-items: flex-start;
  margin-bottom: 3.5rem;
}
.prj.timeline .timeline-item:last-child {
  margin-bottom: 0;
}
.prj.timeline {
  /* ============================
  YEAR CIRCLE (LEFT)
  ============================ */
}
.prj.timeline .timeline-year {
  position: absolute;
  left: 44px;
  transform: translateX(-50%);
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background-color: #f5a623;
  /* default */
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  font-weight: 700;
  text-align: center;
  line-height: 1.15;
  padding: 0.5rem;
  z-index: 2;
  padding-top: 16px;
}
.prj.timeline {
  /* Example colour overrides */
}
.prj.timeline .color-01 .timeline-year {
  background: #7a292b;
}
.prj.timeline .color-02 .timeline-year {
  background: #85754d;
}
.prj.timeline .color-03 .timeline-year {
  background: cornflowerblue;
}
.prj.timeline .color-04 .timeline-year {
  background: chocolate;
}
.prj.timeline {
  /* ============================
  CONTENT CARD (RIGHT)
  ============================ */
}
.prj.timeline .timeline-content {
  margin-left: 130px;
  width: calc(100% - 130px);
  max-width: 560px;
  background-color: #ffffff;
  padding: 1.25rem 1.5rem;
  border-radius: 8px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}
.prj.timeline .timeline-content li {
  line-height: 23px;
}
.prj.timeline {
  /* ============================
  TOGGLE BUTTON (BOOTSTRAP)
  ============================ */
}
.prj.timeline .timeline-toggle {
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: none;
  border: 0;
  padding: 0;
  font-weight: 600;
  color: #8b1f1f;
  text-decoration: none;
}
.prj.timeline .timeline-toggle:hover {
  color: rgb(105.64, 23.56, 23.56);
}
.prj.timeline .timeline-toggle:focus-visible {
  outline: 2px solid #8b1f1f;
  outline-offset: 4px;
}
.prj.timeline .timeline-toggle i {
  font-size: 1rem;
  transition: transform 0.3s ease;
}
.prj.timeline .timeline-toggle[aria-expanded=true] i {
  transform: rotate(180deg);
}
.prj.timeline {
  /* ============================
  COLLAPSIBLE CONTENT
  ============================ */
}
.prj.timeline .timeline .collapse {
  margin-top: 0.75rem;
}
.prj.timeline .timeline .collapse p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: #444444;
}

/* ============================
   SMALL SCREEN ADJUSTMENTS
   ============================ */
@media (max-width: 576px) {
  .prj.timeline {
    padding-left: 2.25rem;
  }
  .prj.timeline::before {
    left: 36px;
  }
  .prj.timeline .timeline-year {
    left: 36px;
    width: 72px;
    height: 72px;
    font-size: 0.85rem;
  }
  .prj.timeline .timeline-content {
    margin-left: 110px;
    width: calc(100% - 110px);
  }
}
@media (max-width: 425px) {
  .prj.timeline {
    padding-left: 2.25rem;
  }
  .prj.timeline::before {
    display: none;
  }
  .prj.timeline .timeline-item {
    flex-direction: column;
    align-items: center;
  }
  .prj.timeline .timeline-item .timeline-year {
    left: 0;
    width: 100%;
    height: 100%;
    font-size: 0.85rem;
    position: relative;
    transform: unset;
    border-radius: 3px 3px 0 0;
  }
  .prj.timeline .timeline-item .timeline-content {
    margin-left: 0px;
    width: 100%;
  }
}/*# sourceMappingURL=prj-timeline.css.map */