/**
 * ALO Callout Element Styles
 */

.alo-callout {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px;
    border-radius: 8px;
    background-color: #f8f9fa;
    box-sizing: border-box;
    font-family: 'Rubik', sans-serif;
    gap: 16px;
}

.alo-callout__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 35px;
    line-height: 1;
}

.alo-callout__icon i {
    color: #2563eb;
}

.alo-callout__content {
    flex: 1;
}

.alo-callout__title {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.5;
    color: #1f2937;
}

.alo-callout__subtitle {
    margin: 4px 0 0 0;
    font-size: 0.875rem;
    line-height: 1.5;
    color: #6b7280;
}

.alo-callout__button {
    flex-shrink: 0;
}

/* Override button width to auto-fit inside callout */
.alo-callout .alo-btn {
    width: auto;
}

/* RTL support */
.rtl .alo-callout {
    direction: rtl;
}
