/* assets/css/tip.css - Logicoria Tip Module */

.logicoria-tip {
    display: block !important;
    width: 100%;
    background: #f8faff !important; /* Very light Logicoria blue */
    border-left: 6px solid #2563eb !important; /* Thick Spartan Blue accent line */
    padding: 24px 30px !important;
    border-radius: 4px 12px 12px 4px !important; 
    
    /* FIX: Top margin keeps it away from text above, 
       Small bottom margin prevents huge gap before Ads/Headings */
    margin-top: 35px !important;
    margin-bottom: 10px !important; 
    
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02) !important;
}

.tip-header {
    color: #2563eb !important;
    font-size: 11px !important;
    font-weight: 900 !important;
    text-transform: uppercase !important;
    display: block !important;
    margin-bottom: 8px !important;
    letter-spacing: 1.2px !important;
    font-family: 'Inter', sans-serif !important;
}

.tip-content {
    font-style: italic !important;
    font-size: 1.05rem !important;
    color: #475569 !important; /* Slate 600 */
    line-height: 1.6 !important;
    margin: 0 !important;
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
    .logicoria-tip {
        background: rgba(30, 58, 138, 0.15) !important;
        border-left-color: #60a5fa !important;
    }
    .tip-header { color: #60a5fa !important; }
    .tip-content { color: #cbd5e1 !important; }
}