html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

::selection {
  background-color: #dbe6f0;
  color: #1e3a5f;
}

.entry-card {
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.entry-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px -14px rgba(30, 58, 95, 0.25);
}

.filter-pill {
  transition: background-color 0.15s ease, color 0.15s ease;
}

.tag-pill {
  letter-spacing: 0.02em;
}

.ph-mark {
  font-style: normal;
}

#cookie-banner {
  animation: ph-rise 0.4s ease;
}

@keyframes ph-rise {
  from {
    transform: translateY(16px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
