/* Per-post styles for blog/clip-analysis.html */

/* Beautiful TL;DR block styling */
.tldr-block {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border: 1px solid #e2e8f0;
    border-left: 4px solid #3b82f6;
    border-radius: 12px;
    padding: 1.5rem;
    margin: 2rem 0;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    position: relative;
    overflow: hidden;
}

.tldr-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #3b82f6, #8b5cf6, #06b6d4);
}

.tldr-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.tldr-header i {
    color: #3b82f6;
    font-size: 1.25rem;
}

.tldr-header h3 {
    margin: 0;
    font-size: 1.125rem;
    font-weight: 600;
    color: #1e293b;
}

.tldr-block ul {
    margin: 0;
    padding-left: 1.5rem;
    list-style: none;
}

.tldr-block li {
    position: relative;
    margin-bottom: 0.75rem;
    line-height: 1.6;
    color: #475569;
    font-size: 0.95rem;
}

.tldr-block li::before {
    content: '→';
    position: absolute;
    left: -1.5rem;
    color: #3b82f6;
    font-weight: bold;
}

.tldr-block li:last-child {
    margin-bottom: 0;
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
    .tldr-block {
        background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
        border-color: #475569;
        color: #e2e8f0;
    }
    
    .tldr-header h3 {
        color: #f1f5f9;
    }
    
    .tldr-block li {
        color: #cbd5e1;
    }
}

/* Add any CLIP-specific figure styling here */
