/* Report Page Styles - Part 3: Key Points Section */

/* Key points section */
.key-points-section {
    margin-bottom: 30px;
}

.key-points-section h2 {
    font-size: 1.5rem;
    margin-top: 0;
    margin-bottom: 20px;
    color: #2c3e50;
}

.points-columns {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.points-column {
    flex: 1;
    min-width: 300px;
    background-color: white;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.positive-column {
    border-top: 5px solid #2ecc71;
}

.negative-column {
    border-top: 5px solid #e74c3c;
}

.points-column h3 {
    font-size: 1.3rem;
    margin-top: 0;
    margin-bottom: 20px;
    color: #2c3e50;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 10px;
}

.points-list {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.point-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #f0f0f0;
}

.point-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.point-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
}

.point-icon.positive {
    background-color: #2ecc71;
    color: white;
}

.point-icon.negative {
    background-color: #e74c3c;
    color: white;
}

.point-content {
    flex: 1;
    font-size: 1rem;
    line-height: 1.5;
}

.point-content strong {
    color: #2c3e50;
    display: block;
    margin-bottom: 3px;
}

/* Facts section */
.facts-section {
    background-color: white;
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.facts-section h2 {
    font-size: 1.5rem;
    margin-top: 0;
    margin-bottom: 20px;
    color: #2c3e50;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 10px;
}

.facts-list-horizontal {
    list-style-type: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.fact-item-horizontal {
    background-color: #f8f9fa;
    padding: 10px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.fact-item-horizontal i {
    color: #3498db;
}
