/* ========================================
   INSIGHTS SECTION - CROSS-SECTIONAL ANALYSIS
   ======================================== */

.insights-section {
    margin-top: 3rem;
    margin-bottom: 2rem;
}

.insights-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--seidor-dark);
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.insights-icon {
    font-size: 2rem;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

.insights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 2rem;
    margin-top: 1.5rem;
}

.insight-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-left: 5px solid transparent;
}

.insight-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.insight-card.primary-insight {
    border-left-color: #00A3E0;
    background: linear-gradient(135deg, rgba(0, 163, 224, 0.02) 0%, rgba(255, 255, 255, 1) 100%);
}

.insight-card.opportunity-insight {
    border-left-color: #f59e0b;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.02) 0%, rgba(255, 255, 255, 1) 100%);
}

.insight-header {
    margin-bottom: 1.25rem;
}

.insight-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: linear-gradient(135deg, #00A3E0, #0088c2);
    color: white;
    box-shadow: 0 2px 6px rgba(0, 163, 224, 0.3);
}

.insight-badge.opportunity {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    box-shadow: 0 2px 6px rgba(245, 158, 11, 0.3);
}

.insight-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #475569;
    margin: 0;
}

/* Highlighted Keywords */
.highlight-primary {
    color: #00A3E0;
    font-weight: 700;
    position: relative;
    padding: 0 2px;
}

.highlight-success {
    color: #10b981;
    font-weight: 700;
    position: relative;
    padding: 0 2px;
}

.highlight-warning {
    color: #f59e0b;
    font-weight: 700;
    position: relative;
    padding: 0 2px;
}

.highlight-info {
    color: #6366f1;
    font-weight: 700;
    position: relative;
    padding: 0 2px;
}

/* Subtle underline animation on hover */
.highlight-primary:hover,
.highlight-success:hover,
.highlight-warning:hover,
.highlight-info:hover {
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 3px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .insights-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .insights-title {
        font-size: 1.5rem;
    }

    .insight-card {
        padding: 1.5rem;
    }

    .insight-text {
        font-size: 1rem;
    }
}