/* Import Google Font Source Serif Pro */
/* @import url('https://fonts.googleapis.com/css2?family=Source+Serif+Pro:wght@400;600;700&display=swap'); */

.tulisan_singel {
  font-family: 'helvetica', ; 
  font-size: 17px;                   
  line-height: 1.8;
  font-weight: 400;
  color: #111;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}


/* Gambar umum */
.tulisan_singel img {
  max-width: 100%;
  height: auto;
  margin: 1.5rem 0;
  border-radius: 8px;
}

/* ==== FIX untuk gambar ber-caption bawaan WordPress ==== */
.tulisan_singel .wp-caption {
  max-width: 100% !important;
  width: auto !important;
  margin: 1.5rem auto;
  text-align: center;
}

.tulisan_singel .wp-caption img {
  max-width: 100% !important;
  height: auto !important;
  display: inline-block;
  border-radius: 8px;
}

/* Caption text */
.tulisan_singel .wp-caption-text {
  font-size: 0.9rem;
  color: #6b7280;
  margin-top: 0.5rem;
  line-height: 1.5;
  text-align: center;
  font-family: 'Source Serif Pro', serif;
}

/* Hapus inline style bawaan WordPress */
.tulisan_singel .wp-caption[style] {
  width: 100% !important;
}

/* Paragraf */
.tulisan_singel p {
  margin-bottom: 1rem;
}

/* Tautan */
.tulisan_singel a {
  color: #1a73e8;
  text-decoration: underline;
  transition: color 0.2s ease;
}

.tulisan_singel a:hover {
  color: #0b5ed7;
}

/* List (ul dan ol) */
.tulisan_singel ul,
.tulisan_singel ol {
  margin: 1rem 0 1.5rem 1.5rem;
  padding-left: 1rem;
}

.tulisan_singel ul li {
  list-style-type: disc;
  margin-bottom: 0.5rem;
}

.tulisan_singel ol li {
  list-style-type: decimal;
  margin-bottom: 0.5rem;
}

/* Blockquote */
.tulisan_singel blockquote {
  border-left: 4px solid #1a73e8;
  background: #f9fafb;
  padding: 1rem 1.5rem;
  margin: 1.5rem 0;
  font-style: italic;
  color: #555;
  font-family: 'Source Serif Pro', serif;
}

/* Code & preformatted text */
.tulisan_singel code {
  background-color: #f3f4f6;
  padding: 0.2rem 0.4rem;
  border-radius: 4px;
  font-family: monospace;
  font-size: 0.95rem;
}

.tulisan_singel pre {
  background: #f3f4f6;
  padding: 1rem;
  border-radius: 8px;
  overflow-x: auto;
  margin: 1.5rem 0;
  font-family: monospace;
  font-size: 0.95rem;
}

/* Table */
.tulisan_singel table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
}

.tulisan_singel th,
.tulisan_singel td {
  border: 1px solid #e5e7eb;
  padding: 0.75rem 1rem;
  text-align: left;
}

.tulisan_singel th {
  background: #f3f4f6;
  font-weight: 600;
}

/* Gambar align */
.tulisan_singel .aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.tulisan_singel .alignleft {
  float: left;
  margin-right: 1rem;
  margin-bottom: 1rem;
}

.tulisan_singel .alignright {
  float: right;
  margin-left: 1rem;
  margin-bottom: 1rem;
}

/* Bersihkan float agar layout tetap rapi */
.tulisan_singel::after {
  content: "";
  display: block;
  clear: both;
}


/* ==== Responsif untuk judul di dalam gambar ==== */
@media (max-width: 640px) {
  .tulisan_singel h1,
  .relative > h1 {
    font-size: 1.0rem !important; /* setara text-2xl */
    line-height: 1.3;
    bottom: 0.75rem !important;
    left: 0.75rem !important;
    right: 0.75rem;
    padding: 0.4rem 0.8rem !important;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 6px;
  }
}


.youtube-responsive {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* Rasio 16:9 */
    height: 0;
    overflow: hidden;
    margin: 20px 0;
    border-radius: 12px; /* opsional */
}

.youtube-responsive iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* ===============================
   Heading (H1 â€“ H6)
================================ */

.tulisan_singel h1,
.tulisan_singel h2,
.tulisan_singel h3,
.tulisan_singel h4,
.tulisan_singel h5,
.tulisan_singel h6 {
  font-family: 'Source Serif Pro', serif;
  font-weight: 700;
  line-height: 1.35;
  color: #111;
  margin-top: 2.2rem;
  margin-bottom: 1rem;
}

/* Ukuran bertingkat (jelas beda) */
.tulisan_singel h1 { font-size: 2.2rem; }
.tulisan_singel h2 { font-size: 1.8rem; }
.tulisan_singel h3 { font-size: 1.45rem; }
.tulisan_singel h4 { font-size: 1.2rem; }
.tulisan_singel h5 { font-size: 1.05rem; }
.tulisan_singel h6 {
  font-size: 0.95rem;
  font-weight: 600;
  color: #555;
}

/* Aksen visual agar terasa hierarki */
.tulisan_singel h2 {
  border-left: 4px solid #1a73e8;
  padding-left: 0.75rem;
}

.tulisan_singel h3 {
  position: relative;
}

.tulisan_singel h3::before {
  content: "";
  width: 32px;
  height: 3px;
  background: #1a73e8;
  display: block;
  margin-bottom: 0.5rem;
}