/* ==========================================================================
   CKDZB - Global Styles
   ========================================================================== */

/* Base */
body {
    font-family: 'Inter', sans-serif;
    background-color: #f8fafc;
}

/* Scrollbar Hide */
.scrollbar-hide::-webkit-scrollbar {
    display: none;
}
.scrollbar-hide {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* Search Input Focus */
input[name="q"]:focus {
    outline: none !important;
    box-shadow: 0 0 0 2px #10b981;
    border-color: #10b981;
}

/* Line Clamp */
.line-clamp-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ==========================================================================
   Detail Page - Prose Styles
   ========================================================================== */

.prose h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #1e293b;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.prose h2::before {
    content: '';
    display: inline-block;
    width: 4px;
    height: 1.5rem;
    background-color: #10b981;
    border-radius: 2px;
}

.prose p {
    margin-bottom: 1rem;
    line-height: 1.75;
    color: #475569;
}

.prose ul {
    list-style-type: disc;
    padding-left: 1.25rem;
    margin-bottom: 1rem;
}

.prose li {
    margin-bottom: 0.5rem;
    color: #475569;
}
