/* Base Styles */
.callout-box {
    padding: 24px;
    border-left: 4px solid;
    margin: 20px 0;
}

/* Editable Area Hover (only in editor mode) */
.edit {
    transition: background-color 0.2s;
    border-radius: 3px;
}

body.data-editor .edit:hover {
    background-color: rgba(0, 123, 255, 0.05);
}

.edit:focus {
    outline: 2px solid #007bff !important;
    outline-offset: 3px;
    /* background-color: rgba(0, 123, 255, 0.1); */
}

/* Style Variants */
.callout-info {
    background: #eef8ff;
    border-color: #8cccff;
}

.callout-success {
    background: #f1faf2;
    border-color: #a0dda2;
}

.callout-warning {
    background: #fff9ee;
    border-color: #ffcb7f;
}

.callout-error {
    background: #fff4f5;
    border-color: #ffa39c;
}

/* Typography */
.callout-box h3 {
    margin: 0 0 12px 0;
    font-size: 24px;
    font-weight: 300;
    letter-spacing: -0.02em;
    line-height: 1.3;
    color: #1a1a1a;
}

.callout-box p {
    margin: 0;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.7;
    color: #666;
}