/**
 * Email Mockup Styles
 * Styles for email proposal cards rendered during streaming
 * Follows the pattern established by FB ad mockups
 */

/* ============ Email Wrapper ============ */

.pe-email-wrapper {
    position: relative;
}

.pe-email-wrapper:first-child {
    border-top: none !important;
    padding-top: 0 !important;
}

/* ============ VoC Evidence Section ============ */

.pe-email-mockup__voc {
    margin-bottom: 16px;
    padding: 12px 16px;
    background: #f8fafc;
    border-radius: 8px;
    border-left: 4px solid #B9F040;
}

.pe-email-mockup__voc-label {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #718096;
    margin-bottom: 8px;
}

.pe-email-mockup__voc-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.pe-email-mockup__voc-item {
    font-size: 13px;
    font-style: italic;
    color: #4a5568;
    line-height: 1.5;
    padding: 8px 12px;
    background: white;
    border-radius: 6px;
    border: 1px solid #e2e8f0;
}

/* ============ Strategy Section ============ */

.pe-email-mockup__strategy {
    margin-top: 12px;
    padding: 12px 16px;
    background: #fef3c7;
    border-radius: 8px;
    border-left: 4px solid #f59e0b;
}

.pe-email-mockup__strategy-label {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #92400e;
    margin-bottom: 4px;
}

.pe-email-mockup__strategy-text {
    font-size: 13px;
    color: #78350f;
    line-height: 1.5;
}

/* ============ Email Mockup Container ============ */

.pe-email-mockup {
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.pe-email-mockup:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

/* ============ Responsive Adjustments ============ */

@media (max-width: 640px) {
    .pe-email-wrapper {
        padding: 24px 0 0 0 !important;
    }

    .pe-email-mockup__voc {
        padding: 10px 12px;
    }

    .pe-email-mockup__voc-item {
        font-size: 12px;
        padding: 6px 10px;
    }

    .pe-email-mockup__strategy {
        padding: 10px 12px;
    }
}
