/* Alert Banner Block Styles */
.wpe-alert-banner {
    background: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 1.25rem 2rem;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    max-width: 1400px;
    margin: 0 auto;
}

.wpe-alert-icon {
    flex-shrink: 0;
    color: #856404;
}

.wpe-alert-content {
    flex: 1;
    color: #856404;
    font-size: 0.9375rem;
    line-height: 1.6;
}

.wpe-alert-content strong {
    color: #856404;
    font-weight: 700;
}

/* Success variant */
.wpe-alert-success {
    background: #d4edda;
    border-left-color: #28a745;
}

.wpe-alert-success .wpe-alert-icon,
.wpe-alert-success .wpe-alert-content,
.wpe-alert-success .wpe-alert-content strong {
    color: #155724;
}

/* Info variant */
.wpe-alert-info {
    background: #d1ecf1;
    border-left-color: #17a2b8;
}

.wpe-alert-info .wpe-alert-icon,
.wpe-alert-info .wpe-alert-content,
.wpe-alert-info .wpe-alert-content strong {
    color: #0c5460;
}

/* Danger variant */
.wpe-alert-danger {
    background: #f8d7da;
    border-left-color: #dc3545;
}

.wpe-alert-danger .wpe-alert-icon,
.wpe-alert-danger .wpe-alert-content,
.wpe-alert-danger .wpe-alert-content strong {
    color: #721c24;
}

/* Responsive Design */
@media (max-width: 768px) {
    .wpe-alert-banner {
        padding: 1rem 1.5rem;
    }

    .wpe-alert-content {
        font-size: 0.875rem;
    }
}