@charset "utf-8";

.updates_detail_hero {
  max-width: 920px;
  margin: 0 auto;
  padding: 180px 24px 56px;
}

.updates_back_btn {
  display: inline-flex;
  align-items: center;
  margin-bottom: 34px;
  color: #666;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}

.updates_back_btn:hover {
  color: #111;
}

.updates_detail_hero h1 {
  margin: 26px 0 20px;
  color: #111;
  font-size: 58px;
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: -0.05em;
}

.updates_detail_hero p {
  max-width: 720px;
  margin: 0;
  color: #666;
  font-size: 17px;
  line-height: 1.8;
  /* word-break: keep-all; */
}

/* ==============================
  Visual
============================== */

.updates_visual_section {
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 24px 70px;
}

.updates_visual {
  overflow: hidden;
  border: 1px solid rgba(17, 17, 17, .06);
  border-radius: 34px;
  background: #fff;
  box-shadow: 0 24px 70px rgba(17, 17, 17, .06);
}

.updates_visual img {
  display: block;
  width: 100%;
  height: auto;
}

.updates_timeline_section {
  max-width: 920px;
  margin: 0 auto;
  padding: 24px 24px 110px;
}

.updates_timeline {
  position: relative;
}

.updates_timeline::before {
  content: "";
  position: absolute;
  top: 0;
  left: 11px;
  width: 2px;
  height: 100%;
  background: #e5e7eb;
}

.updates_timeline_item {
  position: relative;
  padding-left: 46px;
  margin-bottom: 28px;
}

.updates_timeline_marker {
  position: absolute;
  top: 30px;
  left: 0;
  width: 24px;
  height: 24px;
  border: 6px solid #f7f8fb;
  border-radius: 50%;
  background: #111;
  box-sizing: border-box;
  z-index: 2;
}

.updates_timeline_card {
  padding: 34px;
  border: 1px solid rgba(17, 17, 17, .06);
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 18px 50px rgba(17, 17, 17, .04);
}

.updates_timeline_head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 26px;
}

.updates_version {
  display: inline-flex;
  align-items: center;
  height: 30px;
  margin-bottom: 14px;
  padding: 0 12px;
  border-radius: 999px;
  background: #111;
  color: #fff;
  font-size: 12px;
  font-weight: 900;
}

.updates_timeline_card h2 {
  margin: 0;
  color: #111;
  font-size: 26px;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.updates_meta {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-end;
  flex-shrink: 0;
}

.updates_meta span,
.updates_meta time {
  color: #777;
  font-size: 13px;
  font-weight: 800;
}

.updates_timeline_card ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.updates_timeline_card li {
  position: relative;
  padding-left: 18px;
  color: #555;
  font-size: 15px;
  line-height: 1.7;
}

.updates_timeline_card li::before {
  content: "";
  position: absolute;
  top: 11px;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #111;
}

@media (max-width: 767px) {

  .updates_detail_hero {
    padding: 142px 18px 36px;
  }

  .updates_detail_hero h1 {
    font-size: 38px;
  }

  .updates_detail_hero p {
    font-size: 15px;
  }

  .updates_visual_section {
    padding: 0 18px 50px;
  }

  .updates_visual {
    border-radius: 24px;
  }

  .updates_timeline_section {
    padding: 20px 18px 76px;
  }

  .updates_timeline_item {
    padding-left: 36px;
  }

  .updates_timeline_card {
    padding: 24px;
    border-radius: 22px;
  }

  .updates_timeline_head {
    flex-direction: column;
  }

  .updates_meta {
    align-items: flex-start;
  }

  .updates_timeline_card h2 {
    font-size: 22px;
  }

}