.cab-update-notice {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: start;
  margin: 0 0 22px;
  padding: 16px 20px;
  border-radius: 18px;
  border: 1px solid rgba(108, 71, 255, 0.22);
  background: linear-gradient(135deg, rgba(108, 71, 255, 0.08) 0%, rgba(245, 158, 11, 0.1) 100%);
  box-shadow: 0 10px 28px rgba(108, 71, 255, 0.08);
}

.cab-update-notice__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  background: var(--accent, #6c47ff);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.cab-update-notice__body {
  margin: 0;
  color: var(--text, #0d0d0d);
  font-size: 0.92rem;
  line-height: 1.65;
}

.cab-update-notice__body a {
  color: var(--accent, #6c47ff);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cab-update-notice__body a:hover {
  color: var(--accent2, #4726d9);
}

@media (max-width: 640px) {
  .cab-update-notice {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 14px 16px;
  }

  .cab-update-notice__badge {
    justify-self: start;
  }

  .cab-update-notice__body {
    font-size: 0.88rem;
  }
}
