/* CSS for WealthPath Core Plugin review cards */

.wealthpath-review-card {
    background-color: #121212;
    border: 1px solid #22C55E;
    border-radius: 8px;
    padding: 24px;
    margin: 30px 0;
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    color: #FFFFFF;
}

.wealthpath-review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #2A2A2A;
    padding-bottom: 16px;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 16px;
}

.wealthpath-score-container {
    display: flex;
    align-items: center;
    gap: 12px;
}

.wealthpath-score-badge {
    background-color: #22C55E;
    color: #0A0A0A;
    font-size: 26px;
    font-weight: 800;
    padding: 6px 16px;
    border-radius: 6px;
    line-height: 1;
}

.wealthpath-score-label {
    text-transform: uppercase;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    color: #A3A3A3;
}

.wealthpath-pricing-info {
    text-align: right;
}

.wealthpath-pricing-label {
    text-transform: uppercase;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1.5px;
    color: #A3A3A3;
    display: block;
    margin-bottom: 4px;
}

.wealthpath-pricing-value {
    font-weight: 700;
    color: #22C55E;
    font-size: 16px;
}

.wealthpath-pros-cons {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.wealthpath-pros-column,
.wealthpath-cons-column {
    flex: 1;
    min-width: 250px;
}

.wealthpath-column-title {
    font-weight: 700;
    font-size: 16px;
    margin-top: 0;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.wealthpath-pros-column .wealthpath-column-title {
    color: #22C55E;
}

.wealthpath-cons-column .wealthpath-column-title {
    color: #EF4444;
}

.wealthpath-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.wealthpath-list-item {
    font-size: 14px;
    margin-bottom: 10px;
    padding-left: 22px;
    position: relative;
    line-height: 1.5;
    color: #E5E5E5;
}

.wealthpath-pros-column .wealthpath-list-item::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #22C55E;
    font-weight: bold;
}

.wealthpath-cons-column .wealthpath-list-item::before {
    content: "✗";
    position: absolute;
    left: 0;
    color: #EF4444;
    font-weight: bold;
}