/* ============================================================
   HonestSplitCard — 60/40 ærlig deling-pitch
   3 varianter: --full (hero), --compact (banner), --inline (footer)
   ============================================================ */

.honest-split {
    --hs-success: #22c55e;
    --hs-success-30: rgba(34, 197, 94, 0.3);
    --hs-success-15: rgba(34, 197, 94, 0.15);
    --hs-success-10: rgba(34, 197, 94, 0.10);
    --hs-accent-5: rgba(0, 180, 216, 0.05);
    --hs-radius: 12px;
    box-sizing: border-box;
    color: inherit;
}

.honest-split * { box-sizing: border-box; }

/* ===== FULL HERO ===== */
.honest-split--full {
    margin: 32px auto;
    max-width: 880px;
    padding: 28px;
    border: 1px solid var(--hs-success-30);
    background: linear-gradient(135deg, var(--hs-success-10), transparent 50%, var(--hs-accent-5));
    border-radius: var(--hs-radius);
    display: block;
}

.honest-split--full .honest-split__head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 4px;
}

.honest-split--full .honest-split__icon {
    font-size: 1.5rem;
    line-height: 1;
}

.honest-split--full .honest-split__title {
    margin: 0;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--hs-success);
    line-height: 1.2;
}

.honest-split--full .honest-split__tagline {
    margin: 0 0 16px 0;
    color: var(--hs-success);
    font-style: italic;
    font-size: 1.05rem;
}

.honest-split--full .honest-split__body {
    margin: 0 0 16px 0;
    font-size: 1rem;
    line-height: 1.6;
}

.honest-split--full .honest-split__promises {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 12px;
}

.honest-split--full .honest-split__chip {
    background: var(--hs-success-15);
    color: var(--hs-success);
    font-weight: 600;
    border-radius: 9999px;
    padding: 6px 14px;
    font-size: 0.9rem;
    line-height: 1.4;
    display: inline-flex;
    align-items: center;
}

.honest-split--full .honest-split__chip::before {
    content: '●';
    margin-right: 6px;
    font-size: 0.7rem;
    opacity: 0.8;
}

.honest-split--full .honest-split__note {
    margin: 0 0 18px 0;
    font-size: 0.92rem;
    opacity: 0.85;
    line-height: 1.5;
}

.honest-split--full .honest-split__example {
    background: rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 16px;
    border-radius: 8px;
}

[data-theme="light"] .honest-split--full .honest-split__example {
    background: rgba(255, 255, 255, 0.6);
    border-color: rgba(0, 0, 0, 0.08);
}

.honest-split--full .honest-split__example-title {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--hs-success);
    font-weight: 700;
    font-size: 0.78rem;
    letter-spacing: 0.06em;
    margin-bottom: 8px;
}

.honest-split--full .honest-split__example-body {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ===== COMPACT BANNER ===== */
.honest-split--compact {
    margin: 16px 0;
    padding: 16px 20px;
    border: 1px solid var(--hs-success-30);
    background: linear-gradient(135deg, var(--hs-success-10), transparent 50%, var(--hs-accent-5));
    border-radius: var(--hs-radius);
}

.honest-split--compact .honest-split__head {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 6px;
}

.honest-split--compact .honest-split__icon {
    font-size: 1.2rem;
}

.honest-split--compact .honest-split__title {
    margin: 0;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--hs-success);
}

.honest-split--compact .honest-split__tagline {
    color: var(--hs-success);
    font-style: italic;
    font-size: 0.9rem;
    opacity: 0.95;
}

.honest-split--compact .honest-split__body {
    margin: 0 0 8px 0;
    font-size: 0.92rem;
    line-height: 1.55;
}

.honest-split--compact .honest-split__promises {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 8px;
}

.honest-split--compact .honest-split__chip {
    background: var(--hs-success-15);
    color: var(--hs-success);
    font-weight: 600;
    border-radius: 9999px;
    padding: 3px 10px;
    font-size: 0.78rem;
}

.honest-split--compact .honest-split__note {
    margin: 0;
    font-size: 0.82rem;
    opacity: 0.8;
}

/* ===== INLINE (footer) ===== */
.honest-split--inline {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.82rem;
    opacity: 0.75;
    line-height: 1.5;
}

.honest-split--inline .honest-split__icon {
    font-size: 0.95rem;
}

.honest-split--inline .honest-split__inline-text {
    font-weight: 500;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 600px) {
    .honest-split--full {
        padding: 20px;
        margin: 20px 12px;
    }
    .honest-split--full .honest-split__title { font-size: 1.3rem; }
    .honest-split--full .honest-split__tagline { font-size: 0.95rem; }
    .honest-split--full .honest-split__body { font-size: 0.92rem; }
    .honest-split--full .honest-split__example-body { font-size: 0.88rem; }
    .honest-split--compact { padding: 14px; }
    .honest-split--inline { font-size: 0.78rem; }
}

/* ===== HONOR REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
    .honest-split { transition: none; }
}
