.blog-content {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #333;
}

.blog-content p {
  margin-bottom: 1.5rem;
}

/* Restricted Content Styles */
.restricted-content-container {
  min-height: 400px;
  position: relative;
}

.content-preview {
  filter: blur(2px);
  pointer-events: none;
  user-select: none;
}

.content-fade {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom,
    rgba(255,255,255,0) 0%,
    rgba(255,255,255,0.5) 30%,
    rgba(255,255,255,0.9) 60%,
    rgba(255,255,255,1) 100%
  );
  pointer-events: none;
}

.access-prompt-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  max-width: 500px;
  z-index: 10;
}

.comment {
  transition: background-color 0.3s ease;
}

.comment:hover {
  background-color: #f8f9fa;
}
