body.page-news-events .news-events-copy {
  width: min(100%, 1040px);
}

body.page-news-events .events-timeline-shell {
  margin-top: 8px;
  padding-top: 12px;
}

body.page-news-events .events-timeline {
  --date-column: clamp(126px, 16vw, 172px);
  --axis-x: calc(var(--date-column) + 24px);
  list-style: none;
  position: relative;
  margin: 0;
  padding: 10px 0 0;
}

body.page-news-events .events-timeline::before {
  content: "";
  position: absolute;
  top: 10px;
  bottom: 22px;
  left: var(--axis-x);
  width: 2px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(29, 79, 145, 0.16), rgba(29, 79, 145, 0.76) 42%, rgba(195, 137, 73, 0.5));
}

body.page-news-events .events-timeline-item {
  position: relative;
  display: grid;
  grid-template-columns: var(--date-column) minmax(0, 1fr);
  gap: clamp(40px, 4.6vw, 66px);
  align-items: start;
  padding: 0 0 34px;
}

body.page-news-events .events-timeline-item:last-child {
  padding-bottom: 0;
}

body.page-news-events .events-timeline-item::before {
  content: "";
  position: absolute;
  left: var(--axis-x);
  top: 22px;
  z-index: 2;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  transform: translateX(-50%);
  background: #ffffff;
  box-shadow:
    0 0 0 5px rgba(228, 236, 245, 0.95),
    inset 0 0 0 4px rgba(29, 79, 145, 0.84),
    0 12px 26px rgba(10, 24, 45, 0.16);
}

body.page-news-events .events-timeline-item.is-current::before {
  width: 22px;
  height: 22px;
  top: 20px;
  background: linear-gradient(180deg, rgba(195, 137, 73, 0.98), rgba(29, 79, 145, 0.98));
  box-shadow:
    0 0 0 6px rgba(237, 244, 251, 0.98),
    0 14px 28px rgba(10, 24, 45, 0.22);
}

body.page-news-events .events-timeline-date {
  display: inline-flex;
  justify-content: flex-end;
  align-items: center;
  min-height: 62px;
  width: 100%;
  color: #173a6b;
  font-family: "Source Han Serif SC", "Noto Serif SC", "STSong", "Songti SC", serif;
  font-size: clamp(15px, 1.08vw, 18px);
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.35;
  text-align: right;
}

html:not([lang="zh-CN"]) body.page-news-events .events-timeline-date {
  font-family: "Cormorant Garamond", "Baskerville", "Palatino Linotype", Georgia, serif;
  letter-spacing: 0.06em;
}

body.page-news-events .events-timeline-card {
  position: relative;
  min-height: 62px;
  overflow: hidden;
  padding: 22px 28px 24px 30px;
  border-radius: 28px;
  border: 1px solid rgba(189, 206, 224, 0.84);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(243, 248, 252, 0.96) 100%);
  box-shadow: 0 22px 44px rgba(10, 24, 45, 0.09);
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

body.page-news-events .events-timeline-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 6px;
  background: linear-gradient(180deg, rgba(29, 79, 145, 0.95), rgba(195, 137, 73, 0.82));
}

body.page-news-events .events-timeline-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(130deg, rgba(255, 255, 255, 0.34), transparent 34%, transparent 72%, rgba(194, 213, 232, 0.14));
  pointer-events: none;
}

body.page-news-events .events-timeline-item:hover .events-timeline-card,
body.page-news-events .events-timeline-item:focus-within .events-timeline-card {
  transform: translateY(-4px);
  border-color: rgba(29, 79, 145, 0.2);
  box-shadow: 0 28px 56px rgba(10, 24, 45, 0.14);
}

body.page-news-events .events-timeline-body {
  position: relative;
  z-index: 1;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  color: #213044;
  font-size: clamp(16px, 1.08vw, 19px);
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.015em;
  white-space: pre-line;
}

body.page-news-events .events-timeline-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(29, 79, 145, 0.14), rgba(195, 137, 73, 0.18));
  box-shadow: inset 0 0 0 1px rgba(29, 79, 145, 0.14);
  color: #184273;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.3;
  white-space: nowrap;
}

body.page-news-events .events-timeline-body-text {
  flex: 1 1 240px;
  min-width: 0;
}

body.page-news-events .events-timeline-empty {
  list-style: none;
  padding: 0;
}

body.page-news-events .events-timeline-empty-copy {
  margin: 0;
  padding: 22px 24px;
  border-radius: 24px;
  border: 1px solid rgba(189, 206, 224, 0.84);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(243, 248, 252, 0.96) 100%);
  color: #4e5f73;
  font-size: 16px;
  line-height: 1.9;
  text-align: center;
}

@media (max-width: 920px) {
  body.page-news-events .events-timeline {
    --date-column: 118px;
  }

  body.page-news-events .events-timeline-item {
    gap: 40px;
  }

  body.page-news-events .events-timeline-card {
    padding-inline: 24px;
  }
}

@media (max-width: 720px) {
  body.page-news-events .events-timeline {
    --axis-x: 15px;
    padding-top: 4px;
  }

  body.page-news-events .events-timeline::before {
    top: 8px;
    bottom: 8px;
  }

  body.page-news-events .events-timeline-item {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 0 0 24px 42px;
  }

  body.page-news-events .events-timeline-item::before {
    top: 10px;
  }

  body.page-news-events .events-timeline-item.is-current::before {
    top: 8px;
  }

  body.page-news-events .events-timeline-date {
    justify-content: flex-start;
    min-height: auto;
    text-align: left;
    font-size: 14px;
    letter-spacing: 0.08em;
  }

  body.page-news-events .events-timeline-card {
    min-height: auto;
    padding: 18px 18px 18px 22px;
    border-radius: 24px;
  }

  body.page-news-events .events-timeline-body {
    font-size: 15px;
    line-height: 1.9;
  }

  body.page-news-events .events-timeline-badge {
    padding: 3px 10px;
    font-size: 12px;
  }
}
