.awards-timeline {
  padding: 72px 0 80px;
  background: #f4f4f4;
}

.awards-timeline .title {
  text-align: center;
  color: var(--color-primary);
  font-size: 32px;
  font-weight: 800;
  margin: 0 0 48px;
}

.awards-timeline .timeline-wrap {
  overflow-x: auto;
}

.awards-timeline .timeline {
  position: relative;
  min-width: 800px;
  padding: 8px 0 32px;
}

.awards-timeline .line {
  position: absolute;
  left: calc(100% / 8);
  right: calc(100% / 8);
  top: 252px;
  height: 3px;
  background: var(--color-primary);
  z-index: 0;
}

.awards-timeline .columns {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  align-items: start;
}

.awards-timeline .column {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.awards-timeline .above {
  display: flex;
  flex-direction: row;
  gap: 20px;
  align-items: flex-end;
  justify-content: center;
  width: 100%;
  min-height: 220px;
  padding-bottom: 16px;
}

.awards-timeline .below {
  display: flex;
  flex-direction: row;
  gap: 20px;
  align-items: flex-start;
  justify-content: center;
  width: 100%;
  min-height: 240px;
  padding-top: 16px;
}

.awards-timeline .point {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--color-primary);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 700;
  z-index: 2;
  box-shadow: 0 0 0 8px #f4f4f4;
  flex-shrink: 0;
}

.awards-timeline .card {
  width: 150px;
  min-width: 150px;
  max-width: 150px;
  background: var(--color-white);
  border-radius: 20px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.15);
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.awards-timeline .card.image-first {
  flex-direction: column-reverse;
}

.awards-timeline .card p {
  margin: 0 0 12px;
  color: var(--color-text);
  font-size: 12px;
  line-height: 1.35;
  font-weight: 500;
}

.awards-timeline .card img {
  width: 100px;
  height: auto;
  object-fit: contain;
}

@media (max-width: 767px) {
  .awards-timeline {
    padding: 48px 0 56px;
  }

  .awards-timeline .title {
    font-size: 28px;
    margin-bottom: 28px;
  }

  .awards-timeline .timeline {
    min-width: 0;
  }

  .awards-timeline .line {
    display: none;
  }

  .awards-timeline .columns {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .awards-timeline .above,
  .awards-timeline .below {
    flex-wrap: wrap;
    min-height: 0;
    padding: 0;
  }

  .awards-timeline .card {
    width: 140px;
    min-width: 140px;
    max-width: 140px;
  }
}
