/*
 * Gaya konten hasil editor TinyMCE.
 * Dipakai di DUA tempat agar tampilan editor (dasbor) dan visitor konsisten:
 *   1. Di dalam editor TinyMCE  -> lewat content_css + body_class 'blog-full'
 *   2. Di sisi visitor          -> pembungkus konten sudah memakai kelas .blog-full
 *
 * Aturan bersifat aditif/konservatif agar tidak merusak tema situs.
 * Warna aksen mengikuti tema (hijau #198754).
 */
.blog-full {
    color: #333333;
    line-height: 1.8;
    font-size: 1rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.blog-full p {
    margin: 0 0 1rem;
}

.blog-full h1,
.blog-full h2,
.blog-full h3,
.blog-full h4,
.blog-full h5,
.blog-full h6 {
    margin: 1.6rem 0 0.8rem;
    font-weight: 700;
    line-height: 1.3;
    color: #1f2d3d;
}

.blog-full h1 { font-size: 2rem; }
.blog-full h2 { font-size: 1.6rem; }
.blog-full h3 { font-size: 1.35rem; }
.blog-full h4 { font-size: 1.15rem; }
.blog-full h5 { font-size: 1rem; }
.blog-full h6 { font-size: 0.9rem; }

.blog-full a {
    color: #198754;
    text-decoration: underline;
}

.blog-full a:hover {
    color: #146c43;
}

.blog-full img {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
}

.blog-full ul,
.blog-full ol {
    margin: 0 0 1rem 1.5rem;
    padding-left: 1rem;
}

.blog-full li {
    margin-bottom: 0.35rem;
}

.blog-full blockquote {
    margin: 0 0 1rem;
    padding: 0.75rem 1.25rem;
    border-left: 4px solid #198754;
    background: #f6f9f7;
    color: #555555;
    font-style: italic;
}

.blog-full table {
    width: 100%;
    margin-bottom: 1rem;
    border-collapse: collapse;
}

.blog-full table th,
.blog-full table td {
    border: 1px solid #dee2e6;
    padding: 0.5rem 0.75rem;
    vertical-align: top;
}

.blog-full table th {
    background: #198754;
    color: #ffffff;
    text-align: left;
}

.blog-full table tbody tr:nth-child(even) {
    background: #f8f9fa;
}

.blog-full figure {
    margin: 0 0 1rem;
    max-width: 100%;
}

.blog-full figure img {
    display: block;
}

.blog-full figcaption {
    margin-top: 0.35rem;
    font-size: 0.875rem;
    color: #6c757d;
    text-align: center;
}

.blog-full pre {
    padding: 1rem;
    background: #f4f4f4;
    border-radius: 4px;
    overflow: auto;
}

/* Media sematan (video/iframe) tetap responsif */
.blog-full iframe,
.blog-full embed,
.blog-full video,
.blog-full object {
    max-width: 100%;
}
