/*
Theme Name: Tailwind WP Theme
Author: Ari R. Sigit
Description: A simple WordPress theme using Tailwind CSS
Version: 1.0
*/

/* Import Tailwind CSS via CDN */
@import url('https://cdn.jsdelivr.net/npm/tailwindcss@2.2.19/dist/tailwind.min.css');

/* Custom styles */
body {
    font-family: 'Inter', sans-serif;
}

article img {
    width: 100%;
}

h2,
h3 {
    margin-bottom: 0.5rem;
}

p {
    margin-bottom: 1rem;
}

.prose ul {
    margin-bottom: 1rem;
}

.crp_related {
    margin-top: 2rem;
    margin-bottom: 1rem;
    padding: 1rem 1rem 0.5rem 1rem;
    border-radius: .5rem;
    background: #f9fafb;
}

.crp_related h3 {
    font-weight: 800;
}