.htl-timeline {
  --htl-accent: #E4572E;
  --htl-line: #2A2A2A;
  --htl-card: #0F0F10;
  position: relative;
  padding: 20px 0 20px 40px;
  color: #EDEDED;
}

.htl-timeline::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--htl-accent), var(--htl-line));
}

.htl-year-group {
  margin-bottom: 28px;
}

.htl-year {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--htl-accent);
  margin: 8px 0 12px 0;
}

.htl-item {
  position: relative;
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 12px;
  margin: 0 0 16px 0;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.htl-item.htl-inview {
  opacity: 1;
  transform: translateY(0);
}

.htl-marker {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #121214;
  border: 2px solid var(--htl-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  box-shadow: 0 0 0 6px rgba(228, 87, 46, 0.08);
}

.htl-card {
  background: var(--htl-card);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

.htl-type {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 11px;
  color: #B9B9B9;
  margin-bottom: 6px;
}

.htl-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 6px;
  color: #FAFAFA;
}

.htl-desc {
  color: #D2D2D2;
  font-size: 14px;
  margin-bottom: 8px;
}

.htl-date {
  color: #C9C9C9;
  font-size: 12px;
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}

.htl-photo {
  margin: 10px 0 8px 0;
  text-align: center;
  width: 100%;
}

.htl-photo-img {
  width: 100% !important;
  height: auto !important;
  max-width: 100% !important;
  max-height: none !important;
  display: block;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 900px) {
  .htl-photo {
    max-width: var(--htl-photo-max-width, 440px);
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 640px) {
  .htl-photo-img {
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
  }
}

.htl-link a {
  color: var(--htl-accent);
  font-size: 12px;
  text-decoration: none;
}

.htl-link a:hover {
  text-decoration: underline;
}

.htl-meta,
.htl-extra {
  color: #AFAFAF;
  font-size: 12px;
  line-height: 1.4;
}

.htl-meta + .htl-extra {
  margin-top: 6px;
}

.htl-empty {
  color: #666;
  font-style: italic;
}

@media (max-width: 640px) {
  .htl-timeline {
    padding-left: 28px;
  }

  .htl-item {
    grid-template-columns: 28px 1fr;
  }

  .htl-marker {
    width: 28px;
    height: 28px;
  }
}
