/* 
 * Kurdish Code - Minimal Custom CSS
 * Only essential overrides, using Bootstrap classes everywhere else
 */

/* ===========================================
   MINIMAL CUSTOM STYLES
   =========================================== */

/* Etymology badge - for PIE root codes */
.etymology-badge {
    display: inline-block;
    background-color: #0d6efd;
    color: white !important;
    padding: 0.35em 0.75em;
    border-radius: 0.375rem;
    font-family: 'Courier New', Courier, monospace;
    font-weight: 700;
    font-size: 0.85em;
}

/* Code text - for PIE roots */
.code-text {
    font-family: 'Courier New', Courier, monospace;
    background-color: #e9ecef;
    color: #0d6efd;
    padding: 0.2em 0.5em;
    border-radius: 0.25rem;
    font-weight: 600;
}

/* Article content styling */
.article-content {
    font-size: 1.1rem;
    line-height: 1.8;
}

.article-content h2 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #198754;
}

.article-content h3 {
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: #198754;
}

/* Card hover effect */
.hover-lift {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hover-lift:hover {
    transform: translateY(-4px);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}
