/* Blog pagination styling */
.page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.5rem;
  height: 2.5rem;
  padding: 0 0.75rem;
  margin: 0 0.25rem;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1;
  color: #4b5563;
  background-color: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 0.375rem;
  transition: all 0.2s;
}

.page-numbers.current {
  color: #fff;
  background-color: var(--wp--preset--color--primary, #3b82f6);
  border-color: var(--wp--preset--color--primary, #3b82f6);
}

.page-numbers:hover:not(.current) {
  color: var(--wp--preset--color--primary, #3b82f6);
  border-color: var(--wp--preset--color--primary, #3b82f6);
}

.page-numbers.dots {
  padding: 0 0.5rem;
}

.page-numbers.prev,
.page-numbers.next {
  padding: 0 1rem;
}

/* Blog post card styling */
.blog .content article,
.archive .content article {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog .content article:hover,
.archive .content article:hover {
  transform: translateY(-5px);
}

/* Blog post content styling */
.single-post .prose img {
  border-radius: 0.5rem;
  margin: 2rem 0;
}

.single-post .prose blockquote {
  border-left: 4px solid var(--wp--preset--color--primary, #3b82f6);
  padding-left: 1.5rem;
  font-style: italic;
  color: #4b5563;
  margin: 2rem 0;
}

.single-post .prose h2,
.single-post .prose h3,
.single-post .prose h4 {
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-weight: 700;
  color: #111827;
}

.single-post .prose pre {
  background-color: #f3f4f6;
  padding: 1.5rem;
  border-radius: 0.5rem;
  overflow-x: auto;
}

.single-post .prose code {
  background-color: #f3f4f6;
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
  font-size: 0.875em;
}

.single-post .prose a {
  color: var(--wp--preset--color--primary, #3b82f6);
  text-decoration: none;
  border-bottom: 1px solid currentColor;
}

.single-post .prose a:hover {
  border-bottom-width: 2px;
}

/* Comment section styling */
.comment-list {
  margin-top: 2rem;
  border-top: 1px solid #e5e7eb;
  padding-top: 2rem;
}

.comment {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #e5e7eb;
}

.comment-author {
  display: flex;
  align-items: center;
  margin-bottom: 0.5rem;
}

.comment-author .avatar {
  margin-right: 1rem;
  border-radius: 9999px;
}

.comment-metadata {
  font-size: 0.875rem;
  color: #6b7280;
  margin-bottom: 1rem;
}

.comment-content {
  margin-bottom: 1rem;
}

.reply {
  font-weight: 600;
}
