@import url('./style.css');

/* ==================== 归档页专属样式 ==================== */

/* 年份分组 */
.archive-group {
  margin-bottom: 40px;
}

.archive-year {
  font-size: 20px;
  font-weight: 700;
  color: #b8956a;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid #f0ece5;
  letter-spacing: 1px;
}

/* 归档条目列表 */
.archive-items {
  display: flex;
  flex-direction: column;
  gap: 4px;
  position: relative;
  padding-left: 24px;
}

/* 时间线装饰线 */
.archive-items::before {
  content: '';
  position: absolute;
  left: 0;
  top: 4px;
  bottom: 4px;
  width: 1px;
  background: #e8e4dd;
}

/* 单个归档条目 */
.archive-item {
  display: flex;
  align-items: baseline;
  padding: 10px 0;
  position: relative;
  transition: all 0.2s ease;
}

/* 时间线圆点 */
.archive-item::before {
  content: '';
  position: absolute;
  left: -28px;
  top: 16px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #e8e4dd;
  transition: background 0.2s, box-shadow 0.2s;
}

.archive-item:hover::before {
  background: #b8956a;
  box-shadow: 0 0 0 3px rgba(184, 149, 106, 0.15);
}

/* 日期 */
.archive-date {
  font-size: 13px;
  color: #bbb;
  min-width: 100px;
  letter-spacing: 0.5px;
  flex-shrink: 0;
}

/* 标题链接 */
.archive-title {
  font-size: 15px;
  color: #4a4a4a;
  text-decoration: none;
  font-weight: 500;
  margin-left: 12px;
  transition: color 0.2s;
  line-height: 1.4;
}

.archive-title:hover {
  color: #b8956a;
}