 .fraud-alert-content {
 	     display: flex;         /* active flexbox */
    align-items: flex-start;
 	 color: white;
 	 background-color: #fef3e2;
 	 border-left: 4px solid #f59e0b;
 	 padding: 20px 30px;
 }
 
 
 .alert-icon {
 	 color: #f59e0b;
 	 font-size: 32px;
 	 line-height: 1;
 	 flex-shrink: 0;
 	 margin-right: 12px; 
 }
 .alert-text-wrapper {
 	 flex: 1;
 	 color: #374151;
 	 font-size: 16px;
 	 line-height: 1.6;
 }
 .alert-title {
 	 color: #f59e0b;
 	 font-weight: 600;
 	 font-size: 18px;
 	 margin-bottom: 8px;
 	 display: inline-block;
 }
 .alert-message {
 	 color: #374151;
 }
 .alert-message strong {
 	 color: #1f2937;
 }
 .alert-link {
 	 color: #2563eb;
 	 font-weight: 600;
 	 text-decoration: underline;
 	 transition: color 0.2s ease;
 }
 .alert-link:hover {
 	 color: #1d4ed8;
 }
