/* Report Page - Key Points Section - Modern Clean Design */

/* ============================================
   KEY POINTS SECTION
   ============================================ */
.key-points-section {
    margin-bottom: 3rem;
}

.key-points-section h2 {
    font-size: 1.75rem;
    font-weight: 700;
    margin: 0 0 2rem 0;
    color: #1f2937;
    letter-spacing: -0.01em;
}

.points-columns {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

@media (max-width: 768px) {
    .points-columns {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.points-column {
    background: #ffffff;
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid #e5e7eb;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.points-column:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.positive-column {
    border-top: 4px solid #10b981;
}

.negative-column {
    border-top: 4px solid #ef4444;
}

.points-column h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0 0 1.5rem 0;
    color: #1f2937;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e5e7eb;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.points-column h3 i {
    font-size: 1.125rem;
}

.points-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.point-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid #f3f4f6;
}

.point-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.point-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 0.875rem;
}

.point-icon.positive {
    background: #d1fae5;
    color: #10b981;
}

.point-icon.negative {
    background: #fee2e2;
    color: #ef4444;
}

.point-content {
    flex: 1;
    font-size: 1rem;
    line-height: 1.6;
    color: #374151;
}

.point-content strong {
    color: #1f2937;
    display: block;
    margin-bottom: 0.25rem;
    font-weight: 600;
    font-size: 1.0625rem;
}

/* ============================================
   FACTS SECTION
   ============================================ */
.facts-section {
    background: #ffffff;
    border-radius: 16px;
    padding: 2.5rem;
    margin-bottom: 3rem;
    border: 1px solid #e5e7eb;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.facts-section h2 {
    font-size: 1.75rem;
    font-weight: 700;
    margin: 0 0 1.5rem 0;
    color: #1f2937;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e5e7eb;
    letter-spacing: -0.01em;
}

.facts-list-horizontal {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.fact-item-horizontal {
    background: #f9fafb;
    padding: 0.625rem 1rem;
    border-radius: 8px;
    font-size: 0.9375rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #374151;
    border: 1px solid #e5e7eb;
    transition: all 0.2s ease;
}

.fact-item-horizontal:hover {
    background: #f3f4f6;
    border-color: #d1d5db;
}

.fact-item-horizontal i {
    color: #6366f1;
    font-size: 0.875rem;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 768px) {
    .key-points-section h2,
    .facts-section h2 {
        font-size: 1.5rem;
    }
    
    .points-column {
        padding: 1.5rem;
    }
    
    .facts-section {
        padding: 1.5rem;
    }
}

@media (max-width: 640px) {
    .key-points-section {
        margin-bottom: 2rem;
    }
    
    .key-points-section h2 {
        font-size: 1.375rem;
        margin-bottom: 1.5rem;
    }
    
    .points-column {
        padding: 1.25rem;
    }
    
    .points-column h3 {
        font-size: 1.125rem;
        margin-bottom: 1.25rem;
    }
    
    .point-item {
        padding: 0.75rem 0;
    }
    
    .point-icon {
        width: 28px;
        height: 28px;
        font-size: 0.8125rem;
    }
    
    .point-content {
        font-size: 0.9375rem;
    }
    
    .point-content strong {
        font-size: 1rem;
    }
    
    .facts-section {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .facts-section h2 {
        font-size: 1.375rem;
    }
    
    .fact-item-horizontal {
        font-size: 0.875rem;
        padding: 0.5rem 0.75rem;
    }
}

@media (max-width: 480px) {
    .key-points-section h2 {
        font-size: 1.25rem;
    }
    
    .points-column {
        padding: 1rem;
    }
    
    .points-column h3 {
        font-size: 1rem;
        padding-bottom: 0.75rem;
    }
    
    .point-item {
        padding: 0.625rem 0;
    }
    
    .point-icon {
        width: 24px;
        height: 24px;
        font-size: 0.75rem;
    }
    
    .point-content {
        font-size: 0.875rem;
    }
    
    .point-content strong {
        font-size: 0.9375rem;
    }
    
    .facts-section {
        padding: 1.25rem;
    }
    
    .facts-section h2 {
        font-size: 1.25rem;
    }
    
    .facts-list-horizontal {
        gap: 0.5rem;
    }
    
    .fact-item-horizontal {
        font-size: 0.8125rem;
        padding: 0.5rem 0.625rem;
    }
}
