/*===============
  Section: Vision 
  =============== */
.vision-section {
  background: #fff;
  border-top: 1px solid #ddd;
  padding: 48px 16px;
}

.vision-section .container {
  max-width: 960px;
  margin: 0 auto;
}

.vision-header {
  text-align: center;
  margin-bottom: 40px;
}

.vision-icon {
  width: 23px;
  height: 23px;
  margin: 0 auto 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.vision-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.vision-subtitle {
  color: #8b6f4e;
  font-size: 19px;
  font-weight: bold;
  margin-bottom: 8px;
}

.vision-title {
  font-size: 26px;
  line-height: 1.3;
  font-weight: 600;
}

.timeline {
  position: relative;
}

/* item */
.timeline-item {
  position: relative;
  display: flex;
  gap: 0px;
  padding: 8px 0;
  border-bottom: none;
  background-image: linear-gradient(
    to right,
    #c7b299 0%,
    #c7b299 20%,
    #d6d6d6 25%,
    #d6d6d6 100%
  );
  background-repeat: no-repeat;
  background-size: calc(100% - 32px) 1px;
  background-position: 32px bottom;
}

/* left column */
.timeline-left {
  width: 32px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* dot */
.dot {
  width: 6px;
  height: 6px;
  background: #6fc2c9;
  border-radius: 50%;
  z-index: 2;
}

/* The line runs from the bottom dot down to the next item. */
.line {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: calc(100% + 18px);
  background: #d6d6d6;
  z-index: 1;
}

/* content */
.timeline-content {
  display: grid;
  grid-template-columns: 216px 1fr 169px;
  gap: 16px;
  width: 100%;
  align-items: center;
}

.left h4 {
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 1px;
}

.tag {
  color: #8b6b4a;
  font-size: 13px;
}

.center p {
  font-size: 13px;
  line-height: 1.6;
  color: #333;
}

.right {
  text-align: left;
}

.right .date {
  font-size: 13px;
  margin-bottom: 2px;
}

.right .time {
  font-size: 13px;
  color: #555;
}

/* ============ */
/* Responsive = */
/* ============ */
/* Desktop large: 1200px+ */
@media (min-width: 1200px) {
}

/* Tablet + small desktop: 768px - 1199px */
@media (min-width: 768px) and (max-width: 1199px) {
  .vision-title br {
    display: none;
  }

  .timeline-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0px;
  }

  .timeline-content > div {
    width: 100%;
  }

  .timeline-content .right {
    display: flex;
    gap: 8px;
    align-items: center;
    text-align: left;
    flex-wrap: wrap;
  }

  .timeline-item {
    background-image: linear-gradient(to right, #d6d6d6 100%);
  }
}

/* Mobile: 1px - 767px */
@media (max-width: 767px) {
  .hero-content h1 span,
  .hero-content p span {
    display: block;
  }

  .hero {
    min-height: 50vh;
    padding-top: 56px;
    padding-bottom: 32px;
  }

  .hero-content h1 {
    font-size: 24px;
  }

  .hero-content p {
    font-size: 12px;
  }

  .vision-section {
    padding: 48px 8px;
  }

  .vision-title br {
    display: none;
  }

  .vision-title {
    font-size: 15px;
  }

  .vision-subtitle {
    font-size: 16px;
    font-weight: normal;
  }

  .timeline-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0px;
  }

  .timeline-content > div {
    width: 100%;
  }

  .timeline-content .right {
    display: flex;
    gap: 8px;
    align-items: center;
    text-align: left;
    flex-wrap: wrap;
  }

  .timeline-item {
    background-image: linear-gradient(to right, #d6d6d6 100%);
  }

  .vision-title,
  .timeline-content p,
  .timeline-content .tag {
    word-break: break-word;
    overflow-wrap: break-word;
  }
}