/* :root {
  --bg: #f8f8fb;
  --bg-alt: #ffffff;
  --text: #222222;
  --muted: #666666;
  --accent: #0070c0; / 修改为图片中的亮蓝色 /
  --border: #e1e1ec;
  --shadow-soft: 0 4px 12px rgba(0, 0, 0, 0.05);
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: white;
}

.container {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/Header /
.site-header {
  background: rgba(191, 214, 236, 0.967);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(8px);
  position: sticky;
  top: 0;
  z-index: 20;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.8rem 0;
}
.logo a {
  font-weight: 650;
  text-decoration: none;
  color: var(--text);
}
.logo-sub {
  display: block;
  font-size: 0.75rem;
  color: var(--muted);
}
.nav {
  display: flex;
  gap: 1.2rem;
  font-size: 0.9rem;
}
.nav-link {
  text-decoration: none;
  color: var(--muted);
}

/ Section /
.section { padding: 3.5rem 0; }
h1 { font-size: 2.2rem; margin-bottom: 0.5rem; }
.page-subtitle { color: var(--muted); margin-bottom: 2rem; }

/ --- Team Page Styles (Based on Image) --- /

.team-section-title {
  font-size: 1.4rem;
  color: var(--accent);
  border-bottom: 1px solid var(--border);
  padding-bottom: 0.5rem;
  margin: 2.5rem 0 1.5rem;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(450px, 1fr)); / 确保卡片足够宽以支持横向布局 /
  gap: 1.5rem;
}

.team-card {
  display: flex; / 横向布局 /
  gap: 1.5rem;
  background: #f8f9fa; / 浅灰底色 /
  border-radius: 12px;
  padding: 1.5rem;
  transition: all 0.2s ease;
  border: 1px solid transparent;
}

.team-card:hover {
  background: #ffffff;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  transform: translateY(-2px);
  border-color: var(--border);
}

/ 头像与占位符样式 /
.team-avatar-img, .team-avatar-placeholder {
  width: 90px;
  height: 90px;
  border-radius: 50%; / 圆形头像 /
  object-fit: cover;
  flex-shrink: 0;
  background: #d1d9e6;
}

.team-avatar-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  color: #555;
  font-size: 1.2rem;
}

/ 内容文字排版 /
.team-info h3 {
  margin: 0 0 0.3rem 0;
  font-size: 1.1rem;
  color: var(--accent);
}

.team-role {
  margin: 0;
  font-size: 0.95rem;
  color: #555;
  font-weight: 500;
}

.team-affiliation {
  margin: 0.1rem 0 0.6rem 0;
  font-size: 0.88rem;
  color: var(--muted);
}

.team-desc {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.5;
  color: #444;
}

.team-link {
  display: inline-block;
  margin-top: 0.5rem;
  font-size: 0.85rem;
  color: var(--accent);
  text-decoration: none;
}
.team-link:hover { text-decoration: underline; }

/ Footer /
.nsf-support img {
  max-width: 40px;   / 控制最大宽度，可按需要改成 80/100 等 /
  height: auto;       / 按比例缩放高度 /
  display: block;
  margin: 0 auto 0.5rem;
}
.footer-inner {
  display: flex;
  justify-content: center;   / 整体居中 /
  align-items: center;       / 垂直对齐文字和图片 /
  gap: 0.75rem;              / 文字和 logo 之间留一点空隙 /
  text-align: center;
}

.nsf-logo {
  max-height: 32px;  / 控制图片大小，可以按需要改，比如 24 / 40 /
  width: auto;
}

/ 响应式：在手机上恢复为垂直布局 /
@media (max-width: 600px) {
  .team-grid { grid-template-columns: 1fr; }
  .team-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}
/ Apply 页面按钮深度设计 /
.apply-box {
  margin-top: 2.5rem;
  padding: 3rem 2rem;
  background-color: #f8faff; / 极浅的底色让页面更有层次 /
  border: 1px dashed #ced4da; / 虚线框引导视觉集中 /
  border-radius: 12px;
  text-align: center;
}

.apply-box p {
  font-size: 1.1rem;
  color: #444;
  margin-bottom: 1.5rem;
}

/ 链接转按钮的核心代码 /
.btn-apply {
  display: inline-block;
  background-color: #004a99; /稳重的深蓝色，符合学术/项目调性 /
  color: #ffffff !important; / 强制文字为白色，不被全局链接样式覆盖 /
  padding: 12px 32px;
  font-size: 1.1rem;
  font-weight: 500;
  text-decoration: none !important; / 去掉下划线 /
  border-radius: 6px; / 稍微带一点圆角，更显专业 /
  transition: all 0.2s ease-in-out;
  box-shadow: 0 4px 6px rgba(0, 74, 153, 0.15); / 微弱的阴影增加立体感 /
}

/ 鼠标悬停效果 /
.btn-apply:hover {
  background-color: #003366; / 悬停时颜色加深 /
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2); / 阴影加深 /
  transform: translateY(-1px); / 轻微上浮 /
}

/ 点击时的反馈 /
.btn-apply:active {
  transform: translateY(0);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

 */

:root {
  --bg: #f8f8fb;
  --bg-alt: #ffffff;
  --text: #222222;
  --muted: #666666;
  --accent: #0070c0; /* 亮蓝色 */
  --border: #e1e1ec;
}

* { box-sizing: border-box; }
body { margin: 0; font-family: system-ui, sans-serif; color: var(--text); background: white; line-height: 1.5; }

/* 基础布局容器 */
.container { width: 100%; max-width: 1080px; margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 3.5rem 0; }
.section-light { background: #f8f9fa; }

/* Header 导航栏 */
.site-header { background: rgba(191, 214, 236, 0.967); border-bottom: 1px solid var(--border); position: sticky; top: 0; z-index: 20; }
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 1rem 0; }
.logo a { font-weight: 700; text-decoration: none; color: var(--text); font-size: 1.2rem; }
.nav { display: flex; gap: 1.5rem; }
.nav-link { text-decoration: none; color: var(--muted); font-size: 0.95rem; font-weight: 500; }
.nav-link:hover { color: var(--accent); }

/* --- 首页 (Homepage) 专属样式 --- */
.hero { background: #002147; color: white; padding: 5rem 0; text-align: center; }
.hero-title { font-size: 2.5rem; margin-bottom: 1rem; }
.hero-subtitle { font-size: 1.2rem; opacity: 0.9; margin-bottom: 2rem; }
.hero-actions { display: flex; justify-content: center; gap: 1rem; }

.btn-primary { background: var(--accent); color: white; padding: 0.8rem 1.5rem; border-radius: 5px; text-decoration: none; }
.btn-secondary { background: white; color: var(--text); padding: 0.8rem 1.5rem; border-radius: 5px; text-decoration: none; }

.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2.5rem;
}

.card {
  background: white;               /* 改为纯白背景 */
  padding: 3rem 2rem;              /* 增加上下内边距，让文字更有呼吸感 */
  border: 1px solid #eef2f6;       /* 极淡的边框 */
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04); /* 使用非常轻柔的投影 */
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.card h3 {
  font-size: 1.25rem;
  font-weight: 700;                /* 加粗标题，增强对比 */
  color: #1a2b3c;
  line-height: 1.4;
}
.card p {
  color: #5a6b7d;                  /* 稍微调深文字颜色，提高可读性 */
  font-size: 0.95rem;
}
.card-icon {
  width: 60px;
  height: 60px;
  background-color: #f0f7ff; /* 极浅蓝色背景，呼应主色调 */
  color: var(--accent);      /* 使用亮蓝色图标 */
  border-radius: 50%;        /* 改为圆形，视觉上更友好 */
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
} 

.card-icon svg {
  width: 28px;
  height: 28px;
}

/* 悬停时的颜色美化联动 */
.card:hover .card-icon {
  background-color: var(--accent); /* 悬停时背景变蓝 */
  color: white;                    /* 图标变白 */
}
/* --- Team 页面专属样式 (完全隔离) --- */
/* ==========================================================================
   TEAM & MATERIALS 页面最终版 CSS (参考 image_b3a049.png 风格)
   ========================================================================== */

/* 全局基础设置：确保页面背景清爽 */
body {
    background-color: #f8fafc; /* 极浅灰蓝背景，使白色卡片更有层次 */
    color: #1e293b;
}

/* --- Team 布局控制 --- */
.team-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); /* 保持紧凑的两列布局 */
    gap: 1.2rem; 
    margin-top: 2rem;
}

/* --- Team Card 精致小巧版 --- */
.team-card { 
    display: flex; 
    align-items: center; 
    gap: 1.2rem;        /* 缩小间距，保持精致感 */
    background: #ffffff !important; 
    padding: 1.2rem;    /* 紧凑内边距 */
    border-radius: 12px; 
    border: none !important; /* 移除生硬边框 */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04) !important; /* 极轻阴影 */
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    top: 0;
}

/* 悬停动画：上浮 + 亮蓝色柔和阴影 */
.team-card:hover {
    top: -5px; 
    box-shadow: 0 12px 30px rgba(0, 112, 192, 0.1) !important;
}

/* 头像占位符：小巧且颜色清爽 */
.team-avatar-placeholder { 
    width: 70px; 
    height: 70px; 
    border-radius: 50%; 
    background: #cbd5e1 !important; /* 浅钢灰色 */
    color: #ffffff !important;
    display: none; 
    align-items: center; 
    justify-content: center; 
    flex-shrink: 0; 
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    position: absolute;
    inset: 0;
}

.team-card:hover .team-avatar-placeholder {
    background: #0070c0 !important; /* 悬停变为科技蓝 */
    transform: scale(1.05);
}
.team-avatar {
  width: 70px;
  height: 70px;
  position: relative;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}
.team-avatar-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.team-card .team-avatar {
  width: 70px !important;
  height: 70px !important;
  border-radius: 50% !important;
  overflow: hidden !important;
  flex-shrink: 0 !important;
  position: relative !important;
}

.team-card .team-avatar-img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block;
}


/* --- 文字颜色精准还原 --- */
.team-info h3 { 
    margin: 0; 
    color: #0070c0 !important; /* 亮蓝色姓名 */
    font-size: 1.05rem;
    font-weight: 700;
}

.team-role { 
    font-size: 0.9rem; 
    color: #1e293b !important; /* 深色职位标题 */
    margin: 0.15rem 0;
    font-weight: 600;
}

.team-affiliation, 
.team-desc { 
    font-size: 0.85rem; 
    color: #64748b !important; /* 中灰色描述文字 */
    margin-bottom: 0.3rem;
}

.team-link { 
    font-size: 0.8rem; 
    color: #0070c0;
    text-decoration: none;
    font-weight: 500;
}

.team-link:hover {
    text-decoration: underline;
}

/* --- Materials 资源列表交互 (双击逻辑) --- */
.resource-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    background: #f8faff; 
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
    user-select: none; /* 防止双击时选中文字 */
}

.resource-item:hover {
    background: #ffffff;
    transform: translateX(8px); /* 悬停向右平移 */
    box-shadow: 0 4px 12px rgba(0, 112, 192, 0.08);
}

/* --- 入场动画：页面加载时逐个浮现 --- */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.team-grid article {
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
}

/* 瀑布流加载延迟 */
.team-grid article:nth-child(1) { animation-delay: 0.1s; }
.team-grid article:nth-child(2) { animation-delay: 0.2s; }
.team-grid article:nth-child(3) { animation-delay: 0.3s; }
.team-grid article:nth-child(4) { animation-delay: 0.4s; }
/* --- Apply 页面按钮 --- */
.btn-apply { 
  display: inline-block; background: #004a99; color: white !important; 
  padding: 12px 30px; border-radius: 6px; text-decoration: none; font-weight: 600; 
}

/* Footer & NSF Logo */
.site-footer { padding: 2rem 0; border-top: 1px solid var(--border); background: #f8f9fa; margin-top: 3rem; }
.footer-inner { display: flex; justify-content: center; align-items: center; gap: 1rem; }
.nsf-logo { height: 35px !important; width: auto; }

@media (max-width: 768px) { .team-grid { grid-template-columns: 1fr; } }

/* 滚动箭头基础样式 */
.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  color: white;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: opacity 0.3s;
  cursor: pointer;
  z-index: 10;
}

.scroll-indicator svg {
  width: 32px;
  height: 32px;
  /* 添加上下跳动的动画 */
  animation: bounce 2s infinite;
}

.scroll-indicator:hover {
  opacity: 0.7;
}

/* 跳动动画定义 */
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translate(-50%, 0); }
  40% { transform: translate(-50%, -10px); }
  60% { transform: translate(-50%, -5px); }
}

/* 确保 Hero 容器是相对定位，以便箭头能固定在底部 */
.hero {
  background: linear-gradient(135deg, #002147 0%, #003366 100%); /* 渐变深蓝色 */
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
}

/* Program Overview 专属美化 */
.overview-module {
  background: white;
  padding: 4rem; /* 很大的留白，营造高级感 */
  border-radius: 24px; /* 超大圆角 */
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05); /* 极其柔和的阴影 */
  border: 1px solid rgba(0, 112, 192, 0.05); /* 隐约可见的蓝色边框 */
  position: relative;
  overflow: hidden;
}

/* 装饰性背景，增加层次感 */
.overview-module::before {
  content: "";
  position: absolute;
  top: -50px;
  right: -50px;
  width: 150px;
  height: 150px;
  background: rgba(0, 112, 192, 0.03); /* 淡淡的蓝色圆圈装饰 */
  border-radius: 50%;
}

.overview-content {
  max-width: 700px;
  margin: 0 auto;
  text-align: center; /* 居中排版显得很大气 */
}

/* 小标签样式 */
.tag {
  display: inline-block;
  background: #e0f2f1; /* 淡淡的青绿色 */
  color: var(--accent);
  padding: 0.4rem 1rem;
  border-radius: 99px;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
}

.overview-content h2 {
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
  color: #1a2b3c;
  line-height: 1.3;
}

.overview-content .lead {
  font-size: 1.15rem;
  line-height: 1.8;
  color: #5a6b7d;
  margin: 0;
}
/* 深色背景下的滑动箭头（用于白色模块内部） */
.scroll-indicator-dark {
  display: inline-block;
  margin-top: 2rem;
  color: var(--accent); /* 使用亮蓝色 */
  text-decoration: none;
  transition: transform 0.3s;
  cursor: pointer;
}

.scroll-indicator-dark svg {
  width: 32px;
  height: 32px;
  animation: bounce 2s infinite; /* 复用之前的跳动动画 */
}

.scroll-indicator-dark:hover {
  transform: scale(1.2);
}
/* Apply 页面专属美化 */
.apply-header {
  text-align: center;
  margin-bottom: 3rem;
}

.info-section {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 3rem;
  background: white;
  padding: 1.5rem;
  border-radius: 12px;
  /* 淡淡的阴影，让模块有悬浮感 */
  box-shadow: 0 4px 15px rgba(0,0,0,0.03);
}

.section-icon {
  width: 48px;
  height: 48px;
  background: #f0f7ff;
  color: var(--accent);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.section-icon svg { width: 24px; height: 24px; }

.section-text h2 {
  margin-top: 0;
  font-size: 1.25rem;
  color: #1a2b3c;
  margin-bottom: 1rem;
}
/* 自定义列表样式 */
.custom-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.custom-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.8rem;
  color: #555;
}

.custom-list li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: bold;
}

/* 时间线网格布局 */
.timeline-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

.time-item {
  background: white;
  padding: 1rem;
  border-radius: 8px;
  border-left: 4px solid var(--accent);
}

.time-item strong {
  display: block;
  font-size: 0.85rem;
  color: var(--muted);
  text-transform: uppercase;
}

.time-item span {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text);
}
.container.narrow {
  max-width: 800px;
  margin: 0 auto;
}

@media (max-width: 600px) {
  .info-section {
    flex-direction: column;
    align-items: flex-start;
    padding: 1.5rem;
  }
}

/* Materials 页面专属增强 */
.resource-list {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.resource-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
  background: #f8faff; /* 初始浅蓝色背景 */
  border-radius: 8px;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid transparent;
  cursor: pointer;
  user-select: none; /* 防止频繁双击选中文字 */
}

/* 光标移到 resource-item 上的变化 */
.resource-item:hover {
  background: white;
  border-color: var(--accent);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transform: translateX(8px); /* 向右轻微平移 */
}

.resource-info h4 {
  margin: 0;
  font-size: 0.95rem;
  color: #1a2b3c;
}

.resource-meta {
  font-size: 0.75rem;
  color: var(--muted);
  margin-top: 0.2rem;
}

.resource-icon-mini {
  color: var(--accent);
  opacity: 0.6;
  transition: opacity 0.3s;
}

.resource-item:hover .resource-icon-mini {
  opacity: 1;
}

/* 适配双列布局 */
.grid-materials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 2rem;
}

/* --- 首页入场动画 --- */

/* 定义向上滑入并渐变的动画 */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* 初始状态设为透明，防止动画开始前闪烁 */
.hero-title, 
.hero-subtitle, 
.hero-actions,
.scroll-indicator {
  opacity: 0;
  animation: fadeInUp 0.8s cubic-bezier(0.2, 0.6, 0.2, 1) forwards;
}

/* 设置交错延迟，营造层次感 */
.hero-title {
  animation-delay: 0.2s;
}

.hero-subtitle {
  animation-delay: 0.4s;
}

.hero-actions {
  animation-delay: 0.6s;
}

/* 箭头在最后出现 */
.scroll-indicator {
  animation-delay: 1s;
}

/* 覆盖之前的箭头动画：确保 bounce 动画在入场动画结束后继续运行 */
.scroll-indicator svg {
  animation: bounce 2s infinite 1.5s; /* 延迟 1.5s 开始跳动 */
}
/*2026-02-26 update: schedule Agenda TimeLine Sty;e */
/* 概览文本样式 */
/* .agenda-overview {
  margin-bottom: 2rem;
  line-height: 1.6;
  color: #333;
  font-size: 0.95rem;
} */

.agenda-overview {
  margin-bottom: 3rem;
  padding: 1.5rem;
  background: #f8fafc;
  border-radius: 12px;
  border-left: 4px solid #3b82f6;
}

/* 1. 垂直时间线容器 - 强制去除默认圆点 */
ul#agenda-timeline {
  list-style: none !important;
  list-style-type: none !important;
  padding: 0 !important;
  margin: 2rem 0 0 0 !important;
  position: relative !important;
}

/* 2. 时间线左侧的那根竖线 */
ul#agenda-timeline::before {
  content: '' !important;
  position: absolute !important;
  top: 10px !important;
  bottom: 20px !important;
  left: 15px !important; 
  width: 2px !important;
  background: #e2e8f0 !important;
  display: block !important;
}

/* 3. 每个时间节点容器 */
ul#agenda-timeline .timeline-item {
  position: relative !important;
  padding-left: 45px !important;
  padding-bottom: 1.5rem !important;
  margin-bottom: 0 !important;
  list-style: none !important;
  list-style-type: none !important;
  display: flex !important;
  flex-direction: column !important; /* 调整为纵向排列文字 */
}

/* 4. 彻底杀掉顽固的默认黑点！ */
ul#agenda-timeline .timeline-item::marker {
  content: none !important;
  display: none !important;
}

/* 5. 画出左侧的自定义小圆点 (默认灰色) */
ul#agenda-timeline .timeline-item::before {
  content: '' !important;
  position: absolute !important;
  left: 11px !important;
  top: 5px !important;
  width: 10px !important;
  height: 10px !important;
  border-radius: 50% !important;
  background: #94a3b8 !important; 
  border: 2px solid #fff !important;
  z-index: 1 !important;
  box-sizing: content-box !important;
  transition: background-color 0.3s !important;
}

/* 6. 当时间到达，JS 赋予 .completed 时的样式 (圆点变绿) */
ul#agenda-timeline .timeline-item.completed::before {
  background: #22c55e !important;
  box-shadow: 0 0 0 2px rgba(34, 197, 94, 0.2) !important;
}
ul#agenda-timeline .timeline-item.in-progress::before {
  background: #f59e0b !important; /* 一个非常漂亮的琥珀黄/金黄色 */
  box-shadow: 0 0 0 2px rgba(245, 158, 11, 0.2) !important;
}
/* 7. 文字排版 */
ul#agenda-timeline .timeline-info {
  flex: 1 !important;
}
ul#agenda-timeline .timeline-date {
  font-weight: 600 !important;
  color: #475569 !important;
  font-size: 0.9rem !important;
  margin-bottom: 0.2rem !important;
}
ul#agenda-timeline .timeline-desc {
  margin: 0 !important;
  color: #1e293b !important;
  font-size: 1rem !important;
}