/**Layer 112: AI Headlines*/

.headline-panel {
    background: #fdf4ff;
    /* Light purple tint */
    border: 1px solid #e879f9;
    border-radius: 8px;
    padding: 1.5rem;
    font-family: 'Inter', sans-serif;
    margin: 1rem 0;
}

.headline-panel h3 {
    margin: 0 0 1rem 0;
    font-size: 1rem;
    color: #a21caf;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.headline-panel h3::before {
    content: '✨';
}

.variant-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.variant-item {
    display: flex;
    align-items: center;
    background: #fff;
    padding: 0.75rem;
    border-radius: 6px;
    border: 1px solid #fae8ff;
    cursor: pointer;
    transition: all 0.2s;
}

.variant-item:hover {
    border-color: #d946ef;
    transform: translateX(4px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.variant-score {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.8rem;
    margin-right: 1rem;
    color: #fff;
}

.variant-score.high {
    background: #10b981;
}

.variant-score.med {
    background: #f59e0b;
}

.variant-score.low {
    background: #ef4444;
}

.variant-text {
    font-size: 0.95rem;
    color: #374151;
    font-weight: 500;
}