/* =================================== */
/*  Blog Style 
/* =================================== */

.blog-page-active {
  border-bottom: 2px solid #9605C9;
  color: #9605C9 !important;
}

.blog-post-row h2 a:hover {
  color: #9605C9 !important;
}

.blog-post-meta i {
  color: #adb5bd;
}

.blog-post-row {
  transition: all 0.3s ease;
}

.blog-post-row:hover {
  border-color: #9605C9 !important;
}

.blog-pagination .pagination {
  margin-top: 2rem;
  gap: 8px;
}

.blog-pagination .page-item .page-link {
  color: #4c4d4d;
  font-weight: 500;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px; /* Hơi bo góc nhẹ cho hiện đại hoặc 0px nếu muốn vuông hẳn */
  border: 1px solid #dee2e6;
  background-color: #fff;
  transition: all 0.2s ease;
  padding: 0;
}

.blog-pagination .page-item.active .page-link {
  background-color: #9605C9;
  border-color: #9605C9;
  color: #fff;
}

.blog-pagination .page-item .page-link:hover {
  background-color: #f8f9fa;
  border-color: #9605C9;
  color: #9605C9;
}

.blog-post-meta span {
  display: inline-block;
}


/* Blog Detail Styles */
.blog-detail-wrapper {
  line-height: 1.8;
  /* border: 1px solid rgba(0, 0, 0, 0.05); */
}

.blog-content p {
  margin-bottom: 1.5rem;
}

.blog-content h2,
.blog-content h3 {
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-weight: 700;
  color: #000;
}

.hover-border-primary:hover {
  border-color: #9605C9 !important;
}

.blog-meta-large .meta-item {
  border-right: 1px solid #dee2e6;
  padding-right: 1.5rem;
  line-height: 1.2;
}

.blog-meta-large .meta-item:last-child {
  border-right: none;
}

.border-top {
  border-top: 1px solid #EFEFEF !important;
}

.border-bottom {
  border-bottom: 1px solid #EFEFEF !important;
}