:root {
  --paper: #fffff8;
  --ink: #111111;
  --ink-mid: #555555;
  --ink-light: #999999;
  --ink-faint: #cccccc;
  --red: #8b0000;
  --red-light: #a52a2a;
  --link: #006fd6;
  --link-light: #1788f2;
  --link-muted: #4f8fbd;
  --rule: #e0dcd6;
  --hover: rgba(0, 0, 0, 0.025);
  --sans: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font: "Crimson Pro", "Palatino Linotype", Palatino, Georgia, serif;
  --mono: "SF Mono", Menlo, Consolas, "Liberation Mono", monospace;
  --overlay-top-padding: calc(32px + env(safe-area-inset-top, 0px));
  --overlay-top-offset: calc(-32px - env(safe-area-inset-top, 0px));
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
}

html {
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  min-height: 100dvh;
  overflow-x: hidden;
  overscroll-behavior-y: contain;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.6;
}

body.no-scroll {
  overflow: hidden;
}

button,
input,
textarea {
  font: inherit;
}

button {
  border: 0;
  background: none;
  color: inherit;
  cursor: pointer;
}

.back-btn,
.action-link,
.inline-link {
  font-family: var(--mono);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

main,
.overlay-body {
  width: 100%;
  max-width: 640px;
  margin: 0 auto;
  padding: 0 24px 80px;
  padding-top: env(safe-area-inset-top, 0);
}

@media (min-width: 700px) {
  main,
  .overlay-body {
    padding-right: 40px;
    padding-left: 40px;
  }
}

header {
  padding-top: 48px;
  margin-bottom: 28px;
}

.title-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

h1 {
  margin-bottom: 6px;
  font-size: 44px;
  font-style: italic;
  font-weight: 300;
  letter-spacing: 0;
  line-height: 1;
}

.title-row h1 {
  margin-bottom: 0;
}

.title-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-top: 6px;
  flex: 0 0 auto;
}

.sync-dot {
  width: 8px;
  height: 8px;
  border: 1px solid var(--ink-faint);
  border-radius: 50%;
  background: transparent;
  transition: background-color 0.15s, border-color 0.15s, opacity 0.15s;
}

.sync-dot.ready {
  border-color: var(--link-muted);
}

.sync-dot.pending {
  border-color: var(--link);
  background: var(--link-muted);
}

.sync-dot.synced {
  border-color: var(--link-light);
  background: var(--link-light);
}

.sync-dot.local {
  opacity: 0.55;
}

.header-link {
  padding: 0;
  line-height: 1;
}

.activity-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.activity-badge {
  display: inline-flex;
  min-width: 15px;
  height: 15px;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
  border: 1px solid var(--link-light);
  border-radius: 8px;
  color: var(--link-light);
  font-size: 9px;
  line-height: 1;
}

@media (max-width: 380px) {
  h1 {
    font-size: 36px;
  }
}

.stats,
.location-status,
.input-status,
.trip-meta,
.trip-shared-by,
.trip-participants,
.section-label,
.entry-meta,
.entry-location,
.field-label,
.field-helper,
.day-label,
.day-places {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0;
}

.stats,
.location-status,
.input-status,
.trip-shared-by,
.trip-participants,
.section-label,
.entry-meta,
.entry-location,
.field-label,
.field-helper,
.day-label,
.day-places {
  color: var(--ink-light);
}

.location-status {
  min-height: 15px;
  margin-top: 2px;
}

.input-wrap {
  margin-bottom: 28px;
}

.main-input,
.field-input,
.field-textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid var(--rule);
  outline: none;
  background: transparent;
  color: var(--ink);
  transition: border-color 0.2s;
}

.main-input {
  padding: 10px 0;
  font-size: 16px;
  font-style: italic;
}

.main-input:focus,
.field-input:focus,
.field-textarea:focus {
  border-bottom-color: var(--ink);
}

.main-input::placeholder,
.field-input::placeholder,
.field-textarea::placeholder {
  color: var(--ink-faint);
  font-style: italic;
}

.input-status {
  min-height: 18px;
  margin-top: 4px;
  line-height: 1.35;
}

.trip-item,
.entry {
  cursor: pointer;
  transition: opacity 0.2s;
}

.trip-item {
  position: relative;
  padding: 22px 0;
  border-top: 1px solid var(--rule);
}

.trip-item:last-child {
  border-bottom: 1px solid var(--rule);
}

.trip-item:active,
.entry:active {
  opacity: 0.6;
}

.trip-item.past {
  opacity: 0.65;
}

.trip-meta {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 6px;
  color: var(--ink-light);
}

.trip-meta .right {
  text-align: right;
  white-space: nowrap;
}

.trip-card-activity {
  padding: 0;
  vertical-align: baseline;
}

.trip-title {
  margin-bottom: 4px;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.28;
}

.trip-route {
  margin-bottom: 6px;
  color: var(--ink-mid);
  font-size: 15px;
  line-height: 1.45;
}

.trip-shared-by,
.trip-participants {
  margin-bottom: 6px;
}

.map-panel {
  position: relative;
  width: 100vw;
  height: 240px;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  margin-bottom: 28px;
  border-bottom: 1px solid var(--rule);
  background: var(--hover);
  overflow: hidden;
}

.map-panel.compact {
  height: 210px;
}

.map-canvas {
  width: 100%;
  height: 100%;
}

.map-empty {
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  padding: 24px;
  color: var(--ink-light);
  font-family: var(--mono);
  font-size: 10.5px;
  text-align: center;
}

.leaflet-tile-pane {
  filter: saturate(0.15) brightness(1.06) contrast(0.88) sepia(0.05);
}

.leaflet-container {
  background: var(--paper) !important;
  font-family: var(--font) !important;
}

.leaflet-control-attribution {
  background: rgba(255, 255, 248, 0.85) !important;
  color: var(--ink-light) !important;
  font-family: var(--mono) !important;
  font-size: 9px !important;
}

.leaflet-control-attribution a {
  color: var(--ink-light) !important;
}

.leaflet-control-zoom a {
  border: 1px solid var(--rule) !important;
  border-radius: 0 !important;
  background: var(--paper) !important;
  color: var(--ink-mid) !important;
  font-family: var(--font) !important;
}

.leaflet-control-zoom a:hover {
  background: var(--paper) !important;
  color: var(--ink) !important;
}

.entry-tooltip {
  border: 1px solid var(--rule) !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  background: var(--paper) !important;
  color: var(--ink) !important;
  font-family: var(--font) !important;
  font-size: 13px !important;
  padding: 6px 10px !important;
}

.entry-tooltip::before {
  display: none !important;
}

.empty-state {
  padding: 40px 0;
  color: var(--ink-light);
  font-size: 15px;
  font-style: italic;
  text-align: center;
}

.overlay {
  position: fixed;
  z-index: 100;
  inset: 0;
  overflow-y: auto;
  overscroll-behavior-y: contain;
  visibility: hidden;
  background: var(--paper);
  transform: translateX(100%);
  transition: transform 0.35s var(--ease), visibility 0s linear 0.35s;
  -webkit-overflow-scrolling: touch;
}

.overlay.active {
  visibility: visible;
  transform: translateX(0);
  transition: transform 0.35s var(--ease), visibility 0s linear 0s;
}

#entry-overlay {
  z-index: 140;
}

#compose-overlay,
#trip-form-overlay,
#link-overlay,
#activity-overlay,
#share-overlay {
  z-index: 180;
}

#setup-overlay {
  z-index: 220;
}

.overlay-body {
  padding-top: var(--overlay-top-padding);
}

.overlay-body > .map-panel:first-child {
  margin-top: var(--overlay-top-offset);
}

.overlay-topbar {
  display: grid;
  width: 100%;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  column-gap: 18px;
  margin-bottom: 16px;
}

.overlay-topbar .back-btn {
  justify-self: start;
  margin-bottom: 0;
}

.overlay-topbar .trip-head-actions,
.overlay-topbar .entry-head-actions,
.overlay-topbar .compose-head-actions,
.overlay-topbar .trip-form-head-actions {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
  justify-self: end;
  white-space: nowrap;
}

.back-btn {
  display: inline-block;
  margin-bottom: 16px;
  padding: 12px 16px 12px 0;
  color: var(--link);
  font-size: 10.5px;
  transition: color 0.15s;
  user-select: none;
}

.back-btn:hover {
  color: var(--link);
}

.trip-head-dates {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 4px;
  color: var(--ink-light);
  font-family: var(--mono);
  font-size: 10.5px;
}

.sort-btn {
  padding: 0;
  font-family: var(--mono);
  font-size: 10.5px;
  vertical-align: baseline;
}

.trip-head-title,
.screen-title,
.entry-detail-title {
  font-style: italic;
  font-weight: 400;
  line-height: 1.2;
}

.trip-head-title {
  margin-bottom: 0;
  font-size: 30px;
}

.trip-title-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 10px;
}

.trip-title-row .trip-head-title {
  min-width: 0;
}

.trip-head-actions {
  display: inline-flex;
  align-items: baseline;
  gap: 18px;
  flex: 0 0 auto;
}

.title-action {
  flex: 0 0 auto;
}

.trip-activity-link {
  padding: 0;
}

.screen-title {
  margin-bottom: 20px;
  font-size: 28px;
}

.entry-detail-title {
  margin-bottom: 14px;
  font-size: 26px;
}

.trip-head-route {
  margin-bottom: 20px;
  color: var(--ink-mid);
  font-size: 16px;
}

.action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: baseline;
  margin-bottom: 20px;
}

.action-link {
  display: inline-block;
  padding: 10px 0;
  color: var(--link);
  font-size: 10.5px;
  transition: color 0.15s;
  user-select: none;
}

.action-link:hover {
  color: var(--link-light);
}

.action-link.muted,
.action-link.secondary {
  color: var(--link-muted);
}

.action-link.muted:hover,
.action-link.secondary:hover {
  color: var(--link);
}

.action-link.destructive {
  color: var(--red);
}

.action-link.destructive:hover {
  color: var(--red-light);
}

.section-label {
  margin-bottom: 14px;
  text-transform: uppercase;
}

.day-group {
  padding-top: 0;
}

.day-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  margin-top: 0;
  padding: 12px 0 4px;
  border-top: 1px solid var(--rule);
}

.day-header .day-label:only-child {
  width: 100%;
}

.day-label,
.day-places {
  text-transform: uppercase;
}

.entry {
  position: relative;
  padding: 14px 0 18px 20px;
}

.entry::before {
  position: absolute;
  top: 22px;
  bottom: 0;
  left: 4px;
  width: 1px;
  background: var(--rule);
  content: "";
}

.entry:last-child::before {
  bottom: 14px;
}

.entry::after {
  position: absolute;
  top: 20px;
  left: 0;
  width: 9px;
  height: 9px;
  border: 1px solid var(--ink-faint);
  border-radius: 50%;
  background: var(--paper);
  content: "";
}

.entry-meta {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 6px;
}

.entry-body,
.entry-detail-content {
  color: var(--ink);
  line-height: 1.6;
}

.entry-body {
  font-size: 15.5px;
}

.entry-body p,
.entry-detail-content p {
  margin-bottom: 10px;
}

.entry-body p:last-child,
.entry-detail-content p:last-child,
.comment-body p:last-child {
  margin-bottom: 0;
}

.entry-summary-title {
  margin-bottom: 5px;
  font-style: italic;
}

.entry-photo {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 0;
  background: var(--hover);
}

.entry-photo-grid {
  display: grid;
  gap: 8px;
  margin-bottom: 12px;
}

.entry-photo-grid.cols-1 {
  grid-template-columns: 1fr;
}

.entry-photo-grid.cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.entry-photo-grid.cols-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.entry-photo-column {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 22px;
}

.entry-photo-frame {
  min-width: 0;
}

.entry-photo-frame.summary .entry-photo {
  height: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.entry-photo-grid.cols-1 .entry-photo-frame.summary .entry-photo {
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
}

.entry-photo-frame.detail .entry-photo {
  object-fit: contain;
}

.entry-photo-frame video.entry-photo {
  display: block;
  max-width: 100%;
}

.entry-photo-placeholder {
  display: flex;
  width: 100%;
  min-height: 160px;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  border: 1px solid var(--rule);
  color: var(--ink-light);
  font-family: var(--mono);
  font-size: 10.5px;
}

.entry-photo-placeholder.form {
  min-height: 140px;
}

.photo-status {
  margin: -6px 0 12px;
  color: var(--ink-light);
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0;
}

.photo-status.error {
  color: var(--red);
}

.entry-link {
  display: inline-block;
  color: var(--link);
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0;
  text-decoration: none;
  text-transform: uppercase;
}

.entry-link:hover {
  color: var(--link-light);
}

.link-preview {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 12px;
  align-items: stretch;
  width: 100%;
  margin-top: 10px;
  border: 1px solid var(--rule);
  color: var(--ink);
  text-decoration: none;
}

.link-preview.form {
  margin-top: 12px;
}

.link-preview.detail {
  margin-top: 12px;
  margin-bottom: 2px;
}

.link-preview.has-image {
  grid-template-columns: 72px minmax(0, 1fr);
}

.link-preview:hover {
  border-color: var(--ink-faint);
}

.link-preview-media {
  width: 72px;
  min-height: 72px;
  background: var(--hover);
}

.link-preview-image {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.link-preview-copy {
  min-width: 0;
  padding: 10px 12px;
}

.link-preview.has-image .link-preview-copy {
  padding: 9px 10px 9px 0;
}

.link-preview-title {
  overflow: hidden;
  color: var(--ink);
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.35;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.link-preview-description {
  display: -webkit-box;
  overflow: hidden;
  margin-top: 3px;
  color: var(--ink-mid);
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0;
  line-height: 1.35;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.entry-social {
  margin-top: 24px;
  padding-top: 14px;
  border-top: 1px solid var(--rule);
}

.entry-comments-block {
  margin-top: 12px;
}

.entry-comments-toggle {
  padding: 4px 0;
  color: var(--link);
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0;
  text-transform: uppercase;
}

.entry-comments-toggle:hover {
  color: var(--link-light);
}

.entry-inline-comments {
  margin-top: 8px;
  padding-top: 10px;
  border-top: 1px solid var(--rule);
}

.comment-meta {
  color: var(--ink-light);
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0;
}

.comments-list {
  margin-bottom: 14px;
}

.comment {
  padding: 12px 0;
  border-top: 1px solid var(--rule);
}

.comment:first-child {
  padding-top: 0;
  border-top: 0;
}

.comment-meta {
  margin-bottom: 5px;
}

.comment-body {
  color: var(--ink);
  font-size: 15.5px;
  line-height: 1.55;
}

.comment-actions {
  display: flex;
  gap: 14px;
  margin-top: 4px;
}

.comment-actions .action-link {
  padding: 2px 0;
}

.comment-input,
.inline-comment-input,
.comment-edit-input {
  padding: 8px 0;
  font-size: 15px;
}

.inline-comment-input {
  margin-top: 8px;
}

.activity-item {
  display: block;
  width: 100%;
  padding: 7px 0;
  color: var(--ink);
  text-align: left;
}

.activity-item:active {
  opacity: 0.65;
}

.activity-line {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 6px;
  overflow: hidden;
  color: var(--ink);
  font-size: 15px;
  line-height: 1.4;
  white-space: nowrap;
}

.activity-line-stamp,
.activity-line-author {
  flex: 0 0 auto;
  color: var(--ink-light);
  font-family: var(--sans);
  font-size: 10.5px;
  letter-spacing: 0.04em;
  line-height: 1;
  text-transform: uppercase;
}

.activity-line-action {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.share-link-actions {
  margin-top: 8px;
}

.entry-location {
  margin-bottom: 20px;
}

.field {
  display: block;
  margin-bottom: 20px;
}

.checkbox-field {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.checkbox-input {
  width: 16px;
  height: 16px;
  margin-top: 2px;
  accent-color: var(--link);
  cursor: pointer;
  flex: 0 0 auto;
}

.checkbox-copy {
  min-width: 0;
  flex: 1 1 auto;
}

.checkbox-label {
  margin-bottom: 2px;
}

.location-field-body {
  margin-top: 12px;
}

.field-label {
  display: block;
  margin-bottom: 6px;
  text-transform: uppercase;
}

.field-input {
  padding: 8px 0;
  font-size: 16px;
}

.field-textarea {
  min-height: 160px;
  padding: 8px 0;
  font-size: 17px;
  line-height: 1.55;
  resize: vertical;
}

.file-input {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.file-picker-link {
  cursor: pointer;
}

.photo-preview {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  margin-bottom: 8px;
  object-fit: contain;
  background: var(--hover);
}

video.photo-preview {
  height: auto;
}

.photo-edit-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 12px;
}

.photo-edit-item {
  min-width: 0;
}

.photo-edit-item .entry-photo-placeholder {
  min-height: 0;
  aspect-ratio: 1;
  margin-bottom: 8px;
}

.photo-caption-input {
  margin-top: 6px;
  margin-bottom: 4px;
  font-size: 13px;
  padding: 4px 0;
}

.entry-photo-caption {
  margin-top: 8px;
  color: var(--ink-light);
  font-size: 13px;
  font-style: italic;
  line-height: 1.4;
}

.field-helper {
  display: block;
  margin-top: 6px;
}

.field-helper.break-anywhere {
  overflow-wrap: anywhere;
}

.field-helper.accent {
  color: var(--red);
}

.field-label-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 6px;
}

.field-label-row .field-label {
  margin-bottom: 0;
}

.inline-link {
  color: var(--link);
  font-size: 10.5px;
  transition: color 0.15s;
}

.inline-link:hover {
  color: var(--link-light);
}

.location-edit-form {
  margin-top: 10px;
}

.action-row.compact {
  margin-top: 10px;
  margin-bottom: 0;
}

.confirm-toast {
  position: fixed;
  z-index: 10000;
  right: 18px;
  bottom: calc(22px + env(safe-area-inset-bottom, 0));
  left: 18px;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: center;
  gap: 14px;
  max-width: 520px;
  margin: 0 auto;
  padding: 9px 16px;
  border: 1px solid var(--rule);
  background: var(--paper);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  color: var(--ink);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0;
}

.confirm-toast .action-link {
  padding: 0;
}

.field-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

@media (min-width: 620px) {
  .field-row {
    grid-template-columns: 1fr 1fr;
  }
}

.toast {
  position: fixed;
  z-index: 9999;
  bottom: calc(28px + env(safe-area-inset-bottom, 0));
  left: 50%;
  max-width: min(480px, calc(100vw - 40px));
  padding: 8px 20px;
  border: 1px solid var(--rule);
  opacity: 0;
  pointer-events: none;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0;
  text-align: center;
  transform: translateX(-50%) translateY(20px);
  transition: opacity 0.3s, transform 0.3s var(--ease);
  white-space: normal;
  word-break: break-word;
}

.toast.visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.entry-timeline {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
}

.entry-timeline-nav {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  padding: 4px;
  color: var(--link);
  transition: color 0.15s;
}

.entry-timeline-nav:first-child {
  padding-right: 0;
}

.entry-timeline-nav:last-child {
  padding-left: 0;
}

.entry-timeline-nav:disabled {
  color: var(--ink-faint);
  cursor: default;
}

.entry-timeline-nav svg {
  width: 18px;
  height: 18px;
}

.entry-timeline-connector {
  flex: 0 0 10px;
  height: 1px;
  background: var(--rule);
}

.entry-timeline-track {
  position: relative;
  z-index: 1;
  flex: 1;
  height: 52px;
}

.entry-timeline-track::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--rule);
  transform: translateY(-50%);
  z-index: 0;
}

.entry-timeline-stem {
  position: absolute;
  z-index: 0;
  width: 1px;
  background: var(--rule);
  transform: translateX(-50%);
  pointer-events: none;
}

.entry-timeline-dot {
  position: absolute;
  z-index: 1;
  top: 50%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 1px solid var(--ink-faint);
  background: var(--paper);
  transform: translate(-50%, -50%);
  transition: background 0.1s, border-color 0.1s;
}

.entry-timeline-dot.current {
  background: var(--ink);
  border-color: var(--ink);
}

.entry-timeline-dot:hover:not(.current) {
  border-color: var(--ink-mid);
  background: var(--ink-faint);
}
