.prose blockquote {
  position: relative;
  background: #f5f7f7;
  border-radius: 18px;
  padding: 28px 28px 28px 28px;
  margin: 28px 0;
  color: #051d23;
  line-height: 34px;
}

/* آیکن بالا (SVG خودت) */
.prose blockquote::before {
  content: "";
  position: absolute;
  top: 16px;
  right: 18px;

  width: 34px;
  height: 34px;

  background-image: url("assets/icons/quote-top.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;

  opacity: 0.35;
  pointer-events: none;
}

/* آیکن پایین (SVG خودت) */
.prose blockquote::after {
  content: "";
  position: absolute;
  bottom: 16px;
  left: 18px;

  width: 34px;
  height: 34px;

  background-image: url("assets/icons/quote-top.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;

  opacity: 0.35;
  pointer-events: none;
}
.prose h1,
.prose h2,
.prose h3 {
  font-weight: 700;
  color: #051D23;
}

.prose h1 {
  font-size: 26px;
}

.prose h2 {
  font-size: 26px;
  line-height: 40px;
}

.prose h3 {
  font-size: 26px;
}
.prose h2,
.prose h3 {
  margin-bottom: 0;
}

.prose h2 + *,
.prose h3 + * {
  margin-top: 22px;
}
.prose p {
  font-size: 16px;
  font-weight: 400;
  color: #626E94;
  line-height: 48px;
  margin-bottom: 30px;
}
.scrollbar-hide {
  -ms-overflow-style: none; /* IE/Edge */
  scrollbar-width: none; /* Firefox */
}

.scrollbar-hide::-webkit-scrollbar {
  display: none; /* Chrome/Safari */
}
.prose table {
  width: 100%;
  border-collapse: collapse;
   margin-left: auto;
  margin-right: auto;
  margin-top: 24px;
  margin-bottom: 24px;
}

.prose table th,
.prose table td {
  padding: 12px;
  border: 1px solid #e5e7eb;
  text-align: right;
  white-space: nowrap;
}

.prose table {
  display: block;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.prose table tr:nth-child(even) {
  background: #f9fafb;
}
/* موبایل: بدون اسکرول‌بار */
.scrollbar-hide::-webkit-scrollbar {
  display: none;
}

.scrollbar-hide {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

/* دسکتاپ: اسکرول‌بار فعال */
@media (min-width: 1024px) {
  .overflow-x-auto::-webkit-scrollbar {
    height: 6px;
  }

  .overflow-x-auto::-webkit-scrollbar-thumb {
    background: #2476FF;
    border-radius: 10px;
  }

  .overflow-x-auto::-webkit-scrollbar-track {
    background: transparent;
  }
}
.prose-content ul {
  @apply list-disc pr-6 space-y-2 text-[#131C28];
}

.prose-content ol {
  @apply list-decimal pr-6 space-y-2 text-[#131C28];
}

.prose-content li {
  @apply leading-8 text-[16px];
}

.prose-content ul li::marker {
  color: #2476FF;
}
.prose-content ul {
  @apply list-disc pr-6 space-y-2 text-[#131C28];
}
.prose img {
  margin: 32px auto;
  display: block;
  border-radius: 10px;
}