/* ┌────────────────────────────────────────────┐
 * │ 8.5  右侧链接区                             │
 * └────────────────────────────────────────────┘ */

.contact-right {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  min-width: 400px;
  flex-shrink: 0;
  pointer-events: none;
  transition:
    transform 0.6s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.4s ease;
  /* 限制向左偏移上限 */
  transform: translate(max(-11vw, -170px), 1.25vw);
}

/* ── 链接网格（两列） ── */
.contact-links {
  display: grid;
  grid-template-columns: auto auto;
  gap: 20px 40px;
  text-align: left;
  pointer-events: auto;
}

/* ── 单个链接 ── */
.contact-links a {
  color: #ffffff;
  text-decoration: none;
  font-size: 18px;
  font-weight: 500;
  transition: all 0.3s;
  position: relative;
  white-space: nowrap;
}

/* ── 链接下划线动画 ── */
.contact-links a::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  right: auto;
  width: 0;
  height: 2px;
  background: #ffffff;
  transition: width 0.3s;
}

.contact-links a:hover::after {
  width: 100%;
}
