body {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
}

/* Kustomisasi Swiper */
.swiper-button-next, .swiper-button-prev {
    color: #dc2626; /* brand-red */
}

.swiper-pagination-bullet-active {
    background-color: #dc2626; /* brand-red */
}

/* Kustomisasi Styling Konten Blog (Tailwind Prose) */
.prose p {
    margin-bottom: 1.25em;
    line-height: 1.75;
}

/* ===== TAMBAHKAN KODE DI BAWAH INI ===== */

.prose ul,
.prose ol {
    margin-bottom: 1.25em;
    padding-left: 1.75rem; /* Memberi ruang untuk bullet/angka */
}

.prose ul {
    list-style-type: disc; /* Menampilkan bullet points */
}

.prose ol {
    list-style-type: decimal; /* Menampilkan angka */
}

/* ======================================== */

.prose li {
    line-height: 1.75;
}

.prose blockquote {
    font-style: italic;
    padding-left: 1.5rem;
    border-left-width: 4px;
    border-color: #e5e7eb; /* brand-border */
    color: #4b5563; /* brand-medium */
}