/* Custom CSS overrides */
.post-title .bracket-text {
  color: #888;
  /* A distinct gray color for the bracket text */
  font-size: 0.85em;
  /* Makes the bracketed text 85% of the main title size */
}

.post-meta {
  color: var(--foreground) !important;
  /* 현재 사이트에 쓰이는 완전한 검은색(#000) 강제 적용 */
}

/* 제목 밑의 두꺼운 파란색 이중 점선 제거 */
.post-title {
  border-bottom: none !important;
  padding-bottom: 5px !important;
  margin-bottom: 10px !important;
}

.post-title::after {
  display: none !important;
}

/* --- 날것(Raw) 감성을 살린 확실한 게시물 간 분리 --- */
.post {
  padding-bottom: 20px !important; /* 타이트하게 간격 조정 */
}

.post:not(:last-of-type) {
  border-bottom: 2px dashed #ccc !important; /* 투박한 점선으로 옛날 문서 느낌 살림 */
  margin-bottom: 10px !important; /* 타이트하게 여백 조정 */
}

/* 태그 아래쪽의 애매한 여백을 없애서 분리선이 딱 잡아주도록 수정 */
.post-tags {
  margin-bottom: 0 !important;
}