@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

/*
 Typography ala Notion untuk area konten.
*/
.post-content.markdown-body {
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, Noto Sans, 'Helvetica Neue', Arial, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', sans-serif;
}

.post-content p,
.post-content li {
  font-weight: 400;
  line-height: 1.7;
}

.post-content strong,
.post-content b {
  font-weight: 600; /* Notion bold lebih ke semibold */
}

/* Link ala Notion: biru, tanpa underline, underline saat hover */
.post-content a { 
  color: #0b6cff; 
  text-decoration: none; 
}
.post-content a:hover { 
  text-decoration: underline; 
  font-weight: inherit; /* override theme hover bold */
}

/* Lead paragraph style, tetapkan seperti sebelumnya */
.post-lead p {
  font-size: 1.25em;
  line-height: 1.5;
  color: #555;
  margin-top: -10px;
  margin-bottom: 20px;
  font-weight: 400;
}

/* Code ala Notion */
.markdown-body pre {
  background-color: rgba(135, 131, 120, 0.15);
  border-radius: 6px;
  padding: 14px 16px;
  overflow: auto;
}

.markdown-body code {
  background-color: rgba(135, 131, 120, 0.15);
  color: inherit;
  padding: 0.15em 0.35em;
  font-size: 0.95em;
  border-radius: 3px;
}

.markdown-body pre > code {
  background-color: transparent;
}

/* Tabel ala Notion */
.markdown-body table {
  border-collapse: collapse;
  width: 100%;
  margin: 1em 0;
  border: 1px solid rgba(55, 53, 47, 0.16);
}

.markdown-body th,
.markdown-body td {
  border: 1px solid rgba(55, 53, 47, 0.16);
  padding: 8px 10px;
  text-align: left;
}

.markdown-body thead th {
  background-color: rgba(55, 53, 47, 0.06);
  font-weight: 600;
}

.markdown-body tbody tr:nth-child(2n) td {
  background-color: rgba(55, 53, 47, 0.03);
}

/* Heading scale ala Notion */
.post-content h1 { font-size: 2rem; font-weight: 600; line-height: 1.25; margin: 1.2em 0 0.5em; }
.post-content h2 { font-size: 1.5rem; font-weight: 600; line-height: 1.3;  margin: 1.1em 0 0.5em; }
.post-content h3 { font-size: 1.25rem; font-weight: 600; line-height: 1.35; margin: 1em 0 0.5em; }

/* List spacing dan indent ala Notion */
.post-content ul, .post-content ol { padding-left: 1.6em; margin: 0.6em 0; }
.post-content li { margin: 0.2em 0; }
.post-content ul ul { list-style-type: circle; }
.post-content ul ul ul { list-style-type: square; }

/* Blockquote ala Notion */
.markdown-body blockquote {
  margin: 0.8em 0;
  padding: 0 1em;
  color: rgba(55, 53, 47, 0.8);
  border-left: 3px solid rgba(55, 53, 47, 0.16);
}

/* HR ala Notion */
.markdown-body hr {
  border: none;
  border-top: 1px solid rgba(55, 53, 47, 0.16);
  margin: 1.5em 0;
}

/* Gambar sedikit rounded */
.post-content img { border-radius: 4px; }
