
.tip-banner p { 
padding: 0;
line-height: unset;
  font-size: 12px;
}
/* 1. Container Styling */
.tip-banner {
  display: flex;
  align-items: center;
  gap: 12px;
  background-color: #edebe2;
  padding: 14px 24px;
  border-radius: 12px;
  
  /* Typography */
  font-family: 'Inter', -apple-system, sans-serif;
  font-size: 15px;
  color: #1a1a1a;
  line-height: 1.4;
  
  max-width: 100%;
  margin: 10px 0;
}

/* 2. Icon Wrapper & Icon Sizing */
.icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  /* Specific request: max-width 16px */
  width: 16px; 
}

.banner-icon {
  width: 100%; /* Fits perfectly inside the 16px wrapper */
  height: auto; /* Maintains aspect ratio */
  display: block;
  /* border-radius: 2px; Optional: adjusted for the smaller size */
}

/* 3. Text Styling */
.banner-text {
  margin: 0;
}

.banner-text strong {
  font-weight: 700; 
}

