/* Shared header info tip — long description on hover/focus/touch */
.info-tip {
  position: relative;
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  vertical-align: middle;
}
.info-tip__trigger {
  width: 22px;
  height: 22px;
  border-radius: 99px;
  border: 1.5px solid var(--accent-line, #B9C7DC);
  background: var(--accent-soft, #E8EDF5);
  color: var(--accent, #1B3A6B);
  font-family: var(--font-serif, Georgia, serif);
  font-weight: 600;
  font-size: 12px;
  font-style: italic;
  line-height: 1;
  display: grid;
  place-items: center;
  padding: 0;
  cursor: help;
  transition: background 150ms ease, border-color 150ms ease, color 150ms ease;
}
.info-tip__trigger:hover,
.info-tip__trigger:focus-visible,
.info-tip[data-open="true"] .info-tip__trigger {
  background: var(--accent, #1B3A6B);
  color: #fff;
  border-color: var(--accent, #1B3A6B);
  outline: none;
}
.info-tip__bubble {
  position: absolute;
  z-index: 35;
  left: 0;
  top: calc(100% + 10px);
  width: min(360px, calc(100vw - 64px));
  padding: 14px 16px;
  background: var(--bg, #FAF8F4);
  color: var(--ink-soft, #3D392F);
  border: 1px solid var(--line, var(--line-solid, #DEDACE));
  border-radius: 12px;
  box-shadow: 0 12px 28px rgba(22, 20, 15, 0.14);
  font-family: var(--font-body, system-ui, sans-serif);
  font-size: 13.5px;
  font-weight: 400;
  line-height: 1.5;
  text-transform: none;
  letter-spacing: normal;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-4px);
  transition: opacity 150ms ease, transform 150ms ease, visibility 150ms ease;
}
.info-tip__bubble strong {
  color: var(--ink, var(--ink-solid, #16140F));
  font-weight: 600;
}
.info-tip__bubble::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 8px;
  width: 10px;
  height: 10px;
  background: var(--bg, #FAF8F4);
  border-left: 1px solid var(--line, var(--line-solid, #DEDACE));
  border-top: 1px solid var(--line, var(--line-solid, #DEDACE));
  transform: rotate(45deg);
}
.info-tip:hover .info-tip__bubble,
.info-tip:focus-within .info-tip__bubble,
.info-tip[data-open="true"] .info-tip__bubble {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}
/* When tip sits near the right edge, open leftward */
.info-tip--end .info-tip__bubble {
  left: auto;
  right: 0;
}
.info-tip--end .info-tip__bubble::before {
  left: auto;
  right: 8px;
}
/* Dark hero bands (accent / EU blue) */
.info-tip--on-dark .info-tip__trigger {
  border-color: rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
}
.info-tip--on-dark .info-tip__trigger:hover,
.info-tip--on-dark .info-tip__trigger:focus-visible,
.info-tip--on-dark[data-open="true"] .info-tip__trigger {
  background: #fff;
  color: var(--accent, #1B3A6B);
  border-color: #fff;
}
.h1-with-info {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  flex-wrap: wrap;
}
.h1-with-info > .info-tip {
  margin-top: 0.35em;
}
