#clock {
  position: fixed;
  bottom: 1px;
  right: 1px;
}

a.back-to-blog {
  position: absolute;
  top: 10px;
  left: 10px;
  color: var(--link);
  text-decoration: none;
  font-size: var(--date-size);
}

.spoiler {
  color: black !important;
  background-color: black !important;
  cursor: pointer;
  transition: color 0.2s ease;
  padding: 0 4px;
}

.spoiler a {
  pointer-events: none;
  text-decoration: none;
  color: inherit !important; /* hide link visually with the span */
}

.spoiler.revealed {
  color: inherit !important; /* restore normal text color (e.g., white) */
  background-color: transparent !important;
}

.spoiler.revealed a {
  pointer-events: auto;
  color: var(--link) !important; /* restores expected link color */
  text-decoration: underline;
}