.r-paddingLeft-1hxq0ab {
  padding-left: 0 !important;
}

.timeline-vertical {
  max-width: 700px;
  padding: 0;
  position: relative;
  margin: 0 !important;
}

.timeline-line {
  z-index: 0;
  background: #e0e0e0;
  border-radius: 2px;
  width: 3px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 18px;
}

.timeline-item {
  opacity: 0;
  align-items: flex-start;
  margin-bottom: 8px;
  animation: .6s cubic-bezier(.4, 1.4, .6, 1) forwards timeline-fadein;
  display: flex;
  position: relative;
  transform: translateY(40px);
}

@keyframes timeline-fadein {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.timeline-avatar {
  z-index: 2;
  background: #fff;
  border: 4px solid #e0e0e0;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  margin-top: 0;
  margin-left: 0;
  margin-right: 8px;
  display: flex;
  position: relative;
  top: 36px;
  overflow: hidden;
  transform: translateY(-50%);
  box-shadow: 0 1px 4px #1976d214;
}

.timeline-avatar img {
  object-fit: cover;
  border-radius: 50%;
  width: 100%;
  height: 100%;
}

.timeline-content {
  background: #fff;
  border-top: 3px solid #0000;
  border-radius: 0;
  flex-direction: column;
  flex: 1;
  min-width: 0;
  margin-left: 0;
  padding: 20px 24px 16px;
  display: flex;
  position: relative;
  box-shadow: 0 2px 8px #0000001a;
}

.timeline-top-bar {
  z-index: 2;
  border-top: 4px solid;
  border-radius: 0;
  width: 100%;
  height: 0;
  margin-bottom: 0;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}

.timeline-arrow {
  z-index: 1;
  border-top: 7px solid #0000;
  border-bottom: 7px solid #0000;
  border-right: 10px solid #fff;
  width: 0;
  height: 0;
  position: absolute;
  top: 36px;
  left: -12px;
}

.timeline-gallery {
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 8px;
  display: grid;
}

@media (width <= 600px) {
  .timeline-gallery {
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
  }
}

.timeline-gallery-img, .timeline-gallery .textBox {
  aspect-ratio: 1;
  box-sizing: border-box;
  background: #fff;
  border: 1px dashed #cbcbcb;
  border-radius: 12px;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin: 0;
  padding: 6px;
  display: flex;
  box-shadow: 0 2px 8px #3c3c8212;
}

.timeline-gallery-img {
  object-fit: cover;
  box-shadow: none;
  background: none;
  border: none;
  border-radius: 8px;
  max-width: 94%;
  max-height: 94%;
  padding: 0;
}

.timeline-date {
  color: #888;
  text-align: right;
  margin-top: 4px;
  font-size: 12px;
}

.timeline-loading {
  justify-content: center;
  align-items: center;
  gap: 12px;
  padding: 32px 0;
  display: flex;
}

.timeline-spinner {
  border: 4px solid #1976d2;
  border-top-color: #fff;
  border-radius: 50%;
  width: 28px;
  height: 28px;
  animation: 1s linear infinite spin;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
