.aside-section {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  font-size: 0.875rem;
}

.aside-box {
  border: 1px solid black;
  border-radius: 0.5rem;
  max-height: 300px;
  overflow-y: auto;
  padding: 0.75rem;
}

.aside-title {
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.aside-empty {
  color: #4B5563; /* Tailwind gray-600 */
}

.aside-link {
  display: block;
  margin-bottom: 0.75rem;
  transition: background 0.3s;
  border-radius: 0.375rem;
  padding: 0.25rem 0.5rem;
  text-decoration: none;
}

.aside-link:hover {
  background-color: #EFF6FF; /* Tailwind blue-50 */
}

.aside-entry {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.aside-image {
  width: 2.5rem;
  height: 3.5rem;
  object-fit: cover;
  border: 1px solid #ccc;
}

.aside-entry-title {
  font-weight: bold;
}

.aside-author {
  color: #6B7280; /* Tailwind gray-500 */
}

.aside-meta {
  font-size: 0.75rem;
  color: #9CA3AF; /* Tailwind gray-400 */
}

.aside-pagination {
  margin-top: 0.5rem;
  display: flex;
  gap: 0.25rem;
  flex-wrap: wrap;
  justify-content: center;
  font-size: 0.75rem;
}

.page-btn {
  padding: 0.25rem 0.5rem;
  border-radius: 0.375rem;
  background: #E5E7EB; /* gray-200 */
  color: black;
  text-decoration: none;
}

.page-btn:hover {
  background: #D1D5DB; /* gray-300 */
}

.page-btn.active {
  background-color: #3B82F6; /* Tailwind blue-600 */
  color: white;
}
