/* Self-hosted Inter (privacy-friendly: no third-party CDN, no IP leak to Google).
   Files in /assets/fonts/ — preserves the same weights the site already uses. */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../assets/fonts/Inter-Regular.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('../assets/fonts/Inter-Medium.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../assets/fonts/Inter-SemiBold.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../assets/fonts/Inter-Bold.woff2') format('woff2');
}

/* Cookie notice */
.cookie-notice {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 100;
  max-width: 520px;
  margin-inline: auto;
  background: #fff;
  border: 1px solid #E5E5E5;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(15, 29, 43, 0.10);
  padding: 16px 20px;
  display: none;
  font-family: 'Inter', system-ui, sans-serif;
  color: #0F1D2B;
}
.cookie-notice.is-visible { display: block; }
.cookie-notice__row {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  flex-wrap: wrap;
}
.cookie-notice__text {
  flex: 1 1 240px;
  font-size: 14px;
  line-height: 1.5;
  color: #475569;
}
.cookie-notice__text strong { color: #0F1D2B; font-weight: 600; }
.cookie-notice__text a { color: #0F1D2B; text-decoration: underline; text-decoration-color: rgba(15,29,43,0.3); text-underline-offset: 2px; }
.cookie-notice__text a:hover { color: #F4633A; text-decoration-color: #F4633A; }
.cookie-notice__btn {
  flex: 0 0 auto;
  background: #FF8A65;
  color: #fff;
  border: 0;
  border-radius: 8px;
  padding: 10px 18px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
  transition: background-color .15s ease;
}
.cookie-notice__btn:hover { background: #F4633A; }
.cookie-notice__btn:focus-visible {
  outline: 2px solid #FF8A65;
  outline-offset: 3px;
}
@media (max-width: 480px) {
  .cookie-notice { left: 12px; right: 12px; bottom: 12px; padding: 14px 16px; }
  .cookie-notice__row { gap: 12px; }
  .cookie-notice__btn { width: 100%; }
}
