/* 分区标题 */
.section-title {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.section-title-bar {
  width: 3px;
  height: 1.1rem;
  background: linear-gradient(180deg, #dd2c38, #ff6b6b);
  border-radius: 2px;
}

.section-title-text {
  font-size: 0.95rem;
  font-weight: 600;
  color: #333;
  letter-spacing: 0.02em;
}

.dark .section-title-text {
  color: #e0e0e0;
}

/* 文章列表 */
.post-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.post-item {
  display: flex;
  align-items: baseline;
  gap: 1.5rem;
  text-decoration: none;
  padding: 0.25rem 0;
  transition: all 0.2s ease;
}

.post-item:hover .post-title {
  color: #dd2c38;
}

.post-date {
  font-size: 0.8rem;
  color: #bbb;
  white-space: nowrap;
  flex-shrink: 0;
  font-family: 'JetBrains Mono', 'Fira Code', monospace;
  font-weight: 300;
  width: 6rem;
}

.post-title {
  font-size: 0.9rem;
  font-weight: 400;
  color: #333;
  line-height: 1.5;
  transition: color 0.2s ease;
  flex: 1;
}

.post-tags {
  display: none;
}

.dark .post-title {
  color: #d0d0d0;
}

.dark .post-item:hover .post-title {
  color: #ff6b6b;
}

.dark .post-date {
  color: #666;
}

@media (max-width: 640px) {
  .post-item {
    padding: 0.875rem 1rem;
  }
}

@media (max-width: 768px) {
  .section-title {
    gap: 0.5rem !important;
    margin-bottom: 1rem !important;
  }

  .section-title-bar {
    height: 0.9rem !important;
    width: 2px !important;
  }

  .section-title-text {
    font-size: 0.85rem !important;
  }

  .post-list {
    gap: 0.4rem !important;
  }

  .post-item {
    gap: 1rem !important;
    padding: 0.2rem 0 !important;
  }

  .post-date {
    font-size: 0.7rem !important;
    width: 5rem !important;
  }

  .post-title {
    font-size: 0.8rem !important;
    line-height: 1.4 !important;
  }

  .text-xl.font-semibold.mb-6 {
    font-size: 1rem !important;
    margin-bottom: 1.5rem !important;
  }
}
