/* Summernote content styling */

.summernote-content {
  font-family: "Inter", sans-serif;
  line-height: 1.75;
  color: #1f2937; /* text-gray-800 */
}

/* Headings */
.summernote-content h1 {
  font-size: 2.75rem;   /* ~44px */
  font-weight: 800;
  margin: 2rem 0 1rem;
  color: #111827;
}

.summernote-content h2 {
  font-size: 2.25rem;   /* ~36px */
  font-weight: 700;
  margin: 1.75rem 0 1rem;
  color: #1f2937;
}

.summernote-content h3 {
  font-size: 1.875rem;  /* ~30px */
  font-weight: 700;
  margin: 1.5rem 0 0.75rem;
  color: #1f2937;
}

.summernote-content h4 {
  font-size: 1.5rem;    /* ~24px */
  font-weight: 600;
  margin: 1.25rem 0 0.75rem;
  color: #374151;
}

.summernote-content h5 {
  font-size: 1.25rem;   /* ~20px */
  font-weight: 600;
  margin: 1rem 0 0.5rem;
  color: #4b5563;
}

.summernote-content h6 {
  font-size: 1.125rem;  /* ~18px */
  font-weight: 600;
  margin: 0.75rem 0 0.5rem;
  color: #6b7280;
}

/* Paragraphs */
.summernote-content p {
  margin-bottom: 1.25rem;
  font-size: 1.125rem;  /* ~18px */
  color: #374151;
}

/* Lists */
.summernote-content ul {
  list-style-type: disc;
  margin: 1.25rem 0 1.25rem 1.75rem;
  font-size: 1.125rem;
}

.summernote-content ol {
  list-style-type: decimal;
  margin: 1.25rem 0 1.25rem 1.75rem;
  font-size: 1.125rem;
}

/* Blockquote */
.summernote-content blockquote {
  border-left: 4px solid #f97316; /* orange-500 */
  padding-left: 1rem;
  margin: 2rem 0;
  color: #4b5563;
  font-style: italic;
  font-size: 1.125rem;
}
/* =============================
   Responsive adjustments (Mobile/Tablet/Desktop)
   ============================= */

/* Mobile-first default adjustments */
@media (max-width: 639px) {
  .summernote-content h1 {
    font-size: 1.75rem; /* text-2xl */
    line-height: 2.25rem;
  }

  .summernote-content h2 {
    font-size: 1.5rem; /* text-xl */
    line-height: 2rem;
  }

  .summernote-content h3 {
    font-size: 1.25rem; /* text-lg */
    line-height: 1.75rem;
  }

  .summernote-content h4 {
    font-size: 1.125rem; /* text-base */
    line-height: 1.5rem;
  }

  .summernote-content h5 {
    font-size: 1rem; /* text-sm */
    line-height: 1.5rem;
  }

  .summernote-content h6 {
    font-size: 0.875rem; /* text-xs */
    line-height: 1.25rem;
  }

  .summernote-content p,
  .summernote-content ul,
  .summernote-content ol,
  .summernote-content blockquote {
    font-size: 1rem; /* 16px */
    line-height: 1.75rem;
  }
}

/* Tablet and above */
@media (min-width: 640px) and (max-width: 1023px) {
  .summernote-content h1 {
    font-size: 2.25rem; /* text-4xl */
    line-height: 2.5rem;
  }

  .summernote-content h2 {
    font-size: 2rem; /* text-3xl */
    line-height: 2.25rem;
  }

  .summernote-content h3 {
    font-size: 1.75rem; /* text-2xl */
    line-height: 2rem;
  }

  .summernote-content h4 {
    font-size: 1.5rem; /* text-xl */
    line-height: 2rem;
  }

  .summernote-content h5 {
    font-size: 1.25rem; /* text-lg */
    line-height: 1.75rem;
  }

  .summernote-content h6 {
    font-size: 1.125rem; /* text-base */
    line-height: 1.5rem;
  }
}
