/* ========================= */
/* TYPOGRAPHY */
/* ========================= */

.wysiwyg-content {
    font-size: 1rem;
    line-height: 1.7;
    font-family: "Google Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: <weight>;
    font-style: normal;
    font-variation-settings: "GRAD" 0;
    color: #111827; /* gray-900 (hitam elegan, tidak terlalu pekat) */
}

.wysiwyg-content p {
    margin-bottom: 0.6rem;
}

.wysiwyg-content ul {
    list-style-type: disc;
    list-style-position: outside;
    padding-left: 1.5rem;
    margin-bottom: 0.6rem;
}

.wysiwyg-content ol {
    list-style-type: decimal;
    list-style-position: outside;
    padding-left: 1.5rem;
    margin-bottom: 0.6rem;
}

.wysiwyg-content li {
    display: list-item;   /* penting kalau di-reset template */
    margin-bottom: 0.35rem;
}

.wysiwyg-content h1 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.wysiwyg-content h2 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 0.85rem;
}

.wysiwyg-content h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.wysiwyg-content strong {
    color: #2563eb;
    font-weight: 600;
}

.wysiwyg-content a {
    color: #2563eb;
    text-decoration: underline;
}

.wysiwyg-content blockquote {
    border-left: 4px solid #2563eb;
    padding-left: 1rem;
    font-style: italic;
    margin: 1rem 0;
}

/* ========================= */
/* TABLE STYLE (Clean Bank) */
/* ========================= */

.wysiwyg-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.2rem 0;
    font-size: 1rem;
}

.wysiwyg-content thead {
    background-color: #f3f4f6;
}

.wysiwyg-content th {
    text-align: left;
    padding: 0.75rem 0.9rem;
    font-weight: 600;
    border: 1px solid #e5e7eb;
}

.wysiwyg-content td {
    padding: 0.7rem 0.9rem;
    border: 1px solid #e5e7eb;
}

.wysiwyg-content tbody tr:nth-child(even) {
    background-color: #f9fafb;
}

.wysiwyg-content tbody tr:hover {
    background-color: #eef2ff;
}

/* Responsive table */
.wysiwyg-content table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
}

/* ========================= */
/* BUTTON STYLE (Clean Bank) */
/* ========================= */

.wysiwyg-content button,
.wysiwyg-content .btn,
.wysiwyg-content a.button {
    display: inline-block;
    padding: 0.6rem 1.2rem;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 0.5rem;
    border: none;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    transition: all 0.25s ease;
    background-color: #2563eb; /* primary blue */
    color: #ffffff;
}

.wysiwyg-content button:hover,
.wysiwyg-content .btn:hover,
.wysiwyg-content a.button:hover {
    background-color: #1e40af; /* darker blue */
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.25);
}

.wysiwyg-content button:active,
.wysiwyg-content .btn:active,
.wysiwyg-content a.button:active {
    transform: translateY(0);
    box-shadow: none;
}

/* Outline Variant */
.wysiwyg-content .btn-outline {
    background-color: transparent;
    border: 1px solid #2563eb;
    color: #2563eb;
}

.wysiwyg-content .btn-outline:hover {
    background-color: #2563eb;
    color: #ffffff;
}

/* Full width on small screens */
@media (max-width: 640px) {
    .wysiwyg-content button,
    .wysiwyg-content .btn,
    .wysiwyg-content a.button {
        width: 100%;
    }
}