.timeline-photo-wrapper {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  max-width: 83.5%;
  margin: 2rem auto;
  gap: 2rem;
}

.timeline-container {
  width: 55%;
  background: #181818;
  padding: 2rem;
  height: 68.5vh;
  border-radius: 1rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
  font-family: 'Segoe UI', sans-serif;
  color: #e0e0e0;
}

.timeline-title {
  text-align: left;
  margin-bottom: 1rem;
  font-size: 1.8rem;
  color: #ffffff;
}

.timeline {
  position: relative;
  margin-left: 20px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 10px;
  width: 2px;
  height: 100%;
  background-color: #EE1D52;
}

.timeline-item {
  position: relative;
  margin-bottom: 1rem;
  padding-left: 2rem;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: 1px;
  top: 5px;
  width: 18px;
  height: 18px;
  background-color: #EE1D52;
  border-radius: 50%;
}

.timeline-content {
  background: #222;
  padding: 1rem;
  border-radius: 0.5rem;
}

.job-title {
  font-size: 1.2rem;
  margin-bottom: 0.3rem;
  color: #ffffff;
}

.job-date {
  font-size: 0.9rem;
  color: #aaaaaa;
  display: block;
  margin-bottom: 0.5rem;
}

.job-description {
  font-size: .85rem;
}

.photo-quote-container {
  position: relative;
  width: 38.25%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.profile-photo {
  width: 100%;
  height: 64.5vh;
  margin-top: 100px;
  border-radius: 1rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.quote-box {
  top: 0;
  left: 0;
  position: absolute;
  background: linear-gradient(45deg, #0A0A0A, #EE1D52);
  color: #E0E0E0;
  display: flex;
  text-align: center;
  align-items: center;
  height: 65px;
  padding: 0.5rem 1rem;
  border-radius: 1rem;
  font-size: 80%;
  font-style: italic;
  width: 93%;
}

@media (max-width: 768px) {
  .timeline-photo-wrapper {
    flex-direction: column;
    align-items: center;
  }
  .timeline-container,
  .photo-quote-container {
    width: 100%;
  }
  .quote-box {
    top: 0.5rem;
    right: 0.5rem;
    max-width: 90%;
  }
}