/* ==========================================
   QUOTE EXPERIENCES MODULE
========================================== */

.quote-experiences-panel {
    margin-top: 18px;
    padding: 18px;
    border: 1px solid #d8d3ff;
    border-radius: 18px;
    background: #fbfaff;
}

.quote-experiences-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}

.quote-experiences-header h3 {
    margin: 0;
    color: #10182f;
    font-size: 20px;
}

.quote-experiences-badge {
    padding: 6px 12px;
    border-radius: 999px;
    background: #eee8ff;
    color: #4f22c9;
    font-size: 13px;
    font-weight: 700;
}

.quote-experiences-help {
    margin: 0 0 16px 0;
    color: #626b7f;
    font-size: 14px;
}

.quote-experiences-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 14px;
}

.quote-experience-card {
    padding: 14px;
    border: 1px solid #e3e6ef;
    border-radius: 16px;
    background: #ffffff;
    box-shadow: 0 6px 18px rgba(16, 24, 47, 0.08);
}

.quote-experience-checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    color: #111827;
}

.quote-experience-checkbox input {
    width: 18px;
    height: 18px;
    accent-color: #4f22c9;
}

.quote-experience-card p {
    margin: 10px 0;
    min-height: 38px;
    color: #4b5563;
    font-size: 13px;
    line-height: 1.35;
}

.quote-experience-card strong {
    display: block;
    color: #4f22c9;
    font-size: 16px;
}

.quote-experience-empty {
    padding: 14px;
    border: 1px dashed #cfd4e3;
    border-radius: 14px;
    color: #6b7280;
    background: #ffffff;
}