#focus-timeline {
  padding-top: max(90px, 6.25vw);
  min-height: 100vh;
  margin: 0;
  padding: 0;
  box-sizing: border-box;

}

.timer-section {
  min-height: 100vh;
}
.timer-section .container {
  padding-left: 15px;
  padding-right: 15px;
}

.timer-section .timer-container {
  list-style: none;
}
.timer-section .timer {
  list-style: none;
  position: relative;
  max-width: 1000px;
  margin: auto;
}
.timer-section .timer::before {
  position: absolute;
  height: 100%;
  width: 2px;
  background-color: rgba(197, 196, 196, 0.25);
  left: 50%;
  transform: translateX(-50%);
}

.timer-section .timer .step {
  width: 50%;
  padding: 20px 15px;
  position: relative;
  background-color: rgba(197, 196, 196, 0.25);
  box-shadow: 0 5px 15px rgba(0, 0, 0, .05);
}
.timer-section .timer .step:not(:first-child),
.timer-section .timer .step:not(:last-child) {
  margin: 90px 0 60px 0;
}
.timer-section .timer .step:nth-child(odd) {
  transform: translateX(100%);
  border-left: 2px solid #000;
  border-radius: 0 3px 3px 0;
}
.timer-section .timer .step:nth-child(even) {
  border-right: 2px solid #000;
  border-radius: 3px 0 0 3px;
}

.timer-section .timer .step > span {
  position: absolute;
  height: 26px;
  width: 25px;
  color: #333;
  background-color: rgba(197, 196, 196, 0.25);
  text-align: center;
  line-height: 22px;
  border-radius: 3px;
  font-size: .8rem;
}
.timer-section .timer .step:nth-child(odd) > span {
  top: -40px;
  left: -13px;
  border: 1px solid #000;
}
.timer-section .timer .step:nth-child(even) > span {
  top: -40px;
  right: -13px;
  border: 1px solid #000;
}

.timer-section .timer .step h3 {
  margin-bottom: 15px;
}
.timer-section .timer .step p {
  font-weight: 300;
  font-size: .85rem;
  color: #555;
}

/* ✅ MOBILE OVERRIDE */
@media screen and (max-width: 500px) {
  .timer-section .timer .step {
    width: 100%;
    text-align: center;
    transform: translateX(0%);
    border-radius: 3px !important;
  }
  .timer-section .timer .step:nth-child(odd) {
    transform: translateX(0%);
    border: none;
    border-top: 2px solid #000;
  }
  .timer-section .timer .step:nth-child(even) {
    border: none;
    border-top: 2px solid #000;
  }
  .timer-section .timer .step span {
    left: 50% !important;
    transform: translateX(-50%);
  }
}