/* Widget 11 — advisory box. Sample values (lines 159-167): neutral bordered
   card r16 padding 18/22, 36px wash icon square r11, title 15/700 ink,
   text 14.5/1.6 secondary. Deliberately no brand colour. */

.hc-advisory {
  display: flex;
  gap: 16px;
  border: 1px solid var(--hc-line);
  border-radius: 16px;
  padding: 18px 22px;
  background: var(--hc-white);
  margin: 0 0 20px;
}

.hc-advisory__icon {
  width: 36px;
  height: 36px;
  border-radius: 11px;
  background: var(--hc-wash);
  flex: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hc-advisory__title {
  font-size: 15px;
  font-weight: 700;
  color: var(--hc-ink);
}

.hc-advisory__text {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--hc-secondary);
  margin-top: 3px;
}
